diff options
Diffstat (limited to 'dev-python/python-bibtex')
-rw-r--r-- | dev-python/python-bibtex/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/python-bibtex/files/digest-python-bibtex-1.2.4 | 3 | ||||
-rw-r--r-- | dev-python/python-bibtex/python-bibtex-1.2.4.ebuild | 22 |
3 files changed, 31 insertions, 1 deletions
diff --git a/dev-python/python-bibtex/ChangeLog b/dev-python/python-bibtex/ChangeLog index 2bd388de8674..69518b96692b 100644 --- a/dev-python/python-bibtex/ChangeLog +++ b/dev-python/python-bibtex/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/python-bibtex # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-bibtex/ChangeLog,v 1.10 2007/03/13 00:06:28 nattfodd Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-bibtex/ChangeLog,v 1.11 2007/10/05 14:42:09 hawking Exp $ + +*python-bibtex-1.2.4 (05 Oct 2007) + + 05 Oct 2007; Ali Polatel <hawking@gentoo.org> +python-bibtex-1.2.4.ebuild: + version bump. fixes bug in escaping non title fields. 12 Mar 2007; Alexandre Buisse <nattfodd@gentoo.org> metadata.xml: Replaced text-markup by tex as maintaining herd (text-markup split). diff --git a/dev-python/python-bibtex/files/digest-python-bibtex-1.2.4 b/dev-python/python-bibtex/files/digest-python-bibtex-1.2.4 new file mode 100644 index 000000000000..8e098b378fb2 --- /dev/null +++ b/dev-python/python-bibtex/files/digest-python-bibtex-1.2.4 @@ -0,0 +1,3 @@ +MD5 6b1c260010df099bd8335846f81cac76 python-bibtex-1.2.4.tar.gz 57057 +RMD160 2ba97290b3d7d0ef6614326ba2cab0504026548e python-bibtex-1.2.4.tar.gz 57057 +SHA256 0df2e9cec2219aa08133972956d97eb9d641ac2e1e6a115fdded122ae18a1f7a python-bibtex-1.2.4.tar.gz 57057 diff --git a/dev-python/python-bibtex/python-bibtex-1.2.4.ebuild b/dev-python/python-bibtex/python-bibtex-1.2.4.ebuild new file mode 100644 index 000000000000..27aeb4f56d52 --- /dev/null +++ b/dev-python/python-bibtex/python-bibtex-1.2.4.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.4.ebuild,v 1.1 2007/10/05 14:42:09 hawking 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" +} |