Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-backup/luckybackup/
Date: Thu, 25 Jan 2018 12:22:44
Message-Id: 1516882949.ff424d538be67525fedff25a8ca78f4a369016c9.kensington@gentoo
1 commit: ff424d538be67525fedff25a8ca78f4a369016c9
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 25 12:22:14 2018 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 25 12:22:29 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff424d53
7
8 app-backup/luckybackup: remove 0.4.8
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 app-backup/luckybackup/Manifest | 1 -
13 app-backup/luckybackup/luckybackup-0.4.8.ebuild | 52 -------------------------
14 2 files changed, 53 deletions(-)
15
16 diff --git a/app-backup/luckybackup/Manifest b/app-backup/luckybackup/Manifest
17 index 40389fe3dce..a34f9450f5f 100644
18 --- a/app-backup/luckybackup/Manifest
19 +++ b/app-backup/luckybackup/Manifest
20 @@ -1,2 +1 @@
21 -DIST luckybackup-0.4.8.tar.gz 5710203 BLAKE2B a0efe350aecaae759cb8c7d2f51eeaa71caa7b267064ccb0a49f44465df53b6b2a41ebbd6794a5bdd2b44b8d1a402648da0ff243880237c6e3d64d505b5d5bd9 SHA512 48e73f8b5897a09f64f3755dc094ef50031c607ecfca25c238b45ca5bef7f2645081b7c665a9b7c3c3da2f214f91b229a559d723df8ddb6446aa23e68b266076
22 DIST luckybackup-0.4.9.tar.gz 5954338 BLAKE2B 632738f8c422ba7d56536fae866ce31d224910b41495e4df3be28a8013ba776e30b4d8e70ceb26c92d28aaf70c96402f27687c55d8f5d7aa5d405bab506a66be SHA512 86d6f1bd84f3bfd89734f0f2066cb17bbf9b4ede96167398de03a460c14d24bf4b50a91bb380655ace9a23497271e102b940ea99a7595cf17f596660dae7f7dd
23
24 diff --git a/app-backup/luckybackup/luckybackup-0.4.8.ebuild b/app-backup/luckybackup/luckybackup-0.4.8.ebuild
25 deleted file mode 100644
26 index e8d3c5b6247..00000000000
27 --- a/app-backup/luckybackup/luckybackup-0.4.8.ebuild
28 +++ /dev/null
29 @@ -1,52 +0,0 @@
30 -# Copyright 1999-2014 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=5
34 -
35 -PLOCALES="bs ca cs de el en es fr it nl no pl pt_BR ro ru sk sl sv tr zh_TW"
36 -inherit l10n qt4-r2
37 -
38 -DESCRIPTION="Powerful and flexible backup (and syncing) tool, using RSync and Qt4"
39 -HOMEPAGE="http://luckybackup.sourceforge.net/"
40 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
41 -
42 -LICENSE="GPL-3"
43 -SLOT="0"
44 -KEYWORDS="amd64 x86"
45 -IUSE="debug"
46 -
47 -DEPEND="dev-qt/qtcore:4
48 - dev-qt/qtgui:4"
49 -RDEPEND="${DEPEND}
50 - net-misc/rsync"
51 -
52 -DOCS=( readme/{AUTHORS,README,TODO,TRANSLATIONS,changelog} )
53 -
54 -rm_loc() {
55 - sed -i -e "s|translations/${PN}_${1}.ts||" "${PN}.pro" || die 'sed on translations failed'
56 - rm "translations/${PN}_${1}."{ts,qm} || die "removing ${1} locale failed"
57 -}
58 -
59 -src_prepare() {
60 - sed -i \
61 - -e "s:/usr/share/doc/${PN}:/usr/share/doc/${PF}:g" \
62 - -e "s:/usr/share/doc/packages/${PN}:/usr/share/doc/${PF}:g" \
63 - luckybackup.pro src/global.h || die "sed failed"
64 -
65 - # The su-to-root command is an ubuntu-specific script so it will
66 - # not work with Gentoo. No reason to have it anyway.
67 - sed -i -e "/^Exec/s:=.*:=/usr/bin/${PN}:" menu/${PN}-gnome-su.desktop \
68 - || die "failed to remove su-to-root"
69 -
70 - # causes empty directory to be installed
71 - sed -i -e '/^INSTALLS/s/debianmenu //' luckybackup.pro \
72 - || die "sed installs failed"
73 -
74 - # remove text version - cannot remote HTML version
75 - # as it's used within the application
76 - rm license/gpl.txt || die "rm failed"
77 -
78 - l10n_find_plocales_changes "translations" "${PN}_" ".ts"
79 - l10n_for_each_disabled_locale_do rm_loc
80 - qt4-r2_src_prepare
81 -}