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: Tue, 02 Jan 2018 22:14:11
Message-Id: 1514931234.1371071c4a9fcb5fb146e303d9facc93100564f0.mgorny@gentoo
1 commit: 1371071c4a9fcb5fb146e303d9facc93100564f0
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 2 15:11:10 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 2 22:13:54 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1371071c
7
8 dev-python/binaryornot: Clean old up
9
10 dev-python/binaryornot/Manifest | 1 -
11 dev-python/binaryornot/binaryornot-0.4.1.ebuild | 27 -------------------------
12 2 files changed, 28 deletions(-)
13
14 diff --git a/dev-python/binaryornot/Manifest b/dev-python/binaryornot/Manifest
15 index 6dc426466af..e5d95ea8544 100644
16 --- a/dev-python/binaryornot/Manifest
17 +++ b/dev-python/binaryornot/Manifest
18 @@ -1,2 +1 @@
19 -DIST binaryornot-0.4.1.tar.gz 372095 BLAKE2B 9f37b929941d610e5a114747f765ed859f78839a4734b4859b39ebc4821fbdb6b69ef19405a4bc607c94d68f8ae54672a9b03bf87afe8ebc463f421f92b07113 SHA512 49732b725e7adc58fccc591c56bf4df65d1adaf3e5ce98e9f0a8aa2164e0f9bffcbcd6e793ae2cfc1ed90a5d74fb5899ec99de1b15bd3878a15c33f283319a45
20 DIST binaryornot-0.4.3.tar.gz 372299 BLAKE2B c4ae99b9ccb66da8925d74fad68b8df4713822acc74d852e2f584e5c157eb465bc6418b0e0085533479ba1ee937c3d2716dea66ce3bd517d49a490ab4615f694 SHA512 bdb918b921fc46d056572b84126dbdc6605ec98cf13aac84f6f64ce07d083839be40bf7a08185eaabfbe136a9bcf0c1acc8041a23a6bb2843e8e72981222ebaa
21
22 diff --git a/dev-python/binaryornot/binaryornot-0.4.1.ebuild b/dev-python/binaryornot/binaryornot-0.4.1.ebuild
23 deleted file mode 100644
24 index c9713e93578..00000000000
25 --- a/dev-python/binaryornot/binaryornot-0.4.1.ebuild
26 +++ /dev/null
27 @@ -1,27 +0,0 @@
28 -# Copyright 1999-2017 Gentoo Foundation
29 -# Distributed under the terms of the GNU General Public License v2
30 -
31 -EAPI=5
32 -
33 -PYTHON_COMPAT=( python{2_7,3_4,3_5} )
34 -
35 -inherit distutils-r1
36 -
37 -DESCRIPTION="Ultra-lightweight pure Python package to guess whether a file is binary or text"
38 -HOMEPAGE="https://github.com/audreyr/binaryornot"
39 -SRC_URI="https://github.com/audreyr/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
40 -
41 -LICENSE="BSD"
42 -SLOT="0"
43 -KEYWORDS="~amd64"
44 -IUSE="test"
45 -
46 -RDEPEND=">=dev-python/chardet-2.0.0[${PYTHON_USEDEP}]"
47 -DEPEND="test? ( ${RDEPEND}
48 - dev-python/hypothesis[${PYTHON_USEDEP}] )"
49 -
50 -DOCS=( README.rst HISTORY.rst CONTRIBUTING.rst )
51 -
52 -python_test() {
53 - esetup.py test || die
54 -}