From: Michał Górny Date: Fri, 5 Jan 2018 23:22:27 +0000 (+0100) Subject: dev-python/pyserial: Clean old up X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=d39cfe8b78c556f782cf009346430b289a1500f3;p=gentoo.git dev-python/pyserial: Clean old up --- diff --git a/dev-python/pyserial/Manifest b/dev-python/pyserial/Manifest index 081aef21e223..a4dbc05dd281 100644 --- a/dev-python/pyserial/Manifest +++ b/dev-python/pyserial/Manifest @@ -1,4 +1,2 @@ -DIST pyserial-2.7.tar.gz 122081 BLAKE2B a0bfddb0880dcebd80e8e42a8db13f5e2fec219533c3523a56ccac865b58036174680c7b2184eaa48b648198441cc2e8529d63fbd623c8581fb7003b6290acac SHA512 3fc8d9425a47ebcd37db1fcc58182854b48c9abd6642f35fba2d21458d864ae448105d704dc0d880832ba7516fa16f108f24363bd5fa9f083ea79a4ac614339b DIST pyserial-3.2.1.tar.gz 147338 BLAKE2B 6c377d1527183fc48e1369f206f409d312e4488bdb15ae1d1ed93249073ffc56529a9e6059ef57c8f2ebb867cb6d9c0b7dc3a74eafbf653463a05e603b25d69c SHA512 8d3e580cc7781fc6549ab6e408642f4321eb90aafbe593f5dcf953001730f89ee32ce6592728764027a7944bfe4a0ebe2cfac1fce071777aac7c4f27ac94ab7f -DIST pyserial-3.3.tar.gz 149032 BLAKE2B 5528ca72c6797d5862e7e6292d60e3b459d75ee2b0dadd1582e8acf6b85ecbe6155e8bebbdcb3a45ef862e635f1f1ec7b50f688ccbbf10255cfdf67276af4bf8 SHA512 57a0bcd0684530e1d60022804dd75acd5d9a9a358c92d967076884b2419bcfefae71e949f7aba1737023f6b089c993e98dd7cf6860e9402ed7e0b698953b3ac8 DIST pyserial-3.4.tar.gz 151657 BLAKE2B cf47aba4a6f3bb2fe39d99e72907496faa1c9f37857810fef4d826cca72c361d0e43dbc33d9cf2291a589bf0193d17355d149e6eb61b4f9e28250207708ef09a SHA512 d71dffc330704e41caac6054adf192bee2f1c119691faf2ea93fe22e8e3ba000dc4a1434293f6f80d05a5577d85b96791f656e28d5c63fb0ce6a6605467a117f diff --git a/dev-python/pyserial/pyserial-2.7-r1.ebuild b/dev-python/pyserial/pyserial-2.7-r1.ebuild deleted file mode 100644 index 394397eaec95..000000000000 --- a/dev-python/pyserial/pyserial-2.7-r1.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -PYTHON_COMPAT=( python{2_7,3_4,3_5} pypy ) - -inherit distutils-r1 - -DESCRIPTION="Python Serial Port Extension" -HOMEPAGE="http://pyserial.sourceforge.net/ https://sourceforge.net/projects/pyserial/ https://pypi.python.org/pypi/pyserial" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="PSF-2" -SLOT="0" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd" -IUSE="doc examples" - -DEPEND=" - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )" - -# Usual avoid d'loading un-needed objects.inv file -PATCHES=( "${FILESDIR}"/mapping.patch ) - -DOCS=( CHANGES.txt README.txt ) - -python_compile_all() { - use doc && emake -C documentation html -} - -python_install_all() { - use doc && local HTML_DOCS=( documentation/_build/html/. ) - use examples && local EXAMPLES=( examples/. ) - distutils-r1_python_install_all -} diff --git a/dev-python/pyserial/pyserial-3.3.ebuild b/dev-python/pyserial/pyserial-3.3.ebuild deleted file mode 100644 index 49af25222514..000000000000 --- a/dev-python/pyserial/pyserial-3.3.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy ) - -inherit distutils-r1 - -DESCRIPTION="Python Serial Port extension" -HOMEPAGE="https://github.com/pyserial/pyserial https://pypi.python.org/pypi/pyserial" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="PSF-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd" -IUSE="doc examples" - -DEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) -" - -# Usual avoid d'loading un-needed objects.inv file -PATCHES=( "${FILESDIR}"/mapping.patch ) - -DOCS=( CHANGES.rst README.rst ) - -python_compile_all() { - use doc && emake -C documentation html -} - -python_test() { - ${EPYTHON} test/run_all_tests.py || die "Testing failed with ${EPYTHON}" -} - -python_install_all() { - use doc && local HTML_DOCS=( documentation/_build/html/. ) - distutils-r1_python_install_all - if use examples; then - insinto /usr/share/doc/${PF} - doins -r examples - docompress -x /usr/share/doc/${PF}/examples - fi -}