diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-03-26 14:31:39 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-03-26 14:31:39 +0100 |
commit | 635fa6049aae548cf71de4640c7afaf5ed6e3fa9 (patch) | |
tree | 21ffe997c5943c2a97d392c457bc1377b150062b /dev-python/Babel | |
parent | dev-python/Babel: Stabilize 2.8.0 ALLARCHES (diff) | |
download | gentoo-635fa6049aae548cf71de4640c7afaf5ed6e3fa9.tar.gz gentoo-635fa6049aae548cf71de4640c7afaf5ed6e3fa9.tar.bz2 gentoo-635fa6049aae548cf71de4640c7afaf5ed6e3fa9.zip |
dev-python/Babel: Remove redundant versions
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/Babel')
-rw-r--r-- | dev-python/Babel/Babel-2.5.0.ebuild | 49 | ||||
-rw-r--r-- | dev-python/Babel/Babel-2.5.3-r1.ebuild | 52 | ||||
-rw-r--r-- | dev-python/Babel/Babel-2.5.3.ebuild | 49 | ||||
-rw-r--r-- | dev-python/Babel/Babel-2.6.0.ebuild | 50 | ||||
-rw-r--r-- | dev-python/Babel/Babel-2.7.0.ebuild | 43 | ||||
-rw-r--r-- | dev-python/Babel/Manifest | 4 |
6 files changed, 0 insertions, 247 deletions
diff --git a/dev-python/Babel/Babel-2.5.0.ebuild b/dev-python/Babel/Babel-2.5.0.ebuild deleted file mode 100644 index 97b799640078..000000000000 --- a/dev-python/Babel/Babel-2.5.0.ebuild +++ /dev/null @@ -1,49 +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 pypy3 ) -PYTHON_REQ_USE="threads(+)" - -inherit distutils-r1 - -DESCRIPTION="Collection of tools for internationalizing Python applications" -HOMEPAGE="http://babel.pocoo.org/ https://pypi.org/project/Babel/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris" -IUSE="doc test" -RESTRICT="!test? ( test )" - -RDEPEND="dev-python/pytz[${PYTHON_USEDEP}] - dev-python/setuptools[${PYTHON_USEDEP}]" -DEPEND="${DEPEND} - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) - test? ( dev-python/pytest[${PYTHON_USEDEP}] )" - -python_prepare_all() { - # Make the tests use implementation-specific datadir, - # because they try to write in it. - sed -e '/datadir =/s:os\.path\.dirname(__file__):os.environ["BUILD_DIR"]:' \ - -i tests/messages/test_frontend.py || die - sed -e '/^intersphinx_mapping/,+3d' -i docs/conf.py || die - distutils-r1_python_prepare_all -} - -python_test() { - # Create implementation-specific datadir for tests. - cp -R -l tests/messages/data "${BUILD_DIR}"/ || die - py.test || die -} - -python_compile_all() { - use doc && emake -C docs html -} - -python_install_all() { - use doc && local HTML_DOCS=( docs/_build/html/. ) - distutils-r1_python_install_all -} diff --git a/dev-python/Babel/Babel-2.5.3-r1.ebuild b/dev-python/Babel/Babel-2.5.3-r1.ebuild deleted file mode 100644 index 874d265301f3..000000000000 --- a/dev-python/Babel/Babel-2.5.3-r1.ebuild +++ /dev/null @@ -1,52 +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 pypy3 ) -PYTHON_REQ_USE="threads(+)" - -inherit distutils-r1 - -DESCRIPTION="Collection of tools for internationalizing Python applications" -HOMEPAGE="http://babel.pocoo.org/ https://pypi.org/project/Babel/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris" -IUSE="doc test" -RESTRICT="!test? ( test )" - -RDEPEND="dev-python/pytz[${PYTHON_USEDEP}] - dev-python/setuptools[${PYTHON_USEDEP}]" -DEPEND="${DEPEND} - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) - test? ( dev-python/freezegun[${PYTHON_USEDEP}] - dev-python/pytest[${PYTHON_USEDEP}] )" - -python_prepare_all() { - # Make the tests use implementation-specific datadir, - # because they try to write in it. - sed -e '/datadir =/s:os\.path\.dirname(__file__):os.environ["BUILD_DIR"]:' \ - -i tests/messages/test_frontend.py || die - sed -e '/^intersphinx_mapping/,+3d' -i docs/conf.py || die - distutils-r1_python_prepare_all -} - -python_test() { - local -x TZ=UTC - - # Create implementation-specific datadir for tests. - cp -R -l tests/messages/data "${BUILD_DIR}"/ || die - py.test -vv || die -} - -python_compile_all() { - use doc && emake -C docs html -} - -python_install_all() { - use doc && local HTML_DOCS=( docs/_build/html/. ) - distutils-r1_python_install_all -} diff --git a/dev-python/Babel/Babel-2.5.3.ebuild b/dev-python/Babel/Babel-2.5.3.ebuild deleted file mode 100644 index f7f8ed3fbd8f..000000000000 --- a/dev-python/Babel/Babel-2.5.3.ebuild +++ /dev/null @@ -1,49 +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 pypy3 ) -PYTHON_REQ_USE="threads(+)" - -inherit distutils-r1 - -DESCRIPTION="Collection of tools for internationalizing Python applications" -HOMEPAGE="http://babel.pocoo.org/ https://pypi.org/project/Babel/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris" -IUSE="doc test" -RESTRICT="!test? ( test )" - -RDEPEND="dev-python/pytz[${PYTHON_USEDEP}] - dev-python/setuptools[${PYTHON_USEDEP}]" -DEPEND="${DEPEND} - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) - test? ( dev-python/pytest[${PYTHON_USEDEP}] )" - -python_prepare_all() { - # Make the tests use implementation-specific datadir, - # because they try to write in it. - sed -e '/datadir =/s:os\.path\.dirname(__file__):os.environ["BUILD_DIR"]:' \ - -i tests/messages/test_frontend.py || die - sed -e '/^intersphinx_mapping/,+3d' -i docs/conf.py || die - distutils-r1_python_prepare_all -} - -python_test() { - # Create implementation-specific datadir for tests. - cp -R -l tests/messages/data "${BUILD_DIR}"/ || die - py.test || die -} - -python_compile_all() { - use doc && emake -C docs html -} - -python_install_all() { - use doc && local HTML_DOCS=( docs/_build/html/. ) - distutils-r1_python_install_all -} diff --git a/dev-python/Babel/Babel-2.6.0.ebuild b/dev-python/Babel/Babel-2.6.0.ebuild deleted file mode 100644 index 2befd155de20..000000000000 --- a/dev-python/Babel/Babel-2.6.0.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( pypy3 python{2_7,3_{6,7}} ) -PYTHON_REQ_USE="threads(+)" - -inherit distutils-r1 - -DESCRIPTION="Collection of tools for internationalizing Python applications" -HOMEPAGE="http://babel.pocoo.org/ https://pypi.org/project/Babel/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris" -IUSE="doc test" -RESTRICT="!test? ( test )" - -RDEPEND="dev-python/pytz[${PYTHON_USEDEP}] - dev-python/setuptools[${PYTHON_USEDEP}]" -DEPEND="${DEPEND} - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) - test? ( dev-python/freezegun[${PYTHON_USEDEP}] - dev-python/pytest[${PYTHON_USEDEP}] )" - -python_prepare_all() { - # Make the tests use implementation-specific datadir, - # because they try to write in it. - sed -e '/datadir =/s:os\.path\.dirname(__file__):os.environ["BUILD_DIR"]:' \ - -i tests/messages/test_frontend.py || die - sed -e '/^intersphinx_mapping/,+3d' -i docs/conf.py || die - distutils-r1_python_prepare_all -} - -python_test() { - local -x TZ=UTC - - # Create implementation-specific datadir for tests. - cp -R -l tests/messages/data "${BUILD_DIR}"/ || die - py.test -vv || die -} - -python_compile_all() { - if use doc; then - emake -C docs html - HTML_DOCS=( docs/_build/html/. ) - fi -} diff --git a/dev-python/Babel/Babel-2.7.0.ebuild b/dev-python/Babel/Babel-2.7.0.ebuild deleted file mode 100644 index f5e3d5e4db18..000000000000 --- a/dev-python/Babel/Babel-2.7.0.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( pypy3 python{2_7,3_{6,7,8}} ) -PYTHON_REQ_USE="threads(+)" - -inherit distutils-r1 - -DESCRIPTION="Collection of tools for internationalizing Python applications" -HOMEPAGE="http://babel.pocoo.org/ https://pypi.org/project/Babel/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND="dev-python/pytz[${PYTHON_USEDEP}] - dev-python/setuptools[${PYTHON_USEDEP}]" -DEPEND="${DEPEND} - test? ( dev-python/freezegun[${PYTHON_USEDEP}] - dev-python/pytest[${PYTHON_USEDEP}] )" - -distutils_enable_sphinx docs - -python_prepare_all() { - # Make the tests use implementation-specific datadir, - # because they try to write in it. - sed -e '/datadir =/s:os\.path\.dirname(__file__):os.environ["BUILD_DIR"]:' \ - -i tests/messages/test_frontend.py || die - distutils-r1_python_prepare_all -} - -python_test() { - local -x TZ=UTC - - # Create implementation-specific datadir for tests. - cp -R -l tests/messages/data "${BUILD_DIR}"/ || die - pytest -vv || die "Tests fail with ${EPYTHON}" -} diff --git a/dev-python/Babel/Manifest b/dev-python/Babel/Manifest index da5fb65ce183..f93f66ec057f 100644 --- a/dev-python/Babel/Manifest +++ b/dev-python/Babel/Manifest @@ -1,5 +1 @@ -DIST Babel-2.5.0.tar.gz 6612353 BLAKE2B 85268f0226f1db019fb906da0dfbbc6b6aa199ab491e9d767c932fb5ca77cb6d86328ebaa9c6eb61fb8d28c8e566babd435cdcee9b900c3c680d0dfb49c2bcac SHA512 b24b74121695e0068fb28a6294d4b5b2065e94dcd62ca0d70c8fde3a00cb5ff111480505594460989c6f67a75935f55e153b1b493f917317d2c5ee0f0d7921fc -DIST Babel-2.5.3.tar.gz 6611941 BLAKE2B 99b71642b00a853fea844220c0ce5ef2fe425906cbdd1618e31f39b60d16382d54ff5e00c493153eee2be8894edc8c96e57fc2703620db5bafcf7b7a4f1b72ef SHA512 1a41f69141da9f66e27110e7a1a5955f76d8ae9353ff7e54182c5bb6ca16e8b4799031e4df1049af54de513da9f101e171e4312b2e7775f2cab9116d5b50c0fb -DIST Babel-2.6.0.tar.gz 7960433 BLAKE2B 0edc3b3391eb3d479eae9a223668af96e1ec47b84b13d0bb66c0e1772dc5de8321ee06f0d0dfeb6c9364a724286d0ee50a3ab4c2ea789894057fca39bb11dc46 SHA512 a87f26c25f1e48a64d1e7ee112bc0c325a6268e0e716a81cb6814a53f0add8f3d579babd2ba064f160298ebe3ac9711aa5d28f112582ee287767b6ed8427b6e0 -DIST Babel-2.7.0.tar.gz 8244870 BLAKE2B 515f1e033d408e4f5fdcf1d1720a58e429523611a2a01d62bab95b96a2187ed0594e4c05678ac3311d6570bca2bf90b08818c233bf28a2fb03fdba923f5e6401 SHA512 96314c7b26f6915a825e0344fa06e4f1d9a71b97a52b16f2f696c2e81c69318974547620135912b11edb95668a717ec49f1be68eef5a4753092d8e4cdc39a1e5 DIST Babel-2.8.0.tar.gz 8444381 BLAKE2B ea3757182464770f47d3253e77bece7b64c84558e7a19fc55759198bfa55c6d8156d27e9de7b796b62eefd93e458c7e00b2014dd23e4ed7383f5bc9785d1a332 SHA512 f9687b36176c146a8ace073197111463d24fca343bb1dbee8b0e37a7f37b68b4cd77ffbe3bf14a20f8f64c701aa860e0b5e6076658a95dbee2556f0688d68d91 |