diff options
author | David Seifert <soap@gentoo.org> | 2021-09-04 19:33:57 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2021-09-04 19:33:57 +0200 |
commit | cee8d613203f7c2e3d32c3ecfd913cc923ad86e8 (patch) | |
tree | 6865b615fb1394981132494a76a88f8000ba377c /dev-util | |
parent | dev-util/checkbashisms: drop 2.21.3 (diff) | |
download | gentoo-cee8d613203f7c2e3d32c3ecfd913cc923ad86e8.tar.gz gentoo-cee8d613203f7c2e3d32c3ecfd913cc923ad86e8.tar.bz2 gentoo-cee8d613203f7c2e3d32c3ecfd913cc923ad86e8.zip |
dev-util/dialog: drop 1.3.20200327-r1, 1.3.20210530-r1
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/dialog/Manifest | 2 | ||||
-rw-r--r-- | dev-util/dialog/dialog-1.3.20200327-r1.ebuild | 49 | ||||
-rw-r--r-- | dev-util/dialog/dialog-1.3.20210530-r1.ebuild | 53 |
3 files changed, 0 insertions, 104 deletions
diff --git a/dev-util/dialog/Manifest b/dev-util/dialog/Manifest index 08cf67464fbd..0f46e4480c00 100644 --- a/dev-util/dialog/Manifest +++ b/dev-util/dialog/Manifest @@ -1,3 +1 @@ -DIST dialog-1.3-20200327.tar.gz 547962 BLAKE2B b335d8b57d9a9f3a7e303aa3b2c64736007b66618a79c79368d9dba20a8123813cdeb7d0643bf7c6d147314963ff469b6e41d2378fe9181081fa543f0aca50f2 SHA512 c8c7ccd86fa189a2b6739320f59f127512e53f908ed257280099f8c45754da98d2095835d0c14090cd071af0ed6e8ff95f9938f5ca8027b0b7001c7fd746fe59 -DIST dialog-1.3-20210530.tgz 562950 BLAKE2B 2aa33c4e2568f91a08d173c3a02d0d64f3b02127e70fc942fa76904fda9bd929fcb19b5254874199fc00e873e7dfb18365beba04350e80939bea5d75d8df8438 SHA512 8f39cfa5f3ba70795927c261861bc55bde668d68d3b45559542cf980e1cfabefb3d1ebabc91715e29a4a9ffca5cdb6affa640ed155539692c868942f6014e7e0 DIST dialog-1.3-20210621.tgz 563430 BLAKE2B 8ffb630ed67f303facd79ca72aaca89d32c55a2b504293105a72c596409828fffd3e5e5f603fb5bec7f8748358a03ddadc7f1cd6fb989d1b31af1fd8f1078d97 SHA512 bde13aaf215127d143aa0d37989e0bacb6bc23f007681aeff27683efa01a483106710ff756358e396c23e4c1f0355cd8a2b3bb362ae1c3a1a997e00835d53c2b diff --git a/dev-util/dialog/dialog-1.3.20200327-r1.ebuild b/dev-util/dialog/dialog-1.3.20200327-r1.ebuild deleted file mode 100644 index 4ad9c4b2c30e..000000000000 --- a/dev-util/dialog/dialog-1.3.20200327-r1.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DIA_P=${PN}-$(ver_cut 1-2)-$(ver_cut 3) -DESCRIPTION="tool to display dialog boxes from a shell" -HOMEPAGE="https://invisible-island.net/dialog/" -SRC_URI="https://dev.gentoo.org/~jer/${DIA_P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0/15" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86" -IUSE="examples minimal nls static-libs unicode" - -RDEPEND=" - >=sys-libs/ncurses-5.2-r5:=[unicode(+)?] -" -DEPEND=" - ${RDEPEND} - nls? ( sys-devel/gettext ) - !minimal? ( sys-devel/libtool ) -" -S=${WORKDIR}/${DIA_P} - -src_prepare() { - default - sed -i -e '/LIB_CREATE=/s:${CC}:& ${LDFLAGS}:g' configure || die - sed -i '/$(LIBTOOL_COMPILE)/s:$: $(LIBTOOL_OPTS):' makefile.in || die -} - -src_configure() { - econf \ - --disable-rpath-hack \ - $(use_enable nls) \ - $(use_with !minimal libtool) \ - --with-libtool-opts=$(usex static-libs '' '-shared') \ - --with-ncurses$(usex unicode w '') -} - -src_install() { - use minimal && default || emake DESTDIR="${D}" install-full - - use examples && dodoc -r samples - - dodoc CHANGES README - - find "${ED}" -name '*.la' -delete || die -} diff --git a/dev-util/dialog/dialog-1.3.20210530-r1.ebuild b/dev-util/dialog/dialog-1.3.20210530-r1.ebuild deleted file mode 100644 index d9eb069d20c7..000000000000 --- a/dev-util/dialog/dialog-1.3.20210530-r1.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -MY_P=${PN}-$(ver_rs 2 -) - -DESCRIPTION="Tool to display dialog boxes from a shell" -HOMEPAGE="https://invisible-island.net/dialog/" -SRC_URI="https://invisible-mirror.net/archives/dialog/${MY_P}.tgz" -S="${WORKDIR}"/${MY_P} - -LICENSE="GPL-2" -SLOT="0/15" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" -IUSE="examples minimal nls unicode" - -RDEPEND=">=sys-libs/ncurses-5.2-r5:=[unicode(+)?]" -DEPEND="${RDEPEND} - nls? ( sys-devel/gettext )" -BDEPEND="!minimal? ( sys-devel/libtool ) - virtual/pkgconfig" - -src_prepare() { - default - - sed -i -e '/LIB_CREATE=/s:${CC}:& ${LDFLAGS}:g' configure || die - sed -i '/$(LIBTOOL_COMPILE)/s:$: $(LIBTOOL_OPTS):' makefile.in || die -} - -src_configure() { - if [[ ${CHOST} == *-darwin* ]] ; then - export ac_cv_prog_LIBTOOL=glibtool - fi - - econf \ - --disable-rpath-hack \ - --with-pkg-config \ - $(use_enable nls) \ - $(use_with !minimal libtool) \ - --with-libtool-opts='-shared' \ - --with-ncurses$(usex unicode w '') -} - -src_install() { - use minimal && default || emake DESTDIR="${D}" install-full - - use examples && dodoc -r samples - - dodoc CHANGES README - - find "${ED}" -name '*.la' -delete || die -} |