Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-irc/limnoria: metadata.xml limnoria-20150208.ebuild limnoria-99999999.ebuild Manifest ChangeLog
Date: Wed, 04 Mar 2015 09:13:43
Message-Id: 20150304091338.C252F1302E@oystercatcher.gentoo.org
1 idella4 15/03/04 09:13:38
2
3 Added: metadata.xml limnoria-20150208.ebuild
4 limnoria-99999999.ebuild Manifest ChangeLog
5 Log:
6 new package, a fork of supybot which has ceased active development. ebuild base on the old supybot ebuild, re-written by proxy maintainer, ebuilds extensively developed and tested with submissions upstream which is currently active. No corresponding bug for this
7
8 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
9
10 Revision Changes Path
11 1.1 net-irc/limnoria/metadata.xml
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/limnoria/metadata.xml?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/limnoria/metadata.xml?rev=1.1&content-type=text/plain
15
16 Index: metadata.xml
17 ===================================================================
18 <?xml version="1.0" encoding="UTF-8"?>
19 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
20 <pkgmetadata>
21 <herd>proxy-maintainers</herd>
22 <maintainer>
23 <email>idella4@g.o</email>
24 </maintainer>
25 <maintainer>
26 <email>np.hardass@×××××.com</email>
27 <name>NP-Hardass</name>
28 <description>proxy maintainer and recipient of bugs</description>
29 </maintainer>
30 <use>
31 <flag name="crypt">Enables user authentication with GPG</flag>
32 </use>
33 </pkgmetadata>
34
35
36
37 1.1 net-irc/limnoria/limnoria-20150208.ebuild
38
39 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/limnoria/limnoria-20150208.ebuild?rev=1.1&view=markup
40 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/limnoria/limnoria-20150208.ebuild?rev=1.1&content-type=text/plain
41
42 Index: limnoria-20150208.ebuild
43 ===================================================================
44 # Copyright 1999-2015 Gentoo Foundation
45 # Distributed under the terms of the GNU General Public License v2
46 # $Header: /var/cvsroot/gentoo-x86/net-irc/limnoria/limnoria-20150208.ebuild,v 1.1 2015/03/04 09:13:38 idella4 Exp $
47
48 EAPI="5"
49 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
50
51 inherit distutils-r1
52
53 MY_PV="${PV:0:4}-${PV:4:2}-${PV:6:2}"
54 MY_PN="Limnoria"
55 MY_P="${MY_PN}-${MY_PV}"
56
57 if [[ ${PV} == "99999999" ]]; then
58 EGIT_REPO_URI="git://github.com/ProgVal/Limnoria.git"
59 EGIT_BRANCH="master"
60 inherit git-r3
61 SRC_URI=""
62 else
63 SRC_URI="https://github.com/ProgVal/${MY_PN}/archive/master-${MY_PV}.tar.gz -> ${P}.tar.gz"
64 KEYWORDS="~amd64 ~x86"
65 S="${WORKDIR}/${MY_PN}-master-${MY_PV}"
66 fi
67
68 DESCRIPTION="Python based extensible IRC infobot and channel bot"
69 HOMEPAGE="http://supybot.aperio.fr/"
70 LICENSE="BSD"
71 SLOT="0"
72 IUSE="crypt test"
73
74 RDEPEND="
75 dev-python/charade[${PYTHON_USEDEP}]
76 dev-python/ecdsa[${PYTHON_USEDEP}]
77 dev-python/feedparser[${PYTHON_USEDEP}]
78 dev-python/python-dateutil[${PYTHON_USEDEP}]
79 dev-python/pytz[${PYTHON_USEDEP}]
80 dev-python/socksipy[${PYTHON_USEDEP}]
81 dev-python/sqlalchemy[${PYTHON_USEDEP}]
82 crypt? ( dev-python/python-gnupg[${PYTHON_USEDEP}] )
83 !net-irc/supybot
84 !net-irc/supybot-plugins
85 "
86 DEPEND="${RDEPEND}
87 test? ( $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' python2_7) )"
88
89 src_unpack() {
90 if [[ ${PV} == "99999999" ]]; then
91 git-r3_src_unpack
92 else
93 unpack ${P}.tar.gz
94 fi
95 }
96
97 python_prepare(){
98 distutils-r1_python_prepare
99 if python_is_python3; then
100 einfo "Removing the RSS plugin because of clashes between libxml2's Python3"
101 einfo "bindings and feedparser."
102 rm -rf "plugins/RSS" || die
103 fi
104 }
105
106 python_install_all() {
107 distutils-r1_python_install_all
108 doman man/*
109 }
110
111 python_test() {
112 pushd "${T}" > /dev/null
113 PLUGINS_DIR="${BUILD_DIR}/lib/supybot/plugins"
114 # recommended by upstream, unknown random failure
115 EXCLUDE_PLUGINS=( --exclude="${PLUGINS_DIR}/Scheduler" )
116 # recommended by upstream, unknown random failure
117 EXCLUDE_PLUGINS+=( --exclude="${PLUGINS_DIR}/Filter" )
118 # intermittent failure due to issues loading libsandbox.so from LD_PRELOAD
119 # runs successfully when running the tests on the installed system
120 EXCLUDE_PLUGINS+=( --exclude="${PLUGINS_DIR}/Unix" )
121 "${PYTHON}" "${BUILD_DIR}"/scripts/supybot-test \
122 --plugins-dir="${PLUGINS_DIR}" --no-network \
123 --disable-multiprocessing "${EXCLUDE_PLUGINS[@]}" \
124 || die "Tests failed under ${EPYTHON}"
125 popd > /dev/null
126 }
127
128 pkg_postinst() {
129 elog "Complete user documentation is available at https://limnoria-doc.readthedocs.org/"
130 elog ""
131 elog "Use supybot-wizard to create a configuration file."
132 elog "Run supybot </path/to/config> to use the bot."
133 elog ""
134 elog "There are additional plugins available in net-im/limnoria-plugins"
135 elog ""
136 }
137
138
139
140 1.1 net-irc/limnoria/limnoria-99999999.ebuild
141
142 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/limnoria/limnoria-99999999.ebuild?rev=1.1&view=markup
143 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/limnoria/limnoria-99999999.ebuild?rev=1.1&content-type=text/plain
144
145 Index: limnoria-99999999.ebuild
146 ===================================================================
147 # Copyright 1999-2015 Gentoo Foundation
148 # Distributed under the terms of the GNU General Public License v2
149 # $Header: /var/cvsroot/gentoo-x86/net-irc/limnoria/limnoria-99999999.ebuild,v 1.1 2015/03/04 09:13:38 idella4 Exp $
150
151 EAPI="5"
152 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
153
154 inherit distutils-r1
155
156 MY_PV="${PV:0:4}-${PV:4:2}-${PV:6:2}"
157 MY_PN="Limnoria"
158 MY_P="${MY_PN}-${MY_PV}"
159
160 if [[ ${PV} == "99999999" ]]; then
161 EGIT_REPO_URI="git://github.com/ProgVal/Limnoria.git"
162 EGIT_BRANCH="master"
163 inherit git-r3
164 SRC_URI=""
165 else
166 SRC_URI="https://github.com/ProgVal/${MY_PN}/archive/master-${MY_PV}.tar.gz -> ${P}.tar.gz"
167 KEYWORDS="~amd64 ~x86"
168 S="${WORKDIR}/${MY_PN}-master-${MY_PV}"
169 fi
170
171 DESCRIPTION="Python based extensible IRC infobot and channel bot"
172 HOMEPAGE="http://supybot.aperio.fr/"
173 LICENSE="BSD"
174 SLOT="0"
175 IUSE="crypt test"
176
177 RDEPEND="
178 dev-python/charade[${PYTHON_USEDEP}]
179 dev-python/ecdsa[${PYTHON_USEDEP}]
180 dev-python/feedparser[${PYTHON_USEDEP}]
181 dev-python/python-dateutil[${PYTHON_USEDEP}]
182 dev-python/pytz[${PYTHON_USEDEP}]
183 dev-python/socksipy[${PYTHON_USEDEP}]
184 dev-python/sqlalchemy[${PYTHON_USEDEP}]
185 crypt? ( dev-python/python-gnupg[${PYTHON_USEDEP}] )
186 !net-irc/supybot
187 !net-irc/supybot-plugins
188 "
189 DEPEND="${RDEPEND}
190 test? ( $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' python2_7) )"
191
192 src_unpack() {
193 if [[ ${PV} == "99999999" ]]; then
194 git-r3_src_unpack
195 else
196 unpack ${P}.tar.gz
197 fi
198 }
199
200 python_prepare(){
201 distutils-r1_python_prepare
202 if python_is_python3; then
203 einfo "Removing the RSS plugin because of clashes between libxml2's Python3"
204 einfo "bindings and feedparser."
205 rm -rf "plugins/RSS" || die
206 fi
207 }
208
209 python_install_all() {
210 distutils-r1_python_install_all
211 doman man/*
212 }
213
214 python_test() {
215 pushd "${T}" > /dev/null
216 PLUGINS_DIR="${BUILD_DIR}/lib/supybot/plugins"
217 # recommended by upstream, unknown random failure
218 EXCLUDE_PLUGINS=( --exclude="${PLUGINS_DIR}/Scheduler" )
219 # recommended by upstream, unknown random failure
220 EXCLUDE_PLUGINS+=( --exclude="${PLUGINS_DIR}/Filter" )
221 # intermittent failure due to issues loading libsandbox.so from LD_PRELOAD
222 # runs successfully when running the tests on the installed system
223 EXCLUDE_PLUGINS+=( --exclude="${PLUGINS_DIR}/Unix" )
224 "${PYTHON}" "${BUILD_DIR}"/scripts/supybot-test "${BUILD_DIR}/../test" \
225 --plugins-dir="${PLUGINS_DIR}" --no-network \
226 --disable-multiprocessing "${EXCLUDE_PLUGINS[@]}" \
227 || die "Tests failed under ${EPYTHON}"
228 popd > /dev/null
229 }
230
231 pkg_postinst() {
232 elog "Complete user documentation is available at https://limnoria-doc.readthedocs.org/"
233 elog ""
234 elog "Use supybot-wizard to create a configuration file."
235 elog "Run supybot </path/to/config> to use the bot."
236 elog ""
237 elog "There are additional plugins available in net-im/limnoria-plugins"
238 elog ""
239 }
240
241
242
243 1.1 net-irc/limnoria/Manifest
244
245 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/limnoria/Manifest?rev=1.1&view=markup
246 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/limnoria/Manifest?rev=1.1&content-type=text/plain
247
248 Index: Manifest
249 ===================================================================
250 DIST limnoria-20150208.tar.gz 902312 SHA256 2d30bb0f2054a159bc8074c7d286611fed4ccb3841900dabfc2393f666ba11ad SHA512 df4db9f7b0c8a016f19488c8229509fcea61b75856c6fc342bc35935c5e253532307013674fe544d31eeffbc9bcb48788aae74010352ff70f142276407aeb6ef WHIRLPOOL c8f6c8f3d3a527454216bbd66db7525c4dcc544e2a1be8e966d10603471458f7184da99a075589938626dd8229c0e4076ec06cc92b9d34efd94c5d8f0f9ca2eb
251 EBUILD limnoria-20150208.ebuild 2657 SHA256 b76814ce329db03284c64d7e4bb72a1d353285f8e1d48eb3735f9fa26141d355 SHA512 29558369b3eb314c0518d24524673cca620f669d409f8af65b63d6f904d3a0256697603f347a4d5c5235bbf6d110e6f1d8868a7264f6f146abc9261e595420ca WHIRLPOOL 0792aa3c8437c17723d693206aa3a5ad7cf2af73c51f062801edeb2d0e892a420c41af62b75cd09dd8e13f0abfca70af4263097bee624b4e3540e619d023a0bf
252 EBUILD limnoria-99999999.ebuild 2680 SHA256 693d1217bb24e78ed2d9ff8ca57243d270c3bb87e8d01e25dcbb0ff898644976 SHA512 f20aaa1f550dd905661cea6be7512e379583484e3a56ef85e90d2ed11c006020f6543d5366b135ca2e5886e9396bb93274d797ffd7440430388abc6761a185dd WHIRLPOOL 9e24d18fec4b0aef35eae4b76f83b6b609f46f63f0243043fee449b936b9cea0fe9c380c8b33ca40cc07f0f1850433892c0e29b7010eb55af87fcf83e9d71654
253 MISC metadata.xml 477 SHA256 a6eba8192097a9d15384a11b5691ded2b0a83d57a4006a78a2af0b03d6f00423 SHA512 f8aa94af426f01f436e7ccb60bea47343216c1b45232825a278b5f7155a9cb98fbd546ba74878529ffc8a9c28f1d0e78335040cf4d101427e72060a05053c83b WHIRLPOOL 40f8a2b5011881da7a35f749cf07e52aaad830447c62ce9f15e88f54c17ec3a34a7c1c3a3c9ebe669bb54e7ba49efd0585e4bb61ab6fbd121026d49259945750
254
255
256
257 1.1 net-irc/limnoria/ChangeLog
258
259 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/limnoria/ChangeLog?rev=1.1&view=markup
260 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/limnoria/ChangeLog?rev=1.1&content-type=text/plain
261
262 Index: ChangeLog
263 ===================================================================
264 # ChangeLog for net-irc/limnoria
265 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
266 # $Header: /var/cvsroot/gentoo-x86/net-irc/limnoria/ChangeLog,v 1.1 2015/03/04 09:13:38 idella4 Exp $
267
268 *limnoria-20150208 (04 Mar 2015)
269 *limnoria-99999999 (04 Mar 2015)
270
271 04 Mar 2015; Ian Delaney <idella4@g.o> +limnoria-20150208.ebuild,
272 +limnoria-99999999.ebuild, +metadata.xml:
273 new package, a fork of supybot which has ceased active development. ebuild
274 base on the old supybot ebuild, re-written by proxy maintainer, ebuilds
275 extensively developed and tested with submissions upstream which is currently
276 active. No corresponding bug for this