public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Patrick Lauer" <patrick@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/icalendar/
Date: Thu, 18 Feb 2016 19:47:07 +0000 (UTC)	[thread overview]
Message-ID: <1455824771.7e4402143acbe7cc40812acac1341a63df0786c3.patrick@gentoo> (raw)

commit:     7e4402143acbe7cc40812acac1341a63df0786c3
Author:     Patrick Lauer <patrick <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 18 19:25:03 2016 +0000
Commit:     Patrick Lauer <patrick <AT> gentoo <DOT> org>
CommitDate: Thu Feb 18 19:46:11 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e440214

dev-python/icalendar: Bump

Package-Manager: portage-2.2.27

 dev-python/icalendar/Manifest               |  1 +
 dev-python/icalendar/icalendar-3.9.2.ebuild | 51 +++++++++++++++++++++++++++++
 2 files changed, 52 insertions(+)

diff --git a/dev-python/icalendar/Manifest b/dev-python/icalendar/Manifest
index b07b5f0..b5b3184 100644
--- a/dev-python/icalendar/Manifest
+++ b/dev-python/icalendar/Manifest
@@ -1,2 +1,3 @@
 DIST icalendar-3.8.4.zip 91925 SHA256 7034e184ef3f9010f074410cea11b68fa93ef847f3fb185be41d6bd261c9cbb8 SHA512 5963112ed5d9aa16c85523c7687f5c23085171b84a3f974f5daa84d76e9af5f7171a6f1c342daddbe15531193c47191103fe0f53589aff41787d7ad58a12e0a0 WHIRLPOOL 7cb352564968a121831b82907386f328b25e718439f65bebf575f906fe00f7cfbf4b8bc578b3f201aaa1c7eaa22f9e70eca68278a81e5d802573a301ede75410
 DIST icalendar-3.9.0.tar.gz 62627 SHA256 93d0b94eab23d08f62962542309916a9681f16de3d5eca1c75497f30f1b07792 SHA512 a937882046666212d011cbd5963f43e3c2ebc677c55f1ac425dd77a08201a204498881986208d40e2e93b163f9f51b285cb3a1250f07d01f9b6a968c4e24065d WHIRLPOOL 3cc4fd1ef6170dbb99c1f55e45082374d08931265397df422ee3439ca532f7e2704dd6ed620635b65719f509c4a84682c2f54ef12751e3cd00c4235c116d1336
+DIST icalendar-3.9.2.tar.gz 66283 SHA256 0b2d2610e039404e22a0a72fe5a59614374e7bd15ed824ead6ef6f8d36b41e2f SHA512 da50bba72f7a114263672ebd45cfcca5f7c2eca48538901f595b26ef18bb21a6290da4392c62cc27d1202083fcab7f5bfe6c9a463df38087de0ef764999f7eb1 WHIRLPOOL e5162b46f97a3b86e4e2eb75f2fdba2a3418f3b8e32a239f16f607811fbadd376619e9805336eb272f41aca2c0e6f9d724d92d4740c7910536ad64ef673de7fa

diff --git a/dev-python/icalendar/icalendar-3.9.2.ebuild b/dev-python/icalendar/icalendar-3.9.2.ebuild
new file mode 100644
index 0000000..e664ba7
--- /dev/null
+++ b/dev-python/icalendar/icalendar-3.9.2.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
+
+inherit distutils-r1
+
+MY_PN="collective-${PN}"
+
+DESCRIPTION="Package used for parsing and generating iCalendar files (RFC 2445)"
+HOMEPAGE="https://github.com/collective/icalendar"
+SRC_URI="mirror://pypi/i/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~x86-fbsd"
+IUSE="doc test"
+DOCS="README.rst"
+
+RDEPEND="dev-python/pytz[${PYTHON_USEDEP}]
+		dev-python/setuptools[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+	doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+	test? (	dev-python/python-dateutil:0[${PYTHON_USEDEP}]
+		dev-python/pytest[${PYTHON_USEDEP}]
+		dev-python/coverage[${PYTHON_USEDEP}] )"
+
+python_prepare_all() {
+	# reset conf.py to not read version from an installed instance
+	sed -e "s:pkg_resources.get_distribution('icalendar').version:'3.9.0':" \
+		-i docs/conf.py || die
+	distutils-r1_python_prepare_all
+}
+
+python_compile_all() {
+	if use doc; then
+		pushd docs > /dev/null
+		emake text
+		popd > /dev/null
+		DOCS=( ${DOCS} docs/_build/text/*.txt )
+	fi
+}
+
+python_test() {
+	# From tox.ini
+	coverage run --source=src/icalendar --omit=*/tests/* --module \
+		pytest src/icalendar || die "test failed under ${EPYTHON}"
+}


             reply	other threads:[~2016-02-18 19:47 UTC|newest]

Thread overview: 74+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-02-18 19:47 Patrick Lauer [this message]
  -- strict thread matches above, loose matches on Subject: below --
2016-11-07  4:15 [gentoo-commits] repo/gentoo:master commit in: dev-python/icalendar/ Alice Ferrazzi
2017-01-18 11:28 Agostino Sarubbo
2017-01-18 11:57 Agostino Sarubbo
2017-03-08 18:37 Michał Górny
2018-06-01  6:07 Amy Liffey
2018-09-04 22:03 Patrice Clement
2018-12-09  8:50 Michał Górny
2019-11-26 20:34 Aaron Bauman
2019-12-24 19:54 Mikle Kolyada
2020-02-05 14:38 Michał Górny
2020-03-27 15:37 Michał Górny
2020-06-21  6:19 Michał Górny
2020-07-29 10:20 Michał Górny
2020-07-30 20:03 Sam James
2020-07-30 20:41 Michał Górny
2020-09-08 15:41 Michał Górny
2020-10-18 19:10 Thomas Deutschmann
2020-10-18 19:19 Sam James
2021-06-05 13:52 Michał Górny
2021-10-07 21:48 Michał Górny
2021-10-16 19:34 Michał Górny
2021-11-13  9:47 Jakov Smolić
2021-11-13  9:54 Michał Górny
2021-12-21  3:39 Yixun Lan
2022-07-11 20:00 Arthur Zamarin
2022-07-11 20:00 Arthur Zamarin
2022-08-15  7:40 Agostino Sarubbo
2022-08-15  8:08 Michał Górny
2022-10-18  6:36 Michał Górny
2022-10-23 18:37 Arthur Zamarin
2022-11-04 18:06 Arthur Zamarin
2022-11-19 16:40 Sam James
2022-11-19 16:52 Michał Górny
2022-11-25  5:14 Michał Górny
2022-12-25 17:33 Michał Górny
2022-12-30  7:08 Michał Górny
2023-04-14  3:59 Michał Górny
2023-05-15 20:24 Arthur Zamarin
2023-05-16  5:24 Michał Górny
2023-05-27  5:32 Michał Górny
2023-05-27  5:32 Michał Górny
2023-05-30  2:54 Michał Górny
2023-06-18 17:07 Michał Górny
2023-06-27  5:19 Jakov Smolić
2023-06-27 11:54 Michał Górny
2023-09-18 14:00 Michał Górny
2023-09-24 14:28 Michał Górny
2023-09-27  5:56 Michał Górny
2023-10-23 18:50 Sam James
2023-10-24  5:46 Michał Górny
2023-11-04  6:29 Michał Górny
2023-11-24 14:52 Michał Górny
2024-03-20  6:28 Michał Górny
2024-04-06 10:02 Arthur Zamarin
2024-04-06 12:37 Michał Górny
2024-06-10 17:01 Michał Górny
2024-06-21  1:58 Michał Górny
2024-07-05  1:54 Michał Górny
2024-07-06  6:26 Sam James
2024-07-06  6:35 Michał Górny
2024-10-13 17:42 Michał Górny
2024-10-25 12:04 Arthur Zamarin
2024-10-26 11:52 Michał Górny
2024-11-21 19:02 Sam James
2024-11-23  7:10 Michał Górny
2024-11-24  0:20 Sam James
2024-12-07 11:26 Arthur Zamarin
2024-12-07 11:52 Michał Górny
2025-01-19  3:27 Michał Górny
2025-02-08 12:11 Arthur Zamarin
2025-02-08 18:35 Michał Górny
2025-03-20  6:49 Michał Górny
2025-03-28 12:51 Michał Górny

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=1455824771.7e4402143acbe7cc40812acac1341a63df0786c3.patrick@gentoo \
    --to=patrick@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