Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-text/pdfminer: pdfminer-20140328.ebuild ChangeLog pdfminer-20110515.ebuild
Date: Thu, 01 May 2014 10:43:08
Message-Id: 20140501104305.351272004C@flycatcher.gentoo.org
1 idella4 14/05/01 10:43:05
2
3 Modified: ChangeLog
4 Added: pdfminer-20140328.ebuild
5 Removed: pdfminer-20110515.ebuild
6 Log:
7 bump, add pypy support, drop old
8
9 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
10
11 Revision Changes Path
12 1.4 app-text/pdfminer/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pdfminer/ChangeLog?rev=1.4&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pdfminer/ChangeLog?rev=1.4&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pdfminer/ChangeLog?r1=1.3&r2=1.4
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-text/pdfminer/ChangeLog,v
21 retrieving revision 1.3
22 retrieving revision 1.4
23 diff -u -r1.3 -r1.4
24 --- ChangeLog 7 Apr 2014 14:35:18 -0000 1.3
25 +++ ChangeLog 1 May 2014 10:43:05 -0000 1.4
26 @@ -1,6 +1,12 @@
27 # ChangeLog for app-text/pdfminer
28 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/app-text/pdfminer/ChangeLog,v 1.3 2014/04/07 14:35:18 idella4 Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/app-text/pdfminer/ChangeLog,v 1.4 2014/05/01 10:43:05 idella4 Exp $
31 +
32 +*pdfminer-20140328 (01 May 2014)
33 +
34 + 01 May 2014; Ian Delaney <idella4@g.o> +pdfminer-20140328.ebuild,
35 + -pdfminer-20110515.ebuild:
36 + bump, add pypy support, drop old
37
38 *pdfminer-20131113 (07 Apr 2014)
39
40
41
42
43 1.1 app-text/pdfminer/pdfminer-20140328.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pdfminer/pdfminer-20140328.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pdfminer/pdfminer-20140328.ebuild?rev=1.1&content-type=text/plain
47
48 Index: pdfminer-20140328.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-text/pdfminer/pdfminer-20140328.ebuild,v 1.1 2014/05/01 10:43:05 idella4 Exp $
53
54 EAPI=5
55 PYTHON_COMPAT=( python2_7 pypy )
56
57 inherit distutils-r1
58
59 DESCRIPTION="Python tool for extracting information from PDF documents"
60 HOMEPAGE="http://www.unixuser.org/~euske/python/pdfminer/ http://pypi.python.org/pypi/pdfminer/"
61 SRC_URI="mirror://pypi/p/${PN}/${P}.tar.gz"
62
63 LICENSE="MIT"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86"
66 IUSE="doc examples"
67
68 python_compile_all(){
69 use examples && emake -C samples all
70 }
71
72 python_install_all() {
73 use doc && local HTML_DOCS=( docs/. )
74 use examples && local EXAMPLES=( samples/. )
75 distutils-r1_python_install_all
76 }