Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libcli/files/, profiles/, dev-libs/libcli/
Date: Sat, 12 Oct 2019 08:13:29
Message-Id: 1570867902.fec3c6c98ed2fc43d1f07a668eba5f6b5407f212.mgorny@gentoo
1 commit: fec3c6c98ed2fc43d1f07a668eba5f6b5407f212
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 12 08:11:42 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 12 08:11:42 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fec3c6c9
7
8 dev-libs/libcli: Remove last-rited pkg
9
10 Closes: https://bugs.gentoo.org/694180
11 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
12
13 dev-libs/libcli/Manifest | 2 -
14 dev-libs/libcli/files/libcli-1.9.4-ldflags.patch | 11 ------
15 dev-libs/libcli/files/libcli-1.9.7-libdir.patch | 24 ------------
16 dev-libs/libcli/files/libcli-1.9.8.4-libdir.patch | 29 ---------------
17 dev-libs/libcli/libcli-1.9.7.ebuild | 37 -------------------
18 dev-libs/libcli/libcli-1.9.8.4.ebuild | 45 -----------------------
19 dev-libs/libcli/metadata.xml | 12 ------
20 profiles/package.mask | 6 ---
21 8 files changed, 166 deletions(-)
22
23 diff --git a/dev-libs/libcli/Manifest b/dev-libs/libcli/Manifest
24 deleted file mode 100644
25 index e150549bc70..00000000000
26 --- a/dev-libs/libcli/Manifest
27 +++ /dev/null
28 @@ -1,2 +0,0 @@
29 -DIST libcli-1.9.7.tar.gz 29557 BLAKE2B a53a8db720fd4ecc047ac6ca111cc8ba1d05067af4dc56b640a0bafd30e6d6b4ccfdbf79b251f1eb6927c7d81675de492a52280ccfab0b48854173650acaacfe SHA512 b2dacfd40bc068ddcc0dc3d60576ef2f7d7e2af80b93c6e7ae899d654afca6f0f8d2df2b33c9c8e760bdbea9aa2eaf757029d46032dcf307341f78f1a8f4f66f
30 -DIST libcli-1.9.8.4.tar.gz 29618 BLAKE2B cb901f5cd852449f3223f9b048fb483d2d4f5052dc29cb18714d7f5631be96b5ad99c61e09da778b4559760c5497bdaa61e9d68f75bb25e6c4c4475bdc4899e8 SHA512 731156f75b777be209d10db74e786af868c5e82ddfb7f882a07c1f385bae554a02897a53b4d5684e9f941b4ea72d465e3e8b32dda3cdf377ae728e4ac6eb5afb
31
32 diff --git a/dev-libs/libcli/files/libcli-1.9.4-ldflags.patch b/dev-libs/libcli/files/libcli-1.9.4-ldflags.patch
33 deleted file mode 100644
34 index 4b78c0ddb28..00000000000
35 --- a/dev-libs/libcli/files/libcli-1.9.4-ldflags.patch
36 +++ /dev/null
37 @@ -1,11 +0,0 @@
38 ---- a/Makefile
39 -+++ b/Makefile
40 -@@ -28,7 +28,7 @@
41 - libcli.o: libcli.h
42 -
43 - clitest: clitest.o $(LIB)
44 -- $(CC) $(CPPFLAGS) $(CFLAGS) -o $@ $< -L. -lcli
45 -+ $(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ $< -L. -lcli
46 -
47 - clitest.exe: clitest.c libcli.o
48 - $(CC) $(CPPFLAGS) $(CFLAGS) -o $@ $< libcli.o -lws2_32
49
50 diff --git a/dev-libs/libcli/files/libcli-1.9.7-libdir.patch b/dev-libs/libcli/files/libcli-1.9.7-libdir.patch
51 deleted file mode 100644
52 index 99f817095ad..00000000000
53 --- a/dev-libs/libcli/files/libcli-1.9.7-libdir.patch
54 +++ /dev/null
55 @@ -1,24 +0,0 @@
56 ---- libcli-1.9.7/Makefile
57 -+++ libcli-1.9.7/Makefile
58 -@@ -1,6 +1,7 @@
59 - UNAME = $(shell sh -c 'uname -s 2>/dev/null || echo not')
60 - DESTDIR =
61 - PREFIX = /usr/local
62 -+libdir = $(PREFIX)/lib
63 -
64 - MAJOR = 1
65 - MINOR = 9
66 -@@ -50,10 +51,10 @@
67 - rm -f *.o $(LIB)* $(LIB_STATIC) clitest
68 -
69 - install: $(LIB)
70 -- install -d $(DESTDIR)$(PREFIX)/include $(DESTDIR)$(PREFIX)/lib
71 -+ install -d $(DESTDIR)$(PREFIX)/include $(DESTDIR)$(libdir)
72 - install -m 0644 libcli.h $(DESTDIR)$(PREFIX)/include
73 -- install -m 0755 $(LIB).$(MAJOR).$(MINOR).$(REVISION) $(DESTDIR)$(PREFIX)/lib
74 -- cd $(DESTDIR)$(PREFIX)/lib && \
75 -+ install -m 0755 $(LIB).$(MAJOR).$(MINOR).$(REVISION) $(DESTDIR)$(libdir)
76 -+ cd $(DESTDIR)$(libdir) && \
77 - ln -fs $(LIB).$(MAJOR).$(MINOR).$(REVISION) $(LIB).$(MAJOR).$(MINOR) && \
78 - ln -fs $(LIB).$(MAJOR).$(MINOR) $(LIB)
79 -
80
81 diff --git a/dev-libs/libcli/files/libcli-1.9.8.4-libdir.patch b/dev-libs/libcli/files/libcli-1.9.8.4-libdir.patch
82 deleted file mode 100644
83 index 31c5024cb7b..00000000000
84 --- a/dev-libs/libcli/files/libcli-1.9.8.4-libdir.patch
85 +++ /dev/null
86 @@ -1,29 +0,0 @@
87 ---- libcli-1.9.8-4/Makefile
88 -+++ libcli-1.9.8-4/Makefile
89 -@@ -8,6 +8,7 @@
90 - UNAME = $(shell sh -c 'uname -s 2>/dev/null || echo not')
91 - DESTDIR =
92 - PREFIX = /usr/local
93 -+libdir = $(PREFIX)/lib
94 -
95 - MAJOR = 1
96 - MINOR = 9
97 -@@ -64,14 +65,14 @@
98 - rm -f *.o $(LIB)* $(LIB_STATIC) clitest libcli-$(MAJOR).$(MINOR).$(REVISION).tar.gz
99 -
100 - install: $(TARGET_LIBS)
101 -- install -d $(DESTDIR)$(PREFIX)/include $(DESTDIR)$(PREFIX)/lib
102 -+ install -d $(DESTDIR)$(PREFIX)/include $(DESTDIR)$(libdir)
103 - install -m 0644 libcli.h $(DESTDIR)$(PREFIX)/include
104 - ifeq (1,$(STATIC_LIB))
105 -- install -m 0644 $(LIB_STATIC) $(DESTDIR)$(PREFIX)/lib
106 -+ install -m 0644 $(LIB_STATIC) $(DESTDIR)$(libdir)
107 - endif
108 - ifeq (1,$(DYNAMIC_LIB))
109 -- install -m 0755 $(LIB).$(MAJOR).$(MINOR).$(REVISION) $(DESTDIR)$(PREFIX)/lib
110 -- cd $(DESTDIR)$(PREFIX)/lib && \
111 -+ install -m 0755 $(LIB).$(MAJOR).$(MINOR).$(REVISION) $(DESTDIR)$(libdir)
112 -+ cd $(DESTDIR)$(libdir) && \
113 - ln -fs $(LIB).$(MAJOR).$(MINOR).$(REVISION) $(LIB).$(MAJOR).$(MINOR) && \
114 - ln -fs $(LIB).$(MAJOR).$(MINOR) $(LIB)
115 - endif
116
117 diff --git a/dev-libs/libcli/libcli-1.9.7.ebuild b/dev-libs/libcli/libcli-1.9.7.ebuild
118 deleted file mode 100644
119 index 36ea4dee1e2..00000000000
120 --- a/dev-libs/libcli/libcli-1.9.7.ebuild
121 +++ /dev/null
122 @@ -1,37 +0,0 @@
123 -# Copyright 1999-2014 Gentoo Foundation
124 -# Distributed under the terms of the GNU General Public License v2
125 -
126 -EAPI=5
127 -
128 -inherit eutils multilib toolchain-funcs
129 -
130 -DESCRIPTION="Cisco-style (telnet) command-line interface library"
131 -
132 -HOMEPAGE="http://sites.dparrish.com/libcli"
133 -SRC_URI="https://github.com/dparrish/libcli/archive/v${PV}.tar.gz -> ${P}.tar.gz"
134 -LICENSE="LGPL-2.1"
135 -
136 -SLOT="0"
137 -KEYWORDS="amd64 x86 ~amd64-linux"
138 -IUSE=""
139 -
140 -DEPEND=""
141 -RDEPEND=""
142 -
143 -src_prepare() {
144 - epatch "${FILESDIR}/${PN}-1.9.7-libdir.patch" \
145 - "${FILESDIR}/${PN}-1.9.4-ldflags.patch"
146 -}
147 -
148 -src_compile() {
149 - emake OPTIM="" DEBUG="" \
150 - CC="$(tc-getCC)" AR="$(tc-getAR)"
151 -}
152 -
153 -src_install() {
154 - emake DESTDIR="${ED}" PREFIX="/usr" \
155 - libdir="/usr/$(get_libdir)" install
156 -
157 - dobin clitest
158 - dodoc README
159 -}
160
161 diff --git a/dev-libs/libcli/libcli-1.9.8.4.ebuild b/dev-libs/libcli/libcli-1.9.8.4.ebuild
162 deleted file mode 100644
163 index dd838091cec..00000000000
164 --- a/dev-libs/libcli/libcli-1.9.8.4.ebuild
165 +++ /dev/null
166 @@ -1,45 +0,0 @@
167 -# Copyright 1999-2019 Gentoo Authors
168 -# Distributed under the terms of the GNU General Public License v2
169 -
170 -EAPI=7
171 -
172 -inherit multilib toolchain-funcs
173 -
174 -MY_PV="$(ver_rs 3 -)"
175 -
176 -DESCRIPTION="Cisco-style (telnet) command-line interface library"
177 -
178 -HOMEPAGE="https://github.com/dparrish/libcli"
179 -SRC_URI="https://github.com/dparrish/libcli/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz"
180 -LICENSE="LGPL-2.1"
181 -
182 -SLOT="0"
183 -KEYWORDS="~amd64 ~x86 ~amd64-linux"
184 -IUSE="static-libs"
185 -
186 -DEPEND=""
187 -RDEPEND=""
188 -
189 -S="${WORKDIR}/${PN}-${MY_PV}"
190 -
191 -PATCHES=(
192 - "${FILESDIR}/${PN}-1.9.4-ldflags.patch"
193 - "${FILESDIR}/${PN}-1.9.8.4-libdir.patch"
194 -)
195 -
196 -src_compile() {
197 - emake OPTIM="" DEBUG="" \
198 - CC="$(tc-getCC)" AR="$(tc-getAR)"
199 -}
200 -
201 -src_install() {
202 - emake DESTDIR="${ED}" PREFIX="/usr" \
203 - libdir="/usr/$(get_libdir)" install
204 -
205 - dobin clitest
206 - dodoc README
207 -
208 - if ! use static-libs ; then
209 - find "${ED}" -type f -name "*.a" -delete || die
210 - fi
211 -}
212
213 diff --git a/dev-libs/libcli/metadata.xml b/dev-libs/libcli/metadata.xml
214 deleted file mode 100644
215 index a31d2d70c48..00000000000
216 --- a/dev-libs/libcli/metadata.xml
217 +++ /dev/null
218 @@ -1,12 +0,0 @@
219 -<?xml version="1.0" encoding="UTF-8"?>
220 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
221 -<pkgmetadata>
222 - <!-- maintainer-needed -->
223 - <longdescription lang="en">libcli provides a shared library for including a Cisco-like command-line
224 - interface into other software. It's a telnet interface which supports
225 - command-line editing, history, authentication and callbacks for a
226 - user-definable function tree.</longdescription>
227 - <upstream>
228 - <remote-id type="github">dparrish/libcli</remote-id>
229 - </upstream>
230 -</pkgmetadata>
231
232 diff --git a/profiles/package.mask b/profiles/package.mask
233 index 2975d311004..1d654bd98b3 100644
234 --- a/profiles/package.mask
235 +++ b/profiles/package.mask
236 @@ -711,12 +711,6 @@ dev-libs/libhome
237 dev-libs/libcxml
238 dev-libs/locked_sstream
239
240 -# Michał Górny <mgorny@g.o> (2019-09-12)
241 -# Unmaintained. No reverse dependencies. Its presence breaks
242 -# pulseaudio (#672468).
243 -# Removal in 30 days. Bug #694180.
244 -dev-libs/libcli
245 -
246 # Lars Wendler <polynomial-c@g.o> (2019-09-04)
247 # Unofficial build. Superseded by official 2.49.5 release.
248 # Masked for removal.