public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-python/google-apputils/
@ 2015-09-27 12:50 Mike Gilbert
  0 siblings, 0 replies; 17+ messages in thread
From: Mike Gilbert @ 2015-09-27 12:50 UTC (permalink / raw
  To: gentoo-commits

commit:     7d482d7eae4fd3b807a7a4a4ebbf09cb9e25700d
Author:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 27 12:49:12 2015 +0000
Commit:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Sun Sep 27 12:49:12 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d482d7e

dev-python/google-apputils: Fix permissions on unpacked files

Bug: https://bugs.gentoo.org/561266

Package-Manager: portage-2.2.22_p3

 ...google-apputils-0.4.0.ebuild => google-apputils-0.4.0-r1.ebuild} | 6 ++++++
 ...google-apputils-0.4.2.ebuild => google-apputils-0.4.2-r1.ebuild} | 6 ++++++
 2 files changed, 12 insertions(+)

diff --git a/dev-python/google-apputils/google-apputils-0.4.0.ebuild b/dev-python/google-apputils/google-apputils-0.4.0-r1.ebuild
similarity index 91%
rename from dev-python/google-apputils/google-apputils-0.4.0.ebuild
rename to dev-python/google-apputils/google-apputils-0.4.0-r1.ebuild
index a285ff3..4ed6025 100644
--- a/dev-python/google-apputils/google-apputils-0.4.0.ebuild
+++ b/dev-python/google-apputils/google-apputils-0.4.0-r1.ebuild
@@ -25,6 +25,12 @@ DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
 		dev-python/mox[${PYTHON_USEDEP}] )"
 # version borders needed are already confluent with versions in the tree
 
+src_unpack() {
+	default
+	find ${P} -type d -exec chmod 0755 {} + || die
+	find ${P} -type f -exec chmod 0644 {} + || die
+}
+
 python_prepare_all() {
 	# https://code.google.com/p/google-apputils-python/source/detail?r=12
 	# This version bordering is long out of date and wrong since end of March 2012!

diff --git a/dev-python/google-apputils/google-apputils-0.4.2.ebuild b/dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild
similarity index 89%
rename from dev-python/google-apputils/google-apputils-0.4.2.ebuild
rename to dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild
index 055a248..613b4dc 100644
--- a/dev-python/google-apputils/google-apputils-0.4.2.ebuild
+++ b/dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild
@@ -24,6 +24,12 @@ RDEPEND="
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
 	test? ( ${RDEPEND} dev-python/mox[${PYTHON_USEDEP}] )"
 
+src_unpack() {
+	default
+	find ${P} -type d -exec chmod 0755 {} + || die
+	find ${P} -type f -exec chmod 0644 {} + || die
+}
+
 python_test() {
 	# These yield 2 fails which are in fact expected errors run from a shell script!
 	# They seemingly have no immediate mechanism to exit 0 in an expected fail style.


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/google-apputils/
@ 2015-09-30 16:28 Mike Gilbert
  0 siblings, 0 replies; 17+ messages in thread
From: Mike Gilbert @ 2015-09-30 16:28 UTC (permalink / raw
  To: gentoo-commits

commit:     e050af8811e367c50e810b35aa7139fcdabdcd9c
Author:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 30 16:26:43 2015 +0000
Commit:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Wed Sep 30 16:28:03 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e050af88

dev-python/google-apputils: Simplify permissions fix

Package-Manager: portage-2.2.22_p3

 dev-python/google-apputils/google-apputils-0.4.0-r1.ebuild | 3 +--
 dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild | 3 +--
 2 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/dev-python/google-apputils/google-apputils-0.4.0-r1.ebuild b/dev-python/google-apputils/google-apputils-0.4.0-r1.ebuild
index 4ed6025..7b78e53 100644
--- a/dev-python/google-apputils/google-apputils-0.4.0-r1.ebuild
+++ b/dev-python/google-apputils/google-apputils-0.4.0-r1.ebuild
@@ -27,8 +27,7 @@ DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
 
 src_unpack() {
 	default
-	find ${P} -type d -exec chmod 0755 {} + || die
-	find ${P} -type f -exec chmod 0644 {} + || die
+	chmod -R a+rX,u+w,g-w,o-w ${P} || die
 }
 
 python_prepare_all() {

diff --git a/dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild b/dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild
index 613b4dc..1e38908 100644
--- a/dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild
+++ b/dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild
@@ -26,8 +26,7 @@ DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
 
 src_unpack() {
 	default
-	find ${P} -type d -exec chmod 0755 {} + || die
-	find ${P} -type f -exec chmod 0644 {} + || die
+	chmod -R a+rX,u+w,g-w,o-w ${P} || die
 }
 
 python_test() {


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/google-apputils/
@ 2015-11-18 10:31 Agostino Sarubbo
  0 siblings, 0 replies; 17+ messages in thread
From: Agostino Sarubbo @ 2015-11-18 10:31 UTC (permalink / raw
  To: gentoo-commits

commit:     7cfa6d5e0f225c16fd78cd71b3351e39465c39b5
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 18 10:30:46 2015 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Wed Nov 18 10:30:46 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7cfa6d5e

dev-python/google-apputils: ia64 stable wrt bug #519772

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="ia64"

 dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild b/dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild
index 1e38908..47c8149 100644
--- a/dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild
+++ b/dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc64 ~s390 ~sh ~x86"
+KEYWORDS="alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc64 ~s390 ~sh ~x86"
 IUSE="test"
 
 RDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/google-apputils/
@ 2016-03-28 19:11 Mike Frysinger
  0 siblings, 0 replies; 17+ messages in thread
From: Mike Frysinger @ 2016-03-28 19:11 UTC (permalink / raw
  To: gentoo-commits

commit:     40e378f85d855211edff175619f789a3bed24641
Author:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 28 18:50:56 2016 +0000
Commit:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Mon Mar 28 19:10:57 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40e378f8

dev-python/google-apputils: note py3 compat

 dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild b/dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild
index 47c8149..23942f7 100644
--- a/dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild
+++ b/dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild
@@ -4,7 +4,8 @@
 
 EAPI="5"
 
-PYTHON_COMPAT=( python2_7 )	# Doesn't yet support py3
+# Python 3: https://github.com/google/google-apputils/issues/9
+PYTHON_COMPAT=( python2_7 )
 
 inherit distutils-r1
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/google-apputils/
@ 2016-04-21  5:28 Mike Frysinger
  0 siblings, 0 replies; 17+ messages in thread
From: Mike Frysinger @ 2016-04-21  5:28 UTC (permalink / raw
  To: gentoo-commits

commit:     5a12109f152a42ef45544699b6f67a9a3e8ff8d5
Author:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 21 05:28:20 2016 +0000
Commit:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Thu Apr 21 05:28:20 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a12109f

dev-python/google-apputils: add ppc/sparc love

 dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild b/dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild
index 23942f7..d8fe0d0 100644
--- a/dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild
+++ b/dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc64 ~s390 ~sh ~x86"
+KEYWORDS="alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
 IUSE="test"
 
 RDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/google-apputils/
@ 2016-11-24  3:38 Mike Gilbert
  0 siblings, 0 replies; 17+ messages in thread
From: Mike Gilbert @ 2016-11-24  3:38 UTC (permalink / raw
  To: gentoo-commits

commit:     37fc7967ab701a9a537750c460cb910bb2a1dcd8
Author:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 24 03:37:54 2016 +0000
Commit:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Thu Nov 24 03:37:54 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37fc7967

dev-python/google-apputils: replace googlecode links

Package-Manager: portage-2.3.2_p8

 dev-python/google-apputils/google-apputils-0.4.0-r1.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-python/google-apputils/google-apputils-0.4.0-r1.ebuild b/dev-python/google-apputils/google-apputils-0.4.0-r1.ebuild
index 7b78e53..3edd5f5 100644
--- a/dev-python/google-apputils/google-apputils-0.4.0-r1.ebuild
+++ b/dev-python/google-apputils/google-apputils-0.4.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -9,8 +9,8 @@ PYTHON_COMPAT=( python2_7 )	# Doesn't yet support py3
 inherit distutils-r1
 
 DESCRIPTION="Collection of utilities for building Python applications"
-HOMEPAGE="https://code.google.com/p/google-apputils-python/"
-SRC_URI="https://google-apputils-python.googlecode.com/files/${P}.tar.gz"
+HOMEPAGE="https://github.com/google/google-apputils"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/google-apputils/
@ 2017-01-12  9:30 Jeroen Roovers
  0 siblings, 0 replies; 17+ messages in thread
From: Jeroen Roovers @ 2017-01-12  9:30 UTC (permalink / raw
  To: gentoo-commits

commit:     3513222eb17c85e5766ecc88d55f9bfd01098399
Author:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 12 09:26:43 2017 +0000
Commit:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Thu Jan 12 09:26:43 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3513222e

dev-python/google-apputils: Stable for HPPA (bug #603430).

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --ignore-arches

 dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild b/dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild
index d8fe0d0..65305ff 100644
--- a/dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild
+++ b/dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+KEYWORDS="alpha ~amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
 IUSE="test"
 
 RDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/google-apputils/
@ 2017-05-09 18:43 Michał Górny
  0 siblings, 0 replies; 17+ messages in thread
From: Michał Górny @ 2017-05-09 18:43 UTC (permalink / raw
  To: gentoo-commits

commit:     7fcb1393b67c74f6fbe968c38a6d486ea1098b40
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue May  9 18:32:56 2017 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue May  9 18:43:18 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7fcb1393

dev-python/google-apputils: Use setup.py to run tests

 dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild b/dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild
index 0579926ba95..4c34e95c5e8 100644
--- a/dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild
+++ b/dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild
@@ -30,9 +30,5 @@ src_unpack() {
 }
 
 python_test() {
-	# These yield 2 fails which are in fact expected errors run from a shell script!
-	# They seemingly have no immediate mechanism to exit 0 in an expected fail style.
-	for test in tests/{app_test*.py,[b-s]*.py} ; do
-		"${PYTHON}" $test || die "test failure under ${EPYTHON}"
-	done
+	esetup.py google_test
 }


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/google-apputils/
@ 2017-05-09 18:43 Michał Górny
  0 siblings, 0 replies; 17+ messages in thread
From: Michał Górny @ 2017-05-09 18:43 UTC (permalink / raw
  To: gentoo-commits

commit:     eb31b8d49c2bcde6f0562f242c91169c26716a8e
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue May  9 18:33:54 2017 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue May  9 18:43:18 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb31b8d4

dev-python/google-apputils: Fix namespace support

 .../google-apputils-0.4.2-r2.ebuild                | 41 ++++++++++++++++++++++
 1 file changed, 41 insertions(+)

diff --git a/dev-python/google-apputils/google-apputils-0.4.2-r2.ebuild b/dev-python/google-apputils/google-apputils-0.4.2-r2.ebuild
new file mode 100644
index 00000000000..e1fb178d2d2
--- /dev/null
+++ b/dev-python/google-apputils/google-apputils-0.4.2-r2.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="5"
+
+# Python 3: https://github.com/google/google-apputils/issues/9
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1
+
+DESCRIPTION="Collection of utilities for building Python applications"
+HOMEPAGE="https://github.com/google/google-apputils"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+IUSE="test"
+
+RDEPEND="
+	dev-python/namespace-google[${PYTHON_USEDEP}]
+	>=dev-python/python-dateutil-1.4[${PYTHON_USEDEP}]
+	>=dev-python/python-gflags-1.4[${PYTHON_USEDEP}]
+	>=dev-python/pytz-2010[${PYTHON_USEDEP}]"
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+	test? ( ${RDEPEND} dev-python/mox[${PYTHON_USEDEP}] )"
+
+src_unpack() {
+	default
+	chmod -R a+rX,u+w,g-w,o-w ${P} || die
+}
+
+python_test() {
+	esetup.py google_test
+}
+
+python_install_all() {
+	distutils-r1_python_install_all
+
+	find "${D}" -name '*.pth' -delete || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/google-apputils/
@ 2017-06-13 10:47 Agostino Sarubbo
  0 siblings, 0 replies; 17+ messages in thread
From: Agostino Sarubbo @ 2017-06-13 10:47 UTC (permalink / raw
  To: gentoo-commits

commit:     553be2596576b710a7fd1f50631010975c511878
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 13 10:46:49 2017 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Tue Jun 13 10:46:49 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=553be259

dev-python/google-apputils: amd64 stable wrt bug #621620

Package-Manager: Portage-2.3.5, Repoman-2.3.1
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 dev-python/google-apputils/google-apputils-0.4.2-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/google-apputils/google-apputils-0.4.2-r2.ebuild b/dev-python/google-apputils/google-apputils-0.4.2-r2.ebuild
index 3b853e95062..59f4b3ffb64 100644
--- a/dev-python/google-apputils/google-apputils-0.4.2-r2.ebuild
+++ b/dev-python/google-apputils/google-apputils-0.4.2-r2.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
 IUSE="test"
 
 RDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/google-apputils/
@ 2017-06-15  9:54 Agostino Sarubbo
  0 siblings, 0 replies; 17+ messages in thread
From: Agostino Sarubbo @ 2017-06-15  9:54 UTC (permalink / raw
  To: gentoo-commits

commit:     326f23e4126db20c019f40e21968f84eaf79cc33
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 15 09:53:29 2017 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Thu Jun 15 09:53:29 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=326f23e4

dev-python/google-apputils: x86 stable wrt bug #621620

Package-Manager: Portage-2.3.5, Repoman-2.3.1
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 dev-python/google-apputils/google-apputils-0.4.2-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/google-apputils/google-apputils-0.4.2-r2.ebuild b/dev-python/google-apputils/google-apputils-0.4.2-r2.ebuild
index 59f4b3ffb64..664c7ce0e41 100644
--- a/dev-python/google-apputils/google-apputils-0.4.2-r2.ebuild
+++ b/dev-python/google-apputils/google-apputils-0.4.2-r2.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86"
 IUSE="test"
 
 RDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/google-apputils/
@ 2017-06-20 14:56 Tobias Klausmann
  0 siblings, 0 replies; 17+ messages in thread
From: Tobias Klausmann @ 2017-06-20 14:56 UTC (permalink / raw
  To: gentoo-commits

commit:     b4543eb9f8121d6c91f15bda8672759238219583
Author:     Tobias Klausmann <klausman <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 20 14:52:22 2017 +0000
Commit:     Tobias Klausmann <klausman <AT> gentoo <DOT> org>
CommitDate: Tue Jun 20 14:52:22 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4543eb9

dev-python/google-apputils-0.4.2-r2: add alpha keyword

Gentoo-Bug: 621620

 dev-python/google-apputils/google-apputils-0.4.2-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/google-apputils/google-apputils-0.4.2-r2.ebuild b/dev-python/google-apputils/google-apputils-0.4.2-r2.ebuild
index 664c7ce0e41..c8e5314c3e0 100644
--- a/dev-python/google-apputils/google-apputils-0.4.2-r2.ebuild
+++ b/dev-python/google-apputils/google-apputils-0.4.2-r2.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86"
 IUSE="test"
 
 RDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/google-apputils/
@ 2017-06-25  7:23 Markus Meier
  0 siblings, 0 replies; 17+ messages in thread
From: Markus Meier @ 2017-06-25  7:23 UTC (permalink / raw
  To: gentoo-commits

commit:     25a7e3de096e143305fe151985bae652496ba978
Author:     Markus Meier <maekke <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 25 07:23:33 2017 +0000
Commit:     Markus Meier <maekke <AT> gentoo <DOT> org>
CommitDate: Sun Jun 25 07:23:33 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25a7e3de

dev-python/google-apputils: arm stable, bug #621620

Package-Manager: Portage-2.3.6, Repoman-2.3.1
RepoMan-Options: --include-arches="arm"

 dev-python/google-apputils/google-apputils-0.4.2-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/google-apputils/google-apputils-0.4.2-r2.ebuild b/dev-python/google-apputils/google-apputils-0.4.2-r2.ebuild
index c8e5314c3e0..ee036e1820b 100644
--- a/dev-python/google-apputils/google-apputils-0.4.2-r2.ebuild
+++ b/dev-python/google-apputils/google-apputils-0.4.2-r2.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86"
 IUSE="test"
 
 RDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/google-apputils/
@ 2017-06-30  7:35 Sergei Trofimovich
  0 siblings, 0 replies; 17+ messages in thread
From: Sergei Trofimovich @ 2017-06-30  7:35 UTC (permalink / raw
  To: gentoo-commits

commit:     c9ba91814beec08dca77442535058824dd0f63c0
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 30 07:18:52 2017 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Fri Jun 30 07:35:12 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9ba9181

dev-python/google-apputils: ia64 stable, bug #621620

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-python/google-apputils/google-apputils-0.4.2-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/google-apputils/google-apputils-0.4.2-r2.ebuild b/dev-python/google-apputils/google-apputils-0.4.2-r2.ebuild
index ee036e1820b..0f2dca125c4 100644
--- a/dev-python/google-apputils/google-apputils-0.4.2-r2.ebuild
+++ b/dev-python/google-apputils/google-apputils-0.4.2-r2.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86"
 IUSE="test"
 
 RDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/google-apputils/
@ 2018-01-04 20:35 Michał Górny
  0 siblings, 0 replies; 17+ messages in thread
From: Michał Górny @ 2018-01-04 20:35 UTC (permalink / raw
  To: gentoo-commits

commit:     5749e1fc8c16f2c14e92179c4e0aba3536240a4a
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Jan  4 20:01:18 2018 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Jan  4 20:34:45 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5749e1fc

dev-python/google-apputils: Clean old up

 dev-python/google-apputils/Manifest                |  1 -
 .../google-apputils-0.4.0-r1.ebuild                | 47 ----------------------
 2 files changed, 48 deletions(-)

diff --git a/dev-python/google-apputils/Manifest b/dev-python/google-apputils/Manifest
index 93d2fa7d78b..bf7c7d7c873 100644
--- a/dev-python/google-apputils/Manifest
+++ b/dev-python/google-apputils/Manifest
@@ -1,2 +1 @@
-DIST google-apputils-0.4.0.tar.gz 80014 BLAKE2B ec64417271a922d16dfcad4e0965c17d5dba558782c7c4c20537927fb0b3e34680180952a159f71577d36877c68f3c0b98482142eca9d160a945b49ee2171782 SHA512 5dbbf50e9551b33d882557ef9385c64691dcff6d6c219c9ff6aea2dc73c8af6d03392b3088fe1fb4000979e227830a0e437dc347520488627657085c8ea23f5e
 DIST google-apputils-0.4.2.tar.gz 81095 BLAKE2B d99c2fe8081616ee2891718fc3d00d00bcd703f694b9419bfc7aaebe75ba8cd0de12e8461dbc6459c1b7b88abf6e7af89972368c565565cb5dfb810938e4e1d2 SHA512 d7579ec461292bb01ad5b8e1b09e161c66af0e85361f43f6065b837c90bddb9711a2d56db2b73d780dc25945375d4dad2f646507512b9acfeefd517613feacd4

diff --git a/dev-python/google-apputils/google-apputils-0.4.0-r1.ebuild b/dev-python/google-apputils/google-apputils-0.4.0-r1.ebuild
deleted file mode 100644
index c669a197911..00000000000
--- a/dev-python/google-apputils/google-apputils-0.4.0-r1.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-PYTHON_COMPAT=( python2_7 )	# Doesn't yet support py3
-
-inherit distutils-r1
-
-DESCRIPTION="Collection of utilities for building Python applications"
-HOMEPAGE="https://github.com/google/google-apputils"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~ia64 ~m68k ~mips ~ppc64 ~s390 ~sh x86"
-IUSE="test"
-
-RDEPEND="dev-python/python-dateutil[${PYTHON_USEDEP}]
-		dev-python/python-gflags[${PYTHON_USEDEP}]
-		dev-python/pytz[${PYTHON_USEDEP}]"
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
-	test? ( ${RDEPEND}
-		dev-python/mox[${PYTHON_USEDEP}] )"
-# version borders needed are already confluent with versions in the tree
-
-src_unpack() {
-	default
-	chmod -R a+rX,u+w,g-w,o-w ${P} || die
-}
-
-python_prepare_all() {
-	# https://code.google.com/p/google-apputils-python/source/detail?r=12
-	# This version bordering is long out of date and wrong since end of March 2012!
-	sed -e 's:>=1.4,<2:>=1.4:' -i setup.py || die
-
-	distutils-r1_python_prepare_all
-}
-
-python_test() {
-	# These yield 2 fails which are in fact expected errors run from a shell script!
-	# They seemingly have no immediate mechanism to exit 0 in an expected fail style.
-	for test in tests/{app_test*.py,[b-s]*.py}
-	do
-		"${PYTHON}" $test || die "test failure under ${EPYTHON}"
-	done
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/google-apputils/
@ 2018-03-28 19:51 Sergei Trofimovich
  0 siblings, 0 replies; 17+ messages in thread
From: Sergei Trofimovich @ 2018-03-28 19:51 UTC (permalink / raw
  To: gentoo-commits

commit:     b5ac8483264b0fe657cbcc80e15c2066527b104a
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 28 19:51:38 2018 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Wed Mar 28 19:51:51 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5ac8483

dev-python/google-apputils: stable 0.4.2-r2 for hppa, bug #621620

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="hppa"

 dev-python/google-apputils/google-apputils-0.4.2-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/google-apputils/google-apputils-0.4.2-r2.ebuild b/dev-python/google-apputils/google-apputils-0.4.2-r2.ebuild
index 0f2dca125c4..a6076c32be6 100644
--- a/dev-python/google-apputils/google-apputils-0.4.2-r2.ebuild
+++ b/dev-python/google-apputils/google-apputils-0.4.2-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86"
 IUSE="test"
 
 RDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/google-apputils/
@ 2020-03-27 10:42 Michał Górny
  0 siblings, 0 replies; 17+ messages in thread
From: Michał Górny @ 2020-03-27 10:42 UTC (permalink / raw
  To: gentoo-commits

commit:     f03b12e2c6bbae36daa91b3b1a2b4f16191e442f
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 27 10:35:50 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Mar 27 10:42:29 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f03b12e2

dev-python/google-apputils: Remove redundant versions

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 .../google-apputils-0.4.2-r1.ebuild                | 35 ----------------------
 1 file changed, 35 deletions(-)

diff --git a/dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild b/dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild
deleted file mode 100644
index ba679b9eadf..00000000000
--- a/dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-# Python 3: https://github.com/google/google-apputils/issues/9
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1
-
-DESCRIPTION="Collection of utilities for building Python applications"
-HOMEPAGE="https://github.com/google/google-apputils"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-	>=dev-python/python-dateutil-1.4[${PYTHON_USEDEP}]
-	>=dev-python/python-gflags-1.4[${PYTHON_USEDEP}]
-	>=dev-python/pytz-2010[${PYTHON_USEDEP}]"
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
-	test? ( ${RDEPEND} dev-python/mox[${PYTHON_USEDEP}] )"
-
-src_unpack() {
-	default
-	chmod -R a+rX,u+w,g-w,o-w ${P} || die
-}
-
-python_test() {
-	esetup.py google_test
-}


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

end of thread, other threads:[~2020-03-27 10:42 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-11-18 10:31 [gentoo-commits] repo/gentoo:master commit in: dev-python/google-apputils/ Agostino Sarubbo
  -- strict thread matches above, loose matches on Subject: below --
2020-03-27 10:42 Michał Górny
2018-03-28 19:51 Sergei Trofimovich
2018-01-04 20:35 Michał Górny
2017-06-30  7:35 Sergei Trofimovich
2017-06-25  7:23 Markus Meier
2017-06-20 14:56 Tobias Klausmann
2017-06-15  9:54 Agostino Sarubbo
2017-06-13 10:47 Agostino Sarubbo
2017-05-09 18:43 Michał Górny
2017-05-09 18:43 Michał Górny
2017-01-12  9:30 Jeroen Roovers
2016-11-24  3:38 Mike Gilbert
2016-04-21  5:28 Mike Frysinger
2016-03-28 19:11 Mike Frysinger
2015-09-30 16:28 Mike Gilbert
2015-09-27 12:50 Mike Gilbert

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