Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/binaryornot/
Date: Thu, 14 May 2020 10:28:25
Message-Id: 1589452072.afff1c04361f02d2585ac8df72a2baa5442c0dd9.mgorny@gentoo
1 commit: afff1c04361f02d2585ac8df72a2baa5442c0dd9
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 14 10:27:52 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu May 14 10:27:52 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afff1c04
7
8 dev-python/binaryornot: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/binaryornot/Manifest | 1 -
13 dev-python/binaryornot/binaryornot-0.4.3.ebuild | 28 -------------------------
14 2 files changed, 29 deletions(-)
15
16 diff --git a/dev-python/binaryornot/Manifest b/dev-python/binaryornot/Manifest
17 index 0f6a5a4dc04..c49467b8579 100644
18 --- a/dev-python/binaryornot/Manifest
19 +++ b/dev-python/binaryornot/Manifest
20 @@ -1,2 +1 @@
21 -DIST binaryornot-0.4.3.tar.gz 372299 BLAKE2B c4ae99b9ccb66da8925d74fad68b8df4713822acc74d852e2f584e5c157eb465bc6418b0e0085533479ba1ee937c3d2716dea66ce3bd517d49a490ab4615f694 SHA512 bdb918b921fc46d056572b84126dbdc6605ec98cf13aac84f6f64ce07d083839be40bf7a08185eaabfbe136a9bcf0c1acc8041a23a6bb2843e8e72981222ebaa
22 DIST binaryornot-0.4.4.tar.gz 372361 BLAKE2B cb2099313f602915bacd5b463642f16430fcb0ab62dcaae546cb854780996526fb777c0b730b4b89e664ec7f995ddd2d2f632cfbac2dadca45958cfd1dd7a410 SHA512 31dfb79bb5847e12487d94519a357dece4572f7ed064686d53a49c2de5a51d6441be64523c98cca6221ed89be5bf26e54866dd3b79ac8d89fd5019a5b4d75a45
23
24 diff --git a/dev-python/binaryornot/binaryornot-0.4.3.ebuild b/dev-python/binaryornot/binaryornot-0.4.3.ebuild
25 deleted file mode 100644
26 index ab817f0e4b3..00000000000
27 --- a/dev-python/binaryornot/binaryornot-0.4.3.ebuild
28 +++ /dev/null
29 @@ -1,28 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -PYTHON_COMPAT=( python3_6 )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="Ultra-lightweight pure Python package to guess whether a file is binary or text"
40 -HOMEPAGE="https://github.com/audreyr/binaryornot"
41 -SRC_URI="https://github.com/audreyr/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
42 -
43 -LICENSE="BSD"
44 -SLOT="0"
45 -KEYWORDS="amd64"
46 -IUSE="test"
47 -RESTRICT="!test? ( test )"
48 -
49 -RDEPEND=">=dev-python/chardet-3.0.2[${PYTHON_USEDEP}]"
50 -DEPEND="test? ( ${RDEPEND}
51 - dev-python/hypothesis[${PYTHON_USEDEP}] )"
52 -
53 -DOCS=( README.rst HISTORY.rst CONTRIBUTING.rst )
54 -
55 -python_test() {
56 - esetup.py test || die
57 -}