* [gentoo-commits] gentoo-x86 commit in dev-python/decorator: decorator-3.4.0-r1.ebuild ChangeLog
@ 2012-12-20 23:33 Michal Gorny (mgorny)
0 siblings, 0 replies; 15+ messages in thread
From: Michal Gorny (mgorny) @ 2012-12-20 23:33 UTC (permalink / raw
To: gentoo-commits
mgorny 12/12/20 23:33:47
Modified: ChangeLog
Added: decorator-3.4.0-r1.ebuild
Log:
Migrate to distutils-r1. Make tests actually fail.
(Portage version: 2.2.0_alpha149/cvs/Linux x86_64, signed Manifest commit with key 42B9401D)
Revision Changes Path
1.58 dev-python/decorator/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?rev=1.58&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?rev=1.58&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?r1=1.57&r2=1.58
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v
retrieving revision 1.57
retrieving revision 1.58
diff -u -r1.57 -r1.58
--- ChangeLog 29 Oct 2012 08:54:24 -0000 1.57
+++ ChangeLog 20 Dec 2012 23:33:47 -0000 1.58
@@ -1,6 +1,12 @@
# ChangeLog for dev-python/decorator
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v 1.57 2012/10/29 08:54:24 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v 1.58 2012/12/20 23:33:47 mgorny Exp $
+
+*decorator-3.4.0-r1 (20 Dec 2012)
+
+ 20 Dec 2012; Michał Górny <mgorny@gentoo.org> +decorator-3.4.0-r1.ebuild,
+ +files/decorator-3.4.0-test-failure-exit.patch:
+ Migrate to distutils-r1. Make tests actually fail.
*decorator-3.4.0 (29 Oct 2012)
1.1 dev-python/decorator/decorator-3.4.0-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild?rev=1.1&content-type=text/plain
Index: decorator-3.4.0-r1.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild,v 1.1 2012/12/20 23:33:47 mgorny Exp $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
inherit distutils-r1
DESCRIPTION="Simplifies the usage of decorators for the average programmer"
HOMEPAGE="http://pypi.python.org/pypi/decorator http://code.google.com/p/micheles/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
IUSE=""
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
RDEPEND=""
DOCS=( README.txt )
PATCHES=(
"${FILESDIR}"/${P}-test-failure-exit.patch
)
python_test() {
local t=documentation.py
[[ ${EPYTHON} == python3* ]] && t=documentation3.py
"${PYTHON}" ${t} || die "Tests fail with ${EPYTHON}"
}
^ permalink raw reply [flat|nested] 15+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/decorator: decorator-3.4.0-r1.ebuild ChangeLog
@ 2013-02-10 17:57 Michal Gorny (mgorny)
0 siblings, 0 replies; 15+ messages in thread
From: Michal Gorny (mgorny) @ 2013-02-10 17:57 UTC (permalink / raw
To: gentoo-commits
mgorny 13/02/10 17:57:54
Modified: decorator-3.4.0-r1.ebuild ChangeLog
Log:
Enable python3.1. The test failure does not seem important enough to disable it.
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key 42B9401D)
Revision Changes Path
1.2 dev-python/decorator/decorator-3.4.0-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild?r1=1.1&r2=1.2
Index: decorator-3.4.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- decorator-3.4.0-r1.ebuild 20 Dec 2012 23:33:47 -0000 1.1
+++ decorator-3.4.0-r1.ebuild 10 Feb 2013 17:57:53 -0000 1.2
@@ -1,9 +1,9 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild,v 1.1 2012/12/20 23:33:47 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild,v 1.2 2013/02/10 17:57:53 mgorny Exp $
EAPI=5
-PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
+PYTHON_COMPAT=( python{2_6,2_7,3_1,3_2,3_3} )
inherit distutils-r1
@@ -19,8 +19,6 @@
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
RDEPEND=""
-DOCS=( README.txt )
-
PATCHES=(
"${FILESDIR}"/${P}-test-failure-exit.patch
)
1.60 dev-python/decorator/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?rev=1.60&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?rev=1.60&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?r1=1.59&r2=1.60
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -r1.59 -r1.60
--- ChangeLog 6 Jan 2013 10:28:47 -0000 1.59
+++ ChangeLog 10 Feb 2013 17:57:53 -0000 1.60
@@ -1,6 +1,10 @@
# ChangeLog for dev-python/decorator
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v 1.59 2013/01/06 10:28:47 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v 1.60 2013/02/10 17:57:53 mgorny Exp $
+
+ 10 Feb 2013; Michał Górny <mgorny@gentoo.org> decorator-3.4.0-r1.ebuild:
+ Enable python3.1. The test failure does not seem important enough to disable
+ it.
06 Jan 2013; Markus Meier <maekke@gentoo.org> decorator-3.3.2.ebuild:
arm stable, bug #449426
^ permalink raw reply [flat|nested] 15+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/decorator: decorator-3.4.0-r1.ebuild ChangeLog
@ 2013-06-14 5:16 Ian Delaney (idella4)
0 siblings, 0 replies; 15+ messages in thread
From: Ian Delaney (idella4) @ 2013-06-14 5:16 UTC (permalink / raw
To: gentoo-commits
idella4 13/06/14 05:16:16
Modified: decorator-3.4.0-r1.ebuild ChangeLog
Log:
Add, re-add py2.5 support
(Portage version: 2.1.11.63/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Revision Changes Path
1.3 dev-python/decorator/decorator-3.4.0-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild?r1=1.2&r2=1.3
Index: decorator-3.4.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- decorator-3.4.0-r1.ebuild 10 Feb 2013 17:57:53 -0000 1.2
+++ decorator-3.4.0-r1.ebuild 14 Jun 2013 05:16:16 -0000 1.3
@@ -1,9 +1,9 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild,v 1.2 2013/02/10 17:57:53 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild,v 1.3 2013/06/14 05:16:16 idella4 Exp $
EAPI=5
-PYTHON_COMPAT=( python{2_6,2_7,3_1,3_2,3_3} )
+PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2,3_3} )
inherit distutils-r1
1.63 dev-python/decorator/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?rev=1.63&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?rev=1.63&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?r1=1.62&r2=1.63
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -r1.62 -r1.63
--- ChangeLog 24 Feb 2013 17:49:59 -0000 1.62
+++ ChangeLog 14 Jun 2013 05:16:16 -0000 1.63
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/decorator
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v 1.62 2013/02/24 17:49:59 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v 1.63 2013/06/14 05:16:16 idella4 Exp $
+
+ 14 Jun 2013; Ian Delaney <idella4@gentoo.org> decorator-3.4.0-r1.ebuild:
+ Add, re-add py2.5 support
24 Feb 2013; Agostino Sarubbo <ago@gentoo.org> decorator-3.3.2.ebuild:
Stable for sh, wrt bug #449426
^ permalink raw reply [flat|nested] 15+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/decorator: decorator-3.4.0-r1.ebuild ChangeLog
@ 2013-09-05 18:46 Michal Gorny (mgorny)
0 siblings, 0 replies; 15+ messages in thread
From: Michal Gorny (mgorny) @ 2013-09-05 18:46 UTC (permalink / raw
To: gentoo-commits
mgorny 13/09/05 18:46:39
Modified: decorator-3.4.0-r1.ebuild ChangeLog
Log:
Clean up PYTHON_COMPAT from old implementations.
(Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
Revision Changes Path
1.4 dev-python/decorator/decorator-3.4.0-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild?r1=1.3&r2=1.4
Index: decorator-3.4.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- decorator-3.4.0-r1.ebuild 14 Jun 2013 05:16:16 -0000 1.3
+++ decorator-3.4.0-r1.ebuild 5 Sep 2013 18:46:38 -0000 1.4
@@ -1,9 +1,9 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild,v 1.3 2013/06/14 05:16:16 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild,v 1.4 2013/09/05 18:46:38 mgorny Exp $
EAPI=5
-PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2,3_3} )
+PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
inherit distutils-r1
1.64 dev-python/decorator/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?rev=1.64&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?rev=1.64&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?r1=1.63&r2=1.64
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -r1.63 -r1.64
--- ChangeLog 14 Jun 2013 05:16:16 -0000 1.63
+++ ChangeLog 5 Sep 2013 18:46:39 -0000 1.64
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/decorator
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v 1.63 2013/06/14 05:16:16 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v 1.64 2013/09/05 18:46:39 mgorny Exp $
+
+ 05 Sep 2013; Michał Górny <mgorny@gentoo.org> decorator-3.4.0-r1.ebuild:
+ Clean up PYTHON_COMPAT from old implementations.
14 Jun 2013; Ian Delaney <idella4@gentoo.org> decorator-3.4.0-r1.ebuild:
Add, re-add py2.5 support
^ permalink raw reply [flat|nested] 15+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/decorator: decorator-3.4.0-r1.ebuild ChangeLog
@ 2013-11-29 22:49 Pacho Ramos (pacho)
0 siblings, 0 replies; 15+ messages in thread
From: Pacho Ramos (pacho) @ 2013-11-29 22:49 UTC (permalink / raw
To: gentoo-commits
pacho 13/11/29 22:49:18
Modified: decorator-3.4.0-r1.ebuild ChangeLog
Log:
amd64 stable, bug #488738
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Revision Changes Path
1.5 dev-python/decorator/decorator-3.4.0-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild?r1=1.4&r2=1.5
Index: decorator-3.4.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- decorator-3.4.0-r1.ebuild 5 Sep 2013 18:46:38 -0000 1.4
+++ decorator-3.4.0-r1.ebuild 29 Nov 2013 22:49:18 -0000 1.5
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild,v 1.4 2013/09/05 18:46:38 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild,v 1.5 2013/11/29 22:49:18 pacho Exp $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
@@ -13,7 +13,7 @@
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
IUSE=""
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
1.65 dev-python/decorator/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?rev=1.65&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?rev=1.65&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?r1=1.64&r2=1.65
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -r1.64 -r1.65
--- ChangeLog 5 Sep 2013 18:46:39 -0000 1.64
+++ ChangeLog 29 Nov 2013 22:49:18 -0000 1.65
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/decorator
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v 1.64 2013/09/05 18:46:39 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v 1.65 2013/11/29 22:49:18 pacho Exp $
+
+ 29 Nov 2013; Pacho Ramos <pacho@gentoo.org> decorator-3.4.0-r1.ebuild:
+ amd64 stable, bug #488738
05 Sep 2013; Michał Górny <mgorny@gentoo.org> decorator-3.4.0-r1.ebuild:
Clean up PYTHON_COMPAT from old implementations.
^ permalink raw reply [flat|nested] 15+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/decorator: decorator-3.4.0-r1.ebuild ChangeLog
@ 2013-12-07 19:21 Pacho Ramos (pacho)
0 siblings, 0 replies; 15+ messages in thread
From: Pacho Ramos (pacho) @ 2013-12-07 19:21 UTC (permalink / raw
To: gentoo-commits
pacho 13/12/07 19:21:20
Modified: decorator-3.4.0-r1.ebuild ChangeLog
Log:
x86 stable, bug #488738
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Revision Changes Path
1.6 dev-python/decorator/decorator-3.4.0-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild?r1=1.5&r2=1.6
Index: decorator-3.4.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- decorator-3.4.0-r1.ebuild 29 Nov 2013 22:49:18 -0000 1.5
+++ decorator-3.4.0-r1.ebuild 7 Dec 2013 19:21:20 -0000 1.6
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild,v 1.5 2013/11/29 22:49:18 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild,v 1.6 2013/12/07 19:21:20 pacho Exp $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
@@ -13,7 +13,7 @@
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
IUSE=""
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
1.66 dev-python/decorator/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?rev=1.66&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?rev=1.66&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?r1=1.65&r2=1.66
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -r1.65 -r1.66
--- ChangeLog 29 Nov 2013 22:49:18 -0000 1.65
+++ ChangeLog 7 Dec 2013 19:21:20 -0000 1.66
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/decorator
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v 1.65 2013/11/29 22:49:18 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v 1.66 2013/12/07 19:21:20 pacho Exp $
+
+ 07 Dec 2013; Pacho Ramos <pacho@gentoo.org> decorator-3.4.0-r1.ebuild:
+ x86 stable, bug #488738
29 Nov 2013; Pacho Ramos <pacho@gentoo.org> decorator-3.4.0-r1.ebuild:
amd64 stable, bug #488738
^ permalink raw reply [flat|nested] 15+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/decorator: decorator-3.4.0-r1.ebuild ChangeLog
@ 2014-02-16 19:47 Mike Frysinger (vapier)
0 siblings, 0 replies; 15+ messages in thread
From: Mike Frysinger (vapier) @ 2014-02-16 19:47 UTC (permalink / raw
To: gentoo-commits
vapier 14/02/16 19:47:52
Modified: decorator-3.4.0-r1.ebuild ChangeLog
Log:
Mark arm stable.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
Revision Changes Path
1.7 dev-python/decorator/decorator-3.4.0-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild?r1=1.6&r2=1.7
Index: decorator-3.4.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- decorator-3.4.0-r1.ebuild 7 Dec 2013 19:21:20 -0000 1.6
+++ decorator-3.4.0-r1.ebuild 16 Feb 2014 19:47:52 -0000 1.7
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild,v 1.6 2013/12/07 19:21:20 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild,v 1.7 2014/02/16 19:47:52 vapier Exp $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
@@ -13,7 +13,7 @@
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
IUSE=""
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
1.67 dev-python/decorator/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?rev=1.67&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?rev=1.67&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?r1=1.66&r2=1.67
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -r1.66 -r1.67
--- ChangeLog 7 Dec 2013 19:21:20 -0000 1.66
+++ ChangeLog 16 Feb 2014 19:47:52 -0000 1.67
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/decorator
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v 1.66 2013/12/07 19:21:20 pacho Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v 1.67 2014/02/16 19:47:52 vapier Exp $
+
+ 16 Feb 2014; Mike Frysinger <vapier@gentoo.org> decorator-3.4.0-r1.ebuild:
+ Mark arm stable.
07 Dec 2013; Pacho Ramos <pacho@gentoo.org> decorator-3.4.0-r1.ebuild:
x86 stable, bug #488738
^ permalink raw reply [flat|nested] 15+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/decorator: decorator-3.4.0-r1.ebuild ChangeLog
@ 2014-04-02 21:20 Patrick McLean (chutzpah)
0 siblings, 0 replies; 15+ messages in thread
From: Patrick McLean (chutzpah) @ 2014-04-02 21:20 UTC (permalink / raw
To: gentoo-commits
chutzpah 14/04/02 21:20:36
Modified: decorator-3.4.0-r1.ebuild ChangeLog
Log:
Add python3_4 support.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xE3F69979BB4B8928DA78E3D17CBF44EF)
Revision Changes Path
1.8 dev-python/decorator/decorator-3.4.0-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild?r1=1.7&r2=1.8
Index: decorator-3.4.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- decorator-3.4.0-r1.ebuild 16 Feb 2014 19:47:52 -0000 1.7
+++ decorator-3.4.0-r1.ebuild 2 Apr 2014 21:20:36 -0000 1.8
@@ -1,9 +1,9 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild,v 1.7 2014/02/16 19:47:52 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild,v 1.8 2014/04/02 21:20:36 chutzpah Exp $
EAPI=5
-PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
+PYTHON_COMPAT=( python{2_6,2_7,3_{2,3,4}} )
inherit distutils-r1
1.68 dev-python/decorator/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?rev=1.68&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?rev=1.68&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?r1=1.67&r2=1.68
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -r1.67 -r1.68
--- ChangeLog 16 Feb 2014 19:47:52 -0000 1.67
+++ ChangeLog 2 Apr 2014 21:20:36 -0000 1.68
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/decorator
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v 1.67 2014/02/16 19:47:52 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v 1.68 2014/04/02 21:20:36 chutzpah Exp $
+
+ 02 Apr 2014; Patrick McLean <chutzpah@gentoo.org> decorator-3.4.0-r1.ebuild:
+ Add python3_4 support.
16 Feb 2014; Mike Frysinger <vapier@gentoo.org> decorator-3.4.0-r1.ebuild:
Mark arm stable.
^ permalink raw reply [flat|nested] 15+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/decorator: decorator-3.4.0-r1.ebuild ChangeLog
@ 2014-09-17 19:37 Markos Chandras (hwoarang)
0 siblings, 0 replies; 15+ messages in thread
From: Markos Chandras (hwoarang) @ 2014-09-17 19:37 UTC (permalink / raw
To: gentoo-commits
hwoarang 14/09/17 19:37:03
Modified: decorator-3.4.0-r1.ebuild ChangeLog
Log:
Add ~mips
(Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 09BF4F54C2BA7F3C!)
Revision Changes Path
1.9 dev-python/decorator/decorator-3.4.0-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild?r1=1.8&r2=1.9
Index: decorator-3.4.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- decorator-3.4.0-r1.ebuild 2 Apr 2014 21:20:36 -0000 1.8
+++ decorator-3.4.0-r1.ebuild 17 Sep 2014 19:37:03 -0000 1.9
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild,v 1.8 2014/04/02 21:20:36 chutzpah Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild,v 1.9 2014/09/17 19:37:03 hwoarang Exp $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7,3_{2,3,4}} )
@@ -13,7 +13,7 @@
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
IUSE=""
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
1.69 dev-python/decorator/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?rev=1.69&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?rev=1.69&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?r1=1.68&r2=1.69
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -r1.68 -r1.69
--- ChangeLog 2 Apr 2014 21:20:36 -0000 1.68
+++ ChangeLog 17 Sep 2014 19:37:03 -0000 1.69
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/decorator
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v 1.68 2014/04/02 21:20:36 chutzpah Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v 1.69 2014/09/17 19:37:03 hwoarang Exp $
+
+ 17 Sep 2014; Markos Chandras <hwoarang@gentoo.org> decorator-3.4.0-r1.ebuild:
+ Add ~mips
02 Apr 2014; Patrick McLean <chutzpah@gentoo.org> decorator-3.4.0-r1.ebuild:
Add python3_4 support.
^ permalink raw reply [flat|nested] 15+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/decorator: decorator-3.4.0-r1.ebuild ChangeLog
@ 2015-03-07 0:16 Pacho Ramos (pacho)
0 siblings, 0 replies; 15+ messages in thread
From: Pacho Ramos (pacho) @ 2015-03-07 0:16 UTC (permalink / raw
To: gentoo-commits
pacho 15/03/07 00:16:10
Modified: decorator-3.4.0-r1.ebuild ChangeLog
Log:
ppc64 stable, bug 540290
(Portage version: 2.2.17/cvs/Linux x86_64, RepoMan options: --include-arches="ppc64", signed Manifest commit with key A188FBD4)
Revision Changes Path
1.11 dev-python/decorator/decorator-3.4.0-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild?r1=1.10&r2=1.11
Index: decorator-3.4.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- decorator-3.4.0-r1.ebuild 29 Dec 2014 16:03:27 -0000 1.10
+++ decorator-3.4.0-r1.ebuild 7 Mar 2015 00:16:10 -0000 1.11
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild,v 1.10 2014/12/29 16:03:27 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild,v 1.11 2015/03/07 00:16:10 pacho Exp $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7,3_{2,3,4}} )
@@ -13,7 +13,7 @@
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
IUSE=""
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
1.72 dev-python/decorator/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?rev=1.72&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?rev=1.72&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?r1=1.71&r2=1.72
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -r1.71 -r1.72
--- ChangeLog 26 Jan 2015 14:30:06 -0000 1.71
+++ ChangeLog 7 Mar 2015 00:16:10 -0000 1.72
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/decorator
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v 1.71 2015/01/26 14:30:06 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v 1.72 2015/03/07 00:16:10 pacho Exp $
+
+ 07 Mar 2015; Pacho Ramos <pacho@gentoo.org> decorator-3.4.0-r1.ebuild:
+ ppc64 stable, bug 540290
26 Jan 2015; Manuel Rüger <mrueg@gentoo.org> -decorator-3.3.1.ebuild:
Remove old.
^ permalink raw reply [flat|nested] 15+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/decorator: decorator-3.4.0-r1.ebuild ChangeLog
@ 2015-03-07 8:15 Pacho Ramos (pacho)
0 siblings, 0 replies; 15+ messages in thread
From: Pacho Ramos (pacho) @ 2015-03-07 8:15 UTC (permalink / raw
To: gentoo-commits
pacho 15/03/07 08:15:46
Modified: decorator-3.4.0-r1.ebuild ChangeLog
Log:
ppc stable, bug 540290
(Portage version: 2.2.17/cvs/Linux x86_64, RepoMan options: --include-arches="ppc", signed Manifest commit with key A188FBD4)
Revision Changes Path
1.12 dev-python/decorator/decorator-3.4.0-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild?r1=1.11&r2=1.12
Index: decorator-3.4.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- decorator-3.4.0-r1.ebuild 7 Mar 2015 00:16:10 -0000 1.11
+++ decorator-3.4.0-r1.ebuild 7 Mar 2015 08:15:46 -0000 1.12
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild,v 1.11 2015/03/07 00:16:10 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild,v 1.12 2015/03/07 08:15:46 pacho Exp $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7,3_{2,3,4}} )
@@ -13,7 +13,7 @@
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
IUSE=""
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
1.73 dev-python/decorator/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?rev=1.73&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?rev=1.73&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?r1=1.72&r2=1.73
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -r1.72 -r1.73
--- ChangeLog 7 Mar 2015 00:16:10 -0000 1.72
+++ ChangeLog 7 Mar 2015 08:15:46 -0000 1.73
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/decorator
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v 1.72 2015/03/07 00:16:10 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v 1.73 2015/03/07 08:15:46 pacho Exp $
+
+ 07 Mar 2015; Pacho Ramos <pacho@gentoo.org> decorator-3.4.0-r1.ebuild:
+ ppc stable, bug 540290
07 Mar 2015; Pacho Ramos <pacho@gentoo.org> decorator-3.4.0-r1.ebuild:
ppc64 stable, bug 540290
^ permalink raw reply [flat|nested] 15+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/decorator: decorator-3.4.0-r1.ebuild ChangeLog
@ 2015-04-08 8:05 Michal Gorny (mgorny)
0 siblings, 0 replies; 15+ messages in thread
From: Michal Gorny (mgorny) @ 2015-04-08 8:05 UTC (permalink / raw
To: gentoo-commits
mgorny 15/04/08 08:05:16
Modified: decorator-3.4.0-r1.ebuild ChangeLog
Log:
Drop old Python implementations
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
Revision Changes Path
1.13 dev-python/decorator/decorator-3.4.0-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild?r1=1.12&r2=1.13
Index: decorator-3.4.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- decorator-3.4.0-r1.ebuild 7 Mar 2015 08:15:46 -0000 1.12
+++ decorator-3.4.0-r1.ebuild 8 Apr 2015 08:05:15 -0000 1.13
@@ -1,9 +1,9 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild,v 1.12 2015/03/07 08:15:46 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild,v 1.13 2015/04/08 08:05:15 mgorny Exp $
EAPI=5
-PYTHON_COMPAT=( python{2_6,2_7,3_{2,3,4}} )
+PYTHON_COMPAT=( python{2_7,3_{3,4}} )
inherit distutils-r1
1.75 dev-python/decorator/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?rev=1.75&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?rev=1.75&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?r1=1.74&r2=1.75
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -r1.74 -r1.75
--- ChangeLog 4 Apr 2015 09:40:07 -0000 1.74
+++ ChangeLog 8 Apr 2015 08:05:16 -0000 1.75
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/decorator
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v 1.74 2015/04/04 09:40:07 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v 1.75 2015/04/08 08:05:16 mgorny Exp $
+
+ 08 Apr 2015; Michał Górny <mgorny@gentoo.org> decorator-3.4.0-r1.ebuild:
+ Drop old Python implementations
*decorator-3.4.2 (04 Apr 2015)
^ permalink raw reply [flat|nested] 15+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/decorator: decorator-3.4.0-r1.ebuild ChangeLog
@ 2015-04-13 8:56 Agostino Sarubbo (ago)
0 siblings, 0 replies; 15+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-04-13 8:56 UTC (permalink / raw
To: gentoo-commits
ago 15/04/13 08:56:43
Modified: decorator-3.4.0-r1.ebuild ChangeLog
Log:
Stable for alpha, wrt bug #543038
(Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="alpha", signed Manifest commit with key 7194459F)
Revision Changes Path
1.14 dev-python/decorator/decorator-3.4.0-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild?r1=1.13&r2=1.14
Index: decorator-3.4.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- decorator-3.4.0-r1.ebuild 8 Apr 2015 08:05:15 -0000 1.13
+++ decorator-3.4.0-r1.ebuild 13 Apr 2015 08:56:43 -0000 1.14
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild,v 1.13 2015/04/08 08:05:15 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild,v 1.14 2015/04/13 08:56:43 ago Exp $
EAPI=5
PYTHON_COMPAT=( python{2_7,3_{3,4}} )
@@ -13,7 +13,7 @@
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
IUSE=""
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
1.76 dev-python/decorator/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?rev=1.76&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?rev=1.76&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?r1=1.75&r2=1.76
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -r1.75 -r1.76
--- ChangeLog 8 Apr 2015 08:05:16 -0000 1.75
+++ ChangeLog 13 Apr 2015 08:56:43 -0000 1.76
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/decorator
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v 1.75 2015/04/08 08:05:16 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v 1.76 2015/04/13 08:56:43 ago Exp $
+
+ 13 Apr 2015; Agostino Sarubbo <ago@gentoo.org> decorator-3.4.0-r1.ebuild:
+ Stable for alpha, wrt bug #543038
08 Apr 2015; Michał Górny <mgorny@gentoo.org> decorator-3.4.0-r1.ebuild:
Drop old Python implementations
^ permalink raw reply [flat|nested] 15+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/decorator: decorator-3.4.0-r1.ebuild ChangeLog
@ 2015-04-14 12:13 Agostino Sarubbo (ago)
0 siblings, 0 replies; 15+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-04-14 12:13 UTC (permalink / raw
To: gentoo-commits
ago 15/04/14 12:13:39
Modified: decorator-3.4.0-r1.ebuild ChangeLog
Log:
Stable for ia64, wrt bug #543038
(Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="ia64", signed Manifest commit with key 7194459F)
Revision Changes Path
1.15 dev-python/decorator/decorator-3.4.0-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild?rev=1.15&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild?rev=1.15&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild?r1=1.14&r2=1.15
Index: decorator-3.4.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- decorator-3.4.0-r1.ebuild 13 Apr 2015 08:56:43 -0000 1.14
+++ decorator-3.4.0-r1.ebuild 14 Apr 2015 12:13:39 -0000 1.15
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild,v 1.14 2015/04/13 08:56:43 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild,v 1.15 2015/04/14 12:13:39 ago Exp $
EAPI=5
PYTHON_COMPAT=( python{2_7,3_{3,4}} )
@@ -13,7 +13,7 @@
LICENSE="BSD"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
IUSE=""
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
1.77 dev-python/decorator/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?rev=1.77&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?rev=1.77&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?r1=1.76&r2=1.77
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v
retrieving revision 1.76
retrieving revision 1.77
diff -u -r1.76 -r1.77
--- ChangeLog 13 Apr 2015 08:56:43 -0000 1.76
+++ ChangeLog 14 Apr 2015 12:13:39 -0000 1.77
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/decorator
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v 1.76 2015/04/13 08:56:43 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v 1.77 2015/04/14 12:13:39 ago Exp $
+
+ 14 Apr 2015; Agostino Sarubbo <ago@gentoo.org> decorator-3.4.0-r1.ebuild:
+ Stable for ia64, wrt bug #543038
13 Apr 2015; Agostino Sarubbo <ago@gentoo.org> decorator-3.4.0-r1.ebuild:
Stable for alpha, wrt bug #543038
^ permalink raw reply [flat|nested] 15+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/decorator: decorator-3.4.0-r1.ebuild ChangeLog
@ 2015-06-02 5:10 Jack Morgan (jmorgan)
0 siblings, 0 replies; 15+ messages in thread
From: Jack Morgan (jmorgan) @ 2015-06-02 5:10 UTC (permalink / raw
To: gentoo-commits
jmorgan 15/06/02 05:10:04
Modified: decorator-3.4.0-r1.ebuild ChangeLog
Log:
sparc stable wrt bug #540290
(Portage version: 2.2.18/cvs/Linux x86_64, RepoMan options: --include-arches="sparc", signed Manifest commit with key )
Revision Changes Path
1.16 dev-python/decorator/decorator-3.4.0-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild?rev=1.16&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild?rev=1.16&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild?r1=1.15&r2=1.16
Index: decorator-3.4.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- decorator-3.4.0-r1.ebuild 14 Apr 2015 12:13:39 -0000 1.15
+++ decorator-3.4.0-r1.ebuild 2 Jun 2015 05:10:04 -0000 1.16
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild,v 1.15 2015/04/14 12:13:39 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/decorator-3.4.0-r1.ebuild,v 1.16 2015/06/02 05:10:04 jmorgan Exp $
EAPI=5
PYTHON_COMPAT=( python{2_7,3_{3,4}} )
@@ -13,7 +13,7 @@
LICENSE="BSD"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
IUSE=""
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
1.78 dev-python/decorator/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?rev=1.78&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?rev=1.78&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/decorator/ChangeLog?r1=1.77&r2=1.78
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v
retrieving revision 1.77
retrieving revision 1.78
diff -u -r1.77 -r1.78
--- ChangeLog 14 Apr 2015 12:13:39 -0000 1.77
+++ ChangeLog 2 Jun 2015 05:10:04 -0000 1.78
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/decorator
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v 1.77 2015/04/14 12:13:39 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v 1.78 2015/06/02 05:10:04 jmorgan Exp $
+
+ 02 Jun 2015; Jack Morgan <jmorgan@gentoo.org> decorator-3.4.0-r1.ebuild:
+ sparc stable wrt bug #540290
14 Apr 2015; Agostino Sarubbo <ago@gentoo.org> decorator-3.4.0-r1.ebuild:
Stable for ia64, wrt bug #543038
^ permalink raw reply [flat|nested] 15+ messages in thread
end of thread, other threads:[~2015-06-02 5:10 UTC | newest]
Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-20 23:33 [gentoo-commits] gentoo-x86 commit in dev-python/decorator: decorator-3.4.0-r1.ebuild ChangeLog Michal Gorny (mgorny)
-- strict thread matches above, loose matches on Subject: below --
2013-02-10 17:57 Michal Gorny (mgorny)
2013-06-14 5:16 Ian Delaney (idella4)
2013-09-05 18:46 Michal Gorny (mgorny)
2013-11-29 22:49 Pacho Ramos (pacho)
2013-12-07 19:21 Pacho Ramos (pacho)
2014-02-16 19:47 Mike Frysinger (vapier)
2014-04-02 21:20 Patrick McLean (chutzpah)
2014-09-17 19:37 Markos Chandras (hwoarang)
2015-03-07 0:16 Pacho Ramos (pacho)
2015-03-07 8:15 Pacho Ramos (pacho)
2015-04-08 8:05 Michal Gorny (mgorny)
2015-04-13 8:56 Agostino Sarubbo (ago)
2015-04-14 12:13 Agostino Sarubbo (ago)
2015-06-02 5:10 Jack Morgan (jmorgan)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox