Gentoo Archives: gentoo-commits

From: Alessandro Barbieri <lssndrbarbieri@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/bson/
Date: Mon, 30 May 2022 23:04:31
Message-Id: 1653951862.f869be6e453770ae157e8921d43d5fada6256b25.Alessandro-Barbieri@gentoo
1 commit: f869be6e453770ae157e8921d43d5fada6256b25
2 Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
3 AuthorDate: Mon May 30 22:51:21 2022 +0000
4 Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
5 CommitDate: Mon May 30 23:04:22 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f869be6e
7
8 dev-python/bson: drop 0.5.8
9
10 Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
11
12 dev-python/bson/Manifest | 1 -
13 dev-python/bson/bson-0.5.8.ebuild | 29 -----------------------------
14 2 files changed, 30 deletions(-)
15
16 diff --git a/dev-python/bson/Manifest b/dev-python/bson/Manifest
17 index 7aada9940..48b5f7588 100644
18 --- a/dev-python/bson/Manifest
19 +++ b/dev-python/bson/Manifest
20 @@ -1,2 +1 @@
21 DIST bson-0.5.10.tar.gz 24735 BLAKE2B a658598d9cac3bf55327ec2084d4c884b92d00e1ffaa084bcfdbebe24fd53b342d117449fde9d394f08b5fc04f9ea9c6856394bdb90806131c65111478c75f72 SHA512 6c74344a75eaeb7f53609ab78a9223218ac89edd320e503898145668cd746d5b76624d91640223a826af7ab978b107715cdb9904f16f6499c9be1ce9f54a09f8
22 -DIST bson-0.5.8.tar.gz 24114 BLAKE2B e35055dcd3c8b1cf77ec9d9496d32d4bca4e9ab31ecf79399a8449c459d1b5e67375bd88743175f1450311519b55cbca8c11a8da736ba87907e1497b5a94b363 SHA512 68bd69d1f5d0d11014d51c0901e7f44b7a3d9f7ad013af4137b7ac48bc42f81bd1423115b67939beedf6e7336794e7ffd4d0d539222d4eaa50845ae25622f21a
23
24 diff --git a/dev-python/bson/bson-0.5.8.ebuild b/dev-python/bson/bson-0.5.8.ebuild
25 deleted file mode 100644
26 index 70373627b..000000000
27 --- a/dev-python/bson/bson-0.5.8.ebuild
28 +++ /dev/null
29 @@ -1,29 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python3_{8..10} pypy3 )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="Independent BSON codec for Python that doesn't depend on MongoDB"
40 -HOMEPAGE="https://github.com/py-bson/bson"
41 -SRC_URI="https://github.com/py-bson/bson/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
42 -
43 -LICENSE="BSD"
44 -SLOT="0"
45 -KEYWORDS="~amd64"
46 -
47 -IUSE="test"
48 -RESTRICT="!test? ( test )"
49 -
50 -DEPEND="
51 - >=dev-python/python-dateutil-2.4.0[${PYTHON_USEDEP}]
52 - >=dev-python/six-1.9.0[${PYTHON_USEDEP}]
53 -"
54 -RDEPEND="${DEPEND}"
55 -
56 -python_test() {
57 - "${EPYTHON}" test.py || die
58 -}