Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/icalendar: icalendar-3.8.2.ebuild ChangeLog icalendar-3.8.1.ebuild
Date: Sun, 27 Jul 2014 02:05:18
Message-Id: 20140727020515.1AB4C2004F@flycatcher.gentoo.org
1 idella4 14/07/27 02:05:15
2
3 Modified: ChangeLog
4 Added: icalendar-3.8.2.ebuild
5 Removed: icalendar-3.8.1.ebuild
6 Log:
7 bump, rm prior -3.8.1
8
9 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
10
11 Revision Changes Path
12 1.41 dev-python/icalendar/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/icalendar/ChangeLog?rev=1.41&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/icalendar/ChangeLog?rev=1.41&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/icalendar/ChangeLog?r1=1.40&r2=1.41
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-python/icalendar/ChangeLog,v
21 retrieving revision 1.40
22 retrieving revision 1.41
23 diff -u -r1.40 -r1.41
24 --- ChangeLog 22 Jul 2014 04:01:29 -0000 1.40
25 +++ ChangeLog 27 Jul 2014 02:05:14 -0000 1.41
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-python/icalendar
28 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-python/icalendar/ChangeLog,v 1.40 2014/07/22 04:01:29 idella4 Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/icalendar/ChangeLog,v 1.41 2014/07/27 02:05:14 idella4 Exp $
31 +
32 +*icalendar-3.8.2 (27 Jul 2014)
33 +
34 + 27 Jul 2014; Ian Delaney <idella4@g.o> +icalendar-3.8.2.ebuild,
35 + -icalendar-3.8.1.ebuild:
36 + bump, rm prior -3.8.1
37
38 *icalendar-3.8.1 (22 Jul 2014)
39
40
41
42
43 1.1 dev-python/icalendar/icalendar-3.8.2.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/icalendar/icalendar-3.8.2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/icalendar/icalendar-3.8.2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: icalendar-3.8.2.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-python/icalendar/icalendar-3.8.2.ebuild,v 1.1 2014/07/27 02:05:14 idella4 Exp $
53
54 EAPI="5"
55
56 PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
57
58 inherit distutils-r1
59
60 MY_PN="collective-${PN}"
61
62 DESCRIPTION="Package used for parsing and generating iCalendar files (RFC 2445)."
63 HOMEPAGE="http://github.com/collective/icalendar"
64 SRC_URI="mirror://pypi/i/${PN}/${P}.tar.gz"
65
66 LICENSE="BSD"
67 SLOT="0"
68 KEYWORDS="~amd64 ~x86 ~x86-fbsd"
69 IUSE="doc test"
70 DOCS="README.rst"
71
72 RDEPEND="dev-python/pytz[${PYTHON_USEDEP}]
73 dev-python/setuptools[${PYTHON_USEDEP}]"
74 DEPEND="${RDEPEND}
75 doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
76 test? ( dev-python/python-dateutil:0[${PYTHON_USEDEP}]
77 dev-python/pytest[${PYTHON_USEDEP}]
78 dev-python/coverage[${PYTHON_USEDEP}] )"
79
80 python_compile_all() {
81 if use doc; then
82 pushd docs > /dev/null
83 emake text
84 popd > /dev/null
85 DOCS=( ${DOCS} docs/_build/text/*.txt )
86 fi
87 }
88
89 python_test() {
90 # From tox.ini
91 coverage run --source=src/icalendar --omit=*/tests/* --module pytest src/icalendar \
92 || die "test failed under ${EPYTHON}"
93 }