From b0ea234ed4ef7af82517bcae541ff4906f9924f2 Mon Sep 17 00:00:00 2001 From: Henry Gebhardt Date: Sun, 9 Mar 2014 19:56:00 -0400 Subject: app-admin/bup: remove old version, do not depend on app-doc/pandoc pandoc is a haskell application. It has been a pain to keep haskell on my laptop, so let's get rid of it. The man pages are now installed always. --- app-backup/bup/Manifest | 2 +- app-backup/bup/bup-0.24b.ebuild | 49 --------------------------------- app-backup/bup/bup-0.25-r1.ebuild | 58 +++++++++++++++++++++++++++++++++++++++ app-backup/bup/bup-0.25.ebuild | 51 ---------------------------------- 4 files changed, 59 insertions(+), 101 deletions(-) delete mode 100644 app-backup/bup/bup-0.24b.ebuild create mode 100644 app-backup/bup/bup-0.25-r1.ebuild delete mode 100644 app-backup/bup/bup-0.25.ebuild diff --git a/app-backup/bup/Manifest b/app-backup/bup/Manifest index 760a4b4..36d7fdf 100644 --- a/app-backup/bup/Manifest +++ b/app-backup/bup/Manifest @@ -1,2 +1,2 @@ -DIST bup-0.24b.tar.gz 330630 SHA256 10674d25ec3a6a63525e4c5e7ba36cf08cee5a2d1d6bfc9306d2a560dbade429 +DIST bup-0.25-man.tar.gz 26507 SHA256 9cdddf6031d823fff21b4635bf9708a0736b4a0e243b17e83671f2c1d4c772e3 SHA512 24dada8a30ab3dea3cb48fc8893b338c4acb6f14daa6c26d5817b7bd5b97bdd36540ce4ef76266d87e9803771bd6cb39ae7b6b4bea60217a91e311d8dc5a746c WHIRLPOOL a4bd316fb82352c078203cd4e0bf63507b25b6089fef8f71c5105cbcb6ad13e0881c6093e9942f9b0370f98ed7e74a002b9dd0ada7928897aa0a7d619450b245 DIST bup-0.25.tar.gz 399332 SHA256 bf67c6fd77c94346876b942ec9e4b8b58020b5a7ed59647c27568d19dae0538c SHA512 bffb939639e18a7b1a3eb930003e5890af4c0e6f4a74bdacaa62a1bbe3bf3789e0a267271f704d75f7b1618dddf219fe65c3e80032590f99f2875552ccbcfe97 WHIRLPOOL 2627ba280e4032ea61aa068cb3c72e2a2de0f78dfc30f86c8b8430670f21cd218816bd626bddd6932af91a29a4db985e638be52739cd56e49ab19b8990e966bc diff --git a/app-backup/bup/bup-0.24b.ebuild b/app-backup/bup/bup-0.24b.ebuild deleted file mode 100644 index 0107e7d..0000000 --- a/app-backup/bup/bup-0.24b.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI=4 -inherit eutils - -DESCRIPTION="It backs things up based on the git packfile format" -HOMEPAGE="http://github.com/apenwarr/bup" -SRC_URI="https://github.com/apenwarr/${PN}/tarball/${P/_/-} -> ${P}.tar.gz" - -LICENSE="LGPL-2" -SLOT="0" -KEYWORDS="~amd64" -IUSE="+doc" - -DEPEND="|| ( - dev-lang/python:2.4 - dev-lang/python:2.5 - dev-lang/python:2.6 - dev-lang/python:2.7 - ) - dev-vcs/git - app-arch/par2cmdline - dev-python/fuse-python - doc? ( app-text/pandoc )" -RDEPEND="${DEPEND}" - -src_unpack() { - unpack ${A} - mv -v * "${S}" || die -} - -src_compile() { - emake CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" -} - -src_install() { - emake install DESTDIR="${D}" - - dodoc "${D}/usr/share/doc/${PN}"/* - rm -r "${D}/usr/share/doc/${PN}/" || die - - dodoc README DESIGN -} - -src_test() { - emake test -} diff --git a/app-backup/bup/bup-0.25-r1.ebuild b/app-backup/bup/bup-0.25-r1.ebuild new file mode 100644 index 0000000..1cb2cdc --- /dev/null +++ b/app-backup/bup/bup-0.25-r1.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=4 +inherit eutils + +DOC_COMMIT="bc21345a527cc446084369861655126f6b0ecd8a" + +DESCRIPTION="It backs things up based on the git packfile format" +HOMEPAGE="http://github.com/bup/bup" +SRC_URI="http://github.com/bup/bup/archive/${PV/_/-}.tar.gz -> ${P}.tar.gz + http://github.com/bup/bup/archive/${DOC_COMMIT}.tar.gz -> ${P}-man.tar.gz" + +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +DEPEND="|| ( + dev-lang/python:2.4 + dev-lang/python:2.5 + dev-lang/python:2.6 + dev-lang/python:2.7 + ) + dev-vcs/git + app-arch/par2cmdline + dev-python/fuse-python + dev-python/pyxattr + dev-python/pylibacl" +RDEPEND="${DEPEND}" + +src_prepare() { + mv "../bup-${DOC_COMMIT}" bup-man || die +} + +src_configure() { + echo "Nothing to configure..." +} + +src_compile() { + emake CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" +} + +src_install() { + emake install DESTDIR="${D}" + + doman "${S}"/bup-man/* + + dodoc "${D}/usr/share/doc/${PN}"/* + rm -r "${D}/usr/share/doc/${PN}/" || die + + dodoc README README.md DESIGN +} + +src_test() { + emake test +} diff --git a/app-backup/bup/bup-0.25.ebuild b/app-backup/bup/bup-0.25.ebuild deleted file mode 100644 index aa4cb6a..0000000 --- a/app-backup/bup/bup-0.25.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI=4 -inherit eutils - -DESCRIPTION="It backs things up based on the git packfile format" -HOMEPAGE="http://github.com/bup/bup" -SRC_URI="http://github.com/bup/bup/archive/${PV/_/-}.tar.gz -> ${P}.tar.gz" - -LICENSE="LGPL-2" -SLOT="0" -KEYWORDS="~amd64" -IUSE="+doc" - -DEPEND="|| ( - dev-lang/python:2.4 - dev-lang/python:2.5 - dev-lang/python:2.6 - dev-lang/python:2.7 - ) - dev-vcs/git - app-arch/par2cmdline - dev-python/fuse-python - dev-python/pyxattr - dev-python/pylibacl - doc? ( app-text/pandoc )" -RDEPEND="${DEPEND}" - - -src_configure() { - echo "Nothing to configure..." -} - -src_compile() { - emake CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" -} - -src_install() { - emake install DESTDIR="${D}" - - dodoc "${D}/usr/share/doc/${PN}"/* - rm -r "${D}/usr/share/doc/${PN}/" || die - - dodoc README README.md DESIGN -} - -src_test() { - emake test -} -- cgit v1.2.3-65-gdbad