Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/desktop-file-utils/
Date: Tue, 07 Sep 2021 14:08:48
Message-Id: 1631023718.f2c93282bca4ca7cd3462129b1b63499cfa74568.pacho@gentoo
1 commit: f2c93282bca4ca7cd3462129b1b63499cfa74568
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 7 13:47:04 2021 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 7 14:08:38 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2c93282
7
8 dev-util/desktop-file-utils: Drop old
9
10 Package-Manager: Portage-3.0.22, Repoman-3.0.3
11 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
12
13 dev-util/desktop-file-utils/Manifest | 1 -
14 .../desktop-file-utils-0.24.ebuild | 56 ----------------------
15 2 files changed, 57 deletions(-)
16
17 diff --git a/dev-util/desktop-file-utils/Manifest b/dev-util/desktop-file-utils/Manifest
18 index 6b04817a00e..3f61a7f3c2f 100644
19 --- a/dev-util/desktop-file-utils/Manifest
20 +++ b/dev-util/desktop-file-utils/Manifest
21 @@ -1,2 +1 @@
22 -DIST desktop-file-utils-0.24.tar.xz 137424 BLAKE2B 3cce27caa14782ef10886fdc0602c0378c1bad0d49a4b99077436a9951f13ccdb539fdc2b9d27b54430fce94fb0ee0268746b216cc5d6c1b9ba517e1af81b4ce SHA512 b19d700d4403c8757c62e49bb7650e0138a85e799f79de07b0d0099a52398a3ead90c8125ccc883df6e2a3f8f5f97696009ebb7452dc7acc25afeef20e06fde0
23 DIST desktop-file-utils-0.26.tar.xz 83132 BLAKE2B fdbe5427a0278ebe4a9b1bc15a148ecdc3f54b54058b355ae4f9a962fb1c4ec309d24a075973caf8f187a1c74b013e9bed0a7c3668bf888274e77fac9e077ec8 SHA512 5b4e435f0b635d8f898ac7f5759f74a08ffbe2a56d41fee0e84ff57e73b98d08b57b4416f20b99f696dad8bcb1c20792b39acf836b0814220c0b386ea5f6b831
24
25 diff --git a/dev-util/desktop-file-utils/desktop-file-utils-0.24.ebuild b/dev-util/desktop-file-utils/desktop-file-utils-0.24.ebuild
26 deleted file mode 100644
27 index c9c70c4e60d..00000000000
28 --- a/dev-util/desktop-file-utils/desktop-file-utils-0.24.ebuild
29 +++ /dev/null
30 @@ -1,56 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -inherit elisp-common
36 -
37 -DESCRIPTION="Command line utilities to work with desktop menu entries"
38 -HOMEPAGE="https://freedesktop.org/wiki/Software/desktop-file-utils"
39 -SRC_URI="https://www.freedesktop.org/software/${PN}/releases/${P}.tar.xz"
40 -
41 -LICENSE="GPL-2+"
42 -SLOT="0"
43 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
44 -IUSE="emacs"
45 -
46 -RDEPEND=">=dev-libs/glib-2.12:2
47 - emacs? ( >=app-editors/emacs-23.1:* )"
48 -DEPEND="${RDEPEND}"
49 -BDEPEND="
50 - app-arch/xz-utils
51 - virtual/pkgconfig
52 -"
53 -
54 -SITEFILE=50${PN}-gentoo.el
55 -
56 -DOCS=( AUTHORS ChangeLog HACKING NEWS README )
57 -
58 -src_prepare() {
59 - default
60 - sed -i -e '/SUBDIRS =/s:misc::' Makefile.in || die
61 -}
62 -
63 -src_configure() {
64 - econf "$(use_with emacs lispdir "${SITELISP}"/${PN})"
65 -}
66 -
67 -src_compile() {
68 - default
69 - use emacs && elisp-compile misc/desktop-entry-mode.el
70 -}
71 -
72 -src_install() {
73 - default
74 - if use emacs; then
75 - elisp-install ${PN} misc/*.el misc/*.elc || die
76 - elisp-site-file-install "${FILESDIR}"/${SITEFILE} || die
77 - fi
78 -}
79 -
80 -pkg_postinst() {
81 - use emacs && elisp-site-regen
82 -}
83 -
84 -pkg_postrm() {
85 - use emacs && elisp-site-regen
86 -}