diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2020-07-28 16:20:33 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2020-07-28 16:20:33 +0200 |
commit | 79998288e19b8d9d3888f56c0074b65f324eb4f9 (patch) | |
tree | fae1ff9d319d81f91f27f886e246b97c9528ea58 /app-backup | |
parent | app-backup/luckybackup: x86 stable (bug #732600) (diff) | |
download | gentoo-79998288e19b8d9d3888f56c0074b65f324eb4f9.tar.gz gentoo-79998288e19b8d9d3888f56c0074b65f324eb4f9.tar.bz2 gentoo-79998288e19b8d9d3888f56c0074b65f324eb4f9.zip |
app-backup/luckybackup: Drop 0.4.9
Package-Manager: Portage-3.0.0, Repoman-2.3.23
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'app-backup')
-rw-r--r-- | app-backup/luckybackup/Manifest | 1 | ||||
-rw-r--r-- | app-backup/luckybackup/luckybackup-0.4.9.ebuild | 59 |
2 files changed, 0 insertions, 60 deletions
diff --git a/app-backup/luckybackup/Manifest b/app-backup/luckybackup/Manifest index 65f1b17a9526..d9e7452f8389 100644 --- a/app-backup/luckybackup/Manifest +++ b/app-backup/luckybackup/Manifest @@ -1,2 +1 @@ -DIST luckybackup-0.4.9.tar.gz 5954338 BLAKE2B 632738f8c422ba7d56536fae866ce31d224910b41495e4df3be28a8013ba776e30b4d8e70ceb26c92d28aaf70c96402f27687c55d8f5d7aa5d405bab506a66be SHA512 86d6f1bd84f3bfd89734f0f2066cb17bbf9b4ede96167398de03a460c14d24bf4b50a91bb380655ace9a23497271e102b940ea99a7595cf17f596660dae7f7dd DIST luckybackup-0.5.0.tar.gz 5954426 BLAKE2B 7243db713b8e5a6f3929e6d011faff8bdef8b7580c328d336843c71e738fd92a0fd19b2bc3dd0a4695f0af6ec5b436b18833dc20c5ad3479036a1a0bca22be12 SHA512 41fe878a8008b291c2e6f5f8a77ae7dba9d2c547689e53a2dde15cbe733eefd7debf21b3570bd3414dace522ec7843f645639af2cca49b7c2f950eeac62b1f45 diff --git a/app-backup/luckybackup/luckybackup-0.4.9.ebuild b/app-backup/luckybackup/luckybackup-0.4.9.ebuild deleted file mode 100644 index eab1f1a17131..000000000000 --- a/app-backup/luckybackup/luckybackup-0.4.9.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit qmake-utils - -DESCRIPTION="Powerful and flexible backup (and syncing) tool, using RSync and Qt" -HOMEPAGE="http://luckybackup.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="GPL-3+" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -DEPEND=" - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-qt/qtwidgets:5 -" -RDEPEND="${DEPEND} - net-misc/rsync" - -DOCS=( readme/{AUTHORS,README,TODO,TRANSLATIONS,changelog} ) - -src_prepare() { - sed -i \ - -e "s:/usr/share/doc/${PN}:/usr/share/doc/${PF}:g" \ - -e "s:/usr/share/doc/packages/${PN}:/usr/share/doc/${PF}:g" \ - luckybackup.pro src/global.cpp || die "sed failed" - - # The su-to-root command is an ubuntu-specific script so it will - # not work with Gentoo. No reason to have it anyway. - sed -i -e "/^Exec/s:=.*:=/usr/bin/${PN}:" menu/${PN}-gnome-su.desktop \ - || die "failed to remove su-to-root" - - # causes empty directory to be installed - sed -i -e '/^INSTALLS/s/debianmenu //' luckybackup.pro \ - || die "sed installs failed" - - # bogus dependency - bug #645732 - sed -i -e '/QT += network/s/^/#/' luckybackup.pro || die - - # remove text version - cannot remote HTML version - # as it's used within the application - rm license/gpl.txt || die "rm failed" - - default -} - -src_configure() { - eqmake5 ${PN}.pro -} - -src_install() { - emake INSTALL_ROOT="${D}" install - einstalldocs -} |