From 656353dae534ae811835011c1a1aa9e1e78049f6 Mon Sep 17 00:00:00 2001 From: Ben de Groot Date: Wed, 27 Jun 2012 21:50:16 +0800 Subject: Initial commit. Set up repo, add live nikola ebuild --- metadata/layout.conf | 11 +++++++++++ profiles/repo_name | 1 + www-apps/nikola/metadata.xml | 9 +++++++++ www-apps/nikola/nikola-9999.ebuild | 34 ++++++++++++++++++++++++++++++++++ 4 files changed, 55 insertions(+) create mode 100644 metadata/layout.conf create mode 100644 profiles/repo_name create mode 100644 www-apps/nikola/metadata.xml create mode 100644 www-apps/nikola/nikola-9999.ebuild diff --git a/metadata/layout.conf b/metadata/layout.conf new file mode 100644 index 0000000..f1a0bec --- /dev/null +++ b/metadata/layout.conf @@ -0,0 +1,11 @@ +masters = gentoo +# Use new hashes +manifest-hashes = SHA256 SHA512 WHIRLPOOL +# Do not update changelogs +update-changelog = false +# Use thin manifests +thin-manifests = true +# Dont sign thin manifests. There is no current policy for git commit signing +sign-manifests = false +# sign commits using git mechanisms +sign-commits = true diff --git a/profiles/repo_name b/profiles/repo_name new file mode 100644 index 0000000..3289828 --- /dev/null +++ b/profiles/repo_name @@ -0,0 +1 @@ +yngwin diff --git a/www-apps/nikola/metadata.xml b/www-apps/nikola/metadata.xml new file mode 100644 index 0000000..9e2b2f1 --- /dev/null +++ b/www-apps/nikola/metadata.xml @@ -0,0 +1,9 @@ + + + + python + + yngwin@gentoo.org + Ben de Groot + + diff --git a/www-apps/nikola/nikola-9999.ebuild b/www-apps/nikola/nikola-9999.ebuild new file mode 100644 index 0000000..892c6e9 --- /dev/null +++ b/www-apps/nikola/nikola-9999.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=4 +PYTHON_COMPAT="python2_6 python2_7" + +inherit git-2 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" +EGIT_REPO_URI="git://github.com/ralsina/nikola.git" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="" +IUSE="" + +DEPEND="" +RDEPEND="dev-python/docutils + dev-python/doit + dev-python/imaging + >=dev-python/mako-0.6 + dev-python/pygments" + +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/* +} -- cgit v1.2.3-65-gdbad