diff options
author | 2021-01-16 09:02:20 +0100 | |
---|---|---|
committer | 2021-01-16 09:06:30 +0100 | |
commit | c7f19f6bfab2f725b1f61b408b3003cff85da455 (patch) | |
tree | 38f0e2cc7ca958e3f1a35412ef0f9583e2e915b5 /dev-python/python-magic | |
parent | net-misc/youtube-dl: Bump to 2021.01.16 (diff) | |
download | gentoo-c7f19f6bfab2f725b1f61b408b3003cff85da455.tar.gz gentoo-c7f19f6bfab2f725b1f61b408b3003cff85da455.tar.bz2 gentoo-c7f19f6bfab2f725b1f61b408b3003cff85da455.zip |
dev-python/python-magic: Bump to 0.4.19
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/python-magic')
-rw-r--r-- | dev-python/python-magic/Manifest | 1 | ||||
-rw-r--r-- | dev-python/python-magic/python-magic-0.4.19.ebuild | 30 |
2 files changed, 31 insertions, 0 deletions
diff --git a/dev-python/python-magic/Manifest b/dev-python/python-magic/Manifest index e542f5527179..cafd294fe1a5 100644 --- a/dev-python/python-magic/Manifest +++ b/dev-python/python-magic/Manifest @@ -1 +1,2 @@ DIST python-magic-0.4.18.gh.tar.gz 856291 BLAKE2B 882c86d3e8995d1e1b6168637a01f4f8bc86f23390b1c67248baf46d16d574a41789938ccdf0acd83db0652678ab0fa0f6e043eb2c4a75743e5d448e80530da5 SHA512 d5f0047c7537ce0598537629c60aa708623480792d489fa003328b5c6c5b0d42748b6e996f27dc2c164c598813fcf19393567e7ea266a9f0718cf2ddafbd33ac +DIST python-magic-0.4.19.gh.tar.gz 863519 BLAKE2B 2e777612d55256ba955e199fc6734f6e68b8cf996222820192cf9730b2c274b2f6be2d5fe58c92cce741047d77b79b0447c5961a056e1788d924d34cedba1d40 SHA512 1d78077fe02b4ab8c8aa1720064f2b5d19f304310ca88c1fada2dbafa5118820b6d7e3f031e3d7df5394ad480872d8bcd33489fec1ce2e6e0d9d84a7325040f1 diff --git a/dev-python/python-magic/python-magic-0.4.19.ebuild b/dev-python/python-magic/python-magic-0.4.19.ebuild new file mode 100644 index 000000000000..a4807619f588 --- /dev/null +++ b/dev-python/python-magic/python-magic-0.4.19.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( pypy3 python3_{7..9} ) + +inherit distutils-r1 + +DESCRIPTION="Access the libmagic file type identification library" +HOMEPAGE="https://github.com/ahupp/python-magic" +SRC_URI=" + https://github.com/ahupp/python-magic/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz" + +LICENSE="BSD-2 MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND="sys-apps/file[-python]" +BDEPEND=" + test? ( sys-apps/file ) +" + +python_test() { + local -x LC_ALL=en_US.UTF-8 + "${EPYTHON}" test/test.py -v || die "Tests fail with ${EPYTHON}" +} |