diff options
author | Ben de Groot <yngwin@gentoo.org> | 2012-10-02 15:25:31 +0000 |
---|---|---|
committer | Ben de Groot <yngwin@gentoo.org> | 2012-10-02 15:25:31 +0000 |
commit | feb78803ba3b14244b9edae22a867f1de46570d8 (patch) | |
tree | 441e3226ee94ea6e13b9a9726622149e612db7d0 /www-apps/nikola | |
parent | Stable for HPPA (bug #427544). (diff) | |
download | gentoo-2-feb78803ba3b14244b9edae22a867f1de46570d8.tar.gz gentoo-2-feb78803ba3b14244b9edae22a867f1de46570d8.tar.bz2 gentoo-2-feb78803ba3b14244b9edae22a867f1de46570d8.zip |
Version bump
(Portage version: 2.2.0_alpha134/cvs/Linux x86_64)
Diffstat (limited to 'www-apps/nikola')
-rw-r--r-- | www-apps/nikola/ChangeLog | 7 | ||||
-rw-r--r-- | www-apps/nikola/nikola-4.0.3.ebuild | 35 |
2 files changed, 41 insertions, 1 deletions
diff --git a/www-apps/nikola/ChangeLog b/www-apps/nikola/ChangeLog index da036e5c19f6..adb09ae00d0d 100644 --- a/www-apps/nikola/ChangeLog +++ b/www-apps/nikola/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for www-apps/nikola # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-apps/nikola/ChangeLog,v 1.5 2012/08/26 17:20:21 yngwin Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-apps/nikola/ChangeLog,v 1.6 2012/10/02 15:25:31 yngwin Exp $ + +*nikola-4.0.3 (02 Oct 2012) + + 02 Oct 2012; Ben de Groot <yngwin@gentoo.org> +nikola-4.0.3.ebuild: + Version bump 26 Aug 2012; Ben de Groot <yngwin@gentoo.org> -nikola-3.ebuild, -nikola-4.ebuild: diff --git a/www-apps/nikola/nikola-4.0.3.ebuild b/www-apps/nikola/nikola-4.0.3.ebuild new file mode 100644 index 000000000000..1806903fd3b8 --- /dev/null +++ b/www-apps/nikola/nikola-4.0.3.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-apps/nikola/nikola-4.0.3.ebuild,v 1.1 2012/10/02 15:25:31 yngwin Exp $ + +EAPI=4 +PYTHON_COMPAT="python2_6 python2_7" + +inherit python-distutils-ng + +DESCRIPTION="A static website and blog generator" +HOMEPAGE="http://nikola.ralsina.com.ar/" +SRC_URI="http://nikola-generator.googlecode.com/files/${P}.zip" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +DEPEND="" +RDEPEND="dev-python/docutils + dev-python/doit + dev-python/imaging + dev-python/lxml + >=dev-python/mako-0.6 + dev-python/pygments + dev-python/unidecode" + +src_install() { + python-distutils-ng_src_install + + # hackish way to remove docs that ended up in the wrong place + rm "${D}"/usr/*.txt + + dodoc README.md docs/* +} |