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/pyserial/
Date: Sat, 06 Jan 2018 00:44:38
Message-Id: 1515199460.d39cfe8b78c556f782cf009346430b289a1500f3.mgorny@gentoo
1 commit: d39cfe8b78c556f782cf009346430b289a1500f3
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 5 23:22:27 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 6 00:44:20 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d39cfe8b
7
8 dev-python/pyserial: Clean old up
9
10 dev-python/pyserial/Manifest | 2 --
11 dev-python/pyserial/pyserial-2.7-r1.ebuild | 34 -----------------------
12 dev-python/pyserial/pyserial-3.3.ebuild | 44 ------------------------------
13 3 files changed, 80 deletions(-)
14
15 diff --git a/dev-python/pyserial/Manifest b/dev-python/pyserial/Manifest
16 index 081aef21e22..a4dbc05dd28 100644
17 --- a/dev-python/pyserial/Manifest
18 +++ b/dev-python/pyserial/Manifest
19 @@ -1,4 +1,2 @@
20 -DIST pyserial-2.7.tar.gz 122081 BLAKE2B a0bfddb0880dcebd80e8e42a8db13f5e2fec219533c3523a56ccac865b58036174680c7b2184eaa48b648198441cc2e8529d63fbd623c8581fb7003b6290acac SHA512 3fc8d9425a47ebcd37db1fcc58182854b48c9abd6642f35fba2d21458d864ae448105d704dc0d880832ba7516fa16f108f24363bd5fa9f083ea79a4ac614339b
21 DIST pyserial-3.2.1.tar.gz 147338 BLAKE2B 6c377d1527183fc48e1369f206f409d312e4488bdb15ae1d1ed93249073ffc56529a9e6059ef57c8f2ebb867cb6d9c0b7dc3a74eafbf653463a05e603b25d69c SHA512 8d3e580cc7781fc6549ab6e408642f4321eb90aafbe593f5dcf953001730f89ee32ce6592728764027a7944bfe4a0ebe2cfac1fce071777aac7c4f27ac94ab7f
22 -DIST pyserial-3.3.tar.gz 149032 BLAKE2B 5528ca72c6797d5862e7e6292d60e3b459d75ee2b0dadd1582e8acf6b85ecbe6155e8bebbdcb3a45ef862e635f1f1ec7b50f688ccbbf10255cfdf67276af4bf8 SHA512 57a0bcd0684530e1d60022804dd75acd5d9a9a358c92d967076884b2419bcfefae71e949f7aba1737023f6b089c993e98dd7cf6860e9402ed7e0b698953b3ac8
23 DIST pyserial-3.4.tar.gz 151657 BLAKE2B cf47aba4a6f3bb2fe39d99e72907496faa1c9f37857810fef4d826cca72c361d0e43dbc33d9cf2291a589bf0193d17355d149e6eb61b4f9e28250207708ef09a SHA512 d71dffc330704e41caac6054adf192bee2f1c119691faf2ea93fe22e8e3ba000dc4a1434293f6f80d05a5577d85b96791f656e28d5c63fb0ce6a6605467a117f
24
25 diff --git a/dev-python/pyserial/pyserial-2.7-r1.ebuild b/dev-python/pyserial/pyserial-2.7-r1.ebuild
26 deleted file mode 100644
27 index 394397eaec9..00000000000
28 --- a/dev-python/pyserial/pyserial-2.7-r1.ebuild
29 +++ /dev/null
30 @@ -1,34 +0,0 @@
31 -# Copyright 1999-2016 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=5
35 -PYTHON_COMPAT=( python{2_7,3_4,3_5} pypy )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="Python Serial Port Extension"
40 -HOMEPAGE="http://pyserial.sourceforge.net/ https://sourceforge.net/projects/pyserial/ https://pypi.python.org/pypi/pyserial"
41 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 -
43 -LICENSE="PSF-2"
44 -SLOT="0"
45 -KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd"
46 -IUSE="doc examples"
47 -
48 -DEPEND="
49 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
50 -
51 -# Usual avoid d'loading un-needed objects.inv file
52 -PATCHES=( "${FILESDIR}"/mapping.patch )
53 -
54 -DOCS=( CHANGES.txt README.txt )
55 -
56 -python_compile_all() {
57 - use doc && emake -C documentation html
58 -}
59 -
60 -python_install_all() {
61 - use doc && local HTML_DOCS=( documentation/_build/html/. )
62 - use examples && local EXAMPLES=( examples/. )
63 - distutils-r1_python_install_all
64 -}
65
66 diff --git a/dev-python/pyserial/pyserial-3.3.ebuild b/dev-python/pyserial/pyserial-3.3.ebuild
67 deleted file mode 100644
68 index 49af2522251..00000000000
69 --- a/dev-python/pyserial/pyserial-3.3.ebuild
70 +++ /dev/null
71 @@ -1,44 +0,0 @@
72 -# Copyright 1999-2017 Gentoo Foundation
73 -# Distributed under the terms of the GNU General Public License v2
74 -
75 -EAPI=6
76 -PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy )
77 -
78 -inherit distutils-r1
79 -
80 -DESCRIPTION="Python Serial Port extension"
81 -HOMEPAGE="https://github.com/pyserial/pyserial https://pypi.python.org/pypi/pyserial"
82 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
83 -
84 -LICENSE="PSF-2"
85 -SLOT="0"
86 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
87 -IUSE="doc examples"
88 -
89 -DEPEND="
90 - dev-python/setuptools[${PYTHON_USEDEP}]
91 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
92 -"
93 -
94 -# Usual avoid d'loading un-needed objects.inv file
95 -PATCHES=( "${FILESDIR}"/mapping.patch )
96 -
97 -DOCS=( CHANGES.rst README.rst )
98 -
99 -python_compile_all() {
100 - use doc && emake -C documentation html
101 -}
102 -
103 -python_test() {
104 - ${EPYTHON} test/run_all_tests.py || die "Testing failed with ${EPYTHON}"
105 -}
106 -
107 -python_install_all() {
108 - use doc && local HTML_DOCS=( documentation/_build/html/. )
109 - distutils-r1_python_install_all
110 - if use examples; then
111 - insinto /usr/share/doc/${PF}
112 - doins -r examples
113 - docompress -x /usr/share/doc/${PF}/examples
114 - fi
115 -}