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

2024-05-11 Thread Michał Górny
commit: a081f48a348384e78267962e271d837be5e827b0
Author: Michał Górny  gentoo  org>
AuthorDate: Sat May 11 10:55:26 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat May 11 11:03:25 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a081f48a

dev-python/blinker: Enable py3.13

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

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

diff --git a/dev-python/blinker/blinker-1.8.2.ebuild 
b/dev-python/blinker/blinker-1.8.2.ebuild
index 9df417e40e36..75f5ef236171 100644
--- a/dev-python/blinker/blinker-1.8.2.ebuild
+++ b/dev-python/blinker/blinker-1.8.2.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=flit
-PYTHON_COMPAT=( python3_{10..12} pypy3 )
+PYTHON_COMPAT=( python3_{10..13} pypy3 )
 
 inherit distutils-r1 pypi
 



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

2024-05-06 Thread Michał Górny
commit: 59f5b7e89a8c789f81dbc42f4b3c3515a8c4d93d
Author: Michał Górny  gentoo  org>
AuthorDate: Tue May  7 01:47:00 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue May  7 01:47:00 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59f5b7e8

dev-python/blinker: Bump to 1.8.2

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

 dev-python/blinker/Manifest |  1 +
 dev-python/blinker/blinker-1.8.2.ebuild | 32 
 2 files changed, 33 insertions(+)

diff --git a/dev-python/blinker/Manifest b/dev-python/blinker/Manifest
index 0493698cb32f..3e4dbe9aebe0 100644
--- a/dev-python/blinker/Manifest
+++ b/dev-python/blinker/Manifest
@@ -1,3 +1,4 @@
 DIST blinker-1.7.0.tar.gz 28134 BLAKE2B 
afff064a79ae7ab9fcee46c7eb3f6557bd9149be0a10cddfd13f969649a7aa57cec727cc6a10c54af2f676b8dc9be69beaf6521b5764555ac3e97fda7b68f5f8
 SHA512 
b55dc104fd69bf9f682184202f9da7cb6925e7e863f38d5ad5b4b5988b2315aae02da6f4c9f0ec34238b8d5b9b6eec52b06258d93e14416cda3e2b718d9aa60c
 DIST blinker-1.8.0.tar.gz 22598 BLAKE2B 
80a08bc860acc049ea4bbc30dd23f74ed7b0507a6f4dd550a0fb946233445b930732300ddc2201f6217b0557c082fbc90774d64a587ed448d839ee1b085b0c09
 SHA512 
1862589712c8828b2d9b3d434f213017cd81b2de100290de126a0d796920bd34ac00a667cb3bc8811071c275001e4d1a0dd0cc3563d15ef4b2139769ae3d5ef3
 DIST blinker-1.8.1.tar.gz 23191 BLAKE2B 
5d1b5016b24669b8f602beb650126a4da8a7aaee6d096200634206ae3ebcdcbb5d7f3bb554269a08e0aacba0dc7dcda1a2977aeb5c8ef5f38c81dc8892d786d5
 SHA512 
b6adada7f314369863070e830364833aade954e4cedca390643223d632c110a314856fb1c050402cad7e64959500c4d27d149ce7b682ee6bde99a69dc66ea495
+DIST blinker-1.8.2.tar.gz 23161 BLAKE2B 
43254180a0486ee6787f7f02c17418524182529505c5a5d01abc1f151ef85bc736fc442d3e88d670e638c866537863476a2efdc1baf8e39017add9a1372749ed
 SHA512 
037822e014974aaa9d6faf76805b09c06d697de9555cf4cd1265e639c52f72c5ed905e4698140b49a5e011806d91541636a7cf58082aabdd927c60dffd7df012

diff --git a/dev-python/blinker/blinker-1.8.2.ebuild 
b/dev-python/blinker/blinker-1.8.2.ebuild
new file mode 100644
index ..9df417e40e36
--- /dev/null
+++ b/dev-python/blinker/blinker-1.8.2.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=flit
+PYTHON_COMPAT=( python3_{10..12} pypy3 )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Fast, simple object-to-object and broadcast signaling"
+HOMEPAGE="
+   https://github.com/pallets-eco/blinker/
+   https://pypi.org/project/blinker/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+
+BDEPEND="
+   test? (
+   dev-python/pytest-asyncio[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest -p asyncio
+}



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

2024-04-28 Thread Michał Górny
commit: b3cfe33a5e590f290d3dfa453ad166f5c966a30b
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Apr 29 03:30:58 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Apr 29 03:33:14 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3cfe33a

dev-python/blinker: Bump to 1.8.1

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

 dev-python/blinker/Manifest |  1 +
 dev-python/blinker/blinker-1.8.1.ebuild | 32 
 2 files changed, 33 insertions(+)

diff --git a/dev-python/blinker/Manifest b/dev-python/blinker/Manifest
index 2ae80643348a..0493698cb32f 100644
--- a/dev-python/blinker/Manifest
+++ b/dev-python/blinker/Manifest
@@ -1,2 +1,3 @@
 DIST blinker-1.7.0.tar.gz 28134 BLAKE2B 
afff064a79ae7ab9fcee46c7eb3f6557bd9149be0a10cddfd13f969649a7aa57cec727cc6a10c54af2f676b8dc9be69beaf6521b5764555ac3e97fda7b68f5f8
 SHA512 
b55dc104fd69bf9f682184202f9da7cb6925e7e863f38d5ad5b4b5988b2315aae02da6f4c9f0ec34238b8d5b9b6eec52b06258d93e14416cda3e2b718d9aa60c
 DIST blinker-1.8.0.tar.gz 22598 BLAKE2B 
80a08bc860acc049ea4bbc30dd23f74ed7b0507a6f4dd550a0fb946233445b930732300ddc2201f6217b0557c082fbc90774d64a587ed448d839ee1b085b0c09
 SHA512 
1862589712c8828b2d9b3d434f213017cd81b2de100290de126a0d796920bd34ac00a667cb3bc8811071c275001e4d1a0dd0cc3563d15ef4b2139769ae3d5ef3
+DIST blinker-1.8.1.tar.gz 23191 BLAKE2B 
5d1b5016b24669b8f602beb650126a4da8a7aaee6d096200634206ae3ebcdcbb5d7f3bb554269a08e0aacba0dc7dcda1a2977aeb5c8ef5f38c81dc8892d786d5
 SHA512 
b6adada7f314369863070e830364833aade954e4cedca390643223d632c110a314856fb1c050402cad7e64959500c4d27d149ce7b682ee6bde99a69dc66ea495

diff --git a/dev-python/blinker/blinker-1.8.1.ebuild 
b/dev-python/blinker/blinker-1.8.1.ebuild
new file mode 100644
index ..9df417e40e36
--- /dev/null
+++ b/dev-python/blinker/blinker-1.8.1.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=flit
+PYTHON_COMPAT=( python3_{10..12} pypy3 )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Fast, simple object-to-object and broadcast signaling"
+HOMEPAGE="
+   https://github.com/pallets-eco/blinker/
+   https://pypi.org/project/blinker/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+
+BDEPEND="
+   test? (
+   dev-python/pytest-asyncio[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest -p asyncio
+}



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

2024-04-27 Thread Michał Górny
commit: a4e0463b23ee3352cc4cf1106fb6cf67182b1af4
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Apr 28 02:31:20 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Apr 28 02:37:18 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4e0463b

dev-python/blinker: Bump to 1.8.0

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

 dev-python/blinker/Manifest |  1 +
 dev-python/blinker/blinker-1.8.0.ebuild | 32 
 2 files changed, 33 insertions(+)

diff --git a/dev-python/blinker/Manifest b/dev-python/blinker/Manifest
index d10d51af8618..2ae80643348a 100644
--- a/dev-python/blinker/Manifest
+++ b/dev-python/blinker/Manifest
@@ -1 +1,2 @@
 DIST blinker-1.7.0.tar.gz 28134 BLAKE2B 
afff064a79ae7ab9fcee46c7eb3f6557bd9149be0a10cddfd13f969649a7aa57cec727cc6a10c54af2f676b8dc9be69beaf6521b5764555ac3e97fda7b68f5f8
 SHA512 
b55dc104fd69bf9f682184202f9da7cb6925e7e863f38d5ad5b4b5988b2315aae02da6f4c9f0ec34238b8d5b9b6eec52b06258d93e14416cda3e2b718d9aa60c
+DIST blinker-1.8.0.tar.gz 22598 BLAKE2B 
80a08bc860acc049ea4bbc30dd23f74ed7b0507a6f4dd550a0fb946233445b930732300ddc2201f6217b0557c082fbc90774d64a587ed448d839ee1b085b0c09
 SHA512 
1862589712c8828b2d9b3d434f213017cd81b2de100290de126a0d796920bd34ac00a667cb3bc8811071c275001e4d1a0dd0cc3563d15ef4b2139769ae3d5ef3

diff --git a/dev-python/blinker/blinker-1.8.0.ebuild 
b/dev-python/blinker/blinker-1.8.0.ebuild
new file mode 100644
index ..9df417e40e36
--- /dev/null
+++ b/dev-python/blinker/blinker-1.8.0.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=flit
+PYTHON_COMPAT=( python3_{10..12} pypy3 )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Fast, simple object-to-object and broadcast signaling"
+HOMEPAGE="
+   https://github.com/pallets-eco/blinker/
+   https://pypi.org/project/blinker/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+
+BDEPEND="
+   test? (
+   dev-python/pytest-asyncio[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest -p asyncio
+}



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

2024-04-18 Thread Michał Górny
commit: b7bcb34f8bebe157a99316b72472f7c172d45d04
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Apr 18 13:13:43 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Apr 18 15:45:38 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7bcb34f

dev-python/blinker: Add missing pytest-asyncio dep

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

 dev-python/blinker/blinker-1.7.0.ebuild | 13 -
 1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/dev-python/blinker/blinker-1.7.0.ebuild 
b/dev-python/blinker/blinker-1.7.0.ebuild
index caa91f2b57eb..c965ec466d37 100644
--- a/dev-python/blinker/blinker-1.7.0.ebuild
+++ b/dev-python/blinker/blinker-1.7.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -18,4 +18,15 @@ LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 
+BDEPEND="
+   test? (
+   dev-python/pytest-asyncio[${PYTHON_USEDEP}]
+   )
+"
+
 distutils_enable_tests pytest
+
+python_test() {
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest -p asyncio
+}



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

2023-11-11 Thread Michał Górny
commit: f8ba57cfa49f6d22a3adf1380e137e66795b3b7c
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Nov 11 20:30:22 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Nov 11 20:30:22 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8ba57cf

dev-python/blinker: Remove old

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

 dev-python/blinker/Manifest |  2 --
 dev-python/blinker/blinker-1.6.2.ebuild | 21 -
 dev-python/blinker/blinker-1.6.3.ebuild | 21 -
 3 files changed, 44 deletions(-)

diff --git a/dev-python/blinker/Manifest b/dev-python/blinker/Manifest
index 452b048a70ef..d10d51af8618 100644
--- a/dev-python/blinker/Manifest
+++ b/dev-python/blinker/Manifest
@@ -1,3 +1 @@
-DIST blinker-1.6.2.tar.gz 28699 BLAKE2B 
dd19193af5af97d6ea373a37fcd7318e5e9c18f04503821224bd687dc8f065ef41142bbb136b964661501ab2d9c8a8e2bd1e3e865e4df7ed3a7e627d67962bb1
 SHA512 
c84bb955e97e6a13e6fda5f070373736bd1361f40ad9202eeaa300055b163648db381060f6b45fdf405a0bd4ef07b694875735e6f220d51d1b7a5be7efb28f72
-DIST blinker-1.6.3.tar.gz 28092 BLAKE2B 
8fb0d6b050ab055a9364888c0fe590d4eada5d5d4df19f61aeeab503c9f70bde52a3120601b62747efbffd2ab4ebb055318880cd3bfd0908d731477dd034e03a
 SHA512 
2b68751246ac084a97491a360496971416564f21cae909799e2942e915fbee1c6399e43aaa6391cadcdd87f57340013b3a894afa2e9b5dc156baa1245c4928b9
 DIST blinker-1.7.0.tar.gz 28134 BLAKE2B 
afff064a79ae7ab9fcee46c7eb3f6557bd9149be0a10cddfd13f969649a7aa57cec727cc6a10c54af2f676b8dc9be69beaf6521b5764555ac3e97fda7b68f5f8
 SHA512 
b55dc104fd69bf9f682184202f9da7cb6925e7e863f38d5ad5b4b5988b2315aae02da6f4c9f0ec34238b8d5b9b6eec52b06258d93e14416cda3e2b718d9aa60c

diff --git a/dev-python/blinker/blinker-1.6.2.ebuild 
b/dev-python/blinker/blinker-1.6.2.ebuild
deleted file mode 100644
index 99430a2ce6ab..
--- a/dev-python/blinker/blinker-1.6.2.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..12} pypy3 )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Fast, simple object-to-object and broadcast signaling"
-HOMEPAGE="
-   https://github.com/pallets-eco/blinker/
-   https://pypi.org/project/blinker/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
-
-distutils_enable_tests pytest

diff --git a/dev-python/blinker/blinker-1.6.3.ebuild 
b/dev-python/blinker/blinker-1.6.3.ebuild
deleted file mode 100644
index 8c0df5e80dcb..
--- a/dev-python/blinker/blinker-1.6.3.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=flit
-PYTHON_COMPAT=( python3_{10..12} pypy3 )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Fast, simple object-to-object and broadcast signaling"
-HOMEPAGE="
-   https://github.com/pallets-eco/blinker/
-   https://pypi.org/project/blinker/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
-
-distutils_enable_tests pytest



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

2023-11-11 Thread Sam James
commit: 3ee07873c4c2c6762485c898b2d004bd4d1fdaa8
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 11 19:19:35 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 11 19:19:35 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ee07873

dev-python/blinker: Stabilize 1.7.0 ALLARCHES, #917181

Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/blinker/blinker-1.7.0.ebuild 
b/dev-python/blinker/blinker-1.7.0.ebuild
index 8c0df5e80dcb..caa91f2b57eb 100644
--- a/dev-python/blinker/blinker-1.7.0.ebuild
+++ b/dev-python/blinker/blinker-1.7.0.ebuild
@@ -16,6 +16,6 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 
 distutils_enable_tests pytest



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

2023-11-01 Thread Michał Górny
commit: 69dec77fa1fd8cb002925b1238590bb3800224ae
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Nov  2 05:24:04 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Nov  2 05:30:32 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69dec77f

dev-python/blinker: Bump to 1.7.0

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

 dev-python/blinker/Manifest |  1 +
 dev-python/blinker/blinker-1.7.0.ebuild | 21 +
 2 files changed, 22 insertions(+)

diff --git a/dev-python/blinker/Manifest b/dev-python/blinker/Manifest
index 0f2a8a7cd65e..452b048a70ef 100644
--- a/dev-python/blinker/Manifest
+++ b/dev-python/blinker/Manifest
@@ -1,2 +1,3 @@
 DIST blinker-1.6.2.tar.gz 28699 BLAKE2B 
dd19193af5af97d6ea373a37fcd7318e5e9c18f04503821224bd687dc8f065ef41142bbb136b964661501ab2d9c8a8e2bd1e3e865e4df7ed3a7e627d67962bb1
 SHA512 
c84bb955e97e6a13e6fda5f070373736bd1361f40ad9202eeaa300055b163648db381060f6b45fdf405a0bd4ef07b694875735e6f220d51d1b7a5be7efb28f72
 DIST blinker-1.6.3.tar.gz 28092 BLAKE2B 
8fb0d6b050ab055a9364888c0fe590d4eada5d5d4df19f61aeeab503c9f70bde52a3120601b62747efbffd2ab4ebb055318880cd3bfd0908d731477dd034e03a
 SHA512 
2b68751246ac084a97491a360496971416564f21cae909799e2942e915fbee1c6399e43aaa6391cadcdd87f57340013b3a894afa2e9b5dc156baa1245c4928b9
+DIST blinker-1.7.0.tar.gz 28134 BLAKE2B 
afff064a79ae7ab9fcee46c7eb3f6557bd9149be0a10cddfd13f969649a7aa57cec727cc6a10c54af2f676b8dc9be69beaf6521b5764555ac3e97fda7b68f5f8
 SHA512 
b55dc104fd69bf9f682184202f9da7cb6925e7e863f38d5ad5b4b5988b2315aae02da6f4c9f0ec34238b8d5b9b6eec52b06258d93e14416cda3e2b718d9aa60c

diff --git a/dev-python/blinker/blinker-1.7.0.ebuild 
b/dev-python/blinker/blinker-1.7.0.ebuild
new file mode 100644
index ..8c0df5e80dcb
--- /dev/null
+++ b/dev-python/blinker/blinker-1.7.0.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=flit
+PYTHON_COMPAT=( python3_{10..12} pypy3 )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Fast, simple object-to-object and broadcast signaling"
+HOMEPAGE="
+   https://github.com/pallets-eco/blinker/
+   https://pypi.org/project/blinker/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+
+distutils_enable_tests pytest



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

2023-10-08 Thread Michał Górny
commit: 3b756af3f0917e725fef7995756444a15746ef75
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Oct  8 17:08:27 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Oct  8 17:47:57 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b756af3

dev-python/blinker: Bump to 1.6.3

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

 dev-python/blinker/Manifest |  1 +
 dev-python/blinker/blinker-1.6.3.ebuild | 21 +
 2 files changed, 22 insertions(+)

diff --git a/dev-python/blinker/Manifest b/dev-python/blinker/Manifest
index 4f52ec226af4..0f2a8a7cd65e 100644
--- a/dev-python/blinker/Manifest
+++ b/dev-python/blinker/Manifest
@@ -1 +1,2 @@
 DIST blinker-1.6.2.tar.gz 28699 BLAKE2B 
dd19193af5af97d6ea373a37fcd7318e5e9c18f04503821224bd687dc8f065ef41142bbb136b964661501ab2d9c8a8e2bd1e3e865e4df7ed3a7e627d67962bb1
 SHA512 
c84bb955e97e6a13e6fda5f070373736bd1361f40ad9202eeaa300055b163648db381060f6b45fdf405a0bd4ef07b694875735e6f220d51d1b7a5be7efb28f72
+DIST blinker-1.6.3.tar.gz 28092 BLAKE2B 
8fb0d6b050ab055a9364888c0fe590d4eada5d5d4df19f61aeeab503c9f70bde52a3120601b62747efbffd2ab4ebb055318880cd3bfd0908d731477dd034e03a
 SHA512 
2b68751246ac084a97491a360496971416564f21cae909799e2942e915fbee1c6399e43aaa6391cadcdd87f57340013b3a894afa2e9b5dc156baa1245c4928b9

diff --git a/dev-python/blinker/blinker-1.6.3.ebuild 
b/dev-python/blinker/blinker-1.6.3.ebuild
new file mode 100644
index ..8c0df5e80dcb
--- /dev/null
+++ b/dev-python/blinker/blinker-1.6.3.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=flit
+PYTHON_COMPAT=( python3_{10..12} pypy3 )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Fast, simple object-to-object and broadcast signaling"
+HOMEPAGE="
+   https://github.com/pallets-eco/blinker/
+   https://pypi.org/project/blinker/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+
+distutils_enable_tests pytest



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

2023-05-27 Thread Arthur Zamarin
commit: 67f2848c852ef35724a0347d374c0d133dff6bb6
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat May 27 08:49:34 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat May 27 09:44:01 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67f2848c

dev-python/blinker: enable py3.12

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/dev-python/blinker/blinker-1.6.2.ebuild 
b/dev-python/blinker/blinker-1.6.2.ebuild
index 3dc73428ade6..99430a2ce6ab 100644
--- a/dev-python/blinker/blinker-1.6.2.ebuild
+++ b/dev-python/blinker/blinker-1.6.2.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} pypy3 )
+PYTHON_COMPAT=( python3_{10..12} pypy3 )
 
 inherit distutils-r1 pypi
 



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

2023-05-05 Thread Michał Górny
commit: 384aa35002675a96faf6b4cea8bf35edc4f6f558
Author: Michał Górny  gentoo  org>
AuthorDate: Fri May  5 13:31:30 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri May  5 13:43:35 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=384aa350

dev-python/blinker: Remove old

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

 dev-python/blinker/Manifest |  3 ---
 dev-python/blinker/blinker-1.5.ebuild   | 27 ---
 dev-python/blinker/blinker-1.6.1.ebuild | 25 -
 dev-python/blinker/blinker-1.6.ebuild   | 25 -
 4 files changed, 80 deletions(-)

diff --git a/dev-python/blinker/Manifest b/dev-python/blinker/Manifest
index e52d9202bfb2..4f52ec226af4 100644
--- a/dev-python/blinker/Manifest
+++ b/dev-python/blinker/Manifest
@@ -1,4 +1 @@
-DIST blinker-1.5.tar.gz 27022 BLAKE2B 
1e80d73653318ec6e263c66b8d5d3433ff1dc05e08af03442d99d83a9823b728fee86e6e64864932aa4961b11d28bee8ad7d6f56be6dbebd6dac48e610cdb835
 SHA512 
b1880fdc974be63e16e2b826bdbc8ee161bc0234591b8b41deed937a1e1b9d0bf1fb697c8e94644de9cc1900aedd39d08cfc3e59fef51abec295552f96418722
-DIST blinker-1.6.1.tar.gz 28584 BLAKE2B 
b546187fc542a1d9ab83f55b3de3593e3c272f43813c411684a9d70736f28ae5fb082ca84836453baeb49e8c89f7fb3d523a4cda87d392ff7c60df75826cb528
 SHA512 
28a8fb51e9dcb42c25851565626d72ff8fdd0b8774088dedd6217e47c1db6094d5a317bced3aca07722b7d7f39921c4e157a1fe3a20e3a765c0d9867201b5760
 DIST blinker-1.6.2.tar.gz 28699 BLAKE2B 
dd19193af5af97d6ea373a37fcd7318e5e9c18f04503821224bd687dc8f065ef41142bbb136b964661501ab2d9c8a8e2bd1e3e865e4df7ed3a7e627d67962bb1
 SHA512 
c84bb955e97e6a13e6fda5f070373736bd1361f40ad9202eeaa300055b163648db381060f6b45fdf405a0bd4ef07b694875735e6f220d51d1b7a5be7efb28f72
-DIST blinker-1.6.tar.gz 28511 BLAKE2B 
854ecf9c38d45c673cfec6c2ffbe1742bf3b2d68771bf0b922636c5ab848c97a7bd96d1b5ff8b9dfeca44475c0cfd81867ae588e5d372bb78deefe7ee41f9d91
 SHA512 
ea664de0adb4638f2adb79bf1eecdb727cfea41349a763b3187f0e3dda2f979cb46b3901e59d7a1aedb29ca0fa8e15862fefab9527c22b09c4122aef71fda408

diff --git a/dev-python/blinker/blinker-1.5.ebuild 
b/dev-python/blinker/blinker-1.5.ebuild
deleted file mode 100644
index 4ae3cfeb5b29..
--- a/dev-python/blinker/blinker-1.5.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} pypy3 )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Fast, simple object-to-object and broadcast signaling"
-HOMEPAGE="
-   https://github.com/pallets-eco/blinker/
-   https://pypi.org/project/blinker/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
-IUSE="doc"
-
-distutils_enable_tests pytest
-
-python_install_all() {
-   use doc && HTML_DOCS=( docs/html/. )
-   distutils-r1_python_install_all
-}

diff --git a/dev-python/blinker/blinker-1.6.1.ebuild 
b/dev-python/blinker/blinker-1.6.1.ebuild
deleted file mode 100644
index 6dd40ffb0d43..
--- a/dev-python/blinker/blinker-1.6.1.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} pypy3 )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Fast, simple object-to-object and broadcast signaling"
-HOMEPAGE="
-   https://github.com/pallets-eco/blinker/
-   https://pypi.org/project/blinker/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
-
-RDEPEND="
-   >=dev-python/typing-extensions-4.2[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest

diff --git a/dev-python/blinker/blinker-1.6.ebuild 
b/dev-python/blinker/blinker-1.6.ebuild
deleted file mode 100644
index a00c8956a201..
--- a/dev-python/blinker/blinker-1.6.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} pypy3 )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Fast, simple object-to-object and broadcast signaling"
-HOMEPAGE="
-   https://github.com/pallets-eco/blinker/
-   https://pypi.org/project/blinker/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
-
-RDEPEND="
-   dev-python/typing-extensions[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest



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

2023-05-05 Thread Arthur Zamarin
commit: 1dde9fd56d8770aedf20e4da841a4399c54637ca
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri May  5 06:56:10 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri May  5 06:56:10 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1dde9fd5

dev-python/blinker: Stabilize 1.6.2 ALLARCHES, #905734

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/dev-python/blinker/blinker-1.6.2.ebuild 
b/dev-python/blinker/blinker-1.6.2.ebuild
index 6d50df21c47b..3dc73428ade6 100644
--- a/dev-python/blinker/blinker-1.6.2.ebuild
+++ b/dev-python/blinker/blinker-1.6.2.ebuild
@@ -16,6 +16,6 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 
 distutils_enable_tests pytest



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

2023-04-12 Thread Michał Górny
commit: 666318a7aa0208fbfea23f30f19ca8d0077319f0
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Apr 13 04:49:05 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Apr 13 05:12:55 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=666318a7

dev-python/blinker: Bump to 1.6.2

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

 dev-python/blinker/Manifest |  1 +
 dev-python/blinker/blinker-1.6.2.ebuild | 21 +
 2 files changed, 22 insertions(+)

diff --git a/dev-python/blinker/Manifest b/dev-python/blinker/Manifest
index be3fd90713e5..e52d9202bfb2 100644
--- a/dev-python/blinker/Manifest
+++ b/dev-python/blinker/Manifest
@@ -1,3 +1,4 @@
 DIST blinker-1.5.tar.gz 27022 BLAKE2B 
1e80d73653318ec6e263c66b8d5d3433ff1dc05e08af03442d99d83a9823b728fee86e6e64864932aa4961b11d28bee8ad7d6f56be6dbebd6dac48e610cdb835
 SHA512 
b1880fdc974be63e16e2b826bdbc8ee161bc0234591b8b41deed937a1e1b9d0bf1fb697c8e94644de9cc1900aedd39d08cfc3e59fef51abec295552f96418722
 DIST blinker-1.6.1.tar.gz 28584 BLAKE2B 
b546187fc542a1d9ab83f55b3de3593e3c272f43813c411684a9d70736f28ae5fb082ca84836453baeb49e8c89f7fb3d523a4cda87d392ff7c60df75826cb528
 SHA512 
28a8fb51e9dcb42c25851565626d72ff8fdd0b8774088dedd6217e47c1db6094d5a317bced3aca07722b7d7f39921c4e157a1fe3a20e3a765c0d9867201b5760
+DIST blinker-1.6.2.tar.gz 28699 BLAKE2B 
dd19193af5af97d6ea373a37fcd7318e5e9c18f04503821224bd687dc8f065ef41142bbb136b964661501ab2d9c8a8e2bd1e3e865e4df7ed3a7e627d67962bb1
 SHA512 
c84bb955e97e6a13e6fda5f070373736bd1361f40ad9202eeaa300055b163648db381060f6b45fdf405a0bd4ef07b694875735e6f220d51d1b7a5be7efb28f72
 DIST blinker-1.6.tar.gz 28511 BLAKE2B 
854ecf9c38d45c673cfec6c2ffbe1742bf3b2d68771bf0b922636c5ab848c97a7bd96d1b5ff8b9dfeca44475c0cfd81867ae588e5d372bb78deefe7ee41f9d91
 SHA512 
ea664de0adb4638f2adb79bf1eecdb727cfea41349a763b3187f0e3dda2f979cb46b3901e59d7a1aedb29ca0fa8e15862fefab9527c22b09c4122aef71fda408

diff --git a/dev-python/blinker/blinker-1.6.2.ebuild 
b/dev-python/blinker/blinker-1.6.2.ebuild
new file mode 100644
index ..6d50df21c47b
--- /dev/null
+++ b/dev-python/blinker/blinker-1.6.2.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{9..11} pypy3 )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Fast, simple object-to-object and broadcast signaling"
+HOMEPAGE="
+   https://github.com/pallets-eco/blinker/
+   https://pypi.org/project/blinker/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+
+distutils_enable_tests pytest



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

2023-04-10 Thread Michał Górny
commit: e4a0820fc0ceb50571d39424ae0f50c55a94cef2
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Apr 10 05:39:58 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Apr 10 05:40:58 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4a0820f

dev-python/blinker: Bump to 1.6.1

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

 dev-python/blinker/Manifest |  1 +
 dev-python/blinker/blinker-1.6.1.ebuild | 25 +
 2 files changed, 26 insertions(+)

diff --git a/dev-python/blinker/Manifest b/dev-python/blinker/Manifest
index 2a1ae68b6e0d..be3fd90713e5 100644
--- a/dev-python/blinker/Manifest
+++ b/dev-python/blinker/Manifest
@@ -1,2 +1,3 @@
 DIST blinker-1.5.tar.gz 27022 BLAKE2B 
1e80d73653318ec6e263c66b8d5d3433ff1dc05e08af03442d99d83a9823b728fee86e6e64864932aa4961b11d28bee8ad7d6f56be6dbebd6dac48e610cdb835
 SHA512 
b1880fdc974be63e16e2b826bdbc8ee161bc0234591b8b41deed937a1e1b9d0bf1fb697c8e94644de9cc1900aedd39d08cfc3e59fef51abec295552f96418722
+DIST blinker-1.6.1.tar.gz 28584 BLAKE2B 
b546187fc542a1d9ab83f55b3de3593e3c272f43813c411684a9d70736f28ae5fb082ca84836453baeb49e8c89f7fb3d523a4cda87d392ff7c60df75826cb528
 SHA512 
28a8fb51e9dcb42c25851565626d72ff8fdd0b8774088dedd6217e47c1db6094d5a317bced3aca07722b7d7f39921c4e157a1fe3a20e3a765c0d9867201b5760
 DIST blinker-1.6.tar.gz 28511 BLAKE2B 
854ecf9c38d45c673cfec6c2ffbe1742bf3b2d68771bf0b922636c5ab848c97a7bd96d1b5ff8b9dfeca44475c0cfd81867ae588e5d372bb78deefe7ee41f9d91
 SHA512 
ea664de0adb4638f2adb79bf1eecdb727cfea41349a763b3187f0e3dda2f979cb46b3901e59d7a1aedb29ca0fa8e15862fefab9527c22b09c4122aef71fda408

diff --git a/dev-python/blinker/blinker-1.6.1.ebuild 
b/dev-python/blinker/blinker-1.6.1.ebuild
new file mode 100644
index ..6dd40ffb0d43
--- /dev/null
+++ b/dev-python/blinker/blinker-1.6.1.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{9..11} pypy3 )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Fast, simple object-to-object and broadcast signaling"
+HOMEPAGE="
+   https://github.com/pallets-eco/blinker/
+   https://pypi.org/project/blinker/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+
+RDEPEND="
+   >=dev-python/typing-extensions-4.2[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest



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

2023-04-02 Thread Michał Górny
commit: 1b511215559d3c513ba2334c120222140ea83ad8
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Apr  3 02:49:45 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Apr  3 02:49:45 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b511215

dev-python/blinker: Add GH remote-id

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

 dev-python/blinker/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/blinker/metadata.xml b/dev-python/blinker/metadata.xml
index cd1ba4cba860..d8e036c563aa 100644
--- a/dev-python/blinker/metadata.xml
+++ b/dev-python/blinker/metadata.xml
@@ -7,6 +7,7 @@



+   pallets-eco/blinker
blinker

 



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

2023-04-02 Thread Michał Górny
commit: ba5740d604009439030ce5e25bdf2fdf6ad4b482
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Apr  3 02:37:01 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Apr  3 02:49:10 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba5740d6

dev-python/blinker: Bump to 1.6

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

 dev-python/blinker/Manifest   |  1 +
 dev-python/blinker/blinker-1.6.ebuild | 25 +
 2 files changed, 26 insertions(+)

diff --git a/dev-python/blinker/Manifest b/dev-python/blinker/Manifest
index 2430cba076d1..2a1ae68b6e0d 100644
--- a/dev-python/blinker/Manifest
+++ b/dev-python/blinker/Manifest
@@ -1 +1,2 @@
 DIST blinker-1.5.tar.gz 27022 BLAKE2B 
1e80d73653318ec6e263c66b8d5d3433ff1dc05e08af03442d99d83a9823b728fee86e6e64864932aa4961b11d28bee8ad7d6f56be6dbebd6dac48e610cdb835
 SHA512 
b1880fdc974be63e16e2b826bdbc8ee161bc0234591b8b41deed937a1e1b9d0bf1fb697c8e94644de9cc1900aedd39d08cfc3e59fef51abec295552f96418722
+DIST blinker-1.6.tar.gz 28511 BLAKE2B 
854ecf9c38d45c673cfec6c2ffbe1742bf3b2d68771bf0b922636c5ab848c97a7bd96d1b5ff8b9dfeca44475c0cfd81867ae588e5d372bb78deefe7ee41f9d91
 SHA512 
ea664de0adb4638f2adb79bf1eecdb727cfea41349a763b3187f0e3dda2f979cb46b3901e59d7a1aedb29ca0fa8e15862fefab9527c22b09c4122aef71fda408

diff --git a/dev-python/blinker/blinker-1.6.ebuild 
b/dev-python/blinker/blinker-1.6.ebuild
new file mode 100644
index ..a00c8956a201
--- /dev/null
+++ b/dev-python/blinker/blinker-1.6.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{9..11} pypy3 )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Fast, simple object-to-object and broadcast signaling"
+HOMEPAGE="
+   https://github.com/pallets-eco/blinker/
+   https://pypi.org/project/blinker/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+
+RDEPEND="
+   dev-python/typing-extensions[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest



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

2023-03-15 Thread Michał Górny
commit: 2fe168d840e526601590aeaf8d898f82c240f5b8
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Mar 15 17:44:49 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Mar 16 03:42:31 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2fe168d8

dev-python/blinker: Use pypi.eclass

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

 dev-python/blinker/blinker-1.5.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/dev-python/blinker/blinker-1.5.ebuild 
b/dev-python/blinker/blinker-1.5.ebuild
index 6b565d0d3671..4ae3cfeb5b29 100644
--- a/dev-python/blinker/blinker-1.5.ebuild
+++ b/dev-python/blinker/blinker-1.5.ebuild
@@ -6,14 +6,13 @@ EAPI=8
 DISTUTILS_USE_PEP517=setuptools
 PYTHON_COMPAT=( python3_{9..11} pypy3 )
 
-inherit distutils-r1
+inherit distutils-r1 pypi
 
 DESCRIPTION="Fast, simple object-to-object and broadcast signaling"
 HOMEPAGE="
https://github.com/pallets-eco/blinker/
https://pypi.org/project/blinker/
 "
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"



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

2022-08-18 Thread Michał Górny
commit: 44585de5973aaaf060a1cfa3fe525ecc9bc4e775
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Aug 18 05:04:30 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Aug 18 06:18:32 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44585de5

dev-python/blinker: Remove obsolete patch

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

 dev-python/blinker/files/blinker-1.4-pytest.patch | 31 ---
 1 file changed, 31 deletions(-)

diff --git a/dev-python/blinker/files/blinker-1.4-pytest.patch 
b/dev-python/blinker/files/blinker-1.4-pytest.patch
deleted file mode 100644
index e5c2b04998b5..
--- a/dev-python/blinker/files/blinker-1.4-pytest.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From 8238e16c699ce7f99f5ff3f80d03d332d72015f8 Mon Sep 17 00:00:00 2001
-From: pgajdos 
-Date: Wed, 8 Jul 2020 15:22:19 +0200
-Subject: [PATCH] use pytest instead of deprecated nose
-

- tests/test_signals.py | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/tests/test_signals.py b/tests/test_signals.py
-index 2d6a65a..e74db47 100644
 a/tests/test_signals.py
-+++ b/tests/test_signals.py
-@@ -4,7 +4,7 @@
- 
- import blinker
- 
--from nose.tools import assert_raises
-+import pytest
- 
- 
- jython = sys.platform.startswith('java')
-@@ -227,7 +227,7 @@ def receiver(sender, **kw):
- pass
- sig = blinker.Signal()
- 
--assert_raises(TypeError, sig.connect, receiver)
-+pytest.raises(TypeError, sig.connect, receiver)
- assert not sig.receivers
- assert not sig._by_receiver
- assert sig._by_sender == {blinker.base.ANY_ID: set()}



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

2022-08-17 Thread Arthur Zamarin
commit: d93b7c3a2cd1cacd846187d1c4a4b385218dd9f4
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Aug 17 19:35:22 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Aug 17 19:35:22 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d93b7c3a

dev-python/blinker: drop 1.4-r3

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/blinker/Manifest  |  1 -
 dev-python/blinker/blinker-1.4-r3.ebuild | 34 
 2 files changed, 35 deletions(-)

diff --git a/dev-python/blinker/Manifest b/dev-python/blinker/Manifest
index 4c44c7dc7da0..2430cba076d1 100644
--- a/dev-python/blinker/Manifest
+++ b/dev-python/blinker/Manifest
@@ -1,2 +1 @@
-DIST blinker-1.4.tar.gz 111476 BLAKE2B 
a9ebe32bc01f7f08a5f180caa3d3830eaa10b7c0499c11ff4ceb71ed604f94dfbe4c783cc7409a57da28d6d69cc49d7861d05401802f86d054bdd2501f36cf60
 SHA512 
2f5f71b05c7cc27f5761ba698b05c78c8a491f5285c120e532d24be0c8256daa14e075f3f30e15fb18e7c3f16579af9378a155d058f170e3af9ffdb89e49f56e
 DIST blinker-1.5.tar.gz 27022 BLAKE2B 
1e80d73653318ec6e263c66b8d5d3433ff1dc05e08af03442d99d83a9823b728fee86e6e64864932aa4961b11d28bee8ad7d6f56be6dbebd6dac48e610cdb835
 SHA512 
b1880fdc974be63e16e2b826bdbc8ee161bc0234591b8b41deed937a1e1b9d0bf1fb697c8e94644de9cc1900aedd39d08cfc3e59fef51abec295552f96418722

diff --git a/dev-python/blinker/blinker-1.4-r3.ebuild 
b/dev-python/blinker/blinker-1.4-r3.ebuild
deleted file mode 100644
index a7692210d62f..
--- a/dev-python/blinker/blinker-1.4-r3.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..11} pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="Fast, simple object-to-object and broadcast signaling"
-HOMEPAGE="
-   https://pythonhosted.org/blinker/
-   https://github.com/pallets-eco/blinker/
-   https://pypi.org/project/blinker/
-"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
-IUSE="doc"
-
-distutils_enable_tests pytest
-
-PATCHES=(
-   # https://github.com/pallets-eco/blinker/pull/60
-   "${FILESDIR}"/${P}-pytest.patch
-)
-
-python_install_all() {
-   use doc && HTML_DOCS=( docs/html/. )
-   distutils-r1_python_install_all
-}



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

2022-08-17 Thread Sam James
commit: f01a643782b4817b7435ed7c52a98c10355bd6fb
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 17 18:45:56 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 17 18:47:29 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f01a6437

dev-python/blinker: Stabilize 1.5 ALLARCHES, #865617

Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/blinker/blinker-1.5.ebuild 
b/dev-python/blinker/blinker-1.5.ebuild
index d016db3a3c01..0b77afb77e47 100644
--- a/dev-python/blinker/blinker-1.5.ebuild
+++ b/dev-python/blinker/blinker-1.5.ebuild
@@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="doc"
 
 distutils_enable_tests pytest



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

2022-07-18 Thread Michał Górny
commit: 584f390d34db00c81a4894390e21e7ad8e49b81c
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Jul 18 06:48:17 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jul 18 07:54:45 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=584f390d

dev-python/blinker: Bump to 1.5

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

 dev-python/blinker/Manifest   |  1 +
 dev-python/blinker/blinker-1.5.ebuild | 28 
 2 files changed, 29 insertions(+)

diff --git a/dev-python/blinker/Manifest b/dev-python/blinker/Manifest
index e0bf845c521a..4c44c7dc7da0 100644
--- a/dev-python/blinker/Manifest
+++ b/dev-python/blinker/Manifest
@@ -1 +1,2 @@
 DIST blinker-1.4.tar.gz 111476 BLAKE2B 
a9ebe32bc01f7f08a5f180caa3d3830eaa10b7c0499c11ff4ceb71ed604f94dfbe4c783cc7409a57da28d6d69cc49d7861d05401802f86d054bdd2501f36cf60
 SHA512 
2f5f71b05c7cc27f5761ba698b05c78c8a491f5285c120e532d24be0c8256daa14e075f3f30e15fb18e7c3f16579af9378a155d058f170e3af9ffdb89e49f56e
+DIST blinker-1.5.tar.gz 27022 BLAKE2B 
1e80d73653318ec6e263c66b8d5d3433ff1dc05e08af03442d99d83a9823b728fee86e6e64864932aa4961b11d28bee8ad7d6f56be6dbebd6dac48e610cdb835
 SHA512 
b1880fdc974be63e16e2b826bdbc8ee161bc0234591b8b41deed937a1e1b9d0bf1fb697c8e94644de9cc1900aedd39d08cfc3e59fef51abec295552f96418722

diff --git a/dev-python/blinker/blinker-1.5.ebuild 
b/dev-python/blinker/blinker-1.5.ebuild
new file mode 100644
index ..d016db3a3c01
--- /dev/null
+++ b/dev-python/blinker/blinker-1.5.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..11} pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="Fast, simple object-to-object and broadcast signaling"
+HOMEPAGE="
+   https://github.com/pallets-eco/blinker/
+   https://pypi.org/project/blinker/
+"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+IUSE="doc"
+
+distutils_enable_tests pytest
+
+python_install_all() {
+   use doc && HTML_DOCS=( docs/html/. )
+   distutils-r1_python_install_all
+}



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

2022-06-12 Thread Michał Górny
commit: cd3d6be025c2ff044cf527e9145b2af21932749f
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Jun 12 08:32:26 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Jun 12 08:37:37 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd3d6be0

dev-python/blinker: Remove old

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

 dev-python/blinker/blinker-1.4-r2.ebuild | 24 
 1 file changed, 24 deletions(-)

diff --git a/dev-python/blinker/blinker-1.4-r2.ebuild 
b/dev-python/blinker/blinker-1.4-r2.ebuild
deleted file mode 100644
index d6b698db83f7..
--- a/dev-python/blinker/blinker-1.4-r2.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..10} pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="Fast, simple object-to-object and broadcast signaling"
-HOMEPAGE="https://pythonhosted.org/blinker/ https://pypi.org/project/blinker/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
-IUSE="doc"
-
-distutils_enable_tests nose
-
-python_install_all() {
-   use doc && HTML_DOCS=( docs/html/. )
-   distutils-r1_python_install_all
-}



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

2022-06-12 Thread Sam James
commit: d70b85ef550e124f8dbcaa4668d4c7730044702e
Author: Sam James  gentoo  org>
AuthorDate: Sun Jun 12 06:17:39 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jun 12 06:17:39 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d70b85ef

dev-python/blinker: Stabilize 1.4-r3 ALLARCHES, #851294

Signed-off-by: Sam James  gentoo.org>

 dev-python/blinker/blinker-1.4-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/blinker/blinker-1.4-r3.ebuild 
b/dev-python/blinker/blinker-1.4-r3.ebuild
index 985995a2f2af..a7692210d62f 100644
--- a/dev-python/blinker/blinker-1.4-r3.ebuild
+++ b/dev-python/blinker/blinker-1.4-r3.ebuild
@@ -18,7 +18,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="doc"
 
 distutils_enable_tests pytest



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

2022-05-12 Thread Michał Górny
commit: a90a4b7a4f1f7bb819250a20bcea5039fbd02062
Author: Michał Górny  gentoo  org>
AuthorDate: Thu May 12 20:16:21 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu May 12 20:16:21 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a90a4b7a

dev-python/blinker: EAPI 8, PEP517

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

 dev-python/blinker/blinker-1.4-r3.ebuild  | 34 +++
 dev-python/blinker/files/blinker-1.4-pytest.patch | 31 +
 2 files changed, 65 insertions(+)

diff --git a/dev-python/blinker/blinker-1.4-r3.ebuild 
b/dev-python/blinker/blinker-1.4-r3.ebuild
new file mode 100644
index ..e5dccf211b16
--- /dev/null
+++ b/dev-python/blinker/blinker-1.4-r3.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="Fast, simple object-to-object and broadcast signaling"
+HOMEPAGE="
+   https://pythonhosted.org/blinker/
+   https://github.com/pallets-eco/blinker/
+   https://pypi.org/project/blinker/
+"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+IUSE="doc"
+
+distutils_enable_tests pytest
+
+PATCHES=(
+   # https://github.com/pallets-eco/blinker/pull/60
+   "${FILESDIR}"/${P}-pytest.patch
+)
+
+python_install_all() {
+   use doc && HTML_DOCS=( docs/html/. )
+   distutils-r1_python_install_all
+}

diff --git a/dev-python/blinker/files/blinker-1.4-pytest.patch 
b/dev-python/blinker/files/blinker-1.4-pytest.patch
new file mode 100644
index ..e5c2b04998b5
--- /dev/null
+++ b/dev-python/blinker/files/blinker-1.4-pytest.patch
@@ -0,0 +1,31 @@
+From 8238e16c699ce7f99f5ff3f80d03d332d72015f8 Mon Sep 17 00:00:00 2001
+From: pgajdos 
+Date: Wed, 8 Jul 2020 15:22:19 +0200
+Subject: [PATCH] use pytest instead of deprecated nose
+
+---
+ tests/test_signals.py | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/tests/test_signals.py b/tests/test_signals.py
+index 2d6a65a..e74db47 100644
+--- a/tests/test_signals.py
 b/tests/test_signals.py
+@@ -4,7 +4,7 @@
+ 
+ import blinker
+ 
+-from nose.tools import assert_raises
++import pytest
+ 
+ 
+ jython = sys.platform.startswith('java')
+@@ -227,7 +227,7 @@ def receiver(sender, **kw):
+ pass
+ sig = blinker.Signal()
+ 
+-assert_raises(TypeError, sig.connect, receiver)
++pytest.raises(TypeError, sig.connect, receiver)
+ assert not sig.receivers
+ assert not sig._by_receiver
+ assert sig._by_sender == {blinker.base.ANY_ID: set()}



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

2022-05-12 Thread Michał Górny
commit: ef8a2985220477f0e8a3ea8674401dd74369c1e3
Author: Michał Górny  gentoo  org>
AuthorDate: Thu May 12 20:16:30 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu May 12 20:16:30 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef8a2985

dev-python/blinker: Enable py3.11

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

 dev-python/blinker/blinker-1.4-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/blinker/blinker-1.4-r3.ebuild 
b/dev-python/blinker/blinker-1.4-r3.ebuild
index e5dccf211b16..985995a2f2af 100644
--- a/dev-python/blinker/blinker-1.4-r3.ebuild
+++ b/dev-python/blinker/blinker-1.4-r3.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
+PYTHON_COMPAT=( python3_{8..11} pypy3 )
 
 inherit distutils-r1
 



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

2022-05-11 Thread Jakov Smolić
commit: d70626621123a958949488443e137d5a5f2cf100
Author: Jakov Smolić  gentoo  org>
AuthorDate: Wed May 11 12:54:51 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed May 11 12:56:37 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7062662

dev-python/blinker: Keyword 1.4-r2 mips, #837098

Signed-off-by: Jakov Smolić  gentoo.org>

 dev-python/blinker/blinker-1.4-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/blinker/blinker-1.4-r2.ebuild 
b/dev-python/blinker/blinker-1.4-r2.ebuild
index 2404a9a5572d..d6b698db83f7 100644
--- a/dev-python/blinker/blinker-1.4-r2.ebuild
+++ b/dev-python/blinker/blinker-1.4-r2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ppc ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="doc"
 
 distutils_enable_tests nose



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

2021-05-07 Thread Michał Górny
commit: 8bb39cc04bd9be5343efaaabbe780f07608aed39
Author: Jakov Smolic  sartura  hr>
AuthorDate: Thu May  6 23:31:16 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri May  7 11:11:30 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bb39cc0

dev-python/blinker: Port to python3.10

Signed-off-by: Jakov Smolic  sartura.hr>
Signed-off-by: Michał Górny  gentoo.org>

 dev-python/blinker/blinker-1.4-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/blinker/blinker-1.4-r2.ebuild 
b/dev-python/blinker/blinker-1.4-r2.ebuild
index f05ce5f9038..2c39f0d1521 100644
--- a/dev-python/blinker/blinker-1.4-r2.ebuild
+++ b/dev-python/blinker/blinker-1.4-r2.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{7,8,9} pypy3 )
+PYTHON_COMPAT=( python3_{7..10} pypy3 )
 
 inherit distutils-r1
 



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

2020-11-28 Thread Sam James
commit: 90011cda6d1a15201639648e3af6f9605aa3af5c
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 28 08:14:32 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 28 08:14:32 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90011cda

dev-python/blinker: ~x64-macos keyworded

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Sam James  gentoo.org>

 dev-python/blinker/blinker-1.4-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/blinker/blinker-1.4-r2.ebuild 
b/dev-python/blinker/blinker-1.4-r2.ebuild
index 00674e68804..b32e7969986 100644
--- a/dev-python/blinker/blinker-1.4-r2.ebuild
+++ b/dev-python/blinker/blinker-1.4-r2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 
~amd64-linux ~x86-linux ~x64-macos"
 IUSE="doc"
 
 distutils_enable_tests nose



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

2020-11-28 Thread Sam James
commit: f82b20d5e0e6464ca77a07538260ddd5029c799c
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 28 08:15:05 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 28 08:15:05 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f82b20d5

dev-python/blinker: mark ALLARCHES

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Sam James  gentoo.org>

 dev-python/blinker/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/blinker/metadata.xml b/dev-python/blinker/metadata.xml
index 45a585359f8..6c6c2a27a35 100644
--- a/dev-python/blinker/metadata.xml
+++ b/dev-python/blinker/metadata.xml
@@ -5,6 +5,7 @@
pyt...@gentoo.org
Python

+   

blinker




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

2020-09-20 Thread Michał Górny
commit: bd30473b44dbc7afcfeeec0b435ec23a652b939d
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Sep 20 10:16:53 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Sep 20 10:24:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd30473b

dev-python/blinker: Remove python2

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

 dev-python/blinker/{blinker-1.4-r1.ebuild => blinker-1.4-r2.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/blinker/blinker-1.4-r1.ebuild 
b/dev-python/blinker/blinker-1.4-r2.ebuild
similarity index 92%
rename from dev-python/blinker/blinker-1.4-r1.ebuild
rename to dev-python/blinker/blinker-1.4-r2.ebuild
index 22fa82c0a2b..00674e68804 100644
--- a/dev-python/blinker/blinker-1.4-r1.ebuild
+++ b/dev-python/blinker/blinker-1.4-r2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python2_7 python3_{6,7,8,9} pypy3 )
+PYTHON_COMPAT=( python3_{6,7,8,9} pypy3 )
 
 inherit distutils-r1
 



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

2020-07-15 Thread Sergei Trofimovich
commit: 59a1c3a51945bdaf03d7ac977f14fbe232eacc56
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Wed Jul 15 17:59:20 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Jul 15 20:18:28 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59a1c3a5

dev-python/blinker: stable 1.4-r1 for hppa, bug #732562

Package-Manager: Portage-2.3.99, Repoman-2.3.23
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/dev-python/blinker/blinker-1.4-r1.ebuild 
b/dev-python/blinker/blinker-1.4-r1.ebuild
index 40919d59392..82454715801 100644
--- a/dev-python/blinker/blinker-1.4-r1.ebuild
+++ b/dev-python/blinker/blinker-1.4-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux"
 IUSE="doc"
 
 distutils_enable_tests nose



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

2020-05-26 Thread Michał Górny
commit: 56f887ade82a7932f6d0560cab1167d76175705f
Author: Michał Górny  gentoo  org>
AuthorDate: Tue May 26 09:51:33 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue May 26 10:35:34 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56f887ad

dev-python/blinker: Port to py39

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

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

diff --git a/dev-python/blinker/blinker-1.4-r1.ebuild 
b/dev-python/blinker/blinker-1.4-r1.ebuild
index 17c395b9434..40919d59392 100644
--- a/dev-python/blinker/blinker-1.4-r1.ebuild
+++ b/dev-python/blinker/blinker-1.4-r1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python2_7 python3_{6,7,8} pypy3 )
+PYTHON_COMPAT=( python2_7 python3_{6,7,8,9} pypy3 )
 
 inherit distutils-r1
 



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

2020-05-08 Thread Agostino Sarubbo
commit: 9a1d67a62f46e6285fc289caf8f5692c0ed8760e
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri May  8 17:14:36 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri May  8 17:14:36 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a1d67a6

dev-python/blinker: sparc stable wrt bug #720672

Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-python/blinker/blinker-1.4-r1.ebuild 
b/dev-python/blinker/blinker-1.4-r1.ebuild
index 02d9951bd69..17c395b9434 100644
--- a/dev-python/blinker/blinker-1.4-r1.ebuild
+++ b/dev-python/blinker/blinker-1.4-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~s390 ~sparc x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux"
 IUSE="doc"
 
 distutils_enable_tests nose



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

2020-05-05 Thread Sergei Trofimovich
commit: 313d6e27470166b105a9e11ab397ccb04bb46cf9
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue May  5 22:13:01 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue May  5 22:13:01 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=313d6e27

dev-python/blinker: keyworded 1.4-r1 for ia64, bug #700940

Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="ia64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/dev-python/blinker/blinker-1.4-r1.ebuild 
b/dev-python/blinker/blinker-1.4-r1.ebuild
index 37ef6cf554f..02d9951bd69 100644
--- a/dev-python/blinker/blinker-1.4-r1.ebuild
+++ b/dev-python/blinker/blinker-1.4-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~s390 ~sparc x86 ~amd64-linux 
~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~s390 ~sparc x86 
~amd64-linux ~x86-linux"
 IUSE="doc"
 
 distutils_enable_tests nose



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

2020-04-08 Thread Agostino Sarubbo
commit: 4ccfbcf7128062e82e05529a0ac2b3144cb96f14
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Apr  8 14:01:48 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Apr  8 14:01:48 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ccfbcf7

dev-python/blinker: add ~s390 keyword

Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="s390"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-python/blinker/blinker-1.4-r1.ebuild 
b/dev-python/blinker/blinker-1.4-r1.ebuild
index bd950d48143..37ef6cf554f 100644
--- a/dev-python/blinker/blinker-1.4-r1.ebuild
+++ b/dev-python/blinker/blinker-1.4-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~sparc x86 ~amd64-linux 
~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~s390 ~sparc x86 ~amd64-linux 
~x86-linux"
 IUSE="doc"
 
 distutils_enable_tests nose



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

2020-03-25 Thread Michał Górny
commit: 6757b76755e30c0ed89a79accb4ae9bf4f5b1539
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Mar 25 12:38:17 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar 25 12:59:19 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6757b767

dev-python/blinker: Stabilize 1.4-r1 ALLARCHES

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

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

diff --git a/dev-python/blinker/blinker-1.4-r1.ebuild 
b/dev-python/blinker/blinker-1.4-r1.ebuild
index 16e0706a932..bd950d48143 100644
--- a/dev-python/blinker/blinker-1.4-r1.ebuild
+++ b/dev-python/blinker/blinker-1.4-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~sparc x86 ~amd64-linux 
~x86-linux"
 IUSE="doc"
 
 distutils_enable_tests nose



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

2020-03-25 Thread Michał Górny
commit: ec566e22108f4f4edc987d5e28ba60df0b5dfab0
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Mar 25 12:38:22 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar 25 12:59:21 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec566e22

dev-python/blinker: Remove old

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

 dev-python/blinker/blinker-1.4.ebuild | 29 -
 1 file changed, 29 deletions(-)

diff --git a/dev-python/blinker/blinker-1.4.ebuild 
b/dev-python/blinker/blinker-1.4.ebuild
deleted file mode 100644
index 0faf7a1f136..000
--- a/dev-python/blinker/blinker-1.4.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 python3_6 pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="Fast, simple object-to-object and broadcast signaling"
-HOMEPAGE="https://pythonhosted.org/blinker/ https://pypi.org/project/blinker/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ppc ppc64 x86 ~amd64-linux ~x86-linux"
-IUSE="doc test"
-RESTRICT="!test? ( test )"
-
-DEPEND="test? ( dev-python/nose[${PYTHON_USEDEP}] )"
-
-python_test() {
-   nosetests -v || die "Testing failed with ${EPYTHON}"
-}
-
-python_install_all() {
-   use doc && HTML_DOCS=( docs/html/. )
-   distutils-r1_python_install_all
-}



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

2020-03-15 Thread Matt Turner
commit: c4230d7987c3cc9949598a4da50f1adae86092ad
Author: Matt Turner  gentoo  org>
AuthorDate: Mon Mar 16 05:53:56 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Mar 16 05:53:56 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4230d79

dev-python/blinker-1.4-r1: add ~alpha, bug 700940

Signed-off-by: Matt Turner  gentoo.org>

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

diff --git a/dev-python/blinker/blinker-1.4-r1.ebuild 
b/dev-python/blinker/blinker-1.4-r1.ebuild
index e08f1ef6814..16e0706a932 100644
--- a/dev-python/blinker/blinker-1.4-r1.ebuild
+++ b/dev-python/blinker/blinker-1.4-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux"
 IUSE="doc"
 
 distutils_enable_tests nose



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

2020-01-14 Thread Sergei Trofimovich
commit: e70dac933d87c9fad011dc06435409b01bbc0d39
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Jan 14 17:21:54 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Jan 14 19:56:50 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e70dac93

dev-python/blinker: keyworded 1.4-r1 for hppa, bug #700940

Package-Manager: Portage-2.3.79, Repoman-2.3.16
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/dev-python/blinker/blinker-1.4-r1.ebuild 
b/dev-python/blinker/blinker-1.4-r1.ebuild
index 08fd2f556b4..e08f1ef6814 100644
--- a/dev-python/blinker/blinker-1.4-r1.ebuild
+++ b/dev-python/blinker/blinker-1.4-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux"
 IUSE="doc"
 
 distutils_enable_tests nose



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

2019-12-24 Thread Sergei Trofimovich
commit: 579cc2176cc1c665cf2c1aafb9ddd01bac007356
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Dec 24 15:30:01 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Dec 24 17:03:02 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=579cc217

dev-python/blinker: keyworded 1.4-r1 for sparc, bug #700940

Package-Manager: Portage-2.3.79, Repoman-2.3.16
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/dev-python/blinker/blinker-1.4-r1.ebuild 
b/dev-python/blinker/blinker-1.4-r1.ebuild
index b5b1c2498da..c6ad1644a6a 100644
--- a/dev-python/blinker/blinker-1.4-r1.ebuild
+++ b/dev-python/blinker/blinker-1.4-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
 IUSE="doc"
 
 distutils_enable_tests nose



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

2019-12-02 Thread Aaron Bauman
commit: 7884eed0ecf77611288942d7d96c92b3d6f5a296
Author: Aaron Bauman  gentoo  org>
AuthorDate: Mon Dec  2 20:22:21 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Mon Dec  2 21:13:29 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7884eed0

dev-python/blinker: amd64 stable

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.80, Repoman-2.3.19

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

diff --git a/dev-python/blinker/blinker-1.4-r1.ebuild 
b/dev-python/blinker/blinker-1.4-r1.ebuild
index b12eb95f5c4..25b39c0b389 100644
--- a/dev-python/blinker/blinker-1.4-r1.ebuild
+++ b/dev-python/blinker/blinker-1.4-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="doc"
 
 distutils_enable_tests nose



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

2019-11-22 Thread Michał Górny
commit: 77abd09d5fb185281b13b7930d142d4072820479
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Nov 22 17:48:01 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Nov 22 17:50:12 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77abd09d

dev-python/blinker: Fix remaining MissingTestRestrict

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

 dev-python/blinker/blinker-1.4.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/blinker/blinker-1.4.ebuild 
b/dev-python/blinker/blinker-1.4.ebuild
index d8dbc82b1eb..824e7a37f9a 100644
--- a/dev-python/blinker/blinker-1.4.ebuild
+++ b/dev-python/blinker/blinker-1.4.ebuild
@@ -15,6 +15,7 @@ LICENSE="MIT"
 SLOT="0"
 KEYWORDS="amd64 arm ~arm64 ppc ppc64 x86 ~amd64-linux ~x86-linux"
 IUSE="doc test"
+RESTRICT="!test? ( test )"
 
 DEPEND="test? ( dev-python/nose[${PYTHON_USEDEP}] )"
 



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

2019-11-22 Thread Michał Górny
commit: f4edcb4851dba5f65beef7bb54f7a9ea58e0b3a6
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Nov 22 17:47:13 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Nov 22 17:50:11 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4edcb48

dev-python/blinker: Enable py3.8

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

 dev-python/blinker/blinker-1.4-r1.ebuild | 10 +++---
 1 file changed, 3 insertions(+), 7 deletions(-)

diff --git a/dev-python/blinker/blinker-1.4-r1.ebuild 
b/dev-python/blinker/blinker-1.4-r1.ebuild
index f46df4441e4..b12eb95f5c4 100644
--- a/dev-python/blinker/blinker-1.4-r1.ebuild
+++ b/dev-python/blinker/blinker-1.4-r1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python2_7 python3_{5,6,7} pypy pypy3 )
+PYTHON_COMPAT=( python2_7 python3_{5,6,7,8} pypy pypy3 )
 
 inherit distutils-r1
 
@@ -14,13 +14,9 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="doc test"
+IUSE="doc"
 
-DEPEND="test? ( dev-python/nose[${PYTHON_USEDEP}] )"
-
-python_test() {
-   nosetests -v || die "Testing failed with ${EPYTHON}"
-}
+distutils_enable_tests nose
 
 python_install_all() {
use doc && HTML_DOCS=( docs/html/. )



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

2018-08-30 Thread Virgil Dupras
commit: d847d8f1290be42c0593c1c790cf649257378bbf
Author: Virgil Dupras  gentoo  org>
AuthorDate: Thu Aug 30 15:41:06 2018 +
Commit: Virgil Dupras  gentoo  org>
CommitDate: Thu Aug 30 15:41:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d847d8f1

dev-python/blinker: re-add Python 3.4

I shouldn't have removed it.

Package-Manager: Portage-2.3.48, Repoman-2.3.10

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

diff --git a/dev-python/blinker/blinker-1.4-r1.ebuild 
b/dev-python/blinker/blinker-1.4-r1.ebuild
index 4a0425067cd..9b0bdb0eb29 100644
--- a/dev-python/blinker/blinker-1.4-r1.ebuild
+++ b/dev-python/blinker/blinker-1.4-r1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python2_7 python3_{5,6,7} pypy pypy3 )
+PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} pypy pypy3 )
 
 inherit distutils-r1
 



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

2018-08-20 Thread Virgil Dupras
commit: 8f3b5766fed7c86b5f683f5f45907d56414f8c2c
Author: Virgil Dupras  gentoo  org>
AuthorDate: Tue Aug 21 02:03:21 2018 +
Commit: Virgil Dupras  gentoo  org>
CommitDate: Tue Aug 21 02:09:56 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f3b5766

dev-python/blinker: add python 3.7 support

Package-Manager: Portage-2.3.47, Repoman-2.3.10

 dev-python/blinker/blinker-1.4-r1.ebuild | 28 
 1 file changed, 28 insertions(+)

diff --git a/dev-python/blinker/blinker-1.4-r1.ebuild 
b/dev-python/blinker/blinker-1.4-r1.ebuild
new file mode 100644
index 000..4a0425067cd
--- /dev/null
+++ b/dev-python/blinker/blinker-1.4-r1.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_{5,6,7} pypy pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="Fast, simple object-to-object and broadcast signaling"
+HOMEPAGE="https://pythonhosted.org/blinker/ https://pypi.org/project/blinker/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="doc test"
+
+DEPEND="test? ( dev-python/nose[${PYTHON_USEDEP}] )"
+
+python_test() {
+   nosetests -v || die "Testing failed with ${EPYTHON}"
+}
+
+python_install_all() {
+   use doc && HTML_DOCS=( docs/html/. )
+   distutils-r1_python_install_all
+}



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

2018-03-18 Thread Michał Górny
commit: 1d6b6c84c01dc507883c1d6ba061aab74409b01e
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sun Mar 18 14:13:21 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Mar 18 19:18:43 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d6b6c84

dev-python/blinker: fix HOMEPAGE

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

diff --git a/dev-python/blinker/blinker-1.4.ebuild 
b/dev-python/blinker/blinker-1.4.ebuild
index fd16f4a1195..05c3a1eed62 100644
--- a/dev-python/blinker/blinker-1.4.ebuild
+++ b/dev-python/blinker/blinker-1.4.ebuild
@@ -8,7 +8,7 @@ PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy pypy3 )
 inherit distutils-r1
 
 DESCRIPTION="Fast, simple object-to-object and broadcast signaling"
-HOMEPAGE="http://discorporate.us/projects/Blinker/ 
https://pypi.python.org/pypi/blinker;
+HOMEPAGE="https://pythonhosted.org/blinker/ 
https://pypi.python.org/pypi/blinker;
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"



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

2018-01-28 Thread Markus Meier
commit: c799d15a66f28feee2e4d0336547e0e36bfd73ae
Author: Markus Meier  gentoo  org>
AuthorDate: Sun Jan 28 20:40:16 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sun Jan 28 20:40:16 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c799d15a

dev-python/blinker: arm stable, bug #641290

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

 dev-python/blinker/blinker-1.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/blinker/blinker-1.4.ebuild 
b/dev-python/blinker/blinker-1.4.ebuild
index 2dacb55730f..fd16f4a1195 100644
--- a/dev-python/blinker/blinker-1.4.ebuild
+++ b/dev-python/blinker/blinker-1.4.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
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ppc ppc64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm ~arm64 ppc ppc64 x86 ~amd64-linux ~x86-linux"
 IUSE="doc test"
 
 DEPEND="test? ( dev-python/nose[${PYTHON_USEDEP}] )"



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

2017-12-24 Thread Sergei Trofimovich
commit: d4d9b5c49324fc247e7d93be81c7b5611c136690
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Dec 24 13:25:07 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Dec 24 13:37:53 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4d9b5c4

dev-python/blinker: stable 1.4 for ppc/ppc64, bug #641290

Package-Manager: Portage-2.3.19, Repoman-2.3.6
RepoMan-Options: --include-arches="ppc ppc64"

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

diff --git a/dev-python/blinker/blinker-1.4.ebuild 
b/dev-python/blinker/blinker-1.4.ebuild
index aa0ab2c9d21..2dacb55730f 100644
--- a/dev-python/blinker/blinker-1.4.ebuild
+++ b/dev-python/blinker/blinker-1.4.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~arm64 ppc ppc64 x86 ~amd64-linux ~x86-linux"
 IUSE="doc test"
 
 DEPEND="test? ( dev-python/nose[${PYTHON_USEDEP}] )"



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

2017-05-02 Thread Michał Górny
commit: 9b19dc463d5381d7f7106c5966b403fdf54dfffa
Author: Michał Górny  gentoo  org>
AuthorDate: Tue May  2 18:48:54 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue May  2 19:15:29 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b19dc46

dev-python/blinker: Clean old versions up

 dev-python/blinker/Manifest   |  1 -
 dev-python/blinker/blinker-1.3.ebuild | 32 
 2 files changed, 33 deletions(-)

diff --git a/dev-python/blinker/Manifest b/dev-python/blinker/Manifest
index 9182416044f..9d995172c1a 100644
--- a/dev-python/blinker/Manifest
+++ b/dev-python/blinker/Manifest
@@ -1,2 +1 @@
-DIST blinker-1.3.tar.gz 91551 SHA256 
6811010809262261e41ab7b92f3f6d23f35cf816fbec2bc05077992eebec6e2f SHA512 
54364234c57dde8059fb9782327cb72ba534d40d650a8fe1ca7b51e4a1c2dbef2b74071681ee934f6f5f24749b6a9ca1371989c39bf4a225be5e8852757588e9
 WHIRLPOOL 
12a17bc47206c6c10450a0520eb0c2b9b91d838ccce8944cff85c164790b44dd6d26e1efd804d11bef42fafffcf67ea98a315e6e5a0e4d1cffeb2a28b44d
 DIST blinker-1.4.tar.gz 111476 SHA256 
471aee25f3992bd325afa3772f1063dbdbbca947a041b8b89466dc00d606f8b6 SHA512 
2f5f71b05c7cc27f5761ba698b05c78c8a491f5285c120e532d24be0c8256daa14e075f3f30e15fb18e7c3f16579af9378a155d058f170e3af9ffdb89e49f56e
 WHIRLPOOL 
f9554c6476310c82d8e66cea7d57297478373543b894ba8993bd3b390078ccc0b997eaa4ddfc849acfdf7687be3e61ce89303161a4117dcd02f9363440c4cf6a

diff --git a/dev-python/blinker/blinker-1.3.ebuild 
b/dev-python/blinker/blinker-1.3.ebuild
deleted file mode 100644
index 7e69eb198e3..000
--- a/dev-python/blinker/blinker-1.3.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-PYTHON_COMPAT=( python{2_7,3_4} pypy )
-
-inherit distutils-r1
-
-DESCRIPTION="Fast, simple object-to-object and broadcast signaling"
-HOMEPAGE="http://discorporate.us/projects/Blinker/ 
https://pypi.python.org/pypi/blinker;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
-IUSE="doc test"
-
-DEPEND="test? ( dev-python/nose[${PYTHON_USEDEP}] )"
-
-python_test() {
-   nosetests || die "Testing failed with ${EPYTHON}"
-}
-
-python_install_all() {
-   distutils-r1_python_install_all
-   if use doc; then
-   pushd docs/html > /dev/null
-   insinto /usr/share/doc/${PF}/html
-   doins -r [a-z]* _static
-   popd > /dev/null
-   fi
-}



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

2017-02-12 Thread Zac Medico
commit: 07802f509a8fc0528cddc2d1c0f237fbe93ab739
Author: Zac Medico  gentoo  org>
AuthorDate: Mon Feb 13 07:07:58 2017 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Feb 13 07:07:58 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07802f50

dev-python/blinker: PYTHON_COMPAT: add python3_6

Package-Manager: Portage-2.3.3, Repoman-2.3.1

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

diff --git a/dev-python/blinker/blinker-1.4.ebuild 
b/dev-python/blinker/blinker-1.4.ebuild
index 00d96aee4e..d617071d83 100644
--- a/dev-python/blinker/blinker-1.4.ebuild
+++ b/dev-python/blinker/blinker-1.4.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=5
 
-PYTHON_COMPAT=( python2_7 python3_{4,5} pypy pypy3 )
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy pypy3 )
 
 inherit distutils-r1
 



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

2017-01-17 Thread Agostino Sarubbo
commit: 8792d25c646f1449c8cba03c68b9659cd6d7cac1
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jan 17 16:19:18 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jan 17 16:21:48 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8792d25c

dev-python/blinker: amd64 stable wrt bug #606016

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-python/blinker/blinker-1.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/blinker/blinker-1.4.ebuild 
b/dev-python/blinker/blinker-1.4.ebuild
index b40c1c9..da2c16e 100644
--- a/dev-python/blinker/blinker-1.4.ebuild
+++ b/dev-python/blinker/blinker-1.4.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$
 
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="doc test"
 
 DEPEND="test? ( dev-python/nose[${PYTHON_USEDEP}] )"



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

2016-02-27 Thread Matt Thode
commit: 21a08f7e3628c91b0c6c4236134d1101819e2f27
Author: Matthew Thode  gentoo  org>
AuthorDate: Sun Feb 28 06:56:32 2016 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sun Feb 28 06:56:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21a08f7e

dev-python/blinker: keywording arm64

merged on X-C1

Package-Manager: portage-2.2.26

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

diff --git a/dev-python/blinker/blinker-1.4.ebuild 
b/dev-python/blinker/blinker-1.4.ebuild
index 38b3973..69781de 100644
--- a/dev-python/blinker/blinker-1.4.ebuild
+++ b/dev-python/blinker/blinker-1.4.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="doc test"
 
 DEPEND="test? ( dev-python/nose[${PYTHON_USEDEP}] )"



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

2015-12-17 Thread Justin Lecher
commit: 97f9b0bab0b9c7ab47daff1722708149d4d1fba2
Author: Justin Lecher  gentoo  org>
AuthorDate: Thu Dec 17 14:01:30 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Thu Dec 17 14:48:46 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97f9b0ba

dev-python/blinker: Add pypy3 support

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

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

diff --git a/dev-python/blinker/blinker-1.4.ebuild 
b/dev-python/blinker/blinker-1.4.ebuild
index b732922..38b3973 100644
--- a/dev-python/blinker/blinker-1.4.ebuild
+++ b/dev-python/blinker/blinker-1.4.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=5
 
-PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy )
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy pypy3 )
 
 inherit distutils-r1
 



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

2015-12-09 Thread Justin Lecher
commit: a4f3b7b9969101f8d070056bf4cff787666c0f6b
Author: Justin Lecher  gentoo  org>
AuthorDate: Wed Dec  9 15:01:22 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Wed Dec  9 15:10:02 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4f3b7b9

dev-python/blinker: Readd doc USE handling

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

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

diff --git a/dev-python/blinker/blinker-1.4.ebuild 
b/dev-python/blinker/blinker-1.4.ebuild
index 72c4bc6..b732922 100644
--- a/dev-python/blinker/blinker-1.4.ebuild
+++ b/dev-python/blinker/blinker-1.4.ebuild
@@ -24,6 +24,6 @@ python_test() {
 }
 
 python_install_all() {
-   HTML_DOCS=( docs/html/. )
+   use doc && HTML_DOCS=( docs/html/. )
distutils-r1_python_install_all
 }



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

2015-12-09 Thread Justin Lecher
commit: dd2a2c8b547eb3aa14b25ae853adcf34c49c2ac4
Author: Justin Lecher  gentoo  org>
AuthorDate: Wed Dec  9 14:56:04 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Wed Dec  9 15:10:02 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd2a2c8b

dev-python/blinker: Add python3.5 support

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

 dev-python/blinker/blinker-1.4.ebuild | 14 +-
 1 file changed, 5 insertions(+), 9 deletions(-)

diff --git a/dev-python/blinker/blinker-1.4.ebuild 
b/dev-python/blinker/blinker-1.4.ebuild
index 8dd8c8d..72c4bc6 100644
--- a/dev-python/blinker/blinker-1.4.ebuild
+++ b/dev-python/blinker/blinker-1.4.ebuild
@@ -2,8 +2,9 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI="5"
-PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy )
 
 inherit distutils-r1
 
@@ -19,15 +20,10 @@ IUSE="doc test"
 DEPEND="test? ( dev-python/nose[${PYTHON_USEDEP}] )"
 
 python_test() {
-   nosetests || die "Testing failed with ${EPYTHON}"
+   nosetests -v || die "Testing failed with ${EPYTHON}"
 }
 
 python_install_all() {
+   HTML_DOCS=( docs/html/. )
distutils-r1_python_install_all
-   if use doc; then
-   pushd docs/html > /dev/null
-   insinto /usr/share/doc/${PF}/html
-   doins -r [a-z]* _static
-   popd > /dev/null
-   fi
 }