diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2019-08-18 18:16:17 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2019-08-18 18:16:17 +0100 |
commit | fc637fb28da700da71ec2064d65ca5a7a31b9c6c (patch) | |
tree | 326613a08f25851c388715e205576a2e7d25dc4f /dev-python/python-lzo | |
parent | b24bd25253fe093f722ab576d29fdc41d04cb1ee (diff) |
gentoo resync : 18.08.2019
Diffstat (limited to 'dev-python/python-lzo')
-rw-r--r-- | dev-python/python-lzo/Manifest | 1 | ||||
-rw-r--r-- | dev-python/python-lzo/python-lzo-1.12-r1.ebuild | 35 |
2 files changed, 36 insertions, 0 deletions
diff --git a/dev-python/python-lzo/Manifest b/dev-python/python-lzo/Manifest index 75f0f4689fed..25e84a0bb2b5 100644 --- a/dev-python/python-lzo/Manifest +++ b/dev-python/python-lzo/Manifest @@ -4,5 +4,6 @@ DIST python-lzo-1.11.tar.gz 13823 BLAKE2B 4be60c85aae64e8837f7f8ec332c16f8c86d2e DIST python-lzo-1.12.tar.gz 14042 BLAKE2B 7375e9b200a17cc1ad2c4dfdbe6491082af8d120b2b659b1e9bbff00eaae568e04dc12e5c13de3a028267a1e8e02bd1522a9335db73fa6a5a4ebc7ca4b341fff SHA512 811bdb282cfaf33427ad641d0342900c5af1f17b7033d76593288c3846b0feefe6ef93253152add97b2d6420f937de2745c8e7508dadf33e72b11545cac3be4d EBUILD python-lzo-1.08-r1.ebuild 622 BLAKE2B 58ad08becc27f5f6bab25a9e4beb590b049ffe0a0a0c35315ba665bbb415a9333e22e315cb6a64b9f0c8daa77e6d73acc225d9f028e14cf72deba7b65dbc7bc4 SHA512 908c281da215817826e0b9b2dbbc3b5b24179c504d0ddf2aa5b7b58a766a023a52f713a84f61a387518323658850b061c29a48babcee461624711b8d17c05fc7 EBUILD python-lzo-1.11.ebuild 719 BLAKE2B 802d5deea015c1eb4d3315dabcd4e7deac9fc2ec1b12fadb1ef87af8607d7dc549de7a79e07f72ab0aaf0011c64c026f88eb5635c0667ac71ef0292c76024d1d SHA512 cba494e54ffa81ff84a70dec1884681613a8d68beb2610717448fafc131cb4f6d932fb7f51a32b9ad3821074c5e10a5104dc877c0dba16f5ab6d922957a2a22b +EBUILD python-lzo-1.12-r1.ebuild 729 BLAKE2B 7a41e8baf8f5e9528699d0457f4ef534f8d34fd35409c5eb64134df8b3082197426fb55d9a1ae85ae09a21aac757957c8371b74981ba5c6c511667da056cf28c SHA512 d55ba84de79fbe9876c1d59e835813e9c5f35f332fc01100f9347ecf43c9d0271f8192f0cce89981cf3329bdc20857b4de114dee2916173c9c938adca05be83e EBUILD python-lzo-1.12.ebuild 723 BLAKE2B 5dead3e85c9811b73e22195f059e4fa55974c7d9087d9d500b27b66df8895714c60e1fd28ba0f426a8b6fce6d40f36daa3fef64671306b25f893ab8cd403112f SHA512 5cbd8918da48ba5c5408771cdb8c2710e73474f03d2990d90e7a572fb824f9e6c9871e8a9de21162d0dc0b3c5924f955e5317db40795d1bb5e7d080e9b2e01cf MISC metadata.xml 385 BLAKE2B 4a726b1896f55aa03b8b9a1a1f39107751f372b7bb7b0b9759447a7d42fcc97c142ea6ea3a2de8358d0bc00cb0e73b12c78c0b03e8c52c93092220761b6eecef SHA512 634d30e62ce3a8c09b3de241642e9ce8b059d9d3ff02e6530642dea4b0b4bcc8f108566bdc5ba52f6e63214546e11f734bdc094ef60ad13197b9f74cab71d03c diff --git a/dev-python/python-lzo/python-lzo-1.12-r1.ebuild b/dev-python/python-lzo/python-lzo-1.12-r1.ebuild new file mode 100644 index 000000000000..4da9abd075e7 --- /dev/null +++ b/dev-python/python-lzo/python-lzo-1.12-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python2_7 python3_{5,6,7} ) + +inherit distutils-r1 prefix + +DESCRIPTION="Python interface to lzo" +HOMEPAGE="https://github.com/jd-boyd/python-lzo" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="test" + +RDEPEND=" + dev-libs/lzo:2" + +DEPEND=" + ${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( dev-python/nose[${PYTHON_USEDEP}] )" + +src_prepare() { + distutils-r1_src_prepare + hprefixify setup.py +} + +python_test() { + distutils_install_for_testing + PYTHONPATH="${TEST_DIR}"/lib nosetests -v || die "tests failed" +} |