Gentoo Archives: gentoo-commits

From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-irc/supybot: ChangeLog supybot-0.83.4.1-r1.ebuild
Date: Sun, 31 Oct 2010 19:13:54
Message-Id: 20101031191348.CD65220051@flycatcher.gentoo.org
1 arfrever 10/10/31 19:13:48
2
3 Modified: ChangeLog supybot-0.83.4.1-r1.ebuild
4 Log:
5 Disable support for pysqlite.
6
7 (Portage version: 2.2.0_alpha2_p3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.37 net-irc/supybot/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/supybot/ChangeLog?rev=1.37&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/supybot/ChangeLog?rev=1.37&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/supybot/ChangeLog?r1=1.36&r2=1.37
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-irc/supybot/ChangeLog,v
19 retrieving revision 1.36
20 retrieving revision 1.37
21 diff -u -r1.36 -r1.37
22 --- ChangeLog 4 Apr 2010 21:01:51 -0000 1.36
23 +++ ChangeLog 31 Oct 2010 19:13:48 -0000 1.37
24 @@ -1,6 +1,10 @@
25 # ChangeLog for net-irc/supybot
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-irc/supybot/ChangeLog,v 1.36 2010/04/04 21:01:51 arfrever Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-irc/supybot/ChangeLog,v 1.37 2010/10/31 19:13:48 arfrever Exp $
29 +
30 + 31 Oct 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
31 + supybot-0.83.4.1-r1.ebuild:
32 + Disable support for pysqlite.
33
34 04 Apr 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
35 supybot-0.83.4.1-r1.ebuild:
36
37
38
39 1.7 net-irc/supybot/supybot-0.83.4.1-r1.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/supybot/supybot-0.83.4.1-r1.ebuild?rev=1.7&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/supybot/supybot-0.83.4.1-r1.ebuild?rev=1.7&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/supybot/supybot-0.83.4.1-r1.ebuild?r1=1.6&r2=1.7
44
45 Index: supybot-0.83.4.1-r1.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/net-irc/supybot/supybot-0.83.4.1-r1.ebuild,v
48 retrieving revision 1.6
49 retrieving revision 1.7
50 diff -u -r1.6 -r1.7
51 --- supybot-0.83.4.1-r1.ebuild 4 Apr 2010 21:01:51 -0000 1.6
52 +++ supybot-0.83.4.1-r1.ebuild 31 Oct 2010 19:13:48 -0000 1.7
53 @@ -1,10 +1,11 @@
54 # Copyright 1999-2010 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/net-irc/supybot/supybot-0.83.4.1-r1.ebuild,v 1.6 2010/04/04 21:01:51 arfrever Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/net-irc/supybot/supybot-0.83.4.1-r1.ebuild,v 1.7 2010/10/31 19:13:48 arfrever Exp $
58
59 EAPI="3"
60 PYTHON_DEPEND="2"
61 SUPPORT_PYTHON_ABIS="1"
62 +RESTRICT_PYTHON_ABIS="3.*"
63
64 inherit distutils
65
66 @@ -18,35 +19,33 @@
67 LICENSE="BSD"
68 SLOT="0"
69 KEYWORDS="amd64 ppc ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris"
70 -IUSE="sqlite twisted"
71 +IUSE="twisted"
72
73 -DEPEND="twisted? ( >=dev-python/twisted-8.1.0[crypt]
74 - >=dev-python/twisted-names-8.1.0 )
75 - sqlite? ( <dev-python/pysqlite-1.1 )
76 +DEPEND="twisted? (
77 + >=dev-python/twisted-8.1.0[crypt]
78 + >=dev-python/twisted-names-8.1.0
79 + )
80 !<net-irc/supybot-plugins-20060723-r1"
81 RDEPEND="${DEPEND}"
82 -RESTRICT_PYTHON_ABIS="3.*"
83
84 -S=${WORKDIR}/${MY_P}
85 +S="${WORKDIR}/${MY_P}"
86
87 DOCS="ACKS RELNOTES docs/*"
88
89 src_install() {
90 distutils_src_install
91 - doman docs/man/*
92 + doman docs/man/* || die "doman failed"
93 }
94
95 pkg_postinst() {
96 distutils_pkg_postinst
97
98 - elog "Use supybot-wizard to create a configuration file"
99 - use sqlite || \
100 - elog "Some plugins may require emerge with USE=\"sqlite\" to work."
101 - use twisted && \
102 - elog "If you want to use Twisted as your supybot.driver, add it to your"
103 - elog "config file: supybot.drivers.module = Twisted."
104 - elog "You will need this for SSL connections"
105 - use twisted || \
106 - elog "To allow supybot to use Twisted as driver, re-emerge with"
107 - elog "USE=\"twisted\" flag. You will need this for SSL Connections"
108 + elog "Use supybot-wizard to create a configuration file."
109 + if use twisted; then
110 + elog "If you want to use Twisted as your supybot.driver, add it to your config file:"
111 + elog "supybot.drivers.module = Twisted"
112 + else
113 + elog "To allow supybot to use Twisted as driver, reinstall supybot with \"twisted\" USE flag enabled."
114 + fi
115 + elog "You will need this for SSL connections."
116 }