Gentoo Archives: gentoo-commits

From: Louis Sautier <sbraz@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-irc/eggdrop/
Date: Fri, 02 Apr 2021 22:37:19
Message-Id: 1617402904.764e8c51a23e373ee75a7b69ced8f0f6a567f972.sbraz@gentoo
1 commit: 764e8c51a23e373ee75a7b69ced8f0f6a567f972
2 Author: Louis Sautier <sbraz <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 2 22:34:36 2021 +0000
4 Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 2 22:35:04 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=764e8c51
7
8 net-irc/eggdrop: drop 1.8.3, 1.8.4
9
10 Signed-off-by: Louis Sautier <sbraz <AT> gentoo.org>
11
12 net-irc/eggdrop/Manifest | 1 -
13 net-irc/eggdrop/eggdrop-1.8.3.ebuild | 81 ------------------------------------
14 net-irc/eggdrop/eggdrop-1.8.4.ebuild | 70 -------------------------------
15 3 files changed, 152 deletions(-)
16
17 diff --git a/net-irc/eggdrop/Manifest b/net-irc/eggdrop/Manifest
18 index 5c7f443037a..93e6d30a7d7 100644
19 --- a/net-irc/eggdrop/Manifest
20 +++ b/net-irc/eggdrop/Manifest
21 @@ -1,3 +1,2 @@
22 -DIST eggdrop-1.8.3.tar.gz 1756536 BLAKE2B c2693bc383e1d857fe784d54f34479e73902064196021788ddf21f0bb2910977c643d820d2f6b640bb459b2acbfad8158fc0b29b4d76c588dfd76fee09a6fa25 SHA512 ad3b93d18aaa05d0eb00f1089b68d1f077f316042e64fff511ad1bbac06d35105adcb503490faaac4c9fe720dd45a9f350115b6c5d0f41fe198f228213a7a3a3
23 DIST eggdrop-1.8.4.tar.gz 1784738 BLAKE2B a86cdc681ebd9c779b7da20f80ff312e4fc848e0cb0a0b9fa34941c91e1b89db1430126e3d0b94c7b4346c0bde099a6ddd343270943570744c46fc4ddd451540 SHA512 d08af09dc83045bf89eae957e7817591f16456f83ba3efe6b361fd421a3d4068348543275c26b27b006f09f06344c04cdf58ee4231f1aee0e7537ec39bc24b49
24 DIST eggdrop-1.9.0.tar.gz 2206230 BLAKE2B 1c6c5c77558323ae80b4f486f30d106b2f336c61c50adc10302657c2878a755b48d8286ba70f662b6be132ffd569de5eb269cfca1e6e42675b007de43ccf4746 SHA512 e78e220c8207361c6d7bda06be6d0094d747809ff8554fed2ce4a5fb63df1d87f8b82a98d4f0b98909042af8f6719f4a7bf548f864d3d6dfa8caa57b346d32dc
25
26 diff --git a/net-irc/eggdrop/eggdrop-1.8.3.ebuild b/net-irc/eggdrop/eggdrop-1.8.3.ebuild
27 deleted file mode 100644
28 index 89a942bbaeb..00000000000
29 --- a/net-irc/eggdrop/eggdrop-1.8.3.ebuild
30 +++ /dev/null
31 @@ -1,81 +0,0 @@
32 -# Copyright 1999-2020 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=7
36 -
37 -inherit readme.gentoo-r1
38 -
39 -DESCRIPTION="An IRC bot extensible with C or TCL"
40 -HOMEPAGE="https://www.eggheads.org/"
41 -SRC_URI="https://ftp.eggheads.org/pub/eggdrop/source/${PV:0:3}/${P}.tar.gz"
42 -
43 -KEYWORDS="~alpha amd64 ~arm ~ia64 ~mips ppc sparc x86"
44 -LICENSE="GPL-2+"
45 -SLOT="0"
46 -IUSE="debug doc ipv6 ssl static"
47 -
48 -DEPEND="
49 - dev-lang/tcl:0=
50 - ssl? ( dev-libs/openssl:0= )
51 -"
52 -RDEPEND="
53 - sys-apps/gentoo-functions
54 - ${DEPEND}
55 -"
56 -
57 -DOCS=( AUTHORS FEATURES INSTALL NEWS README THANKS UPGRADING )
58 -
59 -src_prepare() {
60 - # https://bugs.gentoo.org/335230
61 - # https://github.com/eggheads/eggdrop/issues/526
62 - sed -i \
63 - -e '/\$(LD)/s/-o/$(CFLAGS) $(LDFLAGS) &/' \
64 - src/mod/*.mod/Makefile* src/Makefile.in || die
65 - default
66 -}
67 -
68 -src_configure() {
69 - econf $(use_enable ssl tls) \
70 - $(use_enable ipv6 ipv6)
71 -
72 - # https://github.com/eggheads/eggdrop/issues/527
73 - emake -j1 config
74 -}
75 -
76 -src_compile() {
77 - local target
78 -
79 - if use static && use debug; then
80 - target="sdebug"
81 - elif use static; then
82 - target="static"
83 - elif use debug; then
84 - target="debug"
85 - fi
86 -
87 - emake ${target}
88 -}
89 -
90 -src_install() {
91 - # https://github.com/eggheads/eggdrop/issues/527
92 - emake -j1 DEST="${D}"/opt/eggdrop install
93 -
94 - use doc && HTML_DOCS=( doc/html/. )
95 - rm -r "${D}"/opt/eggdrop/doc/html || die
96 - DOC_CONTENTS="
97 - Additional documentation can be found
98 - in ${EPREFIX}/opt/eggdrop/doc
99 - "
100 - readme.gentoo_create_doc
101 - einstalldocs
102 -
103 - dobin "${FILESDIR}"/eggdrop-installer
104 - doman doc/man1/eggdrop.1
105 -}
106 -
107 -pkg_postinst() {
108 - # Only display this for new installs
109 - if [[ -z ${REPLACING_VERSIONS} ]]; then
110 - elog "Please run ${EPREFIX}/usr/bin/eggdrop-installer to install your eggdrop bot."
111 - fi
112 -}
113
114 diff --git a/net-irc/eggdrop/eggdrop-1.8.4.ebuild b/net-irc/eggdrop/eggdrop-1.8.4.ebuild
115 deleted file mode 100644
116 index c629643aa50..00000000000
117 --- a/net-irc/eggdrop/eggdrop-1.8.4.ebuild
118 +++ /dev/null
119 @@ -1,70 +0,0 @@
120 -# Copyright 1999-2018 Gentoo Authors
121 -# Distributed under the terms of the GNU General Public License v2
122 -
123 -EAPI=7
124 -
125 -inherit readme.gentoo-r1
126 -
127 -DESCRIPTION="An IRC bot extensible with C or TCL"
128 -HOMEPAGE="https://www.eggheads.org/"
129 -SRC_URI="https://ftp.eggheads.org/pub/eggdrop/source/${PV:0:3}/${P}.tar.gz"
130 -
131 -KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~sparc ~x86"
132 -LICENSE="GPL-2+"
133 -SLOT="0"
134 -IUSE="debug doc ipv6 ssl static"
135 -
136 -DEPEND="
137 - dev-lang/tcl:0=
138 - ssl? ( dev-libs/openssl:0= )
139 -"
140 -RDEPEND="
141 - sys-apps/gentoo-functions
142 - ${DEPEND}
143 -"
144 -
145 -DOCS=( AUTHORS FEATURES INSTALL NEWS README THANKS UPGRADING )
146 -
147 -src_configure() {
148 - econf $(use_enable ssl tls) \
149 - $(use_enable ipv6 ipv6)
150 -
151 - emake config
152 -}
153 -
154 -src_compile() {
155 - local target
156 -
157 - if use static && use debug; then
158 - target="sdebug"
159 - elif use static; then
160 - target="static"
161 - elif use debug; then
162 - target="debug"
163 - fi
164 -
165 - emake ${target}
166 -}
167 -
168 -src_install() {
169 - emake DEST="${D}"/opt/eggdrop install
170 -
171 - use doc && HTML_DOCS=( doc/html/. )
172 - rm -r "${D}"/opt/eggdrop/doc/html || die
173 - DOC_CONTENTS="
174 - Additional documentation can be found
175 - in ${EPREFIX}/opt/eggdrop/doc
176 - "
177 - readme.gentoo_create_doc
178 - einstalldocs
179 -
180 - dobin "${FILESDIR}"/eggdrop-installer
181 - doman doc/man1/eggdrop.1
182 -}
183 -
184 -pkg_postinst() {
185 - # Only display this for new installs
186 - if [[ -z ${REPLACING_VERSIONS} ]]; then
187 - elog "Please run ${EPREFIX}/usr/bin/eggdrop-installer to install your eggdrop bot."
188 - fi
189 -}