commit:     630f3073428e91f7982e8050a1adca3d08e965c8
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 22 16:52:43 2020 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Feb 22 20:22:17 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=630f3073

dev-python/m2r: Drop 0.1.5, 0.1.6, 0.1.12

Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 dev-python/m2r/Manifest          |  3 ---
 dev-python/m2r/m2r-0.1.12.ebuild | 48 -------------------------------------
 dev-python/m2r/m2r-0.1.5.ebuild  | 50 ---------------------------------------
 dev-python/m2r/m2r-0.1.6.ebuild  | 51 ----------------------------------------
 4 files changed, 152 deletions(-)

diff --git a/dev-python/m2r/Manifest b/dev-python/m2r/Manifest
index 3bcf6c4d8d0..c0d1c212322 100644
--- a/dev-python/m2r/Manifest
+++ b/dev-python/m2r/Manifest
@@ -1,5 +1,2 @@
-DIST m2r-0.1.12.tar.gz 15358 BLAKE2B 
07f22ab486df3b0382c427b9c9ec3e1e2557bcd12edefa3800fea970012e55d9a6e66dfc720ff7ab394003bc26055c68756b4578adc2de9a5cbc4089ef5c534b
 SHA512 
5579f993c9a8aa72195e97ba6ea2a317f97587f2f8fdab6d7cc16ced6ccc169960a99c712b9ab1251cd021b03f1c5566139bfe6c314bdad43b9bf138a921f0f1
 DIST m2r-0.1.14.tar.gz 15926 BLAKE2B 
48d8961b6ebf66d494511f6bf755ae2d2de0740aa27eec82f6690a3ccb686795c204a51ddc6d89d44440fc74bcd6f914917ef5d56f2b2275dd98dd8e6d5a9c0c
 SHA512 
fba6c580c1e8f1fda704628a3e16dc75d23faf532767e56065cc3786e59331196c1d2dfeb49804b7b931356d5ac2d498320a752d0e20cd6e3b8e28be92d38120
-DIST m2r-0.1.5.tar.gz 13202 BLAKE2B 
dcfc5ecdcb2c696c1eec8fe3eca4cd7e238f605c399b750286d9eb18ecbda9d80b608fb362a85959769253c5f5bca7e392ed5b61a7804b25cab5e7bfb5edf574
 SHA512 
78e9e8daa293b2466c95f0adad937fa0bbefaf0dd9663695bb916be13182633e0d462afa5331a595db424420485ef54bbfd4e0625962026fab4ce0c63104bc84
-DIST m2r-0.1.6.tar.gz 13615 BLAKE2B 
e0c98c059f5c569bf88a1f97bc1c8a912675f9c0e044175f4ecbf885b80019d62f5fe80579420af373ea3d62fffdcc62344d1035d901208719be1cfd56654a01
 SHA512 
3641cf4013f71fbd43d6cdad530cfd3e909c93709edfbd79d6a51e7121de68e279d3ec4eb7eed391a35902ffa467310bd6b020139b2024c3e80fa44e5f6cc4a7
 DIST m2r-0.2.1.tar.gz 24455 BLAKE2B 
42ec5a919301b6dee2b345a5eca9e62a1bd44186fb61dbd8cc9de6cacc34821e912f242355cc7368b755f923a433353cfa567afc480e9b8c63bf209ff9d3c624
 SHA512 
847f04538ee52f0b0a88cee9474ed889e8114a3a7b1fb221cdaa867ab70ca52f517250f2c8bbf795ae598c7b6614e6d03d9f6f05b7e3d56fb8087d63eb52f1bc

diff --git a/dev-python/m2r/m2r-0.1.12.ebuild b/dev-python/m2r/m2r-0.1.12.ebuild
deleted file mode 100644
index 7290a3e261a..00000000000
--- a/dev-python/m2r/m2r-0.1.12.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 python3_6)
-
-inherit distutils-r1
-
-DESCRIPTION="Markdown to reStructuredText converter"
-HOMEPAGE="https://github.com/miyakogi/m2r https://pypi.org/project/m2r/";
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-       dev-python/mistune[${PYTHON_USEDEP}]
-       dev-python/docutils[${PYTHON_USEDEP}]
-"
-DEPEND="
-       dev-python/setuptools[${PYTHON_USEDEP}]
-       test? ( $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' 
python2_7) )
-       ${RDEPEND}
-"
-
-#S=${WORKDIR}/${P}
-
-python_prepare_all() {
-       # fix a Q/A violation, trying to install the tests as an independant 
package
-       sed -e "s/packages=\['tests'\],/packages=[],/" -i setup.py
-       # add missing test files
-       cp "${FILESDIR}/"test.md tests/ || die
-       cp "${FILESDIR}/"test.rst tests/ || die
-       cp "${FILESDIR}/"m2r.1 ./ || die
-       distutils-r1_python_prepare_all
-}
-
-python_test() {
-       py.test -v || die "Tests failed with ${EPYTHON}"
-}
-
-python_install_all() {
-       distutils-r1_python_install_all
-       doman m2r.1
-}

diff --git a/dev-python/m2r/m2r-0.1.5.ebuild b/dev-python/m2r/m2r-0.1.5.ebuild
deleted file mode 100644
index 8c145d1d0fd..00000000000
--- a/dev-python/m2r/m2r-0.1.5.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 python3_6)
-
-inherit distutils-r1
-
-DESCRIPTION="Markdown to reStructuredText converter"
-HOMEPAGE="https://github.com/miyakogi/m2r https://pypi.org/project/m2r/";
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-       dev-python/mistune[${PYTHON_USEDEP}]
-       dev-python/docutils[${PYTHON_USEDEP}]
-"
-DEPEND="
-       dev-python/setuptools[${PYTHON_USEDEP}]
-       test? ( $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' 
python2_7) )
-       ${RDEPEND}
-"
-
-#S=${WORKDIR}/${P}
-
-python_prepare_all() {
-       # fix a Q/A violation, trying to install the tests as an independant 
package
-       sed -e "s/packages=\['tests'\],/packages=[],/" -i setup.py
-       # remove duped old file in the tarball
-       rm "tests/test_r s.py" || die
-       # add missing test files
-       cp "${FILESDIR}/"test.md tests/ || die
-       cp "${FILESDIR}/"test.rst tests/ || die
-       cp "${FILESDIR}/"m2r.1 ./ || die
-       distutils-r1_python_prepare_all
-}
-
-python_test() {
-       py.test -v || die "Tests failed with ${EPYTHON}"
-}
-
-python_install_all() {
-       distutils-r1_python_install_all
-       doman m2r.1
-}

diff --git a/dev-python/m2r/m2r-0.1.6.ebuild b/dev-python/m2r/m2r-0.1.6.ebuild
deleted file mode 100644
index bf9a610627b..00000000000
--- a/dev-python/m2r/m2r-0.1.6.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 python3_{6,7})
-
-inherit distutils-r1
-
-DESCRIPTION="Markdown to reStructuredText converter"
-HOMEPAGE="https://github.com/miyakogi/m2r https://pypi.org/project/m2r/";
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-       dev-python/mistune[${PYTHON_USEDEP}]
-       dev-python/docutils[${PYTHON_USEDEP}]
-"
-DEPEND="
-       dev-python/setuptools[${PYTHON_USEDEP}]
-       test? ( dev-python/pytest
-               $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' 
python2_7) )
-       ${RDEPEND}
-"
-
-#S=${WORKDIR}/${P}
-
-python_prepare_all() {
-       # fix a Q/A violation, trying to install the tests as an independant 
package
-       sed -e "s/packages=\['tests'\],/packages=[],/" -i setup.py
-       # remove duped old file in the tarball
-       rm "tests/test_r s.py" || die
-       # add missing test files
-       cp "${FILESDIR}/"test.md tests/ || die
-       cp "${FILESDIR}/"test.rst tests/ || die
-       cp "${FILESDIR}/"m2r.1 ./ || die
-       distutils-r1_python_prepare_all
-}
-
-python_test() {
-       py.test -v || die "Tests failed with ${EPYTHON}"
-}
-
-python_install_all() {
-       distutils-r1_python_install_all
-       doman m2r.1
-}

Reply via email to