[gentoo-commits] repo/gentoo:master commit in: dev-python/funcsigs/, profiles/, dev-python/funcsigs/files/

2020-12-16 Thread Michał Górny
commit: fe7ddfb98886215d2c2f76c69e4a1451cd8f8a5c
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Dec 16 22:50:40 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Dec 16 23:03:16 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe7ddfb9

dev-python/funcsigs: Remove last-rited pkg

Closes: https://bugs.gentoo.org/755074
Signed-off-by: Michał Górny  gentoo.org>

 dev-python/funcsigs/Manifest   |  1 -
 .../files/funcsigs-1.0.2-fix-pypy3-tests.patch | 94 --
 dev-python/funcsigs/funcsigs-1.0.2-r2.ebuild   | 33 
 dev-python/funcsigs/metadata.xml   | 11 ---
 profiles/package.mask  |  5 --
 5 files changed, 144 deletions(-)

diff --git a/dev-python/funcsigs/Manifest b/dev-python/funcsigs/Manifest
deleted file mode 100644
index 07d79033be2..000
--- a/dev-python/funcsigs/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST funcsigs-1.0.2.tar.gz 27947 BLAKE2B 
3006d46018ae040b930e397c3f11575ae0ef18a8b2c9b6c10075804d83d23bea1fb81179de85180146673e0bd4c775a68c0ff624cdaceb1894efe5b2c8fd753c
 SHA512 
4e583bb7081bb1d6c0fe5a6935ca03032d562b93ef5c11b51a72ce9e7ac12902451cc2233c7e6f70440629d88d8e6e9625965ee408100b80b0024f3a6204afda

diff --git a/dev-python/funcsigs/files/funcsigs-1.0.2-fix-pypy3-tests.patch 
b/dev-python/funcsigs/files/funcsigs-1.0.2-fix-pypy3-tests.patch
deleted file mode 100644
index f4ecec3b613..000
--- a/dev-python/funcsigs/files/funcsigs-1.0.2-fix-pypy3-tests.patch
+++ /dev/null
@@ -1,94 +0,0 @@
-diff --git a/tests/test_inspect.py b/tests/test_inspect.py
-index 98d6592..3a2a1f2 100644
 a/tests/test_inspect.py
-+++ b/tests/test_inspect.py
-@@ -8,6 +8,7 @@ import unittest2 as unittest
- 
- import funcsigs as inspect
- 
-+import platform
- 
- class TestSignatureObject(unittest.TestCase):
- @staticmethod
-@@ -409,7 +410,7 @@ def test_signature_on_decorated(self):
-   Ellipsis))
- """)
- 
--if sys.version_info[0] > 2:
-+if sys.version_info[0] > 2 and platform.python_implementation() != "PyPy":
- exec("""
- def test_signature_on_class(self):
- class C:
-@@ -493,41 +494,44 @@ def test_signature_on_class(self):
-   Ellipsis))
- """)
- 
--def test_signature_on_callable_objects(self):
--class Foo(object):
--def __call__(self, a):
--pass
-+if platform.python_implementation() != "PyPy":
-+exec("""
-+def test_signature_on_callable_objects(self):
-+class Foo(object):
-+def __call__(self, a):
-+pass
- 
--self.assertEqual(self.signature(Foo()),
-- ((('a', Ellipsis, Ellipsis, 
"positional_or_keyword"),),
--  Ellipsis))
-+self.assertEqual(self.signature(Foo()),
-+ ((('a', Ellipsis, Ellipsis, "positional_or_keyword"),),
-+  Ellipsis))
- 
--class Spam(object):
--pass
--with self.assertRaisesRegex(TypeError, "is not a callable object"):
--inspect.signature(Spam())
-+class Spam(object):
-+pass
-+with self.assertRaisesRegex(TypeError, "is not a callable object"):
-+inspect.signature(Spam())
- 
--class Bar(Spam, Foo):
--pass
-+class Bar(Spam, Foo):
-+pass
- 
--self.assertEqual(self.signature(Bar()),
-- ((('a', Ellipsis, Ellipsis, 
"positional_or_keyword"),),
--  Ellipsis))
-+self.assertEqual(self.signature(Bar()),
-+ ((('a', Ellipsis, Ellipsis, "positional_or_keyword"),),
-+  Ellipsis))
- 
--class ToFail(object):
--__call__ = type
--with self.assertRaisesRegex(ValueError, "not supported by signature"):
--inspect.signature(ToFail())
-+class ToFail(object):
-+__call__ = type
-+with self.assertRaisesRegex(ValueError, "not supported by signature"):
-+inspect.signature(ToFail())
- 
--if sys.version_info[0] < 3:
--return
-+if sys.version_info[0] < 3:
-+return
- 
--class Wrapped(object):
--pass
--Wrapped.__wrapped__ = lambda a: None
--self.assertEqual(self.signature(Wrapped),
-- ((('a', Ellipsis, Ellipsis, 
"positional_or_keyword"),),
--  Ellipsis))
-+class Wrapped(object):
-+pass
-+Wrapped.__wrapped__ = lambda a: None
-+self.assertEqual(self.signature(Wrapped),
-+ ((('a', Ellipsis, Ellipsis, "positional_or_keyword"),),
-+  Ellipsis))
-+""")
- 
- def test_signature_on_lambdas(self):
- self.assertEqual(self.signature((lambda a=10: a)),

diff --git a/dev-python/funcsigs/funcsigs-1.0.2-r2.ebuild 
b/dev-python/funcsigs/funcsigs-1.0.2-r2.ebuild
deleted file mode 100644
index 0a8b618ac41..000
--- 

[gentoo-commits] repo/gentoo:master commit in: dev-python/funcsigs/

2020-09-20 Thread Michał Górny
commit: 2105850f25cf1318a767163338049646d5e062d1
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Sep 20 15:31:01 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Sep 20 15:37:52 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2105850f

dev-python/funcsigs: Remove python2

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

 .../funcsigs/{funcsigs-1.0.2-r1.ebuild => funcsigs-1.0.2-r2.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild 
b/dev-python/funcsigs/funcsigs-1.0.2-r2.ebuild
similarity index 95%
rename from dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild
rename to dev-python/funcsigs/funcsigs-1.0.2-r2.ebuild
index 315b2e60927..0a8b618ac41 100644
--- a/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild
+++ b/dev-python/funcsigs/funcsigs-1.0.2-r2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-PYTHON_COMPAT=( python{2_7,3_6,3_7} pypy3 )
+PYTHON_COMPAT=( python{3_6,3_7} pypy3 )
 
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/funcsigs/

2019-04-02 Thread Virgil Dupras
commit: 194cd664ec7dbf35855f24861e7a282aff55c212
Author: Virgil Dupras  gentoo  org>
AuthorDate: Tue Apr  2 18:16:14 2019 +
Commit: Virgil Dupras  gentoo  org>
CommitDate: Tue Apr  2 18:16:14 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=194cd664

dev-python/funcsigs: remove old

Signed-off-by: Virgil Dupras  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 dev-python/funcsigs/Manifest|  1 -
 dev-python/funcsigs/funcsigs-0.4.ebuild | 26 --
 2 files changed, 27 deletions(-)

diff --git a/dev-python/funcsigs/Manifest b/dev-python/funcsigs/Manifest
index 6da6e7340f1..07d79033be2 100644
--- a/dev-python/funcsigs/Manifest
+++ b/dev-python/funcsigs/Manifest
@@ -1,2 +1 @@
-DIST funcsigs-0.4.tar.gz 25697 BLAKE2B 
0b57ac0ce3aa8ff16724af9be94f297c15c94ed9083e2dd78796f134054db0e5f8213d1671352e0122a90bb2e8da78937c7a44f2e231b64de29afbb0dcf8b6d5
 SHA512 
64d821e94049ae906b9e5c8a2590f80a7d1d819554258e20f4170207576e5c8f65d32759a3f65bcb05fe721fa502658ff5767cd435932ea926c792c62ebe96d5
 DIST funcsigs-1.0.2.tar.gz 27947 BLAKE2B 
3006d46018ae040b930e397c3f11575ae0ef18a8b2c9b6c10075804d83d23bea1fb81179de85180146673e0bd4c775a68c0ff624cdaceb1894efe5b2c8fd753c
 SHA512 
4e583bb7081bb1d6c0fe5a6935ca03032d562b93ef5c11b51a72ce9e7ac12902451cc2233c7e6f70440629d88d8e6e9625965ee408100b80b0024f3a6204afda

diff --git a/dev-python/funcsigs/funcsigs-0.4.ebuild 
b/dev-python/funcsigs/funcsigs-0.4.ebuild
deleted file mode 100644
index b9a168f60df..000
--- a/dev-python/funcsigs/funcsigs-0.4.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 pypy pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="Python function signatures from PEP362 for Python 2.7"
-HOMEPAGE="https://pypi.org/project/funcsigs/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-SLOT="0"
-LICENSE="Apache-2.0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-linux ~x86-linux"
-IUSE="test"
-
-DEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   test? ( dev-python/unittest2[${PYTHON_USEDEP}] )"
-RDEPEND=""
-
-python_test() {
-   esetup.py test
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/funcsigs/

2018-11-19 Thread Fabian Groffen
commit: 31e8d91dd48827fd73527eb62ceaf68e568b1ff6
Author: Fabian Groffen  gentoo  org>
AuthorDate: Mon Nov 19 20:15:49 2018 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Mon Nov 19 21:14:55 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31e8d91d

dev-python/funcsigs: marked ~*-solaris

Signed-off-by: Fabian Groffen  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild 
b/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild
index 39da5c75617..b49ffe6c99a 100644
--- a/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild
+++ b/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="Apache-2.0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc 
x86 ~amd64-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc 
x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 IUSE="test"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-python/funcsigs/

2018-08-16 Thread Mikle Kolyada
commit: f7eeebecf1142e318c56151dff0bfdacffe14ac8
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Aug 17 01:59:27 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Aug 17 02:05:13 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7eeebec

dev-python/funcsigs: mark s390 stable

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild 
b/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild
index 6f23d1222a4..39da5c75617 100644
--- a/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild
+++ b/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="Apache-2.0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc 
x86 ~amd64-fbsd ~amd64-linux ~x86-linux"
 IUSE="test"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-python/funcsigs/

2018-06-24 Thread Pacho Ramos
commit: 3089d575aa68e982715d67c0afc7d318f3f46765
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Jun 24 11:37:47 2018 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Jun 24 12:19:46 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3089d575

dev-python/funcsigs: Support python3.6

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild 
b/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild
index 361c21a2e34..9d4466231cf 100644
--- a/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild
+++ b/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-PYTHON_COMPAT=( python{2_7,3_4,3_5} pypy{,3} )
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy{,3} )
 
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/funcsigs/

2018-04-16 Thread Sergei Trofimovich
commit: 59b3867a7d08ca61c5abfc7f02b826cdb5d7cea8
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Apr 16 16:39:05 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Apr 16 18:35:27 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59b3867a

dev-python/funcsigs: stable 1.0.2-r1 for sparc, bug #649350

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

 dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild 
b/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild
index 34f1aa75183..4f5a8db93d7 100644
--- a/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild
+++ b/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="Apache-2.0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux"
 IUSE="test"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-python/funcsigs/

2018-04-07 Thread Matt Turner
commit: 851eba88b6a27d75bdba6803ca9342cf0b61f90a
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Apr  7 20:33:08 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Apr  7 20:33:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=851eba88

dev-python/funcsigs-1.0.2-r1: ppc64 stable, bug 649350

 dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild 
b/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild
index a850bf4664f..34f1aa75183 100644
--- a/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild
+++ b/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="Apache-2.0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux"
 IUSE="test"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-python/funcsigs/

2018-04-07 Thread Matt Turner
commit: 5e48d45c1be3786a2dcc2ba64ca80b3a97c06de6
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Apr  7 20:32:58 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Apr  7 20:32:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e48d45c

dev-python/funcsigs-1.0.2-r1: ppc stable, bug 649350

 dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild 
b/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild
index f300a92655a..a850bf4664f 100644
--- a/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild
+++ b/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="Apache-2.0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux"
 IUSE="test"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-python/funcsigs/

2018-03-05 Thread Tobias Klausmann
commit: b0ee463a97fc0987092cfcc216c2dc8445adbcd1
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Mon Mar  5 19:48:14 2018 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Mon Mar  5 21:31:04 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0ee463a

dev-python/funcsigs-1.0.2-r1: alpha stable

Gentoo-Bug: http://bugs.gentoo.org/649350

 dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild 
b/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild
index 27b3464b826..f300a92655a 100644
--- a/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild
+++ b/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="Apache-2.0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~amd64-linux ~x86-linux ~amd64-fbsd"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux"
 IUSE="test"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-python/funcsigs/

2018-02-18 Thread Patrice Clement
commit: 8f03775351c879c09e88d6942fa842e67c3894cb
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Feb 18 13:16:44 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Feb 18 13:57:24 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f037753

dev-python/funcsigs: add ~amd64-fbsd keyword.

Package-Manager: Portage-2.3.13, Repoman-2.3.4

 dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild 
b/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild
index a6926ba1f68..27b3464b826 100644
--- a/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild
+++ b/dev-python/funcsigs/funcsigs-1.0.2-r1.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=6
@@ -13,13 +13,12 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="Apache-2.0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~amd64-linux ~x86-linux ~amd64-fbsd"
 IUSE="test"
 
 DEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? ( dev-python/unittest2[${PYTHON_USEDEP}] )"
-RDEPEND=""
 
 PATCHES=(
# This patch disables some tests for pypy as they do not work as 
expected.



[gentoo-commits] repo/gentoo:master commit in: dev-python/funcsigs/

2017-07-29 Thread Matt Thode
commit: c71e17becf8efff0cb0c91aad93385026d026c62
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Jul 29 20:11:16 2017 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Jul 29 20:37:48 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c71e17be

dev-python/funcsigs: 1.0.2-r1 stable arm arm64 and hppa

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild 
b/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild
index 7604cf4a80b..a6926ba1f68 100644
--- a/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild
+++ b/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="Apache-2.0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~amd64-linux ~x86-linux"
 IUSE="test"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-python/funcsigs/

2017-07-18 Thread Sergei Trofimovich
commit: c8a57775238c7dfe2cb786aaee3f5f8662fe7107
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jul 17 09:21:55 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Jul 18 08:25:32 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8a57775

dev-python/funcsigs: ia64 stable, bug #619822

Package-Manager: Portage-2.3.6, Repoman-2.3.2
RepoMan-Options: --include-arches="ia64"

 dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild 
b/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild
index f8b44561f9c..7604cf4a80b 100644
--- a/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild
+++ b/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="Apache-2.0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86 ~amd64-linux ~x86-linux"
 IUSE="test"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-python/funcsigs/

2016-11-06 Thread Matt Thode
commit: db017fd5c55842beb8f7a2fe47ca121686234b7a
Author: Matthew Thode  gentoo  org>
AuthorDate: Sun Nov  6 19:41:43 2016 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sun Nov  6 21:33:03 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db017fd5

dev-python/funcsigs: 1.0.2-r1 stable amd64 and x86

Package-Manager: portage-2.3.0

 dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild 
b/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild
index 3d4f8c6..e022a8b 100644
--- a/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild
+++ b/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="Apache-2.0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86 ~amd64-linux ~x86-linux"
 IUSE="test"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-python/funcsigs/, dev-python/funcsigs/files/

2016-10-18 Thread David Seifert
commit: fd9a5a0a3c15d7400b936ce0f0814fd4078e900c
Author: Mathy Vanvoorden  vanvoorden  be>
AuthorDate: Sun Oct 16 21:24:06 2016 +
Commit: David Seifert  gentoo  org>
CommitDate: Tue Oct 18 20:02:22 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd9a5a0a

dev-python/funcsigs: fix test issue with pypy3

This commit disables 2 tests because they fail to run with pypy3.
This has been reported upstream.

Upstream bug: https://github.com/testing-cabal/funcsigs/issues/10

Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=564852

Package-Manager: portage-2.3.0
Closes: https://github.com/gentoo/gentoo/pull/2571

Signed-off-by: David Seifert  gentoo.org>

 .../files/funcsigs-1.0.2-fix-pypy3-tests.patch | 94 ++
 dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild   |  7 ++
 2 files changed, 101 insertions(+)

diff --git a/dev-python/funcsigs/files/funcsigs-1.0.2-fix-pypy3-tests.patch 
b/dev-python/funcsigs/files/funcsigs-1.0.2-fix-pypy3-tests.patch
new file mode 100644
index ..f4ecec3
--- /dev/null
+++ b/dev-python/funcsigs/files/funcsigs-1.0.2-fix-pypy3-tests.patch
@@ -0,0 +1,94 @@
+diff --git a/tests/test_inspect.py b/tests/test_inspect.py
+index 98d6592..3a2a1f2 100644
+--- a/tests/test_inspect.py
 b/tests/test_inspect.py
+@@ -8,6 +8,7 @@ import unittest2 as unittest
+ 
+ import funcsigs as inspect
+ 
++import platform
+ 
+ class TestSignatureObject(unittest.TestCase):
+ @staticmethod
+@@ -409,7 +410,7 @@ def test_signature_on_decorated(self):
+   Ellipsis))
+ """)
+ 
+-if sys.version_info[0] > 2:
++if sys.version_info[0] > 2 and platform.python_implementation() != "PyPy":
+ exec("""
+ def test_signature_on_class(self):
+ class C:
+@@ -493,41 +494,44 @@ def test_signature_on_class(self):
+   Ellipsis))
+ """)
+ 
+-def test_signature_on_callable_objects(self):
+-class Foo(object):
+-def __call__(self, a):
+-pass
++if platform.python_implementation() != "PyPy":
++exec("""
++def test_signature_on_callable_objects(self):
++class Foo(object):
++def __call__(self, a):
++pass
+ 
+-self.assertEqual(self.signature(Foo()),
+- ((('a', Ellipsis, Ellipsis, 
"positional_or_keyword"),),
+-  Ellipsis))
++self.assertEqual(self.signature(Foo()),
++ ((('a', Ellipsis, Ellipsis, "positional_or_keyword"),),
++  Ellipsis))
+ 
+-class Spam(object):
+-pass
+-with self.assertRaisesRegex(TypeError, "is not a callable object"):
+-inspect.signature(Spam())
++class Spam(object):
++pass
++with self.assertRaisesRegex(TypeError, "is not a callable object"):
++inspect.signature(Spam())
+ 
+-class Bar(Spam, Foo):
+-pass
++class Bar(Spam, Foo):
++pass
+ 
+-self.assertEqual(self.signature(Bar()),
+- ((('a', Ellipsis, Ellipsis, 
"positional_or_keyword"),),
+-  Ellipsis))
++self.assertEqual(self.signature(Bar()),
++ ((('a', Ellipsis, Ellipsis, "positional_or_keyword"),),
++  Ellipsis))
+ 
+-class ToFail(object):
+-__call__ = type
+-with self.assertRaisesRegex(ValueError, "not supported by signature"):
+-inspect.signature(ToFail())
++class ToFail(object):
++__call__ = type
++with self.assertRaisesRegex(ValueError, "not supported by signature"):
++inspect.signature(ToFail())
+ 
+-if sys.version_info[0] < 3:
+-return
++if sys.version_info[0] < 3:
++return
+ 
+-class Wrapped(object):
+-pass
+-Wrapped.__wrapped__ = lambda a: None
+-self.assertEqual(self.signature(Wrapped),
+- ((('a', Ellipsis, Ellipsis, 
"positional_or_keyword"),),
+-  Ellipsis))
++class Wrapped(object):
++pass
++Wrapped.__wrapped__ = lambda a: None
++self.assertEqual(self.signature(Wrapped),
++ ((('a', Ellipsis, Ellipsis, "positional_or_keyword"),),
++  Ellipsis))
++""")
+ 
+ def test_signature_on_lambdas(self):
+ self.assertEqual(self.signature((lambda a=10: a)),

diff --git a/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild 
b/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild
index 01f0536..ea3b7a6 100644
--- a/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild
+++ b/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild
@@ -22,6 +22,13 @@ DEPEND="
test? ( dev-python/unittest2[${PYTHON_USEDEP}] )"
 RDEPEND=""
 
+PATCHES=(
+   # This patch disables some tests for pypy as they do not work as 
expected.
+   # This has been reported upstream
+   # https://github.com/testing-cabal/funcsigs/issues/10
+   

[gentoo-commits] repo/gentoo:master commit in: dev-python/funcsigs/

2016-10-18 Thread David Seifert
commit: c1fb928de2747b52105263c4dd02366201261e0f
Author: Mathy Vanvoorden  vanvoorden  be>
AuthorDate: Sat Oct 15 15:05:35 2016 +
Commit: David Seifert  gentoo  org>
CommitDate: Tue Oct 18 20:02:18 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1fb928d

dev-python/funcsigs: revision bump 1.0.2-r1

Package-Manager: portage-2.3.0
Closes: https://github.com/gentoo/gentoo/pull/2571

Signed-off-by: David Seifert  gentoo.org>

 dev-python/funcsigs/{funcsigs-1.0.2.ebuild => funcsigs-1.0.2-r1.ebuild} | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/dev-python/funcsigs/funcsigs-1.0.2.ebuild 
b/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild
similarity index 100%
rename from dev-python/funcsigs/funcsigs-1.0.2.ebuild
rename to dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild



[gentoo-commits] repo/gentoo:master commit in: dev-python/funcsigs/

2016-07-21 Thread Tiziano Müller
commit: 1d5afa56d42115d2f6e0dde213c06984345ee7a1
Author: Tiziano Müller  gentoo  org>
AuthorDate: Thu Jul 21 07:08:34 2016 +
Commit: Tiziano Müller  gentoo  org>
CommitDate: Thu Jul 21 07:08:34 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d5afa56

dev-python/funcsigs: version bump

Package-Manager: portage-2.3.0_rc1

 dev-python/funcsigs/Manifest  |  1 +
 dev-python/funcsigs/funcsigs-1.0.2.ebuild | 27 +++
 2 files changed, 28 insertions(+)

diff --git a/dev-python/funcsigs/Manifest b/dev-python/funcsigs/Manifest
index 6cfe4a4..ea89989 100644
--- a/dev-python/funcsigs/Manifest
+++ b/dev-python/funcsigs/Manifest
@@ -1 +1,2 @@
 DIST funcsigs-0.4.tar.gz 25697 SHA256 
d83ce6df0b0ea6618700fe1db353526391a8a3ada1b7aba52fed7a61da772033 SHA512 
64d821e94049ae906b9e5c8a2590f80a7d1d819554258e20f4170207576e5c8f65d32759a3f65bcb05fe721fa502658ff5767cd435932ea926c792c62ebe96d5
 WHIRLPOOL 
d34cbcc061a341155b24b67af89f3fe0d14b659965ef4c9c14748996d33f3fd31d41492f097166236ebea54ea3ddd0e147c52f21f1410b2141169668811b9f66
+DIST funcsigs-1.0.2.tar.gz 27947 SHA256 
a7bb0f2cf3a3fd1ab2732cb49eba4252c2af4240442415b4abce3b87022a8f50 SHA512 
4e583bb7081bb1d6c0fe5a6935ca03032d562b93ef5c11b51a72ce9e7ac12902451cc2233c7e6f70440629d88d8e6e9625965ee408100b80b0024f3a6204afda
 WHIRLPOOL 
af07f5828aa7d3b3f403041e2f041f47f73d38da676f2da4ca8b07674c075eafde8bd1917c643bcedf49416c715f30a3d2be17783c51ef1f478d73a13ee7bc55

diff --git a/dev-python/funcsigs/funcsigs-1.0.2.ebuild 
b/dev-python/funcsigs/funcsigs-1.0.2.ebuild
new file mode 100644
index 000..01f0536
--- /dev/null
+++ b/dev-python/funcsigs/funcsigs-1.0.2.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} pypy{,3} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python function signatures backport from PEP362 for Python 
2.7-3.5"
+HOMEPAGE="https://pypi.python.org/pypi/funcsigs;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+SLOT="0"
+LICENSE="Apache-2.0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? ( dev-python/unittest2[${PYTHON_USEDEP}] )"
+RDEPEND=""
+
+python_test() {
+   esetup.py test
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/funcsigs/

2015-11-22 Thread Markus Meier
commit: 8e028d4e1f04cc8500a49c2399920f010263260f
Author: Markus Meier  gentoo  org>
AuthorDate: Sun Nov 22 08:32:29 2015 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sun Nov 22 08:37:28 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e028d4e

dev-python/funcsigs: arm stable, bug #564588

Package-Manager: portage-2.2.25
RepoMan-Options: --include-arches="arm"

 dev-python/funcsigs/funcsigs-0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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



[gentoo-commits] repo/gentoo:master commit in: dev-python/funcsigs/

2015-11-21 Thread Jeroen Roovers
commit: 1d34f70be08e9f805f3982b2f0478aca204d7358
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sun Nov 22 05:27:10 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sun Nov 22 05:37:33 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d34f70b

dev-python/funcsigs: Stable for HPPA (bug #549898).

Package-Manager: portage-2.2.25
RepoMan-Options: --ignore-arches

 dev-python/funcsigs/funcsigs-0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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



[gentoo-commits] repo/gentoo:master commit in: dev-python/funcsigs/

2015-11-19 Thread Agostino Sarubbo
commit: 1bfe39c0de61bcb1e1ea06646ad90076b08fe1e1
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 19 10:25:04 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 19 10:25:04 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1bfe39c0

dev-python/funcsigs: alpha stable wrt bug #564588

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

 dev-python/funcsigs/funcsigs-0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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



[gentoo-commits] repo/gentoo:master commit in: dev-python/funcsigs/

2015-11-16 Thread Agostino Sarubbo
commit: ec7057c79c3d2d19f4282b9fc33005bed071f81b
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Nov 16 15:01:09 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Nov 16 15:01:09 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec7057c7

dev-python/funcsigs: ia64 stable wrt bug #564588

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

 dev-python/funcsigs/funcsigs-0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/funcsigs/funcsigs-0.4.ebuild 
b/dev-python/funcsigs/funcsigs-0.4.ebuild
index 6b2cce2..e7f9ad0 100644
--- a/dev-python/funcsigs/funcsigs-0.4.ebuild
+++ b/dev-python/funcsigs/funcsigs-0.4.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="Apache-2.0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-linux ~x86-linux"
 IUSE="test"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-python/funcsigs/

2015-11-05 Thread Agostino Sarubbo
commit: b18671796b5b3d4dfe35687c420b35a2802d329d
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov  5 11:52:11 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov  5 11:52:11 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1867179

dev-python/funcsigs: sparc stable wrt bug #564588

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

 dev-python/funcsigs/funcsigs-0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/funcsigs/funcsigs-0.4.ebuild 
b/dev-python/funcsigs/funcsigs-0.4.ebuild
index 65a0b71..6b2cce2 100644
--- a/dev-python/funcsigs/funcsigs-0.4.ebuild
+++ b/dev-python/funcsigs/funcsigs-0.4.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="Apache-2.0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-linux ~x86-linux"
 IUSE="test"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-python/funcsigs/

2015-11-04 Thread Agostino Sarubbo
commit: 9776bc8be089304894ec55f11fa0fad65243c7dd
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Nov  4 15:49:53 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Nov  4 15:49:53 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9776bc8b

dev-python/funcsigs: ppc stable wrt bug #564588

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

 dev-python/funcsigs/funcsigs-0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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



[gentoo-commits] repo/gentoo:master commit in: dev-python/funcsigs/

2015-11-04 Thread Agostino Sarubbo
commit: 8d3284674774c0d5dd3fd7a0b92d244e4f982566
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Nov  4 16:09:27 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Nov  4 16:09:27 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d328467

dev-python/funcsigs: ppc64 stable wrt bug #564588

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

 dev-python/funcsigs/funcsigs-0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/funcsigs/funcsigs-0.4.ebuild 
b/dev-python/funcsigs/funcsigs-0.4.ebuild
index c5da6a2..65a0b71 100644
--- a/dev-python/funcsigs/funcsigs-0.4.ebuild
+++ b/dev-python/funcsigs/funcsigs-0.4.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="Apache-2.0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 
~sh ~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~amd64-linux ~x86-linux"
 IUSE="test"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-python/funcsigs/

2015-11-03 Thread Justin Lecher
commit: 8a3d7778ebb36e945319fa756da9d3cd9fd3d46b
Author: Justin Lecher  gentoo  org>
AuthorDate: Wed Nov  4 06:12:07 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Wed Nov  4 06:18:53 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a3d7778

dev-python/funcsigs: Add pypy3 support

Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher  gentoo.org>

 dev-python/funcsigs/funcsigs-0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/funcsigs/funcsigs-0.4.ebuild 
b/dev-python/funcsigs/funcsigs-0.4.ebuild
index c406e19..7fe7dee 100644
--- a/dev-python/funcsigs/funcsigs-0.4.ebuild
+++ b/dev-python/funcsigs/funcsigs-0.4.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=5
 
-PYTHON_COMPAT=( python2_7 pypy )
+PYTHON_COMPAT=( python2_7 pypy pypy3 )
 
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/funcsigs/

2015-11-02 Thread Justin Lecher
commit: e752059e147f3ebd07feb6a57618a17116e24c9e
Author: Justin Lecher  gentoo  org>
AuthorDate: Sun Nov  1 15:14:41 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Mon Nov  2 11:47:12 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e752059e

dev-python/funcsigs: Drop unsupported pypy3

Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher  gentoo.org>

 dev-python/funcsigs/funcsigs-0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/funcsigs/funcsigs-0.4.ebuild 
b/dev-python/funcsigs/funcsigs-0.4.ebuild
index 7fe7dee..c406e19 100644
--- a/dev-python/funcsigs/funcsigs-0.4.ebuild
+++ b/dev-python/funcsigs/funcsigs-0.4.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=5
 
-PYTHON_COMPAT=( python2_7 pypy pypy3 )
+PYTHON_COMPAT=( python2_7 pypy )
 
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/funcsigs/

2015-10-14 Thread Justin Lecher
commit: 1c5221abdfd2e11f3217567902a914bcc5502015
Author: Justin Lecher  gentoo  org>
AuthorDate: Wed Oct 14 12:06:53 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Wed Oct 14 12:06:53 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c5221ab

dev-python/funcsigs: Keyword under ALLARCHES policy

Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher  gentoo.org>

 dev-python/funcsigs/funcsigs-0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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



[gentoo-commits] repo/gentoo:master commit in: dev-python/funcsigs/

2015-10-11 Thread Justin Lecher
commit: 3ef199916d85979b5691161d5a698138ec303a1b
Author: Justin Lecher  gentoo  org>
AuthorDate: Sun Oct 11 18:11:57 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Sun Oct 11 20:15:33 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ef19991

dev-python/funcsigs: Add pypy3 support

Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher  gentoo.org>

 dev-python/funcsigs/funcsigs-0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/funcsigs/funcsigs-0.4.ebuild 
b/dev-python/funcsigs/funcsigs-0.4.ebuild
index 67c7bf5..2538752 100644
--- a/dev-python/funcsigs/funcsigs-0.4.ebuild
+++ b/dev-python/funcsigs/funcsigs-0.4.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=5
 
-PYTHON_COMPAT=( python2_7 pypy )
+PYTHON_COMPAT=( python2_7 pypy pypy3 )
 
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/funcsigs/

2015-10-10 Thread Mikle Kolyada
commit: 0cd8b549bb12845ef1faa3d6ffc944308bf31d5f
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sat Oct 10 18:30:08 2015 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sat Oct 10 18:45:56 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0cd8b549

dev-python/funcsigs: Add ~sparc keywords wrt bug #70

Package-Manager: portage-2.2.20.1

 dev-python/funcsigs/funcsigs-0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/funcsigs/funcsigs-0.4.ebuild 
b/dev-python/funcsigs/funcsigs-0.4.ebuild
index 136adb2..67c7bf5 100644
--- a/dev-python/funcsigs/funcsigs-0.4.ebuild
+++ b/dev-python/funcsigs/funcsigs-0.4.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="Apache-2.0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ppc64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux"
 IUSE="test"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-python/funcsigs/

2015-09-27 Thread Markus Meier
commit: 354e8b8f53cc2ec500a887239a202e9df25b0b68
Author: Markus Meier  gentoo  org>
AuthorDate: Sun Sep 27 16:15:52 2015 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sun Sep 27 16:15:52 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=354e8b8f

dev-python/funcsigs: add ~arm, bug #70

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

 dev-python/funcsigs/funcsigs-0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/funcsigs/funcsigs-0.4.ebuild 
b/dev-python/funcsigs/funcsigs-0.4.ebuild
index 6c2d63b..136adb2 100644
--- a/dev-python/funcsigs/funcsigs-0.4.ebuild
+++ b/dev-python/funcsigs/funcsigs-0.4.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="Apache-2.0"
-KEYWORDS="~alpha amd64 ~hppa ~ppc64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ppc64 x86 ~amd64-linux ~x86-linux"
 IUSE="test"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-python/funcsigs/

2015-09-22 Thread Tobias Klausmann
commit: 48eb52cd511e089e29b6b1d14a3cd9f4c4e31dea
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Tue Sep 22 08:24:30 2015 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Tue Sep 22 08:25:58 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48eb52cd

dev-python/funcsigs: add ~alpha keyword

Gentoo-Bug: 70

Package-Manager: portage-2.2.21

 dev-python/funcsigs/funcsigs-0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/funcsigs/funcsigs-0.4.ebuild 
b/dev-python/funcsigs/funcsigs-0.4.ebuild
index 27b1465..6c2d63b 100644
--- a/dev-python/funcsigs/funcsigs-0.4.ebuild
+++ b/dev-python/funcsigs/funcsigs-0.4.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="Apache-2.0"
-KEYWORDS="amd64 ~hppa ~ppc64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~hppa ~ppc64 x86 ~amd64-linux ~x86-linux"
 IUSE="test"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-python/funcsigs/

2015-09-13 Thread Jeroen Roovers
commit: 94fa9cf723e8a4c9ec4c92d4745a7b52a539bcae
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Mon Sep 14 05:19:51 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Mon Sep 14 05:19:51 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94fa9cf7

dev-python/funcsigs: Mark ~ppc64 (bug #70).

Package-Manager: portage-2.2.20.1

 dev-python/funcsigs/funcsigs-0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/funcsigs/funcsigs-0.4.ebuild 
b/dev-python/funcsigs/funcsigs-0.4.ebuild
index ba5ebc1..27b1465 100644
--- a/dev-python/funcsigs/funcsigs-0.4.ebuild
+++ b/dev-python/funcsigs/funcsigs-0.4.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="Apache-2.0"
-KEYWORDS="amd64 ~hppa x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~hppa ~ppc64 x86 ~amd64-linux ~x86-linux"
 IUSE="test"
 
 DEPEND="