diff options
author | Alex Brandt <alunduil@gentoo.org> | 2014-09-21 23:42:47 +0000 |
---|---|---|
committer | Alex Brandt <alunduil@gentoo.org> | 2014-09-21 23:42:47 +0000 |
commit | 4a5c20a6a1b01fcf690f5390648868958a2e3a9c (patch) | |
tree | 3b1aa571f6f9732eb54ca2f935531e2c3448cfc6 /app-backup | |
parent | new ebuild for holland-backup-mysql-meta (diff) | |
download | gentoo-2-4a5c20a6a1b01fcf690f5390648868958a2e3a9c.tar.gz gentoo-2-4a5c20a6a1b01fcf690f5390648868958a2e3a9c.tar.bz2 gentoo-2-4a5c20a6a1b01fcf690f5390648868958a2e3a9c.zip |
new ebuild for holland-fixes bug #339614
(Portage version: 2.2.13/cvs/Linux x86_64, signed Manifest commit with key 92FEA28B)
Diffstat (limited to 'app-backup')
-rw-r--r-- | app-backup/holland/ChangeLog | 10 | ||||
-rw-r--r-- | app-backup/holland/holland-1.0.10.ebuild | 56 | ||||
-rw-r--r-- | app-backup/holland/metadata.xml | 10 |
3 files changed, 76 insertions, 0 deletions
diff --git a/app-backup/holland/ChangeLog b/app-backup/holland/ChangeLog new file mode 100644 index 000000000000..30da3b80c02d --- /dev/null +++ b/app-backup/holland/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for app-backup/holland +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-backup/holland/ChangeLog,v 1.1 2014/09/21 23:42:47 alunduil Exp $ + +*holland-1.0.10 (21 Sep 2014) + + 21 Sep 2014; Alex Brandt <alunduil@gentoo.org> +holland-1.0.10.ebuild, + +metadata.xml: + new ebuild for holland written by me + diff --git a/app-backup/holland/holland-1.0.10.ebuild b/app-backup/holland/holland-1.0.10.ebuild new file mode 100644 index 000000000000..d34a8cab450d --- /dev/null +++ b/app-backup/holland/holland-1.0.10.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-backup/holland/holland-1.0.10.ebuild,v 1.1 2014/09/21 23:42:47 alunduil Exp $ + +EAPI=5 +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 + +DESCRIPTION="Holland Core Plugins" +HOMEPAGE="http://www.hollandbackup.org/" +SRC_URI="http://hollandbackup.org/releases/stable/${PV%.*}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc examples +mysql postgres sqlite" + +DEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) +" +RDEPEND=" + mysql? ( ~app-backup/holland-backup-mysql-meta-${PV}[${PYTHON_USEDEP}] ) + postgres? ( ~app-backup/holland-backup-pgdump-${PV}[${PYTHON_USEDEP}] ) + sqlite? ( ~app-backup/holland-backup-sqlite-${PV}[${PYTHON_USEDEP}] ) + examples? ( + ~app-backup/holland-backup-example-${PV}[${PYTHON_USEDEP}] + ~app-backup/holland-backup-random-${PV}[${PYTHON_USEDEP}] + ) +" + +python_compile_all() { + use doc && emake -C docs html +} + +python_install_all() { + use doc && local DOCS=( README config/README config/providers/README docs/man/README docs/man/holland.rst ) + use doc && local HTML_DOCS=( docs/build/html/. ) + + distutils-r1_python_install_all + + keepdir /var/log/holland + + keepdir /etc/holland + keepdir /etc/holland/backupsets + keepdir /etc/holland/providers + + insinto /etc/holland + doins config/holland.conf + + insinto /etc/holland/backupsets + doins config/backupsets/default.conf + + doman docs/man/holland.1 +} diff --git a/app-backup/holland/metadata.xml b/app-backup/holland/metadata.xml new file mode 100644 index 000000000000..02be8c5eb78f --- /dev/null +++ b/app-backup/holland/metadata.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer> + <email>alunduil@gentoo.org</email> + <name>Alex Brandt</name> + </maintainer> + <longdescription lang="en"> + </longdescription> +</pkgmetadata> |