* [gentoo-commits] repo/gentoo:master commit in: dev-python/pluginbase/, dev-python/pluginbase/files/
@ 2021-06-01 0:28 Sam James
0 siblings, 0 replies; 2+ messages in thread
From: Sam James @ 2021-06-01 0:28 UTC (permalink / raw
To: gentoo-commits
commit: 13dce2e706799c43aeb8cc4cfeb1b08b42e407bd
Author: Matthew Bakhtiari <dev <AT> mtbk <DOT> me>
AuthorDate: Sat May 15 08:29:49 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jun 1 00:27:51 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13dce2e7
dev-python/pluginbase: add python3.9 support
Closes: https://bugs.gentoo.org/789264
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Matthew <dev <AT> mtbk.me>
Closes: https://github.com/gentoo/gentoo/pull/20814
Signed-off-by: Sam James <sam <AT> gentoo.org>
.../files/pluginbase-1.0.0-python3.9.patch | 120 +++++++++++++++++++++
dev-python/pluginbase/pluginbase-1.0.0.ebuild | 6 +-
2 files changed, 124 insertions(+), 2 deletions(-)
diff --git a/dev-python/pluginbase/files/pluginbase-1.0.0-python3.9.patch b/dev-python/pluginbase/files/pluginbase-1.0.0-python3.9.patch
new file mode 100644
index 00000000000..8c83198dae3
--- /dev/null
+++ b/dev-python/pluginbase/files/pluginbase-1.0.0-python3.9.patch
@@ -0,0 +1,120 @@
+From ad876a1282423c5e677392814eec09d826fd311e Mon Sep 17 00:00:00 2001
+From: Matthew Bakhtiari <dev@mtbk.me>
+Date: Mon, 10 May 2021 05:47:33 +0200
+Subject: [PATCH 1/5] Add python 3.8 and 3.9 support
+
+---
+ setup.py | 2 ++
+ 1 file changed, 2 insertions(+)
+
+diff --git a/setup.py b/setup.py
+index 012827f..ef63b70 100644
+--- a/setup.py
++++ b/setup.py
+@@ -37,6 +37,8 @@
+ 'Programming Language :: Python :: 3.5',
+ 'Programming Language :: Python :: 3.6',
+ 'Programming Language :: Python :: 3.7',
++ 'Programming Language :: Python :: 3.8',
++ 'Programming Language :: Python :: 3.9',
+ 'Programming Language :: Python :: Implementation :: PyPy',
+ 'Environment :: Plugins',
+ 'Intended Audience :: Developers',
+
+From 28d1baa81ac17c2281c8ca439ca0444910740ae5 Mon Sep 17 00:00:00 2001
+From: Matthew Bakhtiari <dev@mtbk.me>
+Date: Mon, 10 May 2021 05:49:53 +0200
+Subject: [PATCH 2/5] Remove deprecated yield_fixture
+
+---
+ tests/conftest.py | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/tests/conftest.py b/tests/conftest.py
+index a43b8cf..e20513b 100644
+--- a/tests/conftest.py
++++ b/tests/conftest.py
+@@ -20,7 +20,7 @@ def source(base):
+ identifier='demo')
+
+
+-@pytest.yield_fixture(scope='function', autouse=True)
++@pytest.fixture(scope='function', autouse=True)
+ def run_garbage_collection():
+ gc.collect()
+ try:
+
+From 95edc820811dac75a5f8d11697cbe197b4024efb Mon Sep 17 00:00:00 2001
+From: Matthew Bakhtiari <dev@mtbk.me>
+Date: Mon, 10 May 2021 06:26:32 +0200
+Subject: [PATCH 3/5] Remove deprecated tests
+
+---
+ tox.ini | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/tox.ini b/tox.ini
+index dbea2bd..678eff6 100644
+--- a/tox.ini
++++ b/tox.ini
+@@ -1,5 +1,5 @@
+ [tox]
+-envlist = py26,py27,py33,py34,py35,py36,pypy
++envlist = py27,py34,py35,py36,py37,py38,py39,pypy
+
+ [testenv]
+ commands = make test
+
+From 06ab2ca2ee843e62a1a6bf26ef2d118995a4f210 Mon Sep 17 00:00:00 2001
+From: Matthew Bakhtiari <dev@mtbk.me>
+Date: Mon, 10 May 2021 06:32:07 +0200
+Subject: [PATCH 4/5] Remove old versions from travis.yml
+
+---
+ .travis.yml | 5 +++--
+ 1 file changed, 3 insertions(+), 2 deletions(-)
+
+diff --git a/.travis.yml b/.travis.yml
+index 743a38a..739db3e 100644
+--- a/.travis.yml
++++ b/.travis.yml
+@@ -1,11 +1,12 @@
+ language: python
+ python:
+- - "2.6"
+ - "2.7"
+- - "3.3"
+ - "3.4"
+ - "3.5"
+ - "3.6"
++ - "3.7"
++ - "3.8"
++ - "3.9"
+ - "pypy"
+
+ install:
+
+From 382037ce6cd81e2767143db744d1049081051ce3 Mon Sep 17 00:00:00 2001
+From: Matthew Bakhtiari <dev@mtbk.me>
+Date: Mon, 10 May 2021 06:37:02 +0200
+Subject: [PATCH 5/5] Remove old versions from setup.py
+
+---
+ setup.py | 2 --
+ 1 file changed, 2 deletions(-)
+
+diff --git a/setup.py b/setup.py
+index ef63b70..8f9f4e6 100644
+--- a/setup.py
++++ b/setup.py
+@@ -29,10 +29,8 @@
+ classifiers=[
+ 'License :: OSI Approved :: BSD License',
+ 'Programming Language :: Python',
+- 'Programming Language :: Python :: 2.6',
+ 'Programming Language :: Python :: 2.7',
+ 'Programming Language :: Python :: 3',
+- 'Programming Language :: Python :: 3.3',
+ 'Programming Language :: Python :: 3.4',
+ 'Programming Language :: Python :: 3.5',
+ 'Programming Language :: Python :: 3.6',
diff --git a/dev-python/pluginbase/pluginbase-1.0.0.ebuild b/dev-python/pluginbase/pluginbase-1.0.0.ebuild
index 0524feaefd6..4a3320d7185 100644
--- a/dev-python/pluginbase/pluginbase-1.0.0.ebuild
+++ b/dev-python/pluginbase/pluginbase-1.0.0.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} )
+PYTHON_COMPAT=( python3_{7..9} )
inherit distutils-r1
@@ -24,6 +24,8 @@ DEPEND="${RDEPEND}
test? ( dev-python/pytest[${PYTHON_USEDEP}] )
"
+PATCHES="${FILESDIR}/${P}-python3.9.patch"
+
python_prepare_all() {
sed -e "s/, 'sphinx.ext.intersphinx'//" \
-i docs/conf.py || die
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/pluginbase/, dev-python/pluginbase/files/
@ 2021-10-17 9:13 Michał Górny
0 siblings, 0 replies; 2+ messages in thread
From: Michał Górny @ 2021-10-17 9:13 UTC (permalink / raw
To: gentoo-commits
commit: 750ec580d95770a48ec68a42cd331bf3d9fe406a
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 17 09:10:14 2021 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Oct 17 09:10:14 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=750ec580
dev-python/pluginbase: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/pluginbase/Manifest | 1 -
.../files/pluginbase-1.0.0-python3.9.patch | 120 ---------------------
dev-python/pluginbase/pluginbase-1.0.0.ebuild | 44 --------
3 files changed, 165 deletions(-)
diff --git a/dev-python/pluginbase/Manifest b/dev-python/pluginbase/Manifest
index 26914715dad..1d9b2f0f06a 100644
--- a/dev-python/pluginbase/Manifest
+++ b/dev-python/pluginbase/Manifest
@@ -1,2 +1 @@
-DIST pluginbase-1.0.0.tar.gz 41795 BLAKE2B 68d7704b52db39af4f0c2e1f790802eb5f2fd15d91726752605901b3e8a3c736204fad93d96b5dd1a4199586b4d9b42895cbe8290acaed1b4051e8103efb43f9 SHA512 95c3b770980fa5ec745b8d788df29c6219ed6e5af7666f9830d56c6acae01f90831655127bcef69b2dfc423d09429373ae7d4c8b45c76c62a41f909d0747c0a0
DIST pluginbase-1.0.1.tar.gz 43588 BLAKE2B 8d72dc0afcf4e4e65670902bd3f28a1a36de7f7cc11fd56c624f871ced39e8b989bc6ac74d64e4f96b3bf32f0f4e187ae8b517f9a09cac94b7a735ffb08ec55b SHA512 20844fb78daf3e03a7a8013f82a059bf6b0723a184e89061ce5cb674b5a978900623f2eceed56fc9f9a34410e7e6ca8d41a5ac0a21e374b1b3ce32d4e522348e
diff --git a/dev-python/pluginbase/files/pluginbase-1.0.0-python3.9.patch b/dev-python/pluginbase/files/pluginbase-1.0.0-python3.9.patch
deleted file mode 100644
index 8c83198dae3..00000000000
--- a/dev-python/pluginbase/files/pluginbase-1.0.0-python3.9.patch
+++ /dev/null
@@ -1,120 +0,0 @@
-From ad876a1282423c5e677392814eec09d826fd311e Mon Sep 17 00:00:00 2001
-From: Matthew Bakhtiari <dev@mtbk.me>
-Date: Mon, 10 May 2021 05:47:33 +0200
-Subject: [PATCH 1/5] Add python 3.8 and 3.9 support
-
----
- setup.py | 2 ++
- 1 file changed, 2 insertions(+)
-
-diff --git a/setup.py b/setup.py
-index 012827f..ef63b70 100644
---- a/setup.py
-+++ b/setup.py
-@@ -37,6 +37,8 @@
- 'Programming Language :: Python :: 3.5',
- 'Programming Language :: Python :: 3.6',
- 'Programming Language :: Python :: 3.7',
-+ 'Programming Language :: Python :: 3.8',
-+ 'Programming Language :: Python :: 3.9',
- 'Programming Language :: Python :: Implementation :: PyPy',
- 'Environment :: Plugins',
- 'Intended Audience :: Developers',
-
-From 28d1baa81ac17c2281c8ca439ca0444910740ae5 Mon Sep 17 00:00:00 2001
-From: Matthew Bakhtiari <dev@mtbk.me>
-Date: Mon, 10 May 2021 05:49:53 +0200
-Subject: [PATCH 2/5] Remove deprecated yield_fixture
-
----
- tests/conftest.py | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/tests/conftest.py b/tests/conftest.py
-index a43b8cf..e20513b 100644
---- a/tests/conftest.py
-+++ b/tests/conftest.py
-@@ -20,7 +20,7 @@ def source(base):
- identifier='demo')
-
-
--@pytest.yield_fixture(scope='function', autouse=True)
-+@pytest.fixture(scope='function', autouse=True)
- def run_garbage_collection():
- gc.collect()
- try:
-
-From 95edc820811dac75a5f8d11697cbe197b4024efb Mon Sep 17 00:00:00 2001
-From: Matthew Bakhtiari <dev@mtbk.me>
-Date: Mon, 10 May 2021 06:26:32 +0200
-Subject: [PATCH 3/5] Remove deprecated tests
-
----
- tox.ini | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/tox.ini b/tox.ini
-index dbea2bd..678eff6 100644
---- a/tox.ini
-+++ b/tox.ini
-@@ -1,5 +1,5 @@
- [tox]
--envlist = py26,py27,py33,py34,py35,py36,pypy
-+envlist = py27,py34,py35,py36,py37,py38,py39,pypy
-
- [testenv]
- commands = make test
-
-From 06ab2ca2ee843e62a1a6bf26ef2d118995a4f210 Mon Sep 17 00:00:00 2001
-From: Matthew Bakhtiari <dev@mtbk.me>
-Date: Mon, 10 May 2021 06:32:07 +0200
-Subject: [PATCH 4/5] Remove old versions from travis.yml
-
----
- .travis.yml | 5 +++--
- 1 file changed, 3 insertions(+), 2 deletions(-)
-
-diff --git a/.travis.yml b/.travis.yml
-index 743a38a..739db3e 100644
---- a/.travis.yml
-+++ b/.travis.yml
-@@ -1,11 +1,12 @@
- language: python
- python:
-- - "2.6"
- - "2.7"
-- - "3.3"
- - "3.4"
- - "3.5"
- - "3.6"
-+ - "3.7"
-+ - "3.8"
-+ - "3.9"
- - "pypy"
-
- install:
-
-From 382037ce6cd81e2767143db744d1049081051ce3 Mon Sep 17 00:00:00 2001
-From: Matthew Bakhtiari <dev@mtbk.me>
-Date: Mon, 10 May 2021 06:37:02 +0200
-Subject: [PATCH 5/5] Remove old versions from setup.py
-
----
- setup.py | 2 --
- 1 file changed, 2 deletions(-)
-
-diff --git a/setup.py b/setup.py
-index ef63b70..8f9f4e6 100644
---- a/setup.py
-+++ b/setup.py
-@@ -29,10 +29,8 @@
- classifiers=[
- 'License :: OSI Approved :: BSD License',
- 'Programming Language :: Python',
-- 'Programming Language :: Python :: 2.6',
- 'Programming Language :: Python :: 2.7',
- 'Programming Language :: Python :: 3',
-- 'Programming Language :: Python :: 3.3',
- 'Programming Language :: Python :: 3.4',
- 'Programming Language :: Python :: 3.5',
- 'Programming Language :: Python :: 3.6',
diff --git a/dev-python/pluginbase/pluginbase-1.0.0.ebuild b/dev-python/pluginbase/pluginbase-1.0.0.ebuild
deleted file mode 100644
index 4a3320d7185..00000000000
--- a/dev-python/pluginbase/pluginbase-1.0.0.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..9} )
-
-inherit distutils-r1
-
-DESCRIPTION="Support library for building plugins sytems in Python"
-HOMEPAGE="https://github.com/mitsuhiko/pluginbase"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc test"
-RESTRICT="!test? ( test )"
-
-RDEPEND=""
-DEPEND="${RDEPEND}
- dev-python/setuptools[${PYTHON_USEDEP}]
- doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
- test? ( dev-python/pytest[${PYTHON_USEDEP}] )
-"
-
-PATCHES="${FILESDIR}/${P}-python3.9.patch"
-
-python_prepare_all() {
- sed -e "s/, 'sphinx.ext.intersphinx'//" \
- -i docs/conf.py || die
- distutils-r1_python_prepare_all
-}
-
-python_compile_all() {
- if use doc; then
- emake -C docs html
- HTML_DOCS=( docs/_build/html/. )
- fi
-}
-
-python_test() {
- cd tests && PYTHONPATH=.. py.test --tb=native || die "Tests fail with ${EPYTHON}"
-}
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2021-10-17 9:13 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-06-01 0:28 [gentoo-commits] repo/gentoo:master commit in: dev-python/pluginbase/, dev-python/pluginbase/files/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2021-10-17 9:13 Michał Górny
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox