diff options
author | Lukasz Strzygowski <lucass@gentoo.org> | 2007-02-25 10:26:09 +0000 |
---|---|---|
committer | Lukasz Strzygowski <lucass@gentoo.org> | 2007-02-25 10:26:09 +0000 |
commit | 7e5dc081368ca027b7de41e3209b6f5a1334ea9f (patch) | |
tree | ee96a5faf01d15a83dc83b6937d221673b9f5eab /dev-python/python-bibtex | |
parent | Initial commit, based on Paul Bredbury's ebuild from bug #110972 (diff) | |
download | gentoo-2-7e5dc081368ca027b7de41e3209b6f5a1334ea9f.tar.gz gentoo-2-7e5dc081368ca027b7de41e3209b6f5a1334ea9f.tar.bz2 gentoo-2-7e5dc081368ca027b7de41e3209b6f5a1334ea9f.zip |
Version bump (bug #167873). Added src_test.
(Portage version: 2.1.2-r10)
Diffstat (limited to 'dev-python/python-bibtex')
-rw-r--r-- | dev-python/python-bibtex/ChangeLog | 10 | ||||
-rw-r--r-- | dev-python/python-bibtex/files/digest-python-bibtex-1.2.3 | 3 | ||||
-rw-r--r-- | dev-python/python-bibtex/python-bibtex-1.2.3.ebuild | 22 |
3 files changed, 33 insertions, 2 deletions
diff --git a/dev-python/python-bibtex/ChangeLog b/dev-python/python-bibtex/ChangeLog index 8d8e24bdb348..04535cad1af7 100644 --- a/dev-python/python-bibtex/ChangeLog +++ b/dev-python/python-bibtex/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-python/python-bibtex -# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-bibtex/ChangeLog,v 1.8 2006/07/18 12:09:21 nattfodd Exp $ +# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-bibtex/ChangeLog,v 1.9 2007/02/25 10:26:09 lucass Exp $ + +*python-bibtex-1.2.3 (25 Feb 2007) + + 25 Feb 2007; Lukasz Strzygowski <lucass@gentoo.org> + +python-bibtex-1.2.3.ebuild: + Version bump (bug #167873). Added src_test. *python-bibtex-1.2.2 (18 Jul 2006) diff --git a/dev-python/python-bibtex/files/digest-python-bibtex-1.2.3 b/dev-python/python-bibtex/files/digest-python-bibtex-1.2.3 new file mode 100644 index 000000000000..29dfaaacaaf6 --- /dev/null +++ b/dev-python/python-bibtex/files/digest-python-bibtex-1.2.3 @@ -0,0 +1,3 @@ +MD5 7f20d7a2a6e817a66c9874944a1dd1a5 python-bibtex-1.2.3.tar.gz 56646 +RMD160 198564fb0757c24bbc1634cc01b14a2a76d38eda python-bibtex-1.2.3.tar.gz 56646 +SHA256 a419a10ae7bc265e500a0d5b6a7bdf68fb8b50616e613a7d137f7e71cc99ffa2 python-bibtex-1.2.3.tar.gz 56646 diff --git a/dev-python/python-bibtex/python-bibtex-1.2.3.ebuild b/dev-python/python-bibtex/python-bibtex-1.2.3.ebuild new file mode 100644 index 000000000000..d037361370d4 --- /dev/null +++ b/dev-python/python-bibtex/python-bibtex-1.2.3.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-bibtex/python-bibtex-1.2.3.ebuild,v 1.1 2007/02/25 10:26:09 lucass Exp $ + +inherit distutils + +DESCRIPTION="A Python extension to parse BibTeX files" +HOMEPAGE="http://pybliographer.org/" +SRC_URI="mirror://sourceforge/pybliographer/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ia64 ~ppc ~x86" + +IUSE="" + +DEPEND=">=dev-libs/glib-2 + >=app-text/recode-3.6-r1" + +src_test() { + ${python} setup.py check || die "tests failed" +} |