app-backup/backintime: Remove old.
authorMichael Weber <xmw@gentoo.org>
Mon, 18 Dec 2017 16:24:18 +0000 (17:24 +0100)
committerMichael Weber <xmw@gentoo.org>
Mon, 18 Dec 2017 16:43:39 +0000 (17:43 +0100)
Package-Manager: Portage-2.3.19, Repoman-2.3.6

app-backup/backintime/Manifest
app-backup/backintime/backintime-1.1.8-r1.ebuild [deleted file]

index 9631ee08e1c7403256c1cc859e81edadfa70dc0e..87f86166eae2ec62b0f768969d1673ffdab1ef3c 100644 (file)
@@ -1,2 +1 @@
 DIST backintime-1.1.12.tar.gz 656192 BLAKE2B 724a3836a816fa921b6f150bc4214f01c200766d2be3e9a28bf3a818b1e43c73d73ca43bb52bacc9950d22be3faacfcee8f88a20f00362ea18cda236f3b2bd38 SHA512 e1dc3e3d2bac8b0f390898029978e806128ffd6005471a7e8a697c44f9e271f9902b496b33b037133f9a509f4ca3f8b8f10adf681b670ec9a1a751dfc786cb62
-DIST backintime-1.1.8.tar.gz 617754 BLAKE2B ad85aee9750a3a204961ef33e25e80dc54f130b2cf34492092edeed68387252a61d30a1b9e209b9c76521fe1f6b2a4b77e71c135201d13813d6b6865e2dd5f45 SHA512 550e270dcf341ec5ad952f4decd836007d19ff9bf60cada834dfb488dbf29954b6fd3ed80a4f8fb4406a0166895a7f7c922e5622d06c43086dd54073e5aabd99
diff --git a/app-backup/backintime/backintime-1.1.8-r1.ebuild b/app-backup/backintime/backintime-1.1.8-r1.ebuild
deleted file mode 100644 (file)
index 22be002..0000000
+++ /dev/null
@@ -1,77 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python3_4 )
-
-inherit eutils python-single-r1
-
-DESCRIPTION="Backup system inspired by TimeVault and FlyBack, with a GUI for GNOME and KDE4"
-HOMEPAGE="http://backintime.le-web.org/"
-SRC_URI="http://${PN}.le-web.org/download/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="qt4"
-
-DEPEND="${PYTHON_DEPS}
-       dev-python/dbus-python[${PYTHON_USEDEP}]
-       dev-python/keyring[${PYTHON_USEDEP}]
-       net-misc/openssh
-       net-misc/rsync[xattr,acl]"
-RDEPEND="${DEPEND}
-       qt4? ( dev-python/PyQt4 )"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-src_prepare() {
-       #fix doc install location
-       sed -e "s:/doc/${PN}-common:/doc/${PF}:g" \
-               -i common/configure || die
-       sed -e "s:/doc/${PN}-qt4:/doc/${PF}:g" \
-               -i qt4/configure || die
-       sed -e "/addInstallFile \"..\/VERSION/d" \
-               -e "/addInstallFile \"..\/LICENSE/d" \
-               -e "/addInstallFile \"..\/debian\/copyright/d" \
-               -i {qt4,common}/configure || die
-
-       if [ -n ${LINGUAS+x} ] ; then
-               cd common/po || die
-               for po in *.po ; do
-                       if ! has ${po/.po} ${LINGUAS} ; then
-                               rm ${po} || die
-                       fi
-               done
-       fi
-}
-
-src_configure() {
-       cd "${S}"/common || die
-       ./configure --python3 --no-fuse-group || die
-       if use qt4 ; then
-               cd "${S}"/qt4 || die
-               ./configure --python3 || die
-       fi
-}
-
-src_compile() {
-       cd "${S}"/common || die
-       emake
-       if use qt4 ; then
-               cd "${S}"/qt4 || die
-               emake
-       fi
-}
-
-src_install() {
-       cd "${S}"/common || die
-       emake DESTDIR="${D}" install
-       if use qt4 ; then
-               cd "${S}"/qt4 || die
-               emake DESTDIR="${D}" install
-       fi
-
-       python_optimize "${D}"
-}