Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/librep/
Date: Thu, 07 Jan 2021 19:04:06
Message-Id: 1610046065.9b4a328656ad7f6914cf785c89cbfd0119a53a05.sam@gentoo
1 commit: 9b4a328656ad7f6914cf785c89cbfd0119a53a05
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 7 19:01:05 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 7 19:01:05 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b4a3286
7
8 dev-libs/librep: cleanup old
9
10 Package-Manager: Portage-3.0.12, Repoman-3.0.2
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 dev-libs/librep/Manifest | 1 -
14 dev-libs/librep/librep-0.92.6.ebuild | 78 ------------------------------------
15 2 files changed, 79 deletions(-)
16
17 diff --git a/dev-libs/librep/Manifest b/dev-libs/librep/Manifest
18 index d8a807e9d3d..c3822e20cfd 100644
19 --- a/dev-libs/librep/Manifest
20 +++ b/dev-libs/librep/Manifest
21 @@ -1,2 +1 @@
22 -DIST librep_0.92.6.tar.xz 472152 BLAKE2B 165fa8b1d68360e0b08909663cab0f334774030e970c0d376652bc819368eae647882091f1e8d1329f4d3c1c53def4f69aeb8c4d7fe5f327d06d528dc9bb2267 SHA512 6e347e788922af9458e6eddfdaf7935b69df8f70b3f6deb11e6abd67596aec05e7dce7f41db1c84e478347d379ced10cfb34672a797c853913fd538a78a1f96d
23 DIST librep_0.92.7.tar.xz 651344 BLAKE2B 3a0e9a3eef0afa2e095537dfc307418ba87ce7a9baabdba262fd9a24b71cc6577fe1282412da495d56bf22007f1931c5b834f5bcf4c5ebe87d6b43a4975d630e SHA512 752cb2da31457200b5896f70ce24a097b261b996da25998cd78a777f982597473afce1a216f449a4a969d29b1678bf54e2f148e86de6f9548eeb5cfd530ae377
24
25 diff --git a/dev-libs/librep/librep-0.92.6.ebuild b/dev-libs/librep/librep-0.92.6.ebuild
26 deleted file mode 100644
27 index 0028c09381f..00000000000
28 --- a/dev-libs/librep/librep-0.92.6.ebuild
29 +++ /dev/null
30 @@ -1,78 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -inherit autotools elisp-common eutils flag-o-matic ltprune
37 -
38 -DESCRIPTION="Shared library implementing a Lisp dialect"
39 -HOMEPAGE="http://librep.sourceforge.net/"
40 -SRC_URI="http://download.tuxfamily.org/librep/${PN}_${PV}.tar.xz"
41 -
42 -LICENSE="GPL-2"
43 -SLOT="0"
44 -KEYWORDS="~alpha amd64 ~ia64 ppc ppc64 sparc x86"
45 -IUSE="emacs readline"
46 -
47 -RDEPEND="
48 - >=sys-libs/gdbm-1.8.0
49 - emacs? ( >=app-editors/emacs-23.1:* )
50 - readline? ( sys-libs/readline:0= )
51 -"
52 -DEPEND="${RDEPEND}
53 - sys-apps/texinfo
54 - app-arch/xz-utils
55 -"
56 -
57 -PATCHES=(
58 - "${FILESDIR}/${PN}-0.92.0-disable-elisp.patch"
59 -)
60 -
61 -S="${WORKDIR}/${PN}_${PV}"
62 -
63 -src_prepare() {
64 - # fix #570072 by restoring pre-GCC5 inline semantics
65 - append-cflags -std=gnu89
66 - default
67 -
68 - # The configure script is missing from this version.
69 - eautoreconf
70 -}
71 -
72 -src_configure() {
73 - econf \
74 - --libexecdir=/usr/$(get_libdir) \
75 - --without-gmp \
76 - --without-ffi \
77 - --disable-static \
78 - $(use_with readline)
79 -}
80 -
81 -src_compile() {
82 - default
83 -
84 - if use emacs; then
85 - elisp-compile rep-debugger.el || die "elisp-compile failed"
86 - fi
87 -}
88 -
89 -src_install() {
90 - default
91 - prune_libtool_files --modules
92 -
93 - dodoc doc/*
94 -
95 - if use emacs; then
96 - elisp-install ${PN} rep-debugger.{el,elc} || die "elisp-install failed"
97 - elisp-site-file-install "${FILESDIR}/50${PN}-gentoo.el" \
98 - || die "elisp-site-file-install failed"
99 - fi
100 -}
101 -
102 -pkg_postinst() {
103 - use emacs && elisp-site-regen
104 -}
105 -
106 -pkg_postrm() {
107 - use emacs && elisp-site-regen
108 -}