diff options
author | Pacho Ramos <pacho@gentoo.org> | 2021-09-07 15:47:04 +0200 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2021-09-07 16:08:38 +0200 |
commit | f2c93282bca4ca7cd3462129b1b63499cfa74568 (patch) | |
tree | a493e3265f38cfd3b67e2bbbbb909b1e0bfd6f53 /dev-util | |
parent | dev-python/dbus-python: Bump to 1.2.18 (diff) | |
download | gentoo-f2c93282bca4ca7cd3462129b1b63499cfa74568.tar.gz gentoo-f2c93282bca4ca7cd3462129b1b63499cfa74568.tar.bz2 gentoo-f2c93282bca4ca7cd3462129b1b63499cfa74568.zip |
dev-util/desktop-file-utils: Drop old
Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: Pacho Ramos <pacho@gentoo.org>
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/desktop-file-utils/Manifest | 1 | ||||
-rw-r--r-- | dev-util/desktop-file-utils/desktop-file-utils-0.24.ebuild | 56 |
2 files changed, 0 insertions, 57 deletions
diff --git a/dev-util/desktop-file-utils/Manifest b/dev-util/desktop-file-utils/Manifest index 6b04817a00e5..3f61a7f3c2ff 100644 --- a/dev-util/desktop-file-utils/Manifest +++ b/dev-util/desktop-file-utils/Manifest @@ -1,2 +1 @@ -DIST desktop-file-utils-0.24.tar.xz 137424 BLAKE2B 3cce27caa14782ef10886fdc0602c0378c1bad0d49a4b99077436a9951f13ccdb539fdc2b9d27b54430fce94fb0ee0268746b216cc5d6c1b9ba517e1af81b4ce SHA512 b19d700d4403c8757c62e49bb7650e0138a85e799f79de07b0d0099a52398a3ead90c8125ccc883df6e2a3f8f5f97696009ebb7452dc7acc25afeef20e06fde0 DIST desktop-file-utils-0.26.tar.xz 83132 BLAKE2B fdbe5427a0278ebe4a9b1bc15a148ecdc3f54b54058b355ae4f9a962fb1c4ec309d24a075973caf8f187a1c74b013e9bed0a7c3668bf888274e77fac9e077ec8 SHA512 5b4e435f0b635d8f898ac7f5759f74a08ffbe2a56d41fee0e84ff57e73b98d08b57b4416f20b99f696dad8bcb1c20792b39acf836b0814220c0b386ea5f6b831 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 deleted file mode 100644 index c9c70c4e60d2..000000000000 --- a/dev-util/desktop-file-utils/desktop-file-utils-0.24.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit elisp-common - -DESCRIPTION="Command line utilities to work with desktop menu entries" -HOMEPAGE="https://freedesktop.org/wiki/Software/desktop-file-utils" -SRC_URI="https://www.freedesktop.org/software/${PN}/releases/${P}.tar.xz" - -LICENSE="GPL-2+" -SLOT="0" -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" -IUSE="emacs" - -RDEPEND=">=dev-libs/glib-2.12:2 - emacs? ( >=app-editors/emacs-23.1:* )" -DEPEND="${RDEPEND}" -BDEPEND=" - app-arch/xz-utils - virtual/pkgconfig -" - -SITEFILE=50${PN}-gentoo.el - -DOCS=( AUTHORS ChangeLog HACKING NEWS README ) - -src_prepare() { - default - sed -i -e '/SUBDIRS =/s:misc::' Makefile.in || die -} - -src_configure() { - econf "$(use_with emacs lispdir "${SITELISP}"/${PN})" -} - -src_compile() { - default - use emacs && elisp-compile misc/desktop-entry-mode.el -} - -src_install() { - default - if use emacs; then - elisp-install ${PN} misc/*.el misc/*.elc || die - elisp-site-file-install "${FILESDIR}"/${SITEFILE} || die - fi -} - -pkg_postinst() { - use emacs && elisp-site-regen -} - -pkg_postrm() { - use emacs && elisp-site-regen -} |