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