* [gentoo-commits] gentoo-x86 commit in app-text/pytextile: pytextile-2.1.8.ebuild ChangeLog
@ 2014-05-29 15:32 Ian Delaney (idella4)
0 siblings, 0 replies; 8+ messages in thread
From: Ian Delaney (idella4) @ 2014-05-29 15:32 UTC (permalink / raw
To: gentoo-commits
idella4 14/05/29 15:32:47
Modified: ChangeLog
Added: pytextile-2.1.8.ebuild
Log:
bump; add py3 pypy support, test phase
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Revision Changes Path
1.31 app-text/pytextile/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/ChangeLog?rev=1.31&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/ChangeLog?rev=1.31&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/ChangeLog?r1=1.30&r2=1.31
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/pytextile/ChangeLog,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- ChangeLog 9 Apr 2012 03:41:03 -0000 1.30
+++ ChangeLog 29 May 2014 15:32:47 -0000 1.31
@@ -1,6 +1,11 @@
# ChangeLog for app-text/pytextile
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/pytextile/ChangeLog,v 1.30 2012/04/09 03:41:03 floppym Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/pytextile/ChangeLog,v 1.31 2014/05/29 15:32:47 idella4 Exp $
+
+*pytextile-2.1.8 (29 May 2014)
+
+ 29 May 2014; Ian Delaney <idella4@gentoo.org> +pytextile-2.1.8.ebuild:
+ bump; add py3 pypy support, test phase
09 Apr 2012; Mike Gilbert <floppym@gentoo.org> -pytextile-2.1.4.ebuild,
pytextile-2.1.5.ebuild:
@@ -112,4 +117,3 @@
+pytextile-2.0.10.ebuild:
New ebuild, closes bug #92151.
Thanks to Tyson Burghardt <tysonburghardt@sbcglobal.net> for initial input.
-
1.1 app-text/pytextile/pytextile-2.1.8.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/pytextile-2.1.8.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/pytextile-2.1.8.ebuild?rev=1.1&content-type=text/plain
Index: pytextile-2.1.8.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/pytextile/pytextile-2.1.8.ebuild,v 1.1 2014/05/29 15:32:47 idella4 Exp $
EAPI=5
PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
inherit distutils-r1
MY_PN="textile"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="A Python implementation of Textile, Dean Allen's Human Text Generator for creating (X)HTML."
HOMEPAGE="https://github.com/ikirudennis/python-textile"
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="test"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
test? ( dev-python/nose[${PYTHON_USEDEP}] )"
RDEPEND=""
S="${WORKDIR}/${MY_P}"
python_prepare_all() {
# https://github.com/ikirudennis/python-textile/issues/6
sed -e s':testSanitize:_&:' -i textile/tests/__init__.py || die
distutils-r1_python_prepare_all
}
python_test() {
nosetests textile/tests/ || die "Tests failed under ${EPYTHON}"
}
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-text/pytextile: pytextile-2.1.8.ebuild ChangeLog
@ 2014-05-31 13:55 Ian Delaney (idella4)
0 siblings, 0 replies; 8+ messages in thread
From: Ian Delaney (idella4) @ 2014-05-31 13:55 UTC (permalink / raw
To: gentoo-commits
idella4 14/05/31 13:55:42
Modified: pytextile-2.1.8.ebuild ChangeLog
Log:
add fix to test failings noted by Arfrever, fix typo
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Revision Changes Path
1.2 app-text/pytextile/pytextile-2.1.8.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/pytextile-2.1.8.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/pytextile-2.1.8.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/pytextile-2.1.8.ebuild?r1=1.1&r2=1.2
Index: pytextile-2.1.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/pytextile/pytextile-2.1.8.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- pytextile-2.1.8.ebuild 29 May 2014 15:32:47 -0000 1.1
+++ pytextile-2.1.8.ebuild 31 May 2014 13:55:42 -0000 1.2
@@ -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/app-text/pytextile/pytextile-2.1.8.ebuild,v 1.1 2014/05/29 15:32:47 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/pytextile/pytextile-2.1.8.ebuild,v 1.2 2014/05/31 13:55:42 idella4 Exp $
EAPI=5
PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
@@ -28,7 +28,9 @@
python_prepare_all() {
# https://github.com/ikirudennis/python-textile/issues/6
- sed -e s':testSanitize:_&:' -i textile/tests/__init__.py || die
+ sed -e 's:testSanitize:_&:' -i textile/tests/__init__.py || die
+ # This resolves a nasty race condition noted and observed by Arfrever
+ sed -e 's:with-id = 1::' -i setup.cfg || die
distutils-r1_python_prepare_all
}
1.32 app-text/pytextile/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/ChangeLog?rev=1.32&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/ChangeLog?rev=1.32&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/ChangeLog?r1=1.31&r2=1.32
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/pytextile/ChangeLog,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- ChangeLog 29 May 2014 15:32:47 -0000 1.31
+++ ChangeLog 31 May 2014 13:55:42 -0000 1.32
@@ -1,6 +1,9 @@
# ChangeLog for app-text/pytextile
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/pytextile/ChangeLog,v 1.31 2014/05/29 15:32:47 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/pytextile/ChangeLog,v 1.32 2014/05/31 13:55:42 idella4 Exp $
+
+ 31 May 2014; Ian Delaney <idella4@gentoo.org> pytextile-2.1.8.ebuild:
+ add fix to test failings noted by Arfrever, fix typo
*pytextile-2.1.8 (29 May 2014)
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-text/pytextile: pytextile-2.1.8.ebuild ChangeLog
@ 2014-07-07 3:32 Ian Delaney (idella4)
0 siblings, 0 replies; 8+ messages in thread
From: Ian Delaney (idella4) @ 2014-07-07 3:32 UTC (permalink / raw
To: gentoo-commits
idella4 14/07/07 03:32:55
Modified: pytextile-2.1.8.ebuild ChangeLog
Log:
patch to fix broken test, update ebuild accordingly
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Revision Changes Path
1.3 app-text/pytextile/pytextile-2.1.8.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/pytextile-2.1.8.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/pytextile-2.1.8.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/pytextile-2.1.8.ebuild?r1=1.2&r2=1.3
Index: pytextile-2.1.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/pytextile/pytextile-2.1.8.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- pytextile-2.1.8.ebuild 31 May 2014 13:55:42 -0000 1.2
+++ pytextile-2.1.8.ebuild 7 Jul 2014 03:32:55 -0000 1.3
@@ -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/app-text/pytextile/pytextile-2.1.8.ebuild,v 1.2 2014/05/31 13:55:42 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/pytextile/pytextile-2.1.8.ebuild,v 1.3 2014/07/07 03:32:55 idella4 Exp $
EAPI=5
PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
@@ -26,9 +26,9 @@
S="${WORKDIR}/${MY_P}"
+PATCHES=( "${FILESDIR}"/${P}-sanitizer.patch )
+
python_prepare_all() {
- # https://github.com/ikirudennis/python-textile/issues/6
- sed -e 's:testSanitize:_&:' -i textile/tests/__init__.py || die
# This resolves a nasty race condition noted and observed by Arfrever
sed -e 's:with-id = 1::' -i setup.cfg || die
distutils-r1_python_prepare_all
1.33 app-text/pytextile/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/ChangeLog?rev=1.33&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/ChangeLog?rev=1.33&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/ChangeLog?r1=1.32&r2=1.33
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/pytextile/ChangeLog,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- ChangeLog 31 May 2014 13:55:42 -0000 1.32
+++ ChangeLog 7 Jul 2014 03:32:55 -0000 1.33
@@ -1,6 +1,10 @@
# ChangeLog for app-text/pytextile
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/pytextile/ChangeLog,v 1.32 2014/05/31 13:55:42 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/pytextile/ChangeLog,v 1.33 2014/07/07 03:32:55 idella4 Exp $
+
+ 07 Jul 2014; Ian Delaney <idella4@gentoo.org>
+ +files/pytextile-2.1.8-sanitizer.patch, pytextile-2.1.8.ebuild:
+ patch to fix broken test, update ebuild accordingly
31 May 2014; Ian Delaney <idella4@gentoo.org> pytextile-2.1.8.ebuild:
add fix to test failings noted by Arfrever, fix typo
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-text/pytextile: pytextile-2.1.8.ebuild ChangeLog
@ 2014-10-30 14:05 Agostino Sarubbo (ago)
0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-10-30 14:05 UTC (permalink / raw
To: gentoo-commits
ago 14/10/30 14:05:01
Modified: pytextile-2.1.8.ebuild ChangeLog
Log:
Stable for amd64, wrt bug #527394
(Portage version: 2.2.8-r2/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key 7194459F)
Revision Changes Path
1.5 app-text/pytextile/pytextile-2.1.8.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/pytextile-2.1.8.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/pytextile-2.1.8.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/pytextile-2.1.8.ebuild?r1=1.4&r2=1.5
Index: pytextile-2.1.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/pytextile/pytextile-2.1.8.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- pytextile-2.1.8.ebuild 10 Aug 2014 18:30:21 -0000 1.4
+++ pytextile-2.1.8.ebuild 30 Oct 2014 14:05:01 -0000 1.5
@@ -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/app-text/pytextile/pytextile-2.1.8.ebuild,v 1.4 2014/08/10 18:30:21 slyfox Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/pytextile/pytextile-2.1.8.ebuild,v 1.5 2014/10/30 14:05:01 ago Exp $
EAPI=5
PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
@@ -16,7 +16,7 @@
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="amd64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="test"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
1.36 app-text/pytextile/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/ChangeLog?rev=1.36&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/ChangeLog?rev=1.36&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/ChangeLog?r1=1.35&r2=1.36
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/pytextile/ChangeLog,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- ChangeLog 29 Oct 2014 15:56:21 -0000 1.35
+++ ChangeLog 30 Oct 2014 14:05:01 -0000 1.36
@@ -1,6 +1,9 @@
# ChangeLog for app-text/pytextile
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/pytextile/ChangeLog,v 1.35 2014/10/29 15:56:21 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/pytextile/ChangeLog,v 1.36 2014/10/30 14:05:01 ago Exp $
+
+ 30 Oct 2014; Agostino Sarubbo <ago@gentoo.org> pytextile-2.1.8.ebuild:
+ Stable for amd64, wrt bug #527394
*pytextile-2.2.1 (29 Oct 2014)
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-text/pytextile: pytextile-2.1.8.ebuild ChangeLog
@ 2014-10-31 16:00 Agostino Sarubbo (ago)
0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-10-31 16:00 UTC (permalink / raw
To: gentoo-commits
ago 14/10/31 16:00:40
Modified: pytextile-2.1.8.ebuild ChangeLog
Log:
Stable for ppc64, wrt bug #527394
(Portage version: 2.2.8-r2/cvs/Linux x86_64, RepoMan options: --include-arches="ppc64", signed Manifest commit with key 7194459F)
Revision Changes Path
1.6 app-text/pytextile/pytextile-2.1.8.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/pytextile-2.1.8.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/pytextile-2.1.8.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/pytextile-2.1.8.ebuild?r1=1.5&r2=1.6
Index: pytextile-2.1.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/pytextile/pytextile-2.1.8.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- pytextile-2.1.8.ebuild 30 Oct 2014 14:05:01 -0000 1.5
+++ pytextile-2.1.8.ebuild 31 Oct 2014 16:00:40 -0000 1.6
@@ -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/app-text/pytextile/pytextile-2.1.8.ebuild,v 1.5 2014/10/30 14:05:01 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/pytextile/pytextile-2.1.8.ebuild,v 1.6 2014/10/31 16:00:40 ago Exp $
EAPI=5
PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
@@ -16,7 +16,7 @@
LICENSE="BSD"
SLOT="0"
-KEYWORDS="amd64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="amd64 ~ppc ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="test"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
1.37 app-text/pytextile/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/ChangeLog?rev=1.37&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/ChangeLog?rev=1.37&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/ChangeLog?r1=1.36&r2=1.37
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/pytextile/ChangeLog,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- ChangeLog 30 Oct 2014 14:05:01 -0000 1.36
+++ ChangeLog 31 Oct 2014 16:00:40 -0000 1.37
@@ -1,6 +1,9 @@
# ChangeLog for app-text/pytextile
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/pytextile/ChangeLog,v 1.36 2014/10/30 14:05:01 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/pytextile/ChangeLog,v 1.37 2014/10/31 16:00:40 ago Exp $
+
+ 31 Oct 2014; Agostino Sarubbo <ago@gentoo.org> pytextile-2.1.8.ebuild:
+ Stable for ppc64, wrt bug #527394
30 Oct 2014; Agostino Sarubbo <ago@gentoo.org> pytextile-2.1.8.ebuild:
Stable for amd64, wrt bug #527394
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-text/pytextile: pytextile-2.1.8.ebuild ChangeLog
@ 2014-11-01 17:53 Agostino Sarubbo (ago)
0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-11-01 17:53 UTC (permalink / raw
To: gentoo-commits
ago 14/11/01 17:53:59
Modified: pytextile-2.1.8.ebuild ChangeLog
Log:
Stable for ppc, wrt bug #527394
(Portage version: 2.2.8-r2/cvs/Linux x86_64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)
Revision Changes Path
1.7 app-text/pytextile/pytextile-2.1.8.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/pytextile-2.1.8.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/pytextile-2.1.8.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/pytextile-2.1.8.ebuild?r1=1.6&r2=1.7
Index: pytextile-2.1.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/pytextile/pytextile-2.1.8.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- pytextile-2.1.8.ebuild 31 Oct 2014 16:00:40 -0000 1.6
+++ pytextile-2.1.8.ebuild 1 Nov 2014 17:53:59 -0000 1.7
@@ -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/app-text/pytextile/pytextile-2.1.8.ebuild,v 1.6 2014/10/31 16:00:40 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/pytextile/pytextile-2.1.8.ebuild,v 1.7 2014/11/01 17:53:59 ago Exp $
EAPI=5
PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
@@ -16,7 +16,7 @@
LICENSE="BSD"
SLOT="0"
-KEYWORDS="amd64 ~ppc ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="amd64 ppc ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="test"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
1.38 app-text/pytextile/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/ChangeLog?rev=1.38&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/ChangeLog?rev=1.38&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/ChangeLog?r1=1.37&r2=1.38
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/pytextile/ChangeLog,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- ChangeLog 31 Oct 2014 16:00:40 -0000 1.37
+++ ChangeLog 1 Nov 2014 17:53:59 -0000 1.38
@@ -1,6 +1,9 @@
# ChangeLog for app-text/pytextile
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/pytextile/ChangeLog,v 1.37 2014/10/31 16:00:40 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/pytextile/ChangeLog,v 1.38 2014/11/01 17:53:59 ago Exp $
+
+ 01 Nov 2014; Agostino Sarubbo <ago@gentoo.org> pytextile-2.1.8.ebuild:
+ Stable for ppc, wrt bug #527394
31 Oct 2014; Agostino Sarubbo <ago@gentoo.org> pytextile-2.1.8.ebuild:
Stable for ppc64, wrt bug #527394
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-text/pytextile: pytextile-2.1.8.ebuild ChangeLog
@ 2014-11-03 9:42 Agostino Sarubbo (ago)
0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-11-03 9:42 UTC (permalink / raw
To: gentoo-commits
ago 14/11/03 09:42:42
Modified: pytextile-2.1.8.ebuild ChangeLog
Log:
Stable for x86, wrt bug #527394
(Portage version: 2.2.8-r2/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key 7194459F)
Revision Changes Path
1.8 app-text/pytextile/pytextile-2.1.8.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/pytextile-2.1.8.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/pytextile-2.1.8.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/pytextile-2.1.8.ebuild?r1=1.7&r2=1.8
Index: pytextile-2.1.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/pytextile/pytextile-2.1.8.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- pytextile-2.1.8.ebuild 1 Nov 2014 17:53:59 -0000 1.7
+++ pytextile-2.1.8.ebuild 3 Nov 2014 09:42:42 -0000 1.8
@@ -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/app-text/pytextile/pytextile-2.1.8.ebuild,v 1.7 2014/11/01 17:53:59 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/pytextile/pytextile-2.1.8.ebuild,v 1.8 2014/11/03 09:42:42 ago Exp $
EAPI=5
PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
@@ -16,7 +16,7 @@
LICENSE="BSD"
SLOT="0"
-KEYWORDS="amd64 ppc ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="amd64 ppc ppc64 ~sparc x86 ~x86-fbsd"
IUSE="test"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
1.39 app-text/pytextile/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/ChangeLog?rev=1.39&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/ChangeLog?rev=1.39&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/ChangeLog?r1=1.38&r2=1.39
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/pytextile/ChangeLog,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- ChangeLog 1 Nov 2014 17:53:59 -0000 1.38
+++ ChangeLog 3 Nov 2014 09:42:42 -0000 1.39
@@ -1,6 +1,9 @@
# ChangeLog for app-text/pytextile
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/pytextile/ChangeLog,v 1.38 2014/11/01 17:53:59 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/pytextile/ChangeLog,v 1.39 2014/11/03 09:42:42 ago Exp $
+
+ 03 Nov 2014; Agostino Sarubbo <ago@gentoo.org> pytextile-2.1.8.ebuild:
+ Stable for x86, wrt bug #527394
01 Nov 2014; Agostino Sarubbo <ago@gentoo.org> pytextile-2.1.8.ebuild:
Stable for ppc, wrt bug #527394
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-text/pytextile: pytextile-2.1.8.ebuild ChangeLog
@ 2014-11-04 9:27 Agostino Sarubbo (ago)
0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-11-04 9:27 UTC (permalink / raw
To: gentoo-commits
ago 14/11/04 09:27:16
Modified: pytextile-2.1.8.ebuild ChangeLog
Log:
Stable for sparc, wrt bug #527394
(Portage version: 2.2.8-r2/cvs/Linux x86_64, RepoMan options: --include-arches="sparc", signed Manifest commit with key 7194459F)
Revision Changes Path
1.9 app-text/pytextile/pytextile-2.1.8.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/pytextile-2.1.8.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/pytextile-2.1.8.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/pytextile-2.1.8.ebuild?r1=1.8&r2=1.9
Index: pytextile-2.1.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/pytextile/pytextile-2.1.8.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- pytextile-2.1.8.ebuild 3 Nov 2014 09:42:42 -0000 1.8
+++ pytextile-2.1.8.ebuild 4 Nov 2014 09:27:16 -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/app-text/pytextile/pytextile-2.1.8.ebuild,v 1.8 2014/11/03 09:42:42 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/pytextile/pytextile-2.1.8.ebuild,v 1.9 2014/11/04 09:27:16 ago Exp $
EAPI=5
PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
@@ -16,7 +16,7 @@
LICENSE="BSD"
SLOT="0"
-KEYWORDS="amd64 ppc ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="amd64 ppc ppc64 sparc x86 ~x86-fbsd"
IUSE="test"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
1.40 app-text/pytextile/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/ChangeLog?rev=1.40&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/ChangeLog?rev=1.40&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/ChangeLog?r1=1.39&r2=1.40
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/pytextile/ChangeLog,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- ChangeLog 3 Nov 2014 09:42:42 -0000 1.39
+++ ChangeLog 4 Nov 2014 09:27:16 -0000 1.40
@@ -1,6 +1,9 @@
# ChangeLog for app-text/pytextile
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/pytextile/ChangeLog,v 1.39 2014/11/03 09:42:42 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/pytextile/ChangeLog,v 1.40 2014/11/04 09:27:16 ago Exp $
+
+ 04 Nov 2014; Agostino Sarubbo <ago@gentoo.org> pytextile-2.1.8.ebuild:
+ Stable for sparc, wrt bug #527394
03 Nov 2014; Agostino Sarubbo <ago@gentoo.org> pytextile-2.1.8.ebuild:
Stable for x86, wrt bug #527394
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2014-11-04 9:27 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-30 14:05 [gentoo-commits] gentoo-x86 commit in app-text/pytextile: pytextile-2.1.8.ebuild ChangeLog Agostino Sarubbo (ago)
-- strict thread matches above, loose matches on Subject: below --
2014-11-04 9:27 Agostino Sarubbo (ago)
2014-11-03 9:42 Agostino Sarubbo (ago)
2014-11-01 17:53 Agostino Sarubbo (ago)
2014-10-31 16:00 Agostino Sarubbo (ago)
2014-07-07 3:32 Ian Delaney (idella4)
2014-05-31 13:55 Ian Delaney (idella4)
2014-05-29 15:32 Ian Delaney (idella4)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox