Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/xarchiver/
Date: Sat, 31 Dec 2022 12:37:14
Message-Id: 1672489822.30cdbe03372604aa603e44d9855e86f46aad4126.mgorny@gentoo
1 commit: 30cdbe03372604aa603e44d9855e86f46aad4126
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Dec 31 12:30:22 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Dec 31 12:30:22 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30cdbe03
7
8 app-arch/xarchiver: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 app-arch/xarchiver/Manifest | 1 -
13 app-arch/xarchiver/xarchiver-0.5.4.19.ebuild | 61 ----------------------------
14 2 files changed, 62 deletions(-)
15
16 diff --git a/app-arch/xarchiver/Manifest b/app-arch/xarchiver/Manifest
17 index 92e31a62642b..1f4bef629452 100644
18 --- a/app-arch/xarchiver/Manifest
19 +++ b/app-arch/xarchiver/Manifest
20 @@ -1,2 +1 @@
21 -DIST xarchiver-0.5.4.19.tar.gz 1120885 BLAKE2B 4b8b9e188b16b799f33a1816a5f19a0f67720369282239e3a22af8588b9776ee37dbc63cb1b42a426c515a360aeb1abda84b22e783bd8e4e3578eb2f2fb66ab6 SHA512 f35846bcb1236957d4201980eb1c9e49e16472ab2316935c9f8c94a9b4c3c2da879cd2730c3413041098042251607432f6af1cbacadd97b81efb81180fa5ee6a
22 DIST xarchiver-0.5.4.20.tar.gz 1120317 BLAKE2B dbeb21492a4045d504aac92c28847a91c23e0feedeb82074fe89736f64b2b7d09b41bbefe321441c51736a8273267ac13dd616d4f61ba1b9e72cc805e749aa79 SHA512 c05be6f69a576988ca1a67c1664e4e4e3c53588ef4c85ce943e204ae72b08e705eb20be1018274c5420e30c5ed71d773bdacccc538ab458d658fba494c097777
23
24 diff --git a/app-arch/xarchiver/xarchiver-0.5.4.19.ebuild b/app-arch/xarchiver/xarchiver-0.5.4.19.ebuild
25 deleted file mode 100644
26 index 24dc0123a4de..000000000000
27 --- a/app-arch/xarchiver/xarchiver-0.5.4.19.ebuild
28 +++ /dev/null
29 @@ -1,61 +0,0 @@
30 -# Copyright 1999-2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -inherit xdg-utils
36 -
37 -DESCRIPTION="A GTK+ archive manager that can be used with Thunar"
38 -HOMEPAGE="https://github.com/ib/xarchiver/"
39 -SRC_URI="
40 - https://github.com/ib/xarchiver/archive/${PV}.tar.gz -> ${P}.tar.gz
41 -"
42 -
43 -LICENSE="GPL-2"
44 -SLOT="0"
45 -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux"
46 -IUSE="doc"
47 -
48 -DEPEND="
49 - >=dev-libs/glib-2:=
50 - x11-libs/gtk+:3=
51 -"
52 -RDEPEND="
53 - ${DEPEND}
54 -"
55 -BDEPEND="
56 - dev-util/intltool
57 - sys-devel/gettext
58 - virtual/pkgconfig
59 - doc? (
60 - app-text/docbook-xml-dtd
61 - app-text/docbook-xsl-stylesheets
62 - dev-libs/libxml2
63 - dev-libs/libxslt
64 - )
65 -"
66 -
67 -src_configure() {
68 - local myconf=(
69 - $(use_enable doc)
70 - )
71 - econf "${myconf[@]}"
72 -}
73 -
74 -pkg_postinst() {
75 - xdg_desktop_database_update
76 - xdg_icon_cache_update
77 -
78 - elog "You need external programs for some formats, including:"
79 - elog "7zip - app-arch/p7zip"
80 - elog "arj - app-arch/arj"
81 - elog "lha - app-arch/lha"
82 - elog "lzop - app-arch/lzop"
83 - elog "rar - app-arch/unrar app-arch/rar"
84 - elog "zip - app-arch/unzip app-arch/zip"
85 -}
86 -
87 -pkg_postrm() {
88 - xdg_desktop_database_update
89 - xdg_icon_cache_update
90 -}