mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-20 05:41:12 +02:00
pdfminer: inital ebuild, a dep for w3af
This commit is contained in:
parent
46b46086a0
commit
3e7a7fbb26
4 changed files with 67 additions and 0 deletions
5
app-text/pdfminer/Manifest
Normal file
5
app-text/pdfminer/Manifest
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
DIST pdfminer-20110515.tar.gz 4068046 SHA256 114bddcc196b1ce893ab78815e3682ef7c56e9f5990e469dcc64cba93821b8ef SHA512 87e66c4a864259e7b75581ec95c5e1e9bfb79a4a126e7ec6e23c55d6954b0766f0aa874291c770089c7fb2b72d6c8c6bbc2e54612a30c90150437d5ce850c0e3 WHIRLPOOL 99e30cfe7dfe7bcebe8ec06afcc20e549a807166b10a744a90fd1ffd821d505b3820e243015aa540faab50a6f10988bdcadb97d33ff2ec4343ff596187386cb6
|
||||
DIST pdfminer-20140328.tar.gz 4081233 SHA256 ba187b93056586a14edd5e630cf63ae96b1cc84b611f55dcddbc997316d9f262 SHA512 8abb2328f7824ee980df0ce42d758c15534e97379ea9213b4aa1d29864d24d73c9e2d6020964e9ab734c0c6f7d1ae70bccbd6605168eaadf83923718a1f4849a WHIRLPOOL 0f1e5e10936d2a6f02872699812e4b8449875330f1dbb668a15c5a85c94d3cb2cf5cb471fb280159df20fa454344b1256469180cdfb5ec3091df07e49c283264
|
||||
EBUILD pdfminer-20110515.ebuild 766 SHA256 d13ab0f3c8b29ad76fb0b5dc1204ba7807992783f310af4e52f42ffdb3efa705 SHA512 f2b3d61235f535ec7048bb6d40eeaa0f8f818f259693f557b493e43047417661303c488078d571fb03172d62d235d4b896d7b8bef60d6b1da32e6e2f94436102 WHIRLPOOL 7dd7c49de8151f0f8fc2d209ecf27e4444a38b0d78dad160132384d2181f43e812745f2766dc1df37205da32f0d6ed7d7d5aa4652be4687b0e4042327505ba01
|
||||
EBUILD pdfminer-20140328.ebuild 766 SHA256 d13ab0f3c8b29ad76fb0b5dc1204ba7807992783f310af4e52f42ffdb3efa705 SHA512 f2b3d61235f535ec7048bb6d40eeaa0f8f818f259693f557b493e43047417661303c488078d571fb03172d62d235d4b896d7b8bef60d6b1da32e6e2f94436102 WHIRLPOOL 7dd7c49de8151f0f8fc2d209ecf27e4444a38b0d78dad160132384d2181f43e812745f2766dc1df37205da32f0d6ed7d7d5aa4652be4687b0e4042327505ba01
|
||||
MISC metadata.xml 231 SHA256 d427e0ad12d0540a098590b3e8bc0aaba16a435e8dce15d13119cb9f3a8660f8 SHA512 75d9d2cf2a8e4e62fc78820dc185fbe4f9c694b2d2fdf54dcfa95abcc824905e1995c4dc8e17447783fdaa6db5696778ab51a2353900ef85b1a09329847e4a0f WHIRLPOOL d1faff66da75b8160f191bcf2baafb489b2cfa012c7859b10ba60b5107565a8afa2386b40d9036e40dccb473c8351d528d13706d600d79d067f4096d4b7d12ab
|
||||
8
app-text/pdfminer/metadata.xml
Normal file
8
app-text/pdfminer/metadata.xml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<herd>python</herd>
|
||||
<upstream>
|
||||
<remote-id type="pypi">pdfminer</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
27
app-text/pdfminer/pdfminer-20110515.ebuild
Normal file
27
app-text/pdfminer/pdfminer-20110515.ebuild
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/app-text/pdfminer/pdfminer-20131113.ebuild,v 1.1 2014/04/07 14:35:18 idella4 Exp $
|
||||
|
||||
EAPI=5
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Python tool for extracting information from PDF documents"
|
||||
HOMEPAGE="http://www.unixuser.org/~euske/python/pdfminer/ http://pypi.python.org/pypi/pdfminer/"
|
||||
SRC_URI="mirror://pypi/p/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="doc examples"
|
||||
|
||||
python_compile_all(){
|
||||
use examples && emake -C samples all
|
||||
}
|
||||
|
||||
python_install_all() {
|
||||
use doc && local HTML_DOCS=( docs/. )
|
||||
use examples && local EXAMPLES=( samples/. )
|
||||
distutils-r1_python_install_all
|
||||
}
|
||||
27
app-text/pdfminer/pdfminer-20140328.ebuild
Normal file
27
app-text/pdfminer/pdfminer-20140328.ebuild
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/app-text/pdfminer/pdfminer-20131113.ebuild,v 1.1 2014/04/07 14:35:18 idella4 Exp $
|
||||
|
||||
EAPI=5
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Python tool for extracting information from PDF documents"
|
||||
HOMEPAGE="http://www.unixuser.org/~euske/python/pdfminer/ http://pypi.python.org/pypi/pdfminer/"
|
||||
SRC_URI="mirror://pypi/p/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="doc examples"
|
||||
|
||||
python_compile_all(){
|
||||
use examples && emake -C samples all
|
||||
}
|
||||
|
||||
python_install_all() {
|
||||
use doc && local HTML_DOCS=( docs/. )
|
||||
use examples && local EXAMPLES=( samples/. )
|
||||
distutils-r1_python_install_all
|
||||
}
|
||||
Loading…
Reference in a new issue