From 9e570a52fd9cfdcddaef57098fd4565bdeda8eee Mon Sep 17 00:00:00 2001 From: "Liguros - Gitlab CI/CD [develop]" Date: Sun, 17 Jan 2021 12:34:50 +0000 Subject: Updating liguros repo --- dev-python/binaryornot/Manifest | 2 +- dev-python/binaryornot/binaryornot-0.4.4-r1.ebuild | 31 ---------------------- dev-python/binaryornot/binaryornot-0.4.4-r2.ebuild | 29 ++++++++++++++++++++ .../binaryornot-0.4.4-fix-version-number.patch | 13 --------- 4 files changed, 30 insertions(+), 45 deletions(-) delete mode 100644 dev-python/binaryornot/binaryornot-0.4.4-r1.ebuild create mode 100644 dev-python/binaryornot/binaryornot-0.4.4-r2.ebuild delete mode 100644 dev-python/binaryornot/files/binaryornot-0.4.4-fix-version-number.patch (limited to 'dev-python/binaryornot') diff --git a/dev-python/binaryornot/Manifest b/dev-python/binaryornot/Manifest index c49467b8579f..9e37c8c0ebdb 100644 --- a/dev-python/binaryornot/Manifest +++ b/dev-python/binaryornot/Manifest @@ -1 +1 @@ -DIST binaryornot-0.4.4.tar.gz 372361 BLAKE2B cb2099313f602915bacd5b463642f16430fcb0ab62dcaae546cb854780996526fb777c0b730b4b89e664ec7f995ddd2d2f632cfbac2dadca45958cfd1dd7a410 SHA512 31dfb79bb5847e12487d94519a357dece4572f7ed064686d53a49c2de5a51d6441be64523c98cca6221ed89be5bf26e54866dd3b79ac8d89fd5019a5b4d75a45 +DIST binaryornot-0.4.4.r1.tar.gz 371054 BLAKE2B 4a70e22eba51a266987308e8d1b4571ace5760f945920194a1a61f4336f33dcb655c4f0b1f760aa3502834d29a1a64ac62657e5d73eac8f1d7d02edf71db8af9 SHA512 379e71b41824b9389ea02c64223e26c57694d07b749c197e3a6b9f10558c8d502e9b93a13ae6c3a4bca49064ffc650ce822073dc312fb06e50e06b8a3f04f419 diff --git a/dev-python/binaryornot/binaryornot-0.4.4-r1.ebuild b/dev-python/binaryornot/binaryornot-0.4.4-r1.ebuild deleted file mode 100644 index 493f89a66ec0..000000000000 --- a/dev-python/binaryornot/binaryornot-0.4.4-r1.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{6,7,8,9,10} ) - -inherit distutils-r1 - -DESCRIPTION="Ultra-lightweight pure Python package to guess whether a file is binary or text" -HOMEPAGE="https://github.com/audreyfeldroy/binaryornot" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ~x86" - -RDEPEND=">=dev-python/chardet-3.0.2[${PYTHON_USEDEP}]" -BDEPEND="test? ( dev-python/hypothesis[${PYTHON_USEDEP}] )" - -DOCS=( README.rst HISTORY.rst CONTRIBUTING.rst ) - -PATCHES=( - # https://github.com/audreyr/binaryornot/commit/38dee57986c6679d9936a1da6f6c8182da3734f8 - "${FILESDIR}"/${P}-tests.patch - # Version number has not been updated to 0.4.4 - "${FILESDIR}"/${P}-fix-version-number.patch -) - -distutils_enable_tests unittest -distutils_enable_sphinx docs diff --git a/dev-python/binaryornot/binaryornot-0.4.4-r2.ebuild b/dev-python/binaryornot/binaryornot-0.4.4-r2.ebuild new file mode 100644 index 000000000000..d06797deac83 --- /dev/null +++ b/dev-python/binaryornot/binaryornot-0.4.4-r2.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8,9,10} ) + +inherit distutils-r1 + +DESCRIPTION="Ultra-lightweight pure Python package to guess whether a file is binary or text" +HOMEPAGE="https://github.com/audreyfeldroy/binaryornot" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz -> ${P}.r1.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="amd64 ~x86" + +RDEPEND=">=dev-python/chardet-3.0.2[${PYTHON_USEDEP}]" +BDEPEND="test? ( dev-python/hypothesis[${PYTHON_USEDEP}] )" + +DOCS=( README.rst HISTORY.rst CONTRIBUTING.rst ) + +PATCHES=( + # https://github.com/audreyr/binaryornot/commit/38dee57986c6679d9936a1da6f6c8182da3734f8 + "${FILESDIR}"/${P}-tests.patch +) + +distutils_enable_tests unittest +distutils_enable_sphinx docs diff --git a/dev-python/binaryornot/files/binaryornot-0.4.4-fix-version-number.patch b/dev-python/binaryornot/files/binaryornot-0.4.4-fix-version-number.patch deleted file mode 100644 index 05d6ed0b7449..000000000000 --- a/dev-python/binaryornot/files/binaryornot-0.4.4-fix-version-number.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/setup.py b/setup.py -index 68a4f5b..a0c9e14 100755 ---- a/setup.py -+++ b/setup.py -@@ -13,7 +13,7 @@ with open('README.rst') as readme_file: - with open('HISTORY.rst') as history_file: - history = history_file.read().replace('.. :changelog:', '') - --version = '0.4.3' -+version = '0.4.4' - - if sys.argv[-1] == 'publish': - os.system('python setup.py sdist bdist_wheel upload') -- cgit v1.3.1