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-util/dialog/
Date: Thu, 20 Jan 2022 12:09:29
Message-Id: 1642680544.90b016d09fb4603bf58756c47ac458caf84f272f.sam@gentoo
1 commit: 90b016d09fb4603bf58756c47ac458caf84f272f
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 20 12:09:04 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 20 12:09:04 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90b016d0
7
8 dev-util/dialog: drop 1.3.20210621-r1
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 dev-util/dialog/Manifest | 1 -
13 dev-util/dialog/dialog-1.3.20210621-r1.ebuild | 53 ---------------------------
14 2 files changed, 54 deletions(-)
15
16 diff --git a/dev-util/dialog/Manifest b/dev-util/dialog/Manifest
17 index fd738dc0e68b..be8da7ad8812 100644
18 --- a/dev-util/dialog/Manifest
19 +++ b/dev-util/dialog/Manifest
20 @@ -1,4 +1,3 @@
21 -DIST dialog-1.3-20210621.tgz 563430 BLAKE2B 8ffb630ed67f303facd79ca72aaca89d32c55a2b504293105a72c596409828fffd3e5e5f603fb5bec7f8748358a03ddadc7f1cd6fb989d1b31af1fd8f1078d97 SHA512 bde13aaf215127d143aa0d37989e0bacb6bc23f007681aeff27683efa01a483106710ff756358e396c23e4c1f0355cd8a2b3bb362ae1c3a1a997e00835d53c2b
22 DIST dialog-1.3-20211107.tgz 566509 BLAKE2B f2c045f60185c34eec18b878219fae10a5acca2dc8bec5d379de069c939a0079e1a95925f860944108c97c8ef4e32041966c423d8b294b2102311c9aa085301e SHA512 a6626092692ca61209f67caa7c5dec91f637e3ff002488a0e117ec80ce8fdf0ef50d3b11f67d84d8abb06145347a100de76223fb4b1f971a755c28de1be860ac
23 DIST dialog-1.3-20211214.tgz 565608 BLAKE2B f069968abe258942f27e010f8d14eafd270c45ae467d5131b41b57c0cc5a145a410fdaeab5f7fa221aa7dbea440f8e268d130e0f1f7389a224374b0047228156 SHA512 b76e7e1fc333550a9cc351e37e7121e98f48b2a1f78e8c0c528e2126db16ae14c4c5da088bc611cb12020836e75dd2a1d875561fe5eec6589c104252d4aa7626
24 DIST dialog-1.3-20220117.tgz 565530 BLAKE2B 6c77be870962151e37f87870e62d4a1e04adacf01ad4076fc38b3dc35c97ea03169f253d2672edbb9d4cf54aa6ae0ba3def199b84c866c6a0bd7299915abbd0c SHA512 c785dadb0bf7feeee6ac767a6752fb85e9d07ff3991c2f948deae05893ba3104590eda37e88adc0032ce89ede036f6215bb4acd1d85699f5cb9f5b4fc153e2ef
25
26 diff --git a/dev-util/dialog/dialog-1.3.20210621-r1.ebuild b/dev-util/dialog/dialog-1.3.20210621-r1.ebuild
27 deleted file mode 100644
28 index 0c54076343ab..000000000000
29 --- a/dev-util/dialog/dialog-1.3.20210621-r1.ebuild
30 +++ /dev/null
31 @@ -1,53 +0,0 @@
32 -# Copyright 1999-2021 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=7
36 -
37 -MY_P=${PN}-$(ver_rs 2 -)
38 -
39 -DESCRIPTION="Tool to display dialog boxes from a shell"
40 -HOMEPAGE="https://invisible-island.net/dialog/"
41 -SRC_URI="https://invisible-mirror.net/archives/dialog/${MY_P}.tgz"
42 -S="${WORKDIR}"/${MY_P}
43 -
44 -LICENSE="GPL-2"
45 -SLOT="0/15"
46 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86"
47 -IUSE="examples minimal nls unicode"
48 -
49 -RDEPEND=">=sys-libs/ncurses-5.2-r5:=[unicode(+)?]"
50 -DEPEND="${RDEPEND}
51 - nls? ( sys-devel/gettext )"
52 -BDEPEND="!minimal? ( sys-devel/libtool )
53 - virtual/pkgconfig"
54 -
55 -src_prepare() {
56 - default
57 -
58 - sed -i -e '/LIB_CREATE=/s:${CC}:& ${LDFLAGS}:g' configure || die
59 - sed -i '/$(LIBTOOL_COMPILE)/s:$: $(LIBTOOL_OPTS):' makefile.in || die
60 -}
61 -
62 -src_configure() {
63 - if [[ ${CHOST} == *-darwin* ]] ; then
64 - export ac_cv_prog_LIBTOOL=glibtool
65 - fi
66 -
67 - econf \
68 - --disable-rpath-hack \
69 - --with-pkg-config \
70 - $(use_enable nls) \
71 - $(use_with !minimal libtool) \
72 - --with-libtool-opts='-shared' \
73 - --with-ncurses$(usex unicode w '')
74 -}
75 -
76 -src_install() {
77 - use minimal && default || emake DESTDIR="${D}" install-full
78 -
79 - use examples && dodoc -r samples
80 -
81 - dodoc CHANGES README
82 -
83 - find "${ED}" -name '*.la' -delete || die
84 -}