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: Sun, 15 Dec 2019 11:52:31
Message-Id: 1576410532.5ff198ab386b9ee6e1a16977233b7610ac4cf81d.pacho@gentoo
1 commit: 5ff198ab386b9ee6e1a16977233b7610ac4cf81d
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 15 11:48:52 2019 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 15 11:48:52 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ff198ab
7
8 dev-util/desktop-file-utils: Drop old
9
10 Package-Manager: Portage-2.3.80, Repoman-2.3.19
11 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
12
13 dev-util/desktop-file-utils/Manifest | 1 -
14 .../desktop-file-utils-0.23.ebuild | 54 ----------------------
15 2 files changed, 55 deletions(-)
16
17 diff --git a/dev-util/desktop-file-utils/Manifest b/dev-util/desktop-file-utils/Manifest
18 index 81b434acf96..339df71770c 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.23.tar.xz 132000 BLAKE2B 95273125dd8332db7438c3a4a7a5ecc4566d552c1fc9ff94a68fdf13f5fca74f943e02a10b1fb4417494f9fd44daa9f80c519215982cee8e082648027a010e7b SHA512 66a8ddfbb2be8edc14e16427e0dafa6fb1ef7491c816f19221fb5d5782e964cdcc3ae89807339f1c565af828aa83403cc56edeb2d03b3f93e013f3c5e9e6fe6a
23 DIST desktop-file-utils-0.24.tar.xz 137424 BLAKE2B 3cce27caa14782ef10886fdc0602c0378c1bad0d49a4b99077436a9951f13ccdb539fdc2b9d27b54430fce94fb0ee0268746b216cc5d6c1b9ba517e1af81b4ce SHA512 b19d700d4403c8757c62e49bb7650e0138a85e799f79de07b0d0099a52398a3ead90c8125ccc883df6e2a3f8f5f97696009ebb7452dc7acc25afeef20e06fde0
24
25 diff --git a/dev-util/desktop-file-utils/desktop-file-utils-0.23.ebuild b/dev-util/desktop-file-utils/desktop-file-utils-0.23.ebuild
26 deleted file mode 100644
27 index ee934c0aec3..00000000000
28 --- a/dev-util/desktop-file-utils/desktop-file-utils-0.23.ebuild
29 +++ /dev/null
30 @@ -1,54 +0,0 @@
31 -# Copyright 1999-2019 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -inherit elisp-common eutils
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 ~riscv s390 ~sh sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
44 -IUSE="emacs"
45 -
46 -RDEPEND=">=dev-libs/glib-2.12:2
47 - emacs? ( virtual/emacs )"
48 -DEPEND="${RDEPEND}
49 - app-arch/xz-utils
50 - virtual/pkgconfig"
51 -
52 -SITEFILE=50${PN}-gentoo.el
53 -
54 -DOCS=( AUTHORS ChangeLog HACKING NEWS README )
55 -
56 -src_prepare() {
57 - default
58 - sed -i -e '/SUBDIRS =/s:misc::' Makefile.in || die
59 -}
60 -
61 -src_configure() {
62 - econf "$(use_with emacs lispdir "${SITELISP}"/${PN})"
63 -}
64 -
65 -src_compile() {
66 - default
67 - use emacs && elisp-compile misc/desktop-entry-mode.el
68 -}
69 -
70 -src_install() {
71 - default
72 - if use emacs; then
73 - elisp-install ${PN} misc/*.el misc/*.elc || die
74 - elisp-site-file-install "${FILESDIR}"/${SITEFILE} || die
75 - fi
76 -}
77 -
78 -pkg_postinst() {
79 - use emacs && elisp-site-regen
80 -}
81 -
82 -pkg_postrm() {
83 - use emacs && elisp-site-regen
84 -}