diff options
author | Ali Polatel <hawking@gentoo.org> | 2007-12-04 09:24:25 +0000 |
---|---|---|
committer | Ali Polatel <hawking@gentoo.org> | 2007-12-04 09:24:25 +0000 |
commit | 4417fcc944b2c6c66631294a785a39d13fb94c6c (patch) | |
tree | 7b2bbfdfd0cd1174a3544df61db4ec1bb891d7ce /net-irc/supybot | |
parent | Revbump. Added patch to prevent running against other SLOTs of wxpython, #201... (diff) | |
download | gentoo-2-4417fcc944b2c6c66631294a785a39d13fb94c6c.tar.gz gentoo-2-4417fcc944b2c6c66631294a785a39d13fb94c6c.tar.bz2 gentoo-2-4417fcc944b2c6c66631294a785a39d13fb94c6c.zip |
Version bump.
(Portage version: 2.1.4_rc4)
Diffstat (limited to 'net-irc/supybot')
-rw-r--r-- | net-irc/supybot/ChangeLog | 7 | ||||
-rw-r--r-- | net-irc/supybot/files/digest-supybot-0.83.3 | 3 | ||||
-rw-r--r-- | net-irc/supybot/supybot-0.83.3.ebuild | 38 |
3 files changed, 47 insertions, 1 deletions
diff --git a/net-irc/supybot/ChangeLog b/net-irc/supybot/ChangeLog index c75eeb4b085f..5917beba3060 100644 --- a/net-irc/supybot/ChangeLog +++ b/net-irc/supybot/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-irc/supybot # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/supybot/ChangeLog,v 1.24 2007/08/30 12:42:47 phreak Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/supybot/ChangeLog,v 1.25 2007/12/04 09:24:25 hawking Exp $ + +*supybot-0.83.3 (04 Dec 2007) + + 04 Dec 2007; Ali Polatel <hawking@gentoo.org> +supybot-0.83.3.ebuild: + Version bump. 30 Aug 2007; Christian Heim <phreak@gentoo.org> metadata.xml: Removing liquidx from metadata due to his retirement (see #171155 for diff --git a/net-irc/supybot/files/digest-supybot-0.83.3 b/net-irc/supybot/files/digest-supybot-0.83.3 new file mode 100644 index 000000000000..d3354e4540fe --- /dev/null +++ b/net-irc/supybot/files/digest-supybot-0.83.3 @@ -0,0 +1,3 @@ +MD5 72f8f28f1d847b9070be1bc5f8b002a4 Supybot-0.83.3.tar.bz2 382114 +RMD160 f8f2fff7fb406d12c499cf6b974227e47c9907f1 Supybot-0.83.3.tar.bz2 382114 +SHA256 5689325a20b71d1d652f17bdc3eacdaf012a5c885831f9998c161c09d39d5810 Supybot-0.83.3.tar.bz2 382114 diff --git a/net-irc/supybot/supybot-0.83.3.ebuild b/net-irc/supybot/supybot-0.83.3.ebuild new file mode 100644 index 000000000000..94adba870c3f --- /dev/null +++ b/net-irc/supybot/supybot-0.83.3.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-irc/supybot/supybot-0.83.3.ebuild,v 1.1 2007/12/04 09:24:25 hawking Exp $ + +NEED_PYTHON=2.3 +inherit distutils + +MY_P=${P/supybot/Supybot} +MY_P=${MY_P/_rc/rc} + +DESCRIPTION="Python based extensible IRC infobot and channel bot" +HOMEPAGE="http://supybot.sf.net/" +SRC_URI="mirror://sourceforge/supybot/${MY_P}.tar.bz2" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-fbsd" +IUSE="sqlite" + +DEPEND=">=dev-python/twisted-1.2.0 + sqlite? ( <dev-python/pysqlite-1.1 )" +RDEPEND="${DEPEND}" + +S=${WORKDIR}/${MY_P} + +DOCS="ACKS RELNOTES docs/*" + +src_install() { + distutils_src_install + doman docs/man/* +} + +pkg_postinst() { + distutils_pkg_postinst + elog "Use supybot-wizard to create a configuration file" + use sqlite || \ + elog "Some plugins may require emerge with USE=\"sqlite\" to work." +} |