public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-python/snakeoil/files/, dev-python/snakeoil/
@ 2017-10-04 23:23 Tim Harder
  0 siblings, 0 replies; 2+ messages in thread
From: Tim Harder @ 2017-10-04 23:23 UTC (permalink / raw
  To: gentoo-commits

commit:     02e1d32778be622a7069154af6669107756c540b
Author:     Tim Harder <radhermit <AT> gentoo <DOT> org>
AuthorDate: Wed Oct  4 23:21:01 2017 +0000
Commit:     Tim Harder <radhermit <AT> gentoo <DOT> org>
CommitDate: Wed Oct  4 23:23:03 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02e1d327

dev-python/snakeoil: remove old

 dev-python/snakeoil/Manifest                       |  2 --
 .../snakeoil/files/snakeoil-0.7.1-test.patch       | 31 -------------------
 dev-python/snakeoil/snakeoil-0.7.1.ebuild          | 36 ----------------------
 dev-python/snakeoil/snakeoil-0.7.3.ebuild          | 35 ---------------------
 4 files changed, 104 deletions(-)

diff --git a/dev-python/snakeoil/Manifest b/dev-python/snakeoil/Manifest
index d964b0cc7f6..4e79c6a54b5 100644
--- a/dev-python/snakeoil/Manifest
+++ b/dev-python/snakeoil/Manifest
@@ -1,3 +1 @@
-DIST snakeoil-0.7.1.tar.gz 214261 SHA256 e210db2713da8431eea6b6b3afc98bea829c6612733e6309871b2614d08dcc5b SHA512 1c0d03d50a1738cbb3cceecec9445585d089ea535657467871930cca7282d3426780451fb45774e16b05714a1da13766d68f62def7a2d957e2124bd71335d0a0 WHIRLPOOL aa20cabbceaae564802b8ed5a7a6e5dc1039d27021d477179bcad28d4317b875cbddb889e7196fc1c091a802dd28f8c7efe1c6680b170a54c5e2b07c23052623
-DIST snakeoil-0.7.3.tar.gz 301229 SHA256 c51ba2e3e6f59b7988afd9ad49bf37e9b155fe4a54da3fa11fc728e02ebf5ea3 SHA512 a3b303a6b5da9e12b2eef8ffbd86bae173ef5cd8c2c2d36e818af8c228519fa44bf79c7f8122cc5e3c555f47e904dc766ceb8393dbef6f2edd9a218c7080b95e WHIRLPOOL 988c3a9eb07e251908628f4c899827b868432979759fd8a935386ed843f89cca855f1262cd88b8ba5aa1a0ad088e3942ec94d818282d086036ac03add58c0e23
 DIST snakeoil-0.7.4.tar.gz 301878 SHA256 67280c86e4b02c34100603d7525270c0017e0d182df54ad31ec2e5c145e69ceb SHA512 b3ae2223a267fa74699664470a4c4f6888cf2b68e688fe61d3acca85e00a138c3a037482ef304ee26f326cba252b473d265dcd72d0e0ab5723f4b0ed6e5e04ce WHIRLPOOL c76905b7540ad1ab2186d2ce9a75a55660eb343a1cfefc835f8012f3cf10ad706ee837a995085fa327f38de8f790cc2155c540e5b0d2a6f90a0aebbf7198c7bb

diff --git a/dev-python/snakeoil/files/snakeoil-0.7.1-test.patch b/dev-python/snakeoil/files/snakeoil-0.7.1-test.patch
deleted file mode 100644
index 73e2701b0eb..00000000000
--- a/dev-python/snakeoil/files/snakeoil-0.7.1-test.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From 8ee72903bc714725fbcfdcc38b9228772758b890 Mon Sep 17 00:00:00 2001
-From: Tim Harder <radhermit@gmail.com>
-Date: Fri, 27 Jan 2017 11:54:39 -0500
-Subject: [PATCH] test: fix delayed instantiation tests for py3.6
-
----
- snakeoil/test/test_obj.py | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/snakeoil/test/test_obj.py b/snakeoil/test/test_obj.py
-index abcad55..f8aafd2 100644
---- a/snakeoil/test/test_obj.py
-+++ b/snakeoil/test/test_obj.py
-@@ -29,7 +29,7 @@ def test_simple(self):
- 
-     def test_descriptor_awareness(self):
-         def assertKls(cls, ignores=(),
--                      default_ignores=("__new__", "__init__",
-+                      default_ignores=("__new__", "__init__", "__init_subclass__",
-                                        "__getattribute__", "__class__",
-                                        "__getnewargs__", "__doc__")):
-             required = set(x for x in dir(cls)
-@@ -53,7 +53,7 @@ def test_BaseDelayedObject(self):
-         # assert that all methods/descriptors of object
-         # are covered via the base.
-         o = set(dir(object)).difference("__%s__" % x for x in [
--            "class", "getattribute", "new", "init", "doc"])
-+            "class", "getattribute", "new", "init", "init_subclass", "doc"])
-         diff = o.difference(obj.base_kls_descriptors)
-         self.assertFalse(diff, msg=(
-             "base delayed instantiation class should cover all of object, but "

diff --git a/dev-python/snakeoil/snakeoil-0.7.1.ebuild b/dev-python/snakeoil/snakeoil-0.7.1.ebuild
deleted file mode 100644
index 080b0c89c38..00000000000
--- a/dev-python/snakeoil/snakeoil-0.7.1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
-PYTHON_REQ_USE="threads(+)"
-inherit distutils-r1
-
-if [[ ${PV} == *9999 ]] ; then
-	EGIT_REPO_URI="https://github.com/pkgcore/snakeoil.git"
-	inherit git-r3
-else
-	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
-	SRC_URI="https://github.com/pkgcore/${PN}/releases/download/v${PV}/${P}.tar.gz"
-fi
-
-DESCRIPTION="misc common functionality and useful optimizations"
-HOMEPAGE="https://github.com/pkgcore/snakeoil"
-
-LICENSE="BSD"
-SLOT="0"
-
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-
-PATCHES=(
-	"${FILESDIR}/${P}-test.patch"
-)
-
-python_configure_all() {
-	# disable snakeoil 2to3 caching
-	unset PY2TO3_CACHEDIR
-}
-
-python_test() {
-	esetup.py test
-}

diff --git a/dev-python/snakeoil/snakeoil-0.7.3.ebuild b/dev-python/snakeoil/snakeoil-0.7.3.ebuild
deleted file mode 100644
index c037456a6eb..00000000000
--- a/dev-python/snakeoil/snakeoil-0.7.3.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
-PYTHON_REQ_USE="threads(+)"
-inherit distutils-r1
-
-if [[ ${PV} == *9999 ]] ; then
-	EGIT_REPO_URI="https://github.com/pkgcore/snakeoil.git"
-	inherit git-r3
-else
-	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
-	SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-fi
-
-DESCRIPTION="misc common functionality and useful optimizations"
-HOMEPAGE="https://github.com/pkgcore/snakeoil"
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="test"
-
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
-	test? ( dev-python/mock[${PYTHON_USEDEP}] )"
-[[ ${PV} == 9999 ]] && DEPEND+=" $(python_gen_cond_dep 'dev-python/cython[${PYTHON_USEDEP}]' 'python3*')"
-
-python_configure_all() {
-	# disable snakeoil 2to3 caching
-	unset PY2TO3_CACHEDIR
-}
-
-python_test() {
-	esetup.py test
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/snakeoil/files/, dev-python/snakeoil/
@ 2021-03-29  7:53 Michał Górny
  0 siblings, 0 replies; 2+ messages in thread
From: Michał Górny @ 2021-03-29  7:53 UTC (permalink / raw
  To: gentoo-commits

commit:     b07afdd61e6d2082721adbcc0e57c547b460ee8e
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 29 07:52:34 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Mar 29 07:52:34 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b07afdd6

dev-python/snakeoil: Remove old

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

 dev-python/snakeoil/Manifest                       |  1 -
 .../snakeoil/files/snakeoil-0.8.8-py39.patch       | 28 ----------------------
 dev-python/snakeoil/snakeoil-0.9.3.ebuild          | 28 ----------------------
 3 files changed, 57 deletions(-)

diff --git a/dev-python/snakeoil/Manifest b/dev-python/snakeoil/Manifest
index 3d9f741ba39..f6f07730eea 100644
--- a/dev-python/snakeoil/Manifest
+++ b/dev-python/snakeoil/Manifest
@@ -1,4 +1,3 @@
-DIST snakeoil-0.9.3.tar.gz 270471 BLAKE2B 2f8c3737c560a756e6fd5450c900d1fbe49b0200e1c4427a312f90d14da22e2e403a710bdc768446b3b03166853d6a0965507550ee837556d273817a7f634282 SHA512 18aa892fe6d225823593f8199f029a1a866052b1cebdf4f77dc57916e6a2b15982b6729d3004a8616eedddee5e3bc260d2c5b2f78170c4d008d1f2e46cc26ce1
 DIST snakeoil-0.9.4.tar.gz 271395 BLAKE2B 6aeaf03e2c2f48a85ce926f1b8e0b86271c608695694358cb6eea56b962c0731b909c16bf37844031e986fc7ebca3a7c4cae5cb94ee55122584bf83981d8c4b6 SHA512 853c3fef517e7161a61ae0622fed82ceffdc110cad4ef7d5e2166728f506228d0802018dd351956f1525f0d27a4150e9885b2cc7c71788950261f72d8d7c4cc9
 DIST snakeoil-0.9.5.tar.gz 266086 BLAKE2B 635d2d821e47a92a668b2e95364d6587f0f74c21438356e708d6b16ed6c027df39a28f73d261d8ae06eb32de471124cd5ba5df0fc899f59dad5f7d2363391e00 SHA512 0762d90932bdf995160b3410e224660dae2cce327cdc30d5093ca9e3d16d3e910f88e409a87d2d7da211b850f7d0b7d9c70f053462dd9a651e4202b8ca018105
 DIST snakeoil-0.9.6.tar.gz 261998 BLAKE2B 1f81e633321b7b1988865092ec2778feb35338edec0eb00c9a5be505a9cf7d4cf27b140c9bc56fc42156dc33a7990e8a269d1a69df7cac92a71b56ce612b65ae SHA512 a900c76ecd5a3519bf5236567e5f9d59bca7c5f7588bdcfbf1bec0d912352486c86dfd4677b0aea19170bc9170109ca782dd60232e365008ae016cdf9ade7217

diff --git a/dev-python/snakeoil/files/snakeoil-0.8.8-py39.patch b/dev-python/snakeoil/files/snakeoil-0.8.8-py39.patch
deleted file mode 100644
index dbda88bd588..00000000000
--- a/dev-python/snakeoil/files/snakeoil-0.8.8-py39.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From eeb1f45216eced42b386d6ea65eadc49798c7174 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= <mgorny@gentoo.org>
-Date: Thu, 28 May 2020 14:00:34 +0200
-Subject: [PATCH] test_obj: Ignore __class_getitem__
-
-Ignore __class_getitem__ special that was added to some stdlib objects
-in Python 3.9.  It is used as part of type declarations.
----
- tests/module/test_obj.py | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/tests/module/test_obj.py b/tests/module/test_obj.py
-index 03b100c..43c5c47 100644
---- a/tests/module/test_obj.py
-+++ b/tests/module/test_obj.py
-@@ -23,7 +23,8 @@ class TestDelayedInstantiation:
-         def assertKls(cls, ignores=(),
-                       default_ignores=("__new__", "__init__", "__init_subclass__",
-                                        "__getattribute__", "__class__",
--                                       "__getnewargs__", "__doc__")):
-+                                       "__getnewargs__", "__doc__",
-+                                       "__class_getitem__")):
-             required = set(x for x in dir(cls)
-                            if x.startswith("__") and x.endswith("__"))
-             missing = required.difference(obj.kls_descriptors)
--- 
-2.26.2
-

diff --git a/dev-python/snakeoil/snakeoil-0.9.3.ebuild b/dev-python/snakeoil/snakeoil-0.9.3.ebuild
deleted file mode 100644
index 22212d0522a..00000000000
--- a/dev-python/snakeoil/snakeoil-0.9.3.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{8..9} )
-PYTHON_REQ_USE="threads(+)"
-inherit distutils-r1
-
-if [[ ${PV} == *9999 ]] ; then
-	EGIT_REPO_URI="https://github.com/pkgcore/snakeoil.git"
-	inherit git-r3
-else
-	KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~s390 sparc x86 ~x64-macos"
-	SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-fi
-
-DESCRIPTION="misc common functionality and useful optimizations"
-HOMEPAGE="https://github.com/pkgcore/snakeoil"
-
-LICENSE="BSD BSD-2 MIT"
-SLOT="0"
-
-RDEPEND="
-	dev-python/lazy-object-proxy[${PYTHON_USEDEP}]"
-
-[[ ${PV} == 9999 ]] && BDEPEND+=" dev-python/cython[${PYTHON_USEDEP}]"
-
-distutils_enable_tests pytest


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

end of thread, other threads:[~2021-03-29  7:53 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-10-04 23:23 [gentoo-commits] repo/gentoo:master commit in: dev-python/snakeoil/files/, dev-python/snakeoil/ Tim Harder
  -- strict thread matches above, loose matches on Subject: below --
2021-03-29  7:53 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