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