public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Aaron W. Swenson" <titanofold@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-dateutil/
Date: Thu, 17 Oct 2019 22:30:47 +0000 (UTC)	[thread overview]
Message-ID: <1571350509.7033cf03516f31603586777683c5d6a65448cd3d.titanofold@gentoo> (raw)

commit:     7033cf03516f31603586777683c5d6a65448cd3d
Author:     David Heidelberg <david <AT> ixit <DOT> cz>
AuthorDate: Wed Aug 14 15:29:09 2019 +0000
Commit:     Aaron W. Swenson <titanofold <AT> gentoo <DOT> org>
CommitDate: Thu Oct 17 22:15:09 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7033cf03

dev-python/python-dateutil: bump 2.8.0

also bump EAPI to 7

Signed-off-by: David Heidelberg <david <AT> ixit.cz>
Closes: https://github.com/gentoo/gentoo/pull/12705
Signed-off-by: Aaron W. Swenson <titanofold <AT> gentoo.org>

 dev-python/python-dateutil/Manifest                |  1 +
 .../python-dateutil/python-dateutil-2.8.0.ebuild   | 50 ++++++++++++++++++++++
 2 files changed, 51 insertions(+)

diff --git a/dev-python/python-dateutil/Manifest b/dev-python/python-dateutil/Manifest
index d4b7691de6b..46398b25f55 100644
--- a/dev-python/python-dateutil/Manifest
+++ b/dev-python/python-dateutil/Manifest
@@ -4,3 +4,4 @@ DIST python-dateutil-2.7.2.tar.gz 298000 BLAKE2B 4091108b125eb080809c74cdb53daa2
 DIST python-dateutil-2.7.3.tar.gz 302871 BLAKE2B 8b6cff6f977d52b64665f33d10513a638addada91a00192eb1f522aa9b239d5fb051bff3cfb837871ea61d7ab69994cfe5b42bb3b00851b5f15368c26db06fd7 SHA512 6b9973fa7db69d931bc6e772201c67bb7bbfa693ba35484d34960bd7e6227f2a2343df814a9fdbbff253e750299c48e7cdb2a609bf4522595df8a7fc595784fd
 DIST python-dateutil-2.7.4.tar.gz 302229 BLAKE2B e2a43d8587f895a9a72ca5ab5c18a5c471497c8f8e89459450219e9f5ecb55223f36f219d77df8da4c04d55fb5feb3a17f9a5c2318c077dac4307da7c0bd9645 SHA512 3b02b397e3138dc755f34a2f7a50464f96a73b7be1f335ce7da3fa99e6d59f34a0643dfb1c933d4ef4fbaab88364fab6e760e4b1e7040b8cbbfebdd75e7e9a4f
 DIST python-dateutil-2.7.5.tar.gz 316043 BLAKE2B 29511f7e484c369084d696f45a07e01e096e7b1114f982026f8df71d569eea30d657956d3e53725ad57564c1e445414c2ed543e3e6d2dd89902d7838cbb9e6fe SHA512 762752191d584a3995b55bbcfadc829261a263e0e6515a52db2fc32157bf0b3f96f787107c49bbd77cab9ce7e3f692ab3e8f392260fc18e6456b74eb190b44d3
+DIST python-dateutil-2.8.0.tar.gz 327134 BLAKE2B 6525eee57aeaef3c588413210df7c1ad3627a380c6e44af78e9acc9abea523b29e8d9afec495f8d1e585d25d32ab82e6e28bf93dca148893d2e6a533e1f4ce47 SHA512 ec7da86203572582f883a4686acf8a732a2de4f396d809057eb51b2c60dbca5623a7fa90c2c0618c281a2282c60841739bd837731a51cc876f4ff369297f2f81

diff --git a/dev-python/python-dateutil/python-dateutil-2.8.0.ebuild b/dev-python/python-dateutil/python-dateutil-2.8.0.ebuild
new file mode 100644
index 00000000000..172252195d8
--- /dev/null
+++ b/dev-python/python-dateutil/python-dateutil-2.8.0.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_{5,6,7} pypy pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="Extensions to the standard Python datetime module"
+HOMEPAGE="
+	https://dateutil.readthedocs.org/
+	https://pypi.org/project/python-dateutil
+	https://github.com/dateutil/dateutil/
+"
+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-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+IUSE="test"
+
+RDEPEND="
+	>=dev-python/six-1.5[${PYTHON_USEDEP}]
+	sys-libs/timezone-data
+"
+DEPEND="${RDEPEND}
+	dev-python/setuptools_scm[${PYTHON_USEDEP}]
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	test? (
+		dev-python/pytest[${PYTHON_USEDEP}]
+		dev-python/freezegun[${PYTHON_USEDEP}]
+		dev-python/hypothesis[${PYTHON_USEDEP}]
+	)
+"
+
+python_prepare_all() {
+	local PATCHES=(
+		"${FILESDIR}"/0001-zoneinfo-Get-timezone-data-from-system-tzdata.patch
+	)
+
+	# don't install zoneinfo tarball
+	sed -i '/package_data=/d' setup.py || die
+
+	distutils-r1_python_prepare_all
+}
+
+python_test() {
+	py.test -v || die "Tests failed under ${EPYTHON}"
+}


             reply	other threads:[~2019-10-17 22:30 UTC|newest]

Thread overview: 58+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-10-17 22:30 Aaron W. Swenson [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-05-09 17:32 [gentoo-commits] repo/gentoo:master commit in: dev-python/python-dateutil/ Michał Górny
2024-03-16  9:31 Arthur Zamarin
2024-03-02  6:43 Michał Górny
2023-05-25 14:38 Michał Górny
2022-06-13  8:23 Michał Górny
2022-05-11 14:05 Michał Górny
2022-05-11 14:05 Michał Górny
2021-08-16  5:13 Agostino Sarubbo
2021-08-15  7:42 Michał Górny
2021-07-03  8:16 Michał Górny
2021-05-07 22:22 Michał Górny
2020-09-20 10:24 Michał Górny
2020-05-26  9:26 Michał Górny
2020-02-12 16:14 Agostino Sarubbo
2020-01-27 11:31 Mikle Kolyada
2020-01-26 11:32 Sergei Trofimovich
2020-01-23 12:18 Agostino Sarubbo
2020-01-23 10:59 Agostino Sarubbo
2020-01-23 10:56 Agostino Sarubbo
2020-01-23 10:52 Agostino Sarubbo
2020-01-23 10:40 Agostino Sarubbo
2020-01-23 10:36 Agostino Sarubbo
2020-01-22 19:44 Michał Górny
2020-01-22 19:44 Michał Górny
2019-11-26  0:10 Patrick McLean
2019-11-19 15:40 Agostino Sarubbo
2019-11-18 12:03 Agostino Sarubbo
2018-10-27 19:20 Sebastian Pipping
2018-10-25 21:16 Sebastian Pipping
2018-09-16 20:25 Matt Turner
2018-09-16 20:25 Matt Turner
2018-08-20  5:01 Mikle Kolyada
2018-08-18 10:29 Michał Górny
2018-07-31  0:28 Mikle Kolyada
2018-07-20 15:53 Tobias Klausmann
2018-07-07  9:02 Sergei Trofimovich
2018-07-04 18:44 Sergei Trofimovich
2018-07-02  0:49 Thomas Deutschmann
2018-07-01 15:19 Pacho Ramos
2018-07-01  8:51 Sergei Trofimovich
2018-06-30 18:45 Mart Raudsepp
2018-05-07  0:12 Mart Raudsepp
2018-03-27 20:38 Tim Harder
2018-03-24 22:37 Tim Harder
2018-02-21 17:20 Michał Górny
2017-08-27  8:07 Tim Harder
2017-06-15 18:19 Markus Meier
2017-05-22 16:48 Tobias Klausmann
2017-05-22 11:40 Agostino Sarubbo
2017-05-19 21:44 Michael Weber
2017-05-06 11:13 Jeroen Roovers
2017-05-03  9:26 Michał Górny
2017-02-13  8:04 Zac Medico
2016-11-30 13:54 Lars Wendler
2016-05-11 20:33 Mike Gilbert
2016-03-15  3:25 Tim Harder
2015-10-19 16:29 Justin Lecher

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1571350509.7033cf03516f31603586777683c5d6a65448cd3d.titanofold@gentoo \
    --to=titanofold@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox