commit:     52871b9f96e255e40583307c506053dfcc4d6f30
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 19 19:14:54 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Apr 19 19:15:03 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52871b9f

app-misc/wcd: drop 5.2.7, 5.3.4, 6.0.1

Closes: https://bugs.gentoo.org/783648
Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-misc/wcd/Manifest                     |  3 --
 app-misc/wcd/files/wcd-5.2.5-gentoo.patch | 67 -------------------------------
 app-misc/wcd/files/wcd-5.3.4-gentoo.patch | 67 -------------------------------
 app-misc/wcd/files/wcd-6.0.1-gentoo.patch | 67 -------------------------------
 app-misc/wcd/wcd-5.2.7.ebuild             | 46 ---------------------
 app-misc/wcd/wcd-5.3.4.ebuild             | 52 ------------------------
 app-misc/wcd/wcd-6.0.1.ebuild             | 46 ---------------------
 7 files changed, 348 deletions(-)

diff --git a/app-misc/wcd/Manifest b/app-misc/wcd/Manifest
index 6757b5f0846..e0d3dcf326f 100644
--- a/app-misc/wcd/Manifest
+++ b/app-misc/wcd/Manifest
@@ -1,4 +1 @@
-DIST wcd-5.2.7.tar.gz 622613 BLAKE2B 
85c473ad607022953338872a46251b2010504608d0385a17c6188e76975058af7370fbc393b0a9a1911b6c200f7397fcf45c4426aaa48f5a3f31a696657c444e
 SHA512 
9f5b89d8160f685b729234cc8c03f16b795797dd6eaf2d9e1bbf1949b27ef971908b78642679d3bf1d99b128b390cd5dbd211e4ff03b0539dd287c578088e02e
-DIST wcd-5.3.4.tar.gz 610630 BLAKE2B 
f460de38b0ded0da592df31c12d8f28f890555750f972e395b5178665bdd2bf0514b258f5c2c1338e6a7699224c04153e67d088642626b5611abb9b685d305fd
 SHA512 
fdb6e000876fffbc7bce6e6157282c2b8ef9929c896e5dbd8533314d575cf31656df76cd5c408bb2e495a1fda7f179b122ea2a58da94d5d55d1e2b9c658adc94
-DIST wcd-6.0.1.tar.gz 705577 BLAKE2B 
9af2c14bae8cce50ad69b230897f2ae18c6ce899e9ed5d2f9b014ffb5b104c9fd136aa0d8a14110ae08fb1b9d4cc5f7819f42f5f23f5adf34780d16adf801790
 SHA512 
7a1a97b1dee220f2a425fcd7669ee9a3ca144992fe18444866269499b10bdea1671a5fca13eaa77c12c807d901e7831701e00a35c766021533a922b84b68247e
 DIST wcd-6.0.2.tar.gz 713062 BLAKE2B 
13a745fd698b009aedb19e688a5deec7d62c42acf2dc430b7f586f300712ad684e8530a9b2477cf2d7a6540769efc98c245215cbe756b78c3902d03430b034d9
 SHA512 
587a52efaf0a585e4fc8a04a0eb08445cf4c78d38abd7592658f61827aa6cc0f1e8af8643c411d22d74145479c9970b018b11fc7a2a08b4ba7c850097813b06f

diff --git a/app-misc/wcd/files/wcd-5.2.5-gentoo.patch 
b/app-misc/wcd/files/wcd-5.2.5-gentoo.patch
deleted file mode 100644
index 82a1594399b..00000000000
--- a/app-misc/wcd/files/wcd-5.2.5-gentoo.patch
+++ /dev/null
@@ -1,67 +0,0 @@
---- a/src/Makefile
-+++ b/src/Makefile
-@@ -46,12 +46,12 @@ include version.mk
- 
- CC            ?= gcc
- STATIC                =
--STRIP         = strip
-+STRIP         =
- 
- ENABLE_NLS = 1
- 
- PACKAGE               = wcd
--EXT           = .exe
-+EXT           =
- PROGRAM         = $(PACKAGE)$(EXT)
- BIN           = $(PROGRAM)
- 
-@@ -188,9 +188,9 @@ endif
- # possible values: ncurses, curses, pdcurses, pdcursesw or <empty>
- 
- ifdef UCS
--      CURSES = ncursesw
-+      CURSES = $(shell ${PKG_CONFIG} --libs ncursesw)
- else
--      CURSES = ncurses
-+      CURSES = $(shell ${PKG_CONFIG} --libs ncurses)
- endif
- 
- ifdef CURSES
-@@ -201,7 +201,7 @@ endif
- 
- ifneq (,$(CURSES))
-       DEFS_CURSES = -DWCD_USECURSES
--      LIB_CURSES  = -l$(CURSES)
-+      LIB_CURSES  = $(CURSES)
- endif
- 
- 
-@@ -406,15 +406,15 @@ ifdef ASCII_TREE
- endif
- 
- LDFLAGS_USER   =
--LDFLAGS               = $(RPM_OPT_FLAGS) \
-+LIBS          = $(RPM_OPT_FLAGS) \
-                 $(LDFLAGS_EXTRA) \
-                 $(NLFLAG) \
-                 $(LDFLAG_STATIC) \
-                 $(LDFLAGS_USER)
- 
--LIBS = $(LIB_CURSES) \
--       $(LIB_UNISTRING) \
--       $(LIBS_EXTRA)
-+LIBS += $(LIB_CURSES) \
-+      $(LIB_UNISTRING) \
-+      $(LIBS_EXTRA)
- 
- DEFS_USER   =
- DEFS          = $(DEF_UNIX) $(DEFS_CURSES) $(EXTRA_DEFS) $(DEFS_USER)
-@@ -470,7 +470,7 @@ status:
- 
- $(BIN): $(OBJS1)
-       $(MAKE) status
--      $(CC) $(OBJS1) $(LDFLAGS) $(LIBS) -o $@
-+      $(CC) $(LDFLAGS) $(OBJS1) -o $@ $(LIBS)
- 
- %.o: %.c
-       $(CC) $(CFLAGS) $(EXTRA_CFLAGS) $(DEFS) -c $< -o $@

diff --git a/app-misc/wcd/files/wcd-5.3.4-gentoo.patch 
b/app-misc/wcd/files/wcd-5.3.4-gentoo.patch
deleted file mode 100644
index aa164ce9b14..00000000000
--- a/app-misc/wcd/files/wcd-5.3.4-gentoo.patch
+++ /dev/null
@@ -1,67 +0,0 @@
---- a/src/Makefile
-+++ b/src/Makefile
-@@ -46,12 +46,12 @@
- 
- CC            ?= gcc
- STATIC                =
--STRIP         = strip
-+STRIP         =
- 
- ENABLE_NLS = 1
- 
- PACKAGE               = wcd
--EXT           = .exe
-+EXT           =
- PROGRAM         = $(PACKAGE)$(EXT)
- BIN           = $(PROGRAM)
- 
-@@ -334,9 +334,9 @@
- # possible values: ncurses, curses, pdcurses, pdcursesw or <empty>
- 
- ifdef UCS
--      CURSES = ncursesw
-+      CURSES = $(shell ${PKG_CONFIG} --libs ncursesw)
- else
--      CURSES = ncurses
-+      CURSES = $(shell ${PKG_CONFIG} --libs ncurses)
- endif
- 
- 
-@@ -366,7 +366,7 @@
- 
- ifneq (,$(CURSES))
-       DEFS_CURSES = -DWCD_USECURSES
--      LIB_CURSES  = -l$(CURSES)
-+      LIB_CURSES  = $(CURSES)
- ifeq (os/2,$(OS))
-       LIB_CURSES  += -ltinfo
- endif
-@@ -456,15 +456,15 @@
- endif
- 
- LDFLAGS_USER   =
--LDFLAGS               = $(RPM_OPT_FLAGS) \
-+LIBS          = $(RPM_OPT_FLAGS) \
-                 $(LDFLAGS_EXTRA) \
-                 $(NLFLAG) \
-                 $(LDFLAG_STATIC) \
-                 $(LDFLAGS_USER)
- 
--LIBS = $(LIB_CURSES) \
--       $(LIB_UNISTRING) \
--       $(LIBS_EXTRA)
-+LIBS += $(LIB_CURSES) \
-+      $(LIB_UNISTRING) \
-+      $(LIBS_EXTRA)
- 
- DEFS_USER   =
- DEFS          = $(DEF_UNIX) $(DEFS_CURSES) $(EXTRA_DEFS) $(DEFS_USER)
-@@ -521,7 +521,7 @@
- 
- $(BIN): $(OBJS1)
-       $(MAKE) status
--      $(CC) $(OBJS1) $(LDFLAGS) $(LIBS) -o $@
-+      $(CC) $(LDFLAGS) $(OBJS1) -o $@ $(LIBS)
- 
- %.o: %.c
-       $(CC) $(CFLAGS) $(EXTRA_CFLAGS) $(DEFS) -c $< -o $@

diff --git a/app-misc/wcd/files/wcd-6.0.1-gentoo.patch 
b/app-misc/wcd/files/wcd-6.0.1-gentoo.patch
deleted file mode 100644
index 420f5d4cec3..00000000000
--- a/app-misc/wcd/files/wcd-6.0.1-gentoo.patch
+++ /dev/null
@@ -1,67 +0,0 @@
---- a/src/Makefile
-+++ b/src/Makefile
-@@ -45,12 +45,12 @@
- 
- CC              ?= gcc
- STATIC          =
--STRIP           = strip
-+STRIP           =
- 
- ENABLE_NLS = 1
- 
- PACKAGE         = wcd
--EXT             = .exe
-+EXT             =
- PROGRAM         = $(PACKAGE)$(EXT)
- BIN             = $(PROGRAM)
- 
-@@ -329,9 +329,9 @@
- # possible values: ncurses, curses, pdcurses, pdcursesw or <empty>
- 
- ifdef UCS
--        CURSES = ncursesw
-+        CURSES = $(shell ${PKG_CONFIG} --libs ncursesw)
- else
--        CURSES = ncurses
-+        CURSES = $(shell ${PKG_CONFIG} --libs ncurses)
- endif
- 
- 
-@@ -361,7 +361,7 @@
- 
- ifneq (,$(CURSES))
-         DEFS_CURSES = -DWCD_USECURSES
--        LIB_CURSES  = -l$(CURSES)
-+        LIB_CURSES  = $(CURSES)
- ifeq (os/2,$(OS))
-         LIB_CURSES  += -ltinfo
- endif
-@@ -455,15 +455,15 @@
- endif
- 
- LDFLAGS_USER   =
--LDFLAGS         = $(RPM_OPT_FLAGS) \
-+LIBS            = $(RPM_OPT_FLAGS) \
-                   $(LDFLAGS_EXTRA) \
-                   $(NLFLAG) \
-                   $(LDFLAG_STATIC) \
-                   $(LDFLAGS_USER)
- 
--LIBS = $(LIB_CURSES) \
--       $(LIB_UNISTRING) \
--       $(LIBS_EXTRA)
-+LIBS += $(LIB_CURSES) \
-+      $(LIB_UNISTRING) \
-+      $(LIBS_EXTRA)
- 
- DEFS_USER   =
- DEFS            = $(DEF_UNIX) $(DEFS_CURSES) $(EXTRA_DEFS) $(DEFS_USER)
-@@ -520,7 +520,7 @@
- 
- $(BIN): $(OBJS1)
-       $(MAKE) status
--      $(CC) $(OBJS1) $(LDFLAGS) $(LIBS) -o $@
-+      $(CC) $(LDFLAGS) $(OBJS1) -o $@ $(LIBS)
- 
- %.o: %.c
-       $(CC) $(CFLAGS) $(EXTRA_CFLAGS) $(DEFS) -c $< -o $@

diff --git a/app-misc/wcd/wcd-5.2.7.ebuild b/app-misc/wcd/wcd-5.2.7.ebuild
deleted file mode 100644
index e6275be727d..00000000000
--- a/app-misc/wcd/wcd-5.2.7.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit epatch toolchain-funcs
-
-DESCRIPTION="Wherever Change Directory"
-HOMEPAGE="http://waterlan.home.xs4all.nl/#WCD_ANCHOR";
-SRC_URI="http://waterlan.home.xs4all.nl/${PN}/${P}.tar.gz";
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="amd64 arm x86 ~amd64-linux ~x86-linux"
-IUSE="nls unicode"
-
-CDEPEND="
-       sys-libs/ncurses[unicode?]
-       unicode? ( dev-libs/libunistring )"
-DEPEND="${CDEPEND}
-       app-text/ghostscript-gpl
-       virtual/pkgconfig
-"
-RDEPEND="${CDEPEND}"
-
-S="${WORKDIR}"/${P}/src
-
-src_prepare() {
-       epatch \
-               "${FILESDIR}"/${PN}-5.2.5-gentoo.patch
-       tc-export CC PKG_CONFIG
-}
-
-src_compile() {
-       local mycompile="LFS=1"
-       use nls || mycompile="${mycompile} ENABLE_NLS="
-       use unicode && mycompile="${mycompile} UCS=1 UNINORM=1"
-       emake \
-               ${mycompile}
-}
-
-src_install() {
-       local DOCS="../README.txt"
-       default
-       emake DESTDIR="${D}" DOTWCD=1 install-profile sysconfdir="/etc"
-}

diff --git a/app-misc/wcd/wcd-5.3.4.ebuild b/app-misc/wcd/wcd-5.3.4.ebuild
deleted file mode 100644
index b6b5ada63e4..00000000000
--- a/app-misc/wcd/wcd-5.3.4.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit toolchain-funcs
-
-DESCRIPTION="Wherever Change Directory"
-HOMEPAGE="http://waterlan.home.xs4all.nl/#WCD_ANCHOR";
-SRC_URI="http://waterlan.home.xs4all.nl/${PN}/${P}.tar.gz";
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
-IUSE="nls unicode"
-
-CDEPEND="
-       sys-libs/ncurses:0=[unicode?]
-       unicode? ( dev-libs/libunistring )"
-DEPEND="${CDEPEND}
-       app-text/ghostscript-gpl
-       virtual/pkgconfig
-"
-RDEPEND="${CDEPEND}"
-
-S="${WORKDIR}"/${P}/src
-
-PATCHES=(
-       "${FILESDIR}"/${PN}-5.3.4-gentoo.patch
-)
-
-src_prepare() {
-       # Required for stupid eapply function
-       pushd .. &>/dev/null || die
-       default
-       popd &>/dev/null || die
-       tc-export CC PKG_CONFIG
-}
-
-src_compile() {
-       local mycompile="LFS=1"
-       use nls || mycompile="${mycompile} ENABLE_NLS="
-       use unicode && mycompile="${mycompile} UCS=1 UNINORM=1"
-       emake \
-               ${mycompile}
-}
-
-src_install() {
-       local DOCS=( ../README.txt )
-       default
-       emake DESTDIR="${D}" DOTWCD=1 install-profile sysconfdir="/etc"
-}

diff --git a/app-misc/wcd/wcd-6.0.1.ebuild b/app-misc/wcd/wcd-6.0.1.ebuild
deleted file mode 100644
index 3aca5740d54..00000000000
--- a/app-misc/wcd/wcd-6.0.1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit toolchain-funcs
-
-DESCRIPTION="Wherever Change Directory"
-HOMEPAGE="http://waterlan.home.xs4all.nl/#WCD_ANCHOR";
-SRC_URI="http://waterlan.home.xs4all.nl/${PN}/${P}.tar.gz";
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
-IUSE="nls unicode"
-
-CDEPEND="
-       sys-libs/ncurses:0=[unicode?]
-       unicode? ( dev-libs/libunistring )"
-DEPEND="${CDEPEND}
-       app-text/ghostscript-gpl
-       virtual/pkgconfig
-"
-RDEPEND="${CDEPEND}"
-
-S="${WORKDIR}/${P}/src"
-
-src_prepare() {
-       eapply -p2 "${FILESDIR}"/${PN}-6.0.1-gentoo.patch
-       eapply_user
-       tc-export CC PKG_CONFIG
-}
-
-src_compile() {
-       local mycompile="LFS=1"
-       use nls || mycompile="${mycompile} ENABLE_NLS="
-       use unicode && mycompile="${mycompile} UCS=1 UNINORM=1"
-       emake \
-               ${mycompile}
-}
-
-src_install() {
-       local DOCS=( ../README.txt )
-       default
-       emake DESTDIR="${D}" DOTWCD=1 install-profile sysconfdir="/etc"
-}

Reply via email to