Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/tempora/
Date: Sun, 03 Jun 2018 02:13:44
Message-Id: 1527992013.1d1e363f7a4899d79920750da0e50c9db8922c51.bman@gentoo
1 commit: 1d1e363f7a4899d79920750da0e50c9db8922c51
2 Author: Louis Sautier <sautier.louis <AT> gmail <DOT> com>
3 AuthorDate: Sat Jun 2 12:23:21 2018 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 3 02:13:33 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d1e363f
7
8 dev-python/tempora: remove old
9
10 Package-Manager: Portage-2.3.38, Repoman-2.3.9
11
12 dev-python/tempora/Manifest | 1 -
13 dev-python/tempora/tempora-1.6.1.ebuild | 52 ---------------------------------
14 2 files changed, 53 deletions(-)
15
16 diff --git a/dev-python/tempora/Manifest b/dev-python/tempora/Manifest
17 index 00666673b1a..1b7894d2767 100644
18 --- a/dev-python/tempora/Manifest
19 +++ b/dev-python/tempora/Manifest
20 @@ -1,4 +1,3 @@
21 DIST tempora-1.11.tar.gz 14750 BLAKE2B d8e448f9cf363a49b30bc016faeaccf1e724c8887d179570b4e46e2eb8d7eaccf7837ffc43e02e956869caa22ac037507e2b17c11540fdb7e6610fd7607780b6 SHA512 cda47613cabefabb0c52e2f89f31b405a3b3f17c531a0b890a9ccfd3a3fcd5bc5bec19881ce726972ff61811654e8b5ec8048c9ebad6e87d72d7d98bfa4daeab
22 -DIST tempora-1.6.1.tar.gz 11423 BLAKE2B d549581d92d9205eaa9495cba251891a7c93859abf1d402b2e0b7f344f882acbe11578fd66a0f604dbff3458108f04582ce527148f0fa1b2d683872c17d32015 SHA512 9baf9162e304e59ae0a427a7a27d1fc66b0d4b98e016490317832ba2e7acec520ef2baeebeb26f7984ba7ace82413d15b96baef7dbdfcfdc94e29e7179769a01
23 DIST tempora-1.7.tar.gz 11645 BLAKE2B d354fb863a8d30bd9e603ad942d7c7f61a70c24e7f1fe94fffd59982431190e2807c2dc577ff83eb90ffc5fd2b2f8415965de1d77e4dca0dd02291733bfbb97c SHA512 2420e32a9b8c990609d8f09225004e0b1c445cad1fe3c3c74625cb8317b552469acf2d3b28aa56633a87260a93c77d73b02178cb662016c514bc740aa01399e5
24 DIST tempora-1.9.tar.gz 12469 BLAKE2B da18fc066cb9cf7ee0fa7eefb39ea2ac941760144c7efdea66a05780ced43d574757665dfad6088f98c135e7b14874aef0c8243ab338fcbaa5a515ec27507f52 SHA512 cb049675d7196738debca3dc0ddd8c5e72d0468bd1a853f77378cc5564b100cd94d23c63d7b06c6bed2827365d904a1582cf9d497618493b795600b6d476b91f
25
26 diff --git a/dev-python/tempora/tempora-1.6.1.ebuild b/dev-python/tempora/tempora-1.6.1.ebuild
27 deleted file mode 100644
28 index 5c444ca6ad4..00000000000
29 --- a/dev-python/tempora/tempora-1.6.1.ebuild
30 +++ /dev/null
31 @@ -1,52 +0,0 @@
32 -# Copyright 1999-2016 Gentoo Foundation
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=6
36 -
37 -PYTHON_COMPAT=( python{2_7,3_4,3_5} )
38 -
39 -inherit distutils-r1
40 -
41 -MY_PN="${PN/-/.}"
42 -DESCRIPTION="Objects and routines pertaining to date and time"
43 -HOMEPAGE="https://github.com/jaraco/tempora"
44 -SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
45 -
46 -LICENSE="MIT"
47 -SLOT="0"
48 -KEYWORDS="~amd64 ~x86"
49 -IUSE="doc test"
50 -
51 -RDEPEND="
52 - dev-python/pytz[${PYTHON_USEDEP}]
53 - dev-python/six[${PYTHON_USEDEP}]
54 -"
55 -# The calc-prorate binary used to be part of jaraco.utils
56 -DEPEND="
57 - dev-python/setuptools[${PYTHON_USEDEP}]
58 - !<=dev-python/jaraco-utils-10.0.2
59 - >=dev-python/setuptools_scm-1.9[${PYTHON_USEDEP}]
60 - doc? (
61 - dev-python/sphinx[${PYTHON_USEDEP}]
62 - dev-python/rst-linker[${PYTHON_USEDEP}]
63 - )
64 - test? (
65 - >=dev-python/pytest-2.8[${PYTHON_USEDEP}]
66 - dev-python/pytest-runner[${PYTHON_USEDEP}]
67 - )
68 -"
69 -
70 -S="${WORKDIR}/${MY_PN}-${PV}"
71 -
72 -python_compile_all() {
73 - use doc && esetup.py build_sphinx
74 -}
75 -
76 -python_test() {
77 - PYTHONPATH=. py.test || die "tests failed with ${EPYTHON}"
78 -}
79 -
80 -python_install_all() {
81 - use doc && local HTML_DOCS=( "${BUILD_DIR}"/sphinx/html/. )
82 - distutils-r1_python_install_all
83 -}