public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/atomiclong/
@ 2020-02-23  3:33 Alessandro Barbieri
  0 siblings, 0 replies; 8+ messages in thread
From: Alessandro Barbieri @ 2020-02-23  3:33 UTC (permalink / raw
  To: gentoo-commits

commit:     10218220989ef455095929c5d1fdfdc74dcc5f34
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sun Feb 23 03:33:05 2020 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Sun Feb 23 03:33:05 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=10218220

dev-python/atomiclong: new package

Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 dev-python/atomiclong/Manifest                |  1 +
 dev-python/atomiclong/atomiclong-0.1.1.ebuild | 30 +++++++++++++++++++++++++
 dev-python/atomiclong/atomiclong-9999.ebuild  | 32 +++++++++++++++++++++++++++
 dev-python/atomiclong/metadata.xml            | 21 ++++++++++++++++++
 4 files changed, 84 insertions(+)

diff --git a/dev-python/atomiclong/Manifest b/dev-python/atomiclong/Manifest
new file mode 100644
index 0000000..bfc8fec
--- /dev/null
+++ b/dev-python/atomiclong/Manifest
@@ -0,0 +1 @@
+DIST atomiclong-0.1.1.tar.gz 5057 BLAKE2B 2583674eafd2e89c91629db69e6c118d22ae169df4131e3d63a584ed9857df47bb85c0764cd60b7df35eb8db5b4aedfe043bfcfb960909e2abcb97a27ba7567d SHA512 c275cff805df2275b6d9cfabed072c296019f1e7f6e2d718e0cec60ca40a99c6e8043a17a82f752096a1764cbc63e5681739da921ce1c89dfa8e5a6349e1772a

diff --git a/dev-python/atomiclong/atomiclong-0.1.1.ebuild b/dev-python/atomiclong/atomiclong-0.1.1.ebuild
new file mode 100644
index 0000000..7b15a08
--- /dev/null
+++ b/dev-python/atomiclong/atomiclong-0.1.1.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+PYTHON_COMPAT=( python3_{6,7} )
+
+inherit distutils-r1
+
+SRC_URI="https://files.pythonhosted.org/packages/86/8c/70aea8215c6ab990f2d91e7ec171787a41b7fbc83df32a067ba5d7f3324f/${P}.tar.gz"
+
+DESCRIPTION="An AtomicLong type using CFFI."
+HOMEPAGE="https://github.com/dreid/atomiclong"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="virtual/python-cffi[${PYTHON_USEDEP}]"
+
+DEPEND="${RDEPEND}
+	test? (
+		dev-python/pytest[${PYTHON_USEDEP}]
+	)
+"
+
+python_test() {
+	pytest -vv || die
+}

diff --git a/dev-python/atomiclong/atomiclong-9999.ebuild b/dev-python/atomiclong/atomiclong-9999.ebuild
new file mode 100644
index 0000000..788043a
--- /dev/null
+++ b/dev-python/atomiclong/atomiclong-9999.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+PYTHON_COMPAT=( python3_{6,7} )
+
+inherit distutils-r1
+
+SRC_URI=""
+EGIT_REPO_URI="https://github.com/dreid/${PN}.git"
+inherit git-r3
+
+DESCRIPTION="An AtomicLong type using CFFI."
+HOMEPAGE="https://github.com/dreid/atomiclong"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS=""
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="virtual/python-cffi[${PYTHON_USEDEP}]"
+
+DEPEND="${RDEPEND}
+	test? (
+		dev-python/pytest[${PYTHON_USEDEP}]
+	)
+"
+
+python_test() {
+	pytest -vv || die
+}

diff --git a/dev-python/atomiclong/metadata.xml b/dev-python/atomiclong/metadata.xml
new file mode 100644
index 0000000..2607e3e
--- /dev/null
+++ b/dev-python/atomiclong/metadata.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <maintainer type="person">
+    <email>lssndrbarbieri@gmail.com</email>
+    <name>Alessandro Barbieri</name>
+  </maintainer>
+  <maintainer type="project">
+    <email>proxy-maint@gentoo.org</email>
+    <name>Proxy Maintainers</name>
+  </maintainer>
+  <upstream>
+    <remote-id type="github">dreid/atomiclong</remote-id>
+  </upstream>
+  <longdescription lang="en">
+Sometimes you need to increment some numbers ... atomically ... in python.
+AtomicLong was born out of the need for fast thread-safe counters in python.
+It uses CFFI to bind GCC's Atomic Builtins.
+Its value is a C long which can be incremented, decremented, and set atomically. It is inspired by Java's java.util.concurrent.atomic.AtomicLong.
+  </longdescription>
+</pkgmetadata>


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/atomiclong/
@ 2020-03-02 19:45 Andrew Ammerlaan
  0 siblings, 0 replies; 8+ messages in thread
From: Andrew Ammerlaan @ 2020-03-02 19:45 UTC (permalink / raw
  To: gentoo-commits

commit:     a6d75a4b98f37d7bda74e8cbcff201bcccbd16cb
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Mon Mar  2 19:45:13 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Mon Mar  2 19:45:13 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a6d75a4b

dev-python/atomiclong: Deploy distutils_enable_tests

Package-Manager: Portage-2.3.91, Repoman-2.3.20
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>

 dev-python/atomiclong/atomiclong-0.1.1.ebuild | 16 +++-------------
 dev-python/atomiclong/atomiclong-9999.ebuild  | 13 ++-----------
 2 files changed, 5 insertions(+), 24 deletions(-)

diff --git a/dev-python/atomiclong/atomiclong-0.1.1.ebuild b/dev-python/atomiclong/atomiclong-0.1.1.ebuild
index 7b15a08..5b110c1 100644
--- a/dev-python/atomiclong/atomiclong-0.1.1.ebuild
+++ b/dev-python/atomiclong/atomiclong-0.1.1.ebuild
@@ -2,29 +2,19 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
+
 PYTHON_COMPAT=( python3_{6,7} )
 
 inherit distutils-r1
 
-SRC_URI="https://files.pythonhosted.org/packages/86/8c/70aea8215c6ab990f2d91e7ec171787a41b7fbc83df32a067ba5d7f3324f/${P}.tar.gz"
-
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 DESCRIPTION="An AtomicLong type using CFFI."
 HOMEPAGE="https://github.com/dreid/atomiclong"
 
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64"
-IUSE="test"
-RESTRICT="!test? ( test )"
 
 RDEPEND="virtual/python-cffi[${PYTHON_USEDEP}]"
 
-DEPEND="${RDEPEND}
-	test? (
-		dev-python/pytest[${PYTHON_USEDEP}]
-	)
-"
-
-python_test() {
-	pytest -vv || die
-}
+distutils_enable_tests pytest

diff --git a/dev-python/atomiclong/atomiclong-9999.ebuild b/dev-python/atomiclong/atomiclong-9999.ebuild
index 788043a..87c8abf 100644
--- a/dev-python/atomiclong/atomiclong-9999.ebuild
+++ b/dev-python/atomiclong/atomiclong-9999.ebuild
@@ -2,6 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
+
 PYTHON_COMPAT=( python3_{6,7} )
 
 inherit distutils-r1
@@ -16,17 +17,7 @@ HOMEPAGE="https://github.com/dreid/atomiclong"
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS=""
-IUSE="test"
-RESTRICT="!test? ( test )"
 
 RDEPEND="virtual/python-cffi[${PYTHON_USEDEP}]"
 
-DEPEND="${RDEPEND}
-	test? (
-		dev-python/pytest[${PYTHON_USEDEP}]
-	)
-"
-
-python_test() {
-	pytest -vv || die
-}
+distutils_enable_tests pytest


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/atomiclong/
@ 2020-03-15 11:29 Andrew Ammerlaan
  0 siblings, 0 replies; 8+ messages in thread
From: Andrew Ammerlaan @ 2020-03-15 11:29 UTC (permalink / raw
  To: gentoo-commits

commit:     18f0e933fec0985dc553f38f8e00a40094122db2
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Sun Mar 15 11:24:50 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sun Mar 15 11:24:50 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=18f0e933

dev-python/atomiclong: remove proxy-maint for metadata

Package-Manager: Portage-2.3.93, Repoman-2.3.20
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>

 dev-python/atomiclong/metadata.xml | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/dev-python/atomiclong/metadata.xml b/dev-python/atomiclong/metadata.xml
index 2607e3e..20f5297 100644
--- a/dev-python/atomiclong/metadata.xml
+++ b/dev-python/atomiclong/metadata.xml
@@ -5,10 +5,6 @@
     <email>lssndrbarbieri@gmail.com</email>
     <name>Alessandro Barbieri</name>
   </maintainer>
-  <maintainer type="project">
-    <email>proxy-maint@gentoo.org</email>
-    <name>Proxy Maintainers</name>
-  </maintainer>
   <upstream>
     <remote-id type="github">dreid/atomiclong</remote-id>
   </upstream>


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/atomiclong/
@ 2020-05-18 15:41 Alessandro Barbieri
  0 siblings, 0 replies; 8+ messages in thread
From: Alessandro Barbieri @ 2020-05-18 15:41 UTC (permalink / raw
  To: gentoo-commits

commit:     a7f518d1754e7c34cd2e51ecf92353b56711a82c
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Mon May 18 00:00:28 2020 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Mon May 18 15:41:08 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a7f518d1

dev-python/atomiclong: pypy3 added

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 .../{atomiclong-9999.ebuild => atomiclong-0.1.1-r1.ebuild}       | 9 +++------
 dev-python/atomiclong/atomiclong-9999.ebuild                     | 2 +-
 2 files changed, 4 insertions(+), 7 deletions(-)

diff --git a/dev-python/atomiclong/atomiclong-9999.ebuild b/dev-python/atomiclong/atomiclong-0.1.1-r1.ebuild
similarity index 73%
copy from dev-python/atomiclong/atomiclong-9999.ebuild
copy to dev-python/atomiclong/atomiclong-0.1.1-r1.ebuild
index 87c8abf..475c98d 100644
--- a/dev-python/atomiclong/atomiclong-9999.ebuild
+++ b/dev-python/atomiclong/atomiclong-0.1.1-r1.ebuild
@@ -3,20 +3,17 @@
 
 EAPI="7"
 
-PYTHON_COMPAT=( python3_{6,7} )
+PYTHON_COMPAT=( pypy3 python3_{6,7} )
 
 inherit distutils-r1
 
-SRC_URI=""
-EGIT_REPO_URI="https://github.com/dreid/${PN}.git"
-inherit git-r3
-
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 DESCRIPTION="An AtomicLong type using CFFI."
 HOMEPAGE="https://github.com/dreid/atomiclong"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS=""
+KEYWORDS="~amd64"
 
 RDEPEND="virtual/python-cffi[${PYTHON_USEDEP}]"
 

diff --git a/dev-python/atomiclong/atomiclong-9999.ebuild b/dev-python/atomiclong/atomiclong-9999.ebuild
index 87c8abf..c225eda 100644
--- a/dev-python/atomiclong/atomiclong-9999.ebuild
+++ b/dev-python/atomiclong/atomiclong-9999.ebuild
@@ -3,7 +3,7 @@
 
 EAPI="7"
 
-PYTHON_COMPAT=( python3_{6,7} )
+PYTHON_COMPAT=( pypy3 python3_{6,7} )
 
 inherit distutils-r1
 


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/atomiclong/
  2021-04-13 13:22 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
@ 2021-04-13 13:15 ` Andrew Ammerlaan
  0 siblings, 0 replies; 8+ messages in thread
From: Andrew Ammerlaan @ 2021-04-13 13:15 UTC (permalink / raw
  To: gentoo-commits

commit:     bd130660e714dc767dda31de7bc206f60e2d68af
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Tue Apr 13 13:09:26 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Tue Apr 13 13:09:26 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bd130660

dev-python/atomiclong: drop old

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>

 dev-python/atomiclong/atomiclong-0.1.1.ebuild | 20 --------------------
 1 file changed, 20 deletions(-)

diff --git a/dev-python/atomiclong/atomiclong-0.1.1.ebuild b/dev-python/atomiclong/atomiclong-0.1.1.ebuild
deleted file mode 100644
index ccef49186..000000000
--- a/dev-python/atomiclong/atomiclong-0.1.1.ebuild
+++ /dev/null
@@ -1,20 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-PYTHON_COMPAT=( python3_7 )
-
-inherit distutils-r1
-
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-DESCRIPTION="An AtomicLong type using CFFI."
-HOMEPAGE="https://github.com/dreid/atomiclong"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND="virtual/python-cffi[${PYTHON_USEDEP}]"
-
-distutils_enable_tests pytest


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/atomiclong/
@ 2021-05-16 15:20 Alessandro Barbieri
  0 siblings, 0 replies; 8+ messages in thread
From: Alessandro Barbieri @ 2021-05-16 15:20 UTC (permalink / raw
  To: gentoo-commits

commit:     0d09dd487407faa63535644cec920859c4a82b2e
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sun May 16 15:20:32 2021 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Sun May 16 15:20:32 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0d09dd48

dev-python/atomiclong: drop 9999

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 dev-python/atomiclong/atomiclong-9999.ebuild | 23 -----------------------
 1 file changed, 23 deletions(-)

diff --git a/dev-python/atomiclong/atomiclong-9999.ebuild b/dev-python/atomiclong/atomiclong-9999.ebuild
deleted file mode 100644
index 752b5e321..000000000
--- a/dev-python/atomiclong/atomiclong-9999.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-PYTHON_COMPAT=( pypy3 python3_7 )
-
-inherit distutils-r1
-
-SRC_URI=""
-EGIT_REPO_URI="https://github.com/dreid/${PN}.git"
-inherit git-r3
-
-DESCRIPTION="An AtomicLong type using CFFI."
-HOMEPAGE="https://github.com/dreid/atomiclong"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS=""
-
-RDEPEND="virtual/python-cffi[${PYTHON_USEDEP}]"
-
-distutils_enable_tests pytest


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/atomiclong/
@ 2021-05-28  2:36 Alessandro Barbieri
  0 siblings, 0 replies; 8+ messages in thread
From: Alessandro Barbieri @ 2021-05-28  2:36 UTC (permalink / raw
  To: gentoo-commits

commit:     49de9e82a4dda88a17ff47db9b633a319b457f9d
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Fri May 28 02:35:15 2021 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Fri May 28 02:35:15 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=49de9e82

dev-python/atomiclong: treeclean

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 dev-python/atomiclong/Manifest                   |  1 -
 dev-python/atomiclong/atomiclong-0.1.1-r1.ebuild | 20 --------------------
 dev-python/atomiclong/metadata.xml               | 17 -----------------
 3 files changed, 38 deletions(-)

diff --git a/dev-python/atomiclong/Manifest b/dev-python/atomiclong/Manifest
deleted file mode 100644
index bfc8fec52..000000000
--- a/dev-python/atomiclong/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST atomiclong-0.1.1.tar.gz 5057 BLAKE2B 2583674eafd2e89c91629db69e6c118d22ae169df4131e3d63a584ed9857df47bb85c0764cd60b7df35eb8db5b4aedfe043bfcfb960909e2abcb97a27ba7567d SHA512 c275cff805df2275b6d9cfabed072c296019f1e7f6e2d718e0cec60ca40a99c6e8043a17a82f752096a1764cbc63e5681739da921ce1c89dfa8e5a6349e1772a

diff --git a/dev-python/atomiclong/atomiclong-0.1.1-r1.ebuild b/dev-python/atomiclong/atomiclong-0.1.1-r1.ebuild
deleted file mode 100644
index 3902c1c97..000000000
--- a/dev-python/atomiclong/atomiclong-0.1.1-r1.ebuild
+++ /dev/null
@@ -1,20 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-PYTHON_COMPAT=( pypy3 python3_{7,8,9} )
-
-inherit distutils-r1
-
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-DESCRIPTION="An AtomicLong type using CFFI."
-HOMEPAGE="https://github.com/dreid/atomiclong"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND="virtual/python-cffi[${PYTHON_USEDEP}]"
-
-distutils_enable_tests pytest

diff --git a/dev-python/atomiclong/metadata.xml b/dev-python/atomiclong/metadata.xml
deleted file mode 100644
index 20f5297e3..000000000
--- a/dev-python/atomiclong/metadata.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-  <maintainer type="person">
-    <email>lssndrbarbieri@gmail.com</email>
-    <name>Alessandro Barbieri</name>
-  </maintainer>
-  <upstream>
-    <remote-id type="github">dreid/atomiclong</remote-id>
-  </upstream>
-  <longdescription lang="en">
-Sometimes you need to increment some numbers ... atomically ... in python.
-AtomicLong was born out of the need for fast thread-safe counters in python.
-It uses CFFI to bind GCC's Atomic Builtins.
-Its value is a C long which can be incremented, decremented, and set atomically. It is inspired by Java's java.util.concurrent.atomic.AtomicLong.
-  </longdescription>
-</pkgmetadata>


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/atomiclong/
@ 2021-05-28  2:36 Alessandro Barbieri
  0 siblings, 0 replies; 8+ messages in thread
From: Alessandro Barbieri @ 2021-05-28  2:36 UTC (permalink / raw
  To: gentoo-commits

commit:     450e955ad54ac8b62bd40ec605128da41fc16bf5
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Fri May 28 02:28:19 2021 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Fri May 28 02:28:19 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=450e955a

dev-python/atomiclong: bump python, tested

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

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

diff --git a/dev-python/atomiclong/atomiclong-0.1.1-r1.ebuild b/dev-python/atomiclong/atomiclong-0.1.1-r1.ebuild
index 2e7d916f5..3902c1c97 100644
--- a/dev-python/atomiclong/atomiclong-0.1.1-r1.ebuild
+++ b/dev-python/atomiclong/atomiclong-0.1.1-r1.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=( pypy3 python3_7 )
+PYTHON_COMPAT=( pypy3 python3_{7,8,9} )
 
 inherit distutils-r1
 


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

end of thread, other threads:[~2021-05-28  2:36 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-05-28  2:36 [gentoo-commits] repo/proj/guru:dev commit in: dev-python/atomiclong/ Alessandro Barbieri
  -- strict thread matches above, loose matches on Subject: below --
2021-05-28  2:36 Alessandro Barbieri
2021-05-16 15:20 Alessandro Barbieri
2021-04-13 13:22 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2021-04-13 13:15 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2020-05-18 15:41 Alessandro Barbieri
2020-03-15 11:29 Andrew Ammerlaan
2020-03-02 19:45 Andrew Ammerlaan
2020-02-23  3:33 Alessandro Barbieri

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