Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/cdk/
Date: Sun, 27 Jan 2019 11:06:53
Message-Id: 1548587136.70d3f6e4420b5631b92f8e6dfb919bbe60a13f97.pacho@gentoo
1 commit: 70d3f6e4420b5631b92f8e6dfb919bbe60a13f97
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 27 10:57:54 2019 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 27 11:05:36 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70d3f6e4
7
8 dev-libs/cdk: Drop old
9
10 Package-Manager: Portage-2.3.58, Repoman-2.3.12
11 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
12
13 dev-libs/cdk/Manifest | 3 ---
14 dev-libs/cdk/cdk-5.0.20131107.ebuild | 48 ------------------------------------
15 dev-libs/cdk/cdk-5.0.20141106.ebuild | 48 ------------------------------------
16 dev-libs/cdk/cdk-5.0.20150928.ebuild | 46 ----------------------------------
17 4 files changed, 145 deletions(-)
18
19 diff --git a/dev-libs/cdk/Manifest b/dev-libs/cdk/Manifest
20 index 189dfe781f3..fc6e4d0e6ef 100644
21 --- a/dev-libs/cdk/Manifest
22 +++ b/dev-libs/cdk/Manifest
23 @@ -1,4 +1 @@
24 -DIST cdk-5.0-20131107.tgz 495455 BLAKE2B 949891d3a8d895b6bb59e3d54384cb602268c7d9825e9399dbc800cb481a77a1afe1a76f90353d61617af6b19dc913c11661354e45e38ccd37476561639070f0 SHA512 93e0c78bfd12fb9c554b9b6996b9c93542201afb67ddd63ecea7330171ca079da73d81b3f3b2f27a28ecd3527ed6c7333203a9438ecd196a66d3bad78233f439
25 -DIST cdk-5.0-20141106.tgz 509310 BLAKE2B 456b02a914622a8947c955b589706377a96ccaaa82c522514e74d4dc6ba6e9250fd5faa0114404b7ad4a370decfb39d8d19e4a50ba3c716706e2a0adbf61ede4 SHA512 8a92363c8036acb61fe8dcfcf3690653f2573407123b8c684c0bf165d5b99b6a4c7e8bcded8773304ebc13108e90ae3488f0e74ed026f3bc69f6a5b007e651e4
26 -DIST cdk-5.0-20150928.tgz 515214 BLAKE2B d06eb2b43b6c035b05f93d599d2a7fa960670ea34d7e3b66d294678c7caff30461becac5f1ee093b11a792b8e21ebf39b015551ab0f72012f4ad10c5d8343da9 SHA512 5774e28d91edd477854e30eb456b7725987e82ec27f5cf055c1d1e46581e11d2958bafbac408124f274bf7454be68476d18643a265df7c74b8f43eb1895bf19d
27 DIST cdk-5.0-20160131.tgz 516298 BLAKE2B 5e899afea1f034a48e46fef073303d0069e14310194342094392da517fa47793a1ac3ac33774369842daa1966dc9a4ad7404046874bc9cae24ceaa98a3dd7c47 SHA512 f8f7fc5fec3c040cdbfc2a0d886e9d9d9d231e56ed69adae0b91e03243b5edd550c5435f973a93d4cf7ab723bd27b55712af75162c4bfd3ae28b3c16cd68f755
28
29 diff --git a/dev-libs/cdk/cdk-5.0.20131107.ebuild b/dev-libs/cdk/cdk-5.0.20131107.ebuild
30 deleted file mode 100644
31 index 5c675054db0..00000000000
32 --- a/dev-libs/cdk/cdk-5.0.20131107.ebuild
33 +++ /dev/null
34 @@ -1,48 +0,0 @@
35 -# Copyright 1999-2017 Gentoo Foundation
36 -# Distributed under the terms of the GNU General Public License v2
37 -
38 -EAPI=5
39 -
40 -inherit eutils versionator
41 -
42 -MY_P="${PN}-$(replace_version_separator 2 -)"
43 -DESCRIPTION="A library of curses widgets"
44 -HOMEPAGE="http://dickey.his.com/cdk/cdk.html"
45 -SRC_URI="ftp://invisible-island.net/cdk/${MY_P}.tgz"
46 -
47 -LICENSE="BSD"
48 -SLOT="0/5" # subslot = soname version
49 -KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 ~s390 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
50 -IUSE="examples static-libs unicode"
51 -
52 -DEPEND=">=sys-libs/ncurses-5.2[unicode?]"
53 -RDEPEND="${DEPEND}"
54 -
55 -S=${WORKDIR}/${MY_P}
56 -
57 -src_prepare() {
58 - epatch "${FILESDIR}"/${PN}-5.0.20120323-parallel-make.patch
59 -}
60 -
61 -src_configure() {
62 - econf \
63 - --with-libtool \
64 - --with-shared \
65 - --with-ncurses$(usex unicode "w" "")
66 -}
67 -
68 -src_install() {
69 - # parallel make installs duplicate libs
70 - emake -j1 \
71 - DESTDIR="${ED}" \
72 - DOCUMENT_DIR="${ED}/usr/share/doc/${PF}" install
73 -
74 - if use examples ; then
75 - for x in include c++ demos examples cli cli/utils cli/samples; do
76 - docinto $x
77 - find $x -maxdepth 1 -mindepth 1 -type f -print0 | xargs -0 dodoc
78 - done
79 - fi
80 -
81 - use static-libs || find "${ED}" \( -name '*.a' -or -name '*.la' \) -delete
82 -}
83
84 diff --git a/dev-libs/cdk/cdk-5.0.20141106.ebuild b/dev-libs/cdk/cdk-5.0.20141106.ebuild
85 deleted file mode 100644
86 index b1cc6ecfcfd..00000000000
87 --- a/dev-libs/cdk/cdk-5.0.20141106.ebuild
88 +++ /dev/null
89 @@ -1,48 +0,0 @@
90 -# Copyright 1999-2017 Gentoo Foundation
91 -# Distributed under the terms of the GNU General Public License v2
92 -
93 -EAPI=5
94 -
95 -inherit eutils versionator
96 -
97 -MY_P="${PN}-$(replace_version_separator 2 -)"
98 -DESCRIPTION="A library of curses widgets"
99 -HOMEPAGE="http://dickey.his.com/cdk/cdk.html"
100 -SRC_URI="ftp://invisible-island.net/cdk/${MY_P}.tgz"
101 -
102 -LICENSE="BSD"
103 -SLOT="0/6" # subslot = soname version
104 -KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 ~s390 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
105 -IUSE="examples static-libs unicode"
106 -
107 -DEPEND=">=sys-libs/ncurses-5.2[unicode?]"
108 -RDEPEND="${DEPEND}"
109 -
110 -S=${WORKDIR}/${MY_P}
111 -
112 -src_prepare() {
113 - epatch "${FILESDIR}"/${PN}-5.0.20120323-parallel-make.patch
114 -}
115 -
116 -src_configure() {
117 - econf \
118 - --with-libtool \
119 - --with-shared \
120 - --with-ncurses$(usex unicode "w" "")
121 -}
122 -
123 -src_install() {
124 - # parallel make installs duplicate libs
125 - emake -j1 \
126 - DESTDIR="${ED}" \
127 - DOCUMENT_DIR="${ED}/usr/share/doc/${PF}" install
128 -
129 - if use examples ; then
130 - for x in include c++ demos examples cli cli/utils cli/samples; do
131 - docinto $x
132 - find $x -maxdepth 1 -mindepth 1 -type f -print0 | xargs -0 dodoc
133 - done
134 - fi
135 -
136 - use static-libs || find "${ED}" \( -name '*.a' -or -name '*.la' \) -delete
137 -}
138
139 diff --git a/dev-libs/cdk/cdk-5.0.20150928.ebuild b/dev-libs/cdk/cdk-5.0.20150928.ebuild
140 deleted file mode 100644
141 index 4b8a3c2fb2a..00000000000
142 --- a/dev-libs/cdk/cdk-5.0.20150928.ebuild
143 +++ /dev/null
144 @@ -1,46 +0,0 @@
145 -# Copyright 1999-2017 Gentoo Foundation
146 -# Distributed under the terms of the GNU General Public License v2
147 -
148 -EAPI=6
149 -
150 -inherit versionator
151 -
152 -MY_P="${PN}-$(replace_version_separator 2 -)"
153 -DESCRIPTION="A library of curses widgets"
154 -HOMEPAGE="http://dickey.his.com/cdk/cdk.html"
155 -SRC_URI="ftp://invisible-island.net/cdk/${MY_P}.tgz"
156 -
157 -LICENSE="BSD"
158 -SLOT="0/6" # subslot = soname version
159 -KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
160 -IUSE="examples static-libs unicode"
161 -
162 -DEPEND=">=sys-libs/ncurses-5.2:0=[unicode?]"
163 -RDEPEND="${DEPEND}"
164 -
165 -S=${WORKDIR}/${MY_P}
166 -
167 -PATCHES=( "${FILESDIR}"/${PN}-5.0.20120323-parallel-make.patch )
168 -
169 -src_configure() {
170 - econf \
171 - --with-libtool \
172 - --with-shared \
173 - --with-ncurses$(usex unicode "w" "")
174 -}
175 -
176 -src_install() {
177 - # parallel make installs duplicate libs
178 - emake -j1 \
179 - DESTDIR="${ED}" \
180 - DOCUMENT_DIR="${ED}/usr/share/doc/${PF}" install
181 -
182 - if use examples ; then
183 - for x in include c++ demos examples cli cli/utils cli/samples; do
184 - docinto $x
185 - find $x -maxdepth 1 -mindepth 1 -type f -print0 | xargs -0 dodoc
186 - done
187 - fi
188 -
189 - use static-libs || find "${ED}" \( -name '*.a' -or -name '*.la' \) -delete
190 -}