diff options
author | Patrick Lauer <patrick@gentoo.org> | 2013-01-21 09:28:32 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2013-01-21 09:28:32 +0000 |
commit | eae6d57baa82c744634cbd74d60a77bb04078321 (patch) | |
tree | a0bb960344407522668c0c180f3b5bff31255e34 /dev-python/icalendar | |
parent | Version bump (diff) | |
download | gentoo-2-eae6d57baa82c744634cbd74d60a77bb04078321.tar.gz gentoo-2-eae6d57baa82c744634cbd74d60a77bb04078321.tar.bz2 gentoo-2-eae6d57baa82c744634cbd74d60a77bb04078321.zip |
Bump
(Portage version: 2.2.0_alpha158/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'dev-python/icalendar')
-rw-r--r-- | dev-python/icalendar/ChangeLog | 9 | ||||
-rw-r--r-- | dev-python/icalendar/icalendar-3.2.ebuild | 38 |
2 files changed, 45 insertions, 2 deletions
diff --git a/dev-python/icalendar/ChangeLog b/dev-python/icalendar/ChangeLog index f4d17060d689..2a1279add9ca 100644 --- a/dev-python/icalendar/ChangeLog +++ b/dev-python/icalendar/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/icalendar -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/icalendar/ChangeLog,v 1.20 2012/11/09 13:03:46 nixphoeni Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/icalendar/ChangeLog,v 1.21 2013/01/21 09:28:32 patrick Exp $ + +*icalendar-3.2 (21 Jan 2013) + + 21 Jan 2013; Patrick Lauer <patrick@gentoo.org> +icalendar-3.2.ebuild: + Bump 09 Nov 2012; Joe Sapp <nixphoeni@gentoo.org> -icalendar-2.1_p20100409.ebuild: Remove old version diff --git a/dev-python/icalendar/icalendar-3.2.ebuild b/dev-python/icalendar/icalendar-3.2.ebuild new file mode 100644 index 000000000000..abd333946131 --- /dev/null +++ b/dev-python/icalendar/icalendar-3.2.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/icalendar/icalendar-3.2.ebuild,v 1.1 2013/01/21 09:28:32 patrick Exp $ + +EAPI="3" +SUPPORT_PYTHON_ABIS="1" +PYTHON_DEPEND="2" + +inherit distutils + +DESCRIPTION="Package used for parsing and generating iCalendar files (RFC 2445)." +HOMEPAGE="http://github.com/collective/icalendar" +#SRC_URI="http://github.com/collective/${PN}/tarball/${PV} -> ${P}.tar.gz" +SRC_URI="mirror://pypi/i/${PN}/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~x86-fbsd" +IUSE="doc" +RESTRICT="test" + +RDEPEND="" +DEPEND="dev-python/setuptools + doc? ( dev-python/sphinx )" + +RESTRICT_PYTHON_ABIS="3.*" + +DOCS="" + +src_compile() { + distutils_src_compile + + if use doc; then + cd docs + emake text || die "building documentation" + DOCS="${DOCS} docs/_build/text/*.txt" + fi +} |