public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-python/twisted: ChangeLog twisted-10.1.0.ebuild
@ 2010-07-09 19:54 Arfrever Frehtes Taifersar Arahesis (arfrever)
  0 siblings, 0 replies; 5+ messages in thread
From: Arfrever Frehtes Taifersar Arahesis (arfrever) @ 2010-07-09 19:54 UTC (permalink / raw
  To: gentoo-commits

arfrever    10/07/09 19:54:25

  Modified:             ChangeLog
  Added:                twisted-10.1.0.ebuild
  Log:
  Version bump.
  (Portage version: HEAD/cvs/Linux x86_64)

Revision  Changes    Path
1.129                dev-python/twisted/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted/ChangeLog?rev=1.129&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted/ChangeLog?rev=1.129&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted/ChangeLog?r1=1.128&r2=1.129

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/twisted/ChangeLog,v
retrieving revision 1.128
retrieving revision 1.129
diff -u -r1.128 -r1.129
--- ChangeLog	23 Apr 2010 08:48:42 -0000	1.128
+++ ChangeLog	9 Jul 2010 19:54:25 -0000	1.129
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/twisted
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted/ChangeLog,v 1.128 2010/04/23 08:48:42 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted/ChangeLog,v 1.129 2010/07/09 19:54:25 arfrever Exp $
+
+*twisted-10.1.0 (09 Jul 2010)
+
+  09 Jul 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+  +twisted-10.1.0.ebuild:
+  Version bump.
 
   23 Apr 2010; Fabian Groffen <grobian@gentoo.org> twisted-10.0.0.ebuild:
   Fix src_test for Prefix, thanks Dan Wallis in bug #316739



1.1                  dev-python/twisted/twisted-10.1.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted/twisted-10.1.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted/twisted-10.1.0.ebuild?rev=1.1&content-type=text/plain

Index: twisted-10.1.0.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted/twisted-10.1.0.ebuild,v 1.1 2010/07/09 19:54:25 arfrever Exp $

EAPI="3"
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.*"

inherit distutils eutils versionator

MY_P="TwistedCore-${PV}"

DESCRIPTION="An asynchronous networking framework written in Python"
HOMEPAGE="http://www.twistedmatrix.com/ http://pypi.python.org/pypi/Twisted"
SRC_URI="http://tmrc.mit.edu/mirror/${PN}/Core/$(get_version_component_range 1-2)/${MY_P}.tar.bz2"

LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="crypt gtk serial"

DEPEND=">=net-zope/zope-interface-3.0.1
	crypt? ( >=dev-python/pyopenssl-0.5.1 )
	gtk? ( >=dev-python/pygtk-1.99 )
	serial? ( dev-python/pyserial )"
RDEPEND="${DEPEND}"

S="${WORKDIR}/${MY_P}"

DOCS="CREDITS NEWS README"

src_prepare(){
	distutils_src_prepare

	# Give a load-sensitive test a better chance of succeeding.
	epatch "${FILESDIR}/${PN}-2.1.0-echo-less.patch"

	# Pass valid arguments to "head" in the zsh completion function.
	epatch "${FILESDIR}/${PN}-2.1.0-zsh-head.patch"

	# Respect TWISTED_DISABLE_WRITING_OF_PLUGIN_CACHE variable.
	epatch "${FILESDIR}/${PN}-9.0.0-respect_TWISTED_DISABLE_WRITING_OF_PLUGIN_CACHE.patch"
}

src_test() {
	testing() {
		local return_status="0"
		"$(PYTHON)" setup.py build -b "build-${PYTHON_ABI}" install --root="${T}/tests" --no-compile || die "Installation of tests failed with $(python_get_implementation) $(python_get_version)"

		pushd "${T}/tests${EPREFIX}$(python_get_sitedir)" > /dev/null || die

		# Skip broken tests.
		sed -e "s/test_buildAllTarballs/_&/" -i twisted/python/test/test_release.py || die "sed failed"

		# Prevent it from pulling in plugins from already installed twisted packages.
		rm -f twisted/plugins/__init__.py

		# An empty file doesn't work because the tests check for doc strings in all packages.
		echo "'''plugins stub'''" > twisted/plugins/__init__.py || die

		if ! PYTHONPATH="." "${T}/tests${EPREFIX}/usr/bin/trial" twisted; then
			if [[ -n "${TWISTED_DEBUG_TESTS}" ]]; then
				die "Tests failed with $(python_get_implementation) $(python_get_version)"
			else
				return_status="1"
			fi
		fi

		popd > /dev/null || die
		rm -fr "${T}/tests"
		return "${return_status}"
	}
	python_execute_function testing
}

src_install() {
	distutils_src_install

	python_generate_wrapper_scripts -E -f -q "${ED}usr/bin/trial"

	postinstallational_preparation() {
		touch "${ED}$(python_get_sitedir)/Twisted-${PV}-py$(python_get_version).egg-info"

		# Delete dropin.cache to avoid collisions.
		# dropin.cache is regenerated in pkg_postinst().
		rm -f "${ED}$(python_get_sitedir)/twisted/plugins/dropin.cache"
	}
	python_execute_function -q postinstallational_preparation

	# Don't install index.xhtml page.
	doman doc/man/*.?
	insinto /usr/share/doc/${PF}
	doins -r $(find doc -mindepth 1 -maxdepth 1 -not -name man)

	newconfd "${FILESDIR}/twistd.conf" twistd
	newinitd "${FILESDIR}/twistd.init" twistd

	# zsh completion
	insinto /usr/share/zsh/site-functions
	doins twisted/python/_twisted_zsh_stub
}

update_plugin_cache() {
	rm -f "${EROOT%/}$(python_get_sitedir)/twisted/plugins/dropin.cache"

	# Update dropin.cache only when Twisted is still installed.
	if [[ -f "${EROOT%/}$(python_get_sitedir)/twisted/plugin.py" ]]; then
		einfo "Regeneration of Twisted plugin cache with $(python_get_implementation) $(python_get_version)"
		# http://twistedmatrix.com/documents/current/core/howto/plugin.html
		"$(PYTHON)" -c "import sys; sys.path.insert(0, '${EROOT%/}$(python_get_sitedir)'); from twisted.plugin import IPlugin, getPlugins; list(getPlugins(IPlugin))"
	fi
}

pkg_postinst() {
	distutils_pkg_postinst
	python_execute_function -q update_plugin_cache
}

pkg_postrm() {
	distutils_pkg_postrm
	python_execute_function -q update_plugin_cache
}






^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-python/twisted: ChangeLog twisted-10.1.0.ebuild
@ 2010-08-18 22:36 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 5+ messages in thread
From: Markos Chandras (hwoarang) @ 2010-08-18 22:36 UTC (permalink / raw
  To: gentoo-commits

hwoarang    10/08/18 22:36:02

  Modified:             ChangeLog twisted-10.1.0.ebuild
  Log:
  Stable on amd64 wrt bug #333211
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.130                dev-python/twisted/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted/ChangeLog?rev=1.130&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted/ChangeLog?rev=1.130&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted/ChangeLog?r1=1.129&r2=1.130

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/twisted/ChangeLog,v
retrieving revision 1.129
retrieving revision 1.130
diff -u -r1.129 -r1.130
--- ChangeLog	9 Jul 2010 19:54:25 -0000	1.129
+++ ChangeLog	18 Aug 2010 22:36:02 -0000	1.130
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/twisted
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted/ChangeLog,v 1.129 2010/07/09 19:54:25 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted/ChangeLog,v 1.130 2010/08/18 22:36:02 hwoarang Exp $
+
+  18 Aug 2010; Markos Chandras <hwoarang@gentoo.org> twisted-10.1.0.ebuild:
+  Stable on amd64 wrt bug #333211
 
 *twisted-10.1.0 (09 Jul 2010)
 



1.2                  dev-python/twisted/twisted-10.1.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted/twisted-10.1.0.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted/twisted-10.1.0.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted/twisted-10.1.0.ebuild?r1=1.1&r2=1.2

Index: twisted-10.1.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/twisted/twisted-10.1.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- twisted-10.1.0.ebuild	9 Jul 2010 19:54:25 -0000	1.1
+++ twisted-10.1.0.ebuild	18 Aug 2010 22:36:02 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted/twisted-10.1.0.ebuild,v 1.1 2010/07/09 19:54:25 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted/twisted-10.1.0.ebuild,v 1.2 2010/08/18 22:36:02 hwoarang Exp $
 
 EAPI="3"
 PYTHON_DEPEND="2"
@@ -17,7 +17,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="crypt gtk serial"
 
 DEPEND=">=net-zope/zope-interface-3.0.1






^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-python/twisted: ChangeLog twisted-10.1.0.ebuild
@ 2010-10-10 19:55 Arfrever Frehtes Taifersar Arahesis (arfrever)
  0 siblings, 0 replies; 5+ messages in thread
From: Arfrever Frehtes Taifersar Arahesis (arfrever) @ 2010-10-10 19:55 UTC (permalink / raw
  To: gentoo-commits

arfrever    10/10/10 19:55:05

  Modified:             ChangeLog twisted-10.1.0.ebuild
  Log:
  Set MY_PACKAGE. Use twisted.eclass instead of distutils.eclass. Use twisted_pkg_postinst() and twisted_pkg_postrm() and avoid custom regeneration of Twisted plugin cache.
  
  (Portage version: 2.2_rc91_p7/cvs/Linux x86_64)

Revision  Changes    Path
1.131                dev-python/twisted/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted/ChangeLog?rev=1.131&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted/ChangeLog?rev=1.131&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted/ChangeLog?r1=1.130&r2=1.131

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/twisted/ChangeLog,v
retrieving revision 1.130
retrieving revision 1.131
diff -u -r1.130 -r1.131
--- ChangeLog	18 Aug 2010 22:36:02 -0000	1.130
+++ ChangeLog	10 Oct 2010 19:55:05 -0000	1.131
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/twisted
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted/ChangeLog,v 1.130 2010/08/18 22:36:02 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted/ChangeLog,v 1.131 2010/10/10 19:55:05 arfrever Exp $
+
+  10 Oct 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+  twisted-10.1.0.ebuild:
+  Set MY_PACKAGE. Use twisted.eclass instead of distutils.eclass. Use
+  twisted_pkg_postinst() and twisted_pkg_postrm() and avoid custom
+  regeneration of Twisted plugin cache.
 
   18 Aug 2010; Markos Chandras <hwoarang@gentoo.org> twisted-10.1.0.ebuild:
   Stable on amd64 wrt bug #333211



1.3                  dev-python/twisted/twisted-10.1.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted/twisted-10.1.0.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted/twisted-10.1.0.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted/twisted-10.1.0.ebuild?r1=1.2&r2=1.3

Index: twisted-10.1.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/twisted/twisted-10.1.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- twisted-10.1.0.ebuild	18 Aug 2010 22:36:02 -0000	1.2
+++ twisted-10.1.0.ebuild	10 Oct 2010 19:55:05 -0000	1.3
@@ -1,19 +1,17 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted/twisted-10.1.0.ebuild,v 1.2 2010/08/18 22:36:02 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted/twisted-10.1.0.ebuild,v 1.3 2010/10/10 19:55:05 arfrever Exp $
 
 EAPI="3"
 PYTHON_DEPEND="2"
 SUPPORT_PYTHON_ABIS="1"
 RESTRICT_PYTHON_ABIS="3.*"
+MY_PACKAGE="Core"
 
-inherit distutils eutils versionator
-
-MY_P="TwistedCore-${PV}"
+inherit eutils twisted versionator
 
 DESCRIPTION="An asynchronous networking framework written in Python"
 HOMEPAGE="http://www.twistedmatrix.com/ http://pypi.python.org/pypi/Twisted"
-SRC_URI="http://tmrc.mit.edu/mirror/${PN}/Core/$(get_version_component_range 1-2)/${MY_P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0"
@@ -26,8 +24,6 @@
 	serial? ( dev-python/pyserial )"
 RDEPEND="${DEPEND}"
 
-S="${WORKDIR}/${MY_P}"
-
 DOCS="CREDITS NEWS README"
 
 src_prepare(){
@@ -100,24 +96,3 @@
 	insinto /usr/share/zsh/site-functions
 	doins twisted/python/_twisted_zsh_stub
 }
-
-update_plugin_cache() {
-	rm -f "${EROOT%/}$(python_get_sitedir)/twisted/plugins/dropin.cache"
-
-	# Update dropin.cache only when Twisted is still installed.
-	if [[ -f "${EROOT%/}$(python_get_sitedir)/twisted/plugin.py" ]]; then
-		einfo "Regeneration of Twisted plugin cache with $(python_get_implementation) $(python_get_version)"
-		# http://twistedmatrix.com/documents/current/core/howto/plugin.html
-		"$(PYTHON)" -c "import sys; sys.path.insert(0, '${EROOT%/}$(python_get_sitedir)'); from twisted.plugin import IPlugin, getPlugins; list(getPlugins(IPlugin))"
-	fi
-}
-
-pkg_postinst() {
-	distutils_pkg_postinst
-	python_execute_function -q update_plugin_cache
-}
-
-pkg_postrm() {
-	distutils_pkg_postrm
-	python_execute_function -q update_plugin_cache
-}






^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-python/twisted: ChangeLog twisted-10.1.0.ebuild
@ 2010-10-25  2:54 Jeroen Roovers (jer)
  0 siblings, 0 replies; 5+ messages in thread
From: Jeroen Roovers (jer) @ 2010-10-25  2:54 UTC (permalink / raw
  To: gentoo-commits

jer         10/10/25 02:54:03

  Modified:             ChangeLog twisted-10.1.0.ebuild
  Log:
  Stable for HPPA (bug #333211).
  
  (Portage version: 2.2.0_alpha1/cvs/Linux i686)

Revision  Changes    Path
1.132                dev-python/twisted/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted/ChangeLog?rev=1.132&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted/ChangeLog?rev=1.132&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted/ChangeLog?r1=1.131&r2=1.132

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/twisted/ChangeLog,v
retrieving revision 1.131
retrieving revision 1.132
diff -u -r1.131 -r1.132
--- ChangeLog	10 Oct 2010 19:55:05 -0000	1.131
+++ ChangeLog	25 Oct 2010 02:54:03 -0000	1.132
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/twisted
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted/ChangeLog,v 1.131 2010/10/10 19:55:05 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted/ChangeLog,v 1.132 2010/10/25 02:54:03 jer Exp $
+
+  25 Oct 2010; Jeroen Roovers <jer@gentoo.org> twisted-10.1.0.ebuild:
+  Stable for HPPA (bug #333211).
 
   10 Oct 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
   twisted-10.1.0.ebuild:



1.4                  dev-python/twisted/twisted-10.1.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted/twisted-10.1.0.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted/twisted-10.1.0.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted/twisted-10.1.0.ebuild?r1=1.3&r2=1.4

Index: twisted-10.1.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/twisted/twisted-10.1.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- twisted-10.1.0.ebuild	10 Oct 2010 19:55:05 -0000	1.3
+++ twisted-10.1.0.ebuild	25 Oct 2010 02:54:03 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted/twisted-10.1.0.ebuild,v 1.3 2010/10/10 19:55:05 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted/twisted-10.1.0.ebuild,v 1.4 2010/10/25 02:54:03 jer Exp $
 
 EAPI="3"
 PYTHON_DEPEND="2"
@@ -15,7 +15,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="crypt gtk serial"
 
 DEPEND=">=net-zope/zope-interface-3.0.1






^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-python/twisted: ChangeLog twisted-10.1.0.ebuild
@ 2010-12-23 23:43 Thomas Kahle (tomka)
  0 siblings, 0 replies; 5+ messages in thread
From: Thomas Kahle (tomka) @ 2010-12-23 23:43 UTC (permalink / raw
  To: gentoo-commits

tomka       10/12/23 23:43:18

  Modified:             ChangeLog twisted-10.1.0.ebuild
  Log:
  x86 stable per bug 333389
  
  (Portage version: 2.1.9.25/cvs/Linux i686)

Revision  Changes    Path
1.134                dev-python/twisted/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted/ChangeLog?rev=1.134&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted/ChangeLog?rev=1.134&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted/ChangeLog?r1=1.133&r2=1.134

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/twisted/ChangeLog,v
retrieving revision 1.133
retrieving revision 1.134
diff -u -r1.133 -r1.134
--- ChangeLog	22 Dec 2010 21:27:59 -0000	1.133
+++ ChangeLog	23 Dec 2010 23:43:18 -0000	1.134
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/twisted
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted/ChangeLog,v 1.133 2010/12/22 21:27:59 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted/ChangeLog,v 1.134 2010/12/23 23:43:18 tomka Exp $
+
+  23 Dec 2010; Thomas Kahle <tomka@gentoo.org> twisted-10.1.0.ebuild:
+  x86 stable per bug 333389
 
 *twisted-10.2.0 (22 Dec 2010)
 



1.5                  dev-python/twisted/twisted-10.1.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted/twisted-10.1.0.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted/twisted-10.1.0.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted/twisted-10.1.0.ebuild?r1=1.4&r2=1.5

Index: twisted-10.1.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/twisted/twisted-10.1.0.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- twisted-10.1.0.ebuild	25 Oct 2010 02:54:03 -0000	1.4
+++ twisted-10.1.0.ebuild	23 Dec 2010 23:43:18 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted/twisted-10.1.0.ebuild,v 1.4 2010/10/25 02:54:03 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted/twisted-10.1.0.ebuild,v 1.5 2010/12/23 23:43:18 tomka Exp $
 
 EAPI="3"
 PYTHON_DEPEND="2"
@@ -15,7 +15,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="crypt gtk serial"
 
 DEPEND=">=net-zope/zope-interface-3.0.1






^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2010-12-23 23:43 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-23 23:43 [gentoo-commits] gentoo-x86 commit in dev-python/twisted: ChangeLog twisted-10.1.0.ebuild Thomas Kahle (tomka)
  -- strict thread matches above, loose matches on Subject: below --
2010-10-25  2:54 Jeroen Roovers (jer)
2010-10-10 19:55 Arfrever Frehtes Taifersar Arahesis (arfrever)
2010-08-18 22:36 Markos Chandras (hwoarang)
2010-07-09 19:54 Arfrever Frehtes Taifersar Arahesis (arfrever)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox