Gentoo Archives: gentoo-commits

From: "Maxim Koltsov (maksbotan)" <maksbotan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-irc/supybot: ChangeLog supybot-0.83.4.1-r2.ebuild supybot-0.83.4.1-r1.ebuild
Date: Sat, 24 Dec 2011 16:20:56
Message-Id: 20111224162043.52E512004B@flycatcher.gentoo.org
1 maksbotan 11/12/24 16:20:43
2
3 Modified: ChangeLog
4 Added: supybot-0.83.4.1-r2.ebuild
5 Removed: supybot-0.83.4.1-r1.ebuild
6 Log:
7 Add proper depend on pysqlite, bug 393285
8
9 (Portage version: 2.1.10.41/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.40 net-irc/supybot/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/supybot/ChangeLog?rev=1.40&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/supybot/ChangeLog?rev=1.40&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/supybot/ChangeLog?r1=1.39&r2=1.40
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-irc/supybot/ChangeLog,v
21 retrieving revision 1.39
22 retrieving revision 1.40
23 diff -u -r1.39 -r1.40
24 --- ChangeLog 11 Jul 2011 12:23:47 -0000 1.39
25 +++ ChangeLog 24 Dec 2011 16:20:42 -0000 1.40
26 @@ -1,6 +1,13 @@
27 # ChangeLog for net-irc/supybot
28 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/net-irc/supybot/ChangeLog,v 1.39 2011/07/11 12:23:47 neurogeek Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/net-irc/supybot/ChangeLog,v 1.40 2011/12/24 16:20:42 maksbotan Exp $
31 +
32 +*supybot-0.83.4.1-r2 (24 Dec 2011)
33 +
34 + 24 Dec 2011; Maxim Koltsov <maksbotan@g.o>
35 + +supybot-0.83.4.1-r2.ebuild:
36 + Add proper depend on pysqlite, bug 393285. Drop arm keyword until pysqlite is
37 + keyworded for it
38
39 11 Jul 2011; Jesus Rivero <neurogeek@g.o>
40 supybot-0.83.4.1-r1.ebuild:
41
42
43
44 1.1 net-irc/supybot/supybot-0.83.4.1-r2.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/supybot/supybot-0.83.4.1-r2.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/supybot/supybot-0.83.4.1-r2.ebuild?rev=1.1&content-type=text/plain
48
49 Index: supybot-0.83.4.1-r2.ebuild
50 ===================================================================
51 # Copyright 1999-2011 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/net-irc/supybot/supybot-0.83.4.1-r2.ebuild,v 1.1 2011/12/24 16:20:42 maksbotan Exp $
54
55 EAPI="3"
56 PYTHON_DEPEND="2"
57 SUPPORT_PYTHON_ABIS="1"
58 RESTRICT_PYTHON_ABIS="3.*"
59
60 inherit distutils
61
62 MY_P="${P/supybot/Supybot}"
63 MY_P="${MY_P/_rc/rc}"
64
65 DESCRIPTION="Python based extensible IRC infobot and channel bot"
66 HOMEPAGE="http://supybot.sf.net/"
67 SRC_URI="mirror://sourceforge/supybot/${MY_P}.tar.bz2"
68
69 LICENSE="BSD"
70 SLOT="0"
71 KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris"
72 IUSE="twisted"
73
74 DEPEND="twisted? (
75 >=dev-python/twisted-8.1.0[crypt]
76 >=dev-python/twisted-names-8.1.0
77 )
78 !<net-irc/supybot-plugins-20060723-r1"
79 RDEPEND="${DEPEND}
80 dev-python/pysqlite:0"
81
82 S="${WORKDIR}/${MY_P}"
83
84 DOCS="ACKS RELNOTES docs/[!man]*"
85
86 src_install() {
87 distutils_src_install
88 doman docs/man/* || die "doman failed"
89 }
90
91 pkg_postinst() {
92 distutils_pkg_postinst
93
94 elog "Use supybot-wizard to create a configuration file."
95 if use twisted; then
96 elog "If you want to use Twisted as your supybot.driver, add it to your config file:"
97 elog "supybot.drivers.module = Twisted"
98 else
99 elog "To allow supybot to use Twisted as driver, reinstall supybot with \"twisted\" USE flag enabled."
100 fi
101 elog "You will need this for SSL connections."
102 }