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, 26 Oct 2018 08:32:47
Message-Id: 1540542743.758962f595fd876bef0d00e5ba392c1b925aa0c8.sbraz@gentoo
1 commit: 758962f595fd876bef0d00e5ba392c1b925aa0c8
2 Author: Louis Sautier <sbraz <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 26 08:32:23 2018 +0000
4 Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 26 08:32:23 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=758962f5
7
8 net-irc/eggdrop: remove ancient version
9
10 Signed-off-by: Louis Sautier <sbraz <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 net-irc/eggdrop/Manifest | 2 -
14 net-irc/eggdrop/eggdrop-1.6.21-r1.ebuild | 111 -------------------------------
15 2 files changed, 113 deletions(-)
16
17 diff --git a/net-irc/eggdrop/Manifest b/net-irc/eggdrop/Manifest
18 index 329ddc5a7f2..20899ea1de2 100644
19 --- a/net-irc/eggdrop/Manifest
20 +++ b/net-irc/eggdrop/Manifest
21 @@ -1,3 +1 @@
22 -DIST eggdrop-1.6.21-patches-1.0.tar.bz2 322608 BLAKE2B 5589b4c826b6144b2c5b68df485dfc361edf699d4cd6cf2760f410716664d34cc3dd7f22f2b5af67264ec5f4071e9a17907fa9796bd2712a9a86cbd6122a9c27 SHA512 d7d5d740c68997101f360096612700919c890c4254708102e962427de5929ce98f0f2eb5ad8dc8a56de60e8b610d502edeae7de2ac762fe0981134da379b6e64
23 DIST eggdrop-1.8.3.tar.gz 1756536 BLAKE2B c2693bc383e1d857fe784d54f34479e73902064196021788ddf21f0bb2910977c643d820d2f6b640bb459b2acbfad8158fc0b29b4d76c588dfd76fee09a6fa25 SHA512 ad3b93d18aaa05d0eb00f1089b68d1f077f316042e64fff511ad1bbac06d35105adcb503490faaac4c9fe720dd45a9f350115b6c5d0f41fe198f228213a7a3a3
24 -DIST eggdrop1.6.21.tar.bz2 999211 BLAKE2B f804ebe4f06176a6de7331d409f97ed1c3159cc32a8a06cb8c5c6e6a83bf181c7b9624a2a4aaee4d36361903a21b7ee1c052466faeebda357bb0675052e3a5da SHA512 9fd9a86c1c4b59a47a5eed4e2306e829a01bac2ad29e990ca9c0ec630d5814fd649a9216dae9ce49f734e3ac1728beb4f479ca10af583bd513f43bbbea23a653
25
26 diff --git a/net-irc/eggdrop/eggdrop-1.6.21-r1.ebuild b/net-irc/eggdrop/eggdrop-1.6.21-r1.ebuild
27 deleted file mode 100644
28 index f2f6d79bb71..00000000000
29 --- a/net-irc/eggdrop/eggdrop-1.6.21-r1.ebuild
30 +++ /dev/null
31 @@ -1,111 +0,0 @@
32 -# Copyright 1999-2018 Gentoo Foundation
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=6
36 -
37 -inherit eutils
38 -
39 -MY_P="eggdrop${PV}"
40 -PATCHSET_V="1.0"
41 -
42 -DESCRIPTION="An IRC bot extensible with C or TCL"
43 -HOMEPAGE="https://www.eggheads.org/"
44 -SRC_URI="
45 - ftp://ftp.eggheads.org/pub/eggdrop/source/1.6/${MY_P}.tar.bz2
46 - https://dev.gentoo.org/~binki/distfiles/${CATEGORY}/${PN}/${P}-patches-${PATCHSET_V}.tar.bz2"
47 -
48 -KEYWORDS="alpha amd64 ia64 ~mips ppc sparc x86"
49 -LICENSE="GPL-2"
50 -SLOT="0"
51 -IUSE="debug mysql postgres ssl static vanilla"
52 -
53 -REQUIRED_USE="vanilla? ( !mysql !postgres !ssl )"
54 -
55 -DEPEND="
56 - dev-lang/tcl:0
57 - sys-apps/gentoo-functions
58 - !vanilla? (
59 - mysql? ( virtual/mysql )
60 - postgres? ( dev-db/postgresql:*[server] )
61 - ssl? ( dev-libs/openssl:0= )
62 - )"
63 -RDEPEND="${DEPEND}"
64 -
65 -S=${WORKDIR}/${MY_P}
66 -
67 -src_prepare() {
68 - # fix bug 571004 and a QA warning
69 - epatch "${FILESDIR}/${P}-fix-gcc5-remove-inline.patch" \
70 - "${FILESDIR}/${P}-fix-memset.patch"
71 - if use vanilla; then
72 - rm -f "${WORKDIR}"/patch/[1-6]*.patch || die
73 - fi
74 -
75 - EPATCH_SUFFIX="patch" epatch
76 -
77 - # fix bug #335230
78 - sed -i \
79 - -e '/\$(LD)/s/-o/$(CFLAGS) $(LDFLAGS) &/' \
80 - src/mod/*.mod/Makefile* src/Makefile.in || die
81 - default
82 -}
83 -
84 -src_configure() {
85 - use mysql || ( echo mysql ; echo mystats ) >>disabled_modules
86 - use postgres || echo pgstats >>disabled_modules
87 - use static && ( echo rijndael ; echo twofish ) >>disabled_modules
88 -
89 - econf $(use_with ssl)
90 -
91 - emake config
92 -}
93 -
94 -src_compile() {
95 - local target=""
96 -
97 - if use static && use debug; then
98 - target="sdebug"
99 - elif use static; then
100 - target="static"
101 - elif use debug; then
102 - target="debug"
103 - fi
104 -
105 - emake -j1 ${target} # fixes #533490
106 -}
107 -
108 -src_install() {
109 - local a b
110 - emake DEST="${D}"/opt/eggdrop install
111 -
112 - for a in doc/*; do
113 - [ -f ${a} ] && dodoc ${a}
114 - done
115 -
116 - for a in src/mod/*.mod; do
117 - for b in README UPDATES INSTALL TODO CONTENTS; do
118 - [[ -f ${a}/${b} ]] && newdoc ${a}/${b} ${b}.${a##*/}
119 - done
120 - done
121 -
122 - dodoc text/motd.*
123 -
124 - use vanilla || dodoc \
125 - src/mod/botnetop.mod/botnetop.conf \
126 - src/mod/gseen.mod/gseen.conf \
127 - src/mod/mc_greet.mod/mc_greet.conf \
128 - src/mod/stats.mod/stats.conf \
129 - src/mod/away.mod/away.doc \
130 - src/mod/rcon.mod/matchbot.tcl \
131 - src/mod/mystats.mod/tools/mystats.{conf,sql} \
132 - src/mod/pgstats.mod/tools/{pgstats.conf,setup.sql}
133 -
134 - dodoc -r doc/html
135 -
136 - dobin "${FILESDIR}"/eggdrop-installer
137 - doman doc/man1/eggdrop.1
138 -}
139 -
140 -pkg_postinst() {
141 - elog "Please run /usr/bin/eggdrop-installer to install your eggdrop bot."
142 -}