From 8376ef56580626e9c0f796d5b85b53a0a1c7d5f5 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 14 Jul 2018 21:03:06 +0100 Subject: gentoo resync : 14.07.2018 --- app-text/pdfminer/Manifest | 6 ++++++ app-text/pdfminer/metadata.xml | 8 +++++++ app-text/pdfminer/pdfminer-20131113.ebuild | 26 +++++++++++++++++++++++ app-text/pdfminer/pdfminer-20140328-r1.ebuild | 30 +++++++++++++++++++++++++++ app-text/pdfminer/pdfminer-20140328.ebuild | 26 +++++++++++++++++++++++ 5 files changed, 96 insertions(+) create mode 100644 app-text/pdfminer/Manifest create mode 100644 app-text/pdfminer/metadata.xml create mode 100644 app-text/pdfminer/pdfminer-20131113.ebuild create mode 100644 app-text/pdfminer/pdfminer-20140328-r1.ebuild create mode 100644 app-text/pdfminer/pdfminer-20140328.ebuild (limited to 'app-text/pdfminer') diff --git a/app-text/pdfminer/Manifest b/app-text/pdfminer/Manifest new file mode 100644 index 000000000000..665351e01594 --- /dev/null +++ b/app-text/pdfminer/Manifest @@ -0,0 +1,6 @@ +DIST pdfminer-20131113.tar.gz 4080763 BLAKE2B 6cfe2c48f3294c6d491f47620fe0bd3b54daa5211c95b32db39c574485482254b7d6e61e461994706d364a8bfbcfa7776aa0a9dc2cd27fc26cf902ce794cac05 SHA512 be598f9ca5cb87fcde91190f72ee77209a6f8ca9db93588c914e6ec666b2a3cc69abedd92ca73a53e714c3660065b7f2c1e9c770e46c838f6d3d489dd637203e +DIST pdfminer-20140328.tar.gz 4081233 BLAKE2B 60e8c8409269c158feda0f02b1dbf46d4bcd58e2f0a2ef0102e3c3c691d599eda9164b8e5dde4278522d9cfcca4e6962b31919b08f66053fb986ad3ded7da498 SHA512 8abb2328f7824ee980df0ce42d758c15534e97379ea9213b4aa1d29864d24d73c9e2d6020964e9ab734c0c6f7d1ae70bccbd6605168eaadf83923718a1f4849a +EBUILD pdfminer-20131113.ebuild 650 BLAKE2B 7b8c71aa5a5f04c69d9d060f8e44ab7064c8545cc27b4f73d04ff9b5cc58187e933194aface3eac2e070345759ff3eec021cd64d220382cb772e4b617a41ec8a SHA512 14618d50ba8a7eefc9845b7efbe38ea178354f3d8b1775236e529795414ac799debbe32727ea9423bf196044d703add87f7f7afb7eb3e24089c046d3b9cfd1a0 +EBUILD pdfminer-20140328-r1.ebuild 691 BLAKE2B 3b663daca3079290a88be838dd6381dcd029f3209eefad30881b89e10f0c37169ccc84372b464333accd467885e2e8dec4dc164647648a9d6a1e8e98dca19441 SHA512 8d4a9ba66c8ea67faa802709c799971262c08cfafe72c12d8e2549aa4c5da81f56dc9b7510c354f3c77b33eb6c225ce5122c2f1aaa8c376c7e53fcf9626d4963 +EBUILD pdfminer-20140328.ebuild 653 BLAKE2B 1d63ce17c37449a24b22705b0cf347f1b4306bd41b9c6a1d73060d55d75fdf577f9306fb043160a41dee1e7a65c9a561a56b0675d9ab0c492313b9093925ee30 SHA512 b5add0e6d898864ec0ee5ddbe8e73675bb044db37528bbaff1bd37d095b424280f76127f340f9462cf7e708b40cc70dbfada2c91660a51f327179494481ddfe0 +MISC metadata.xml 238 BLAKE2B 436e60128ac8083524cc8290bfe2eb3eff4af4bafe7a13320972438a85d29da40ada392d2295001add6aed88c9407529e0975a7ae7eefc976655216def9bb36f SHA512 899f64c55b53cf0a2d38498f0b0070d4707a6eb0289d8138c6757f703909dc2b6a009fee9fe640e5c16adca6f2f953cf445ba6e6b8f5f43d9185ef836a611297 diff --git a/app-text/pdfminer/metadata.xml b/app-text/pdfminer/metadata.xml new file mode 100644 index 000000000000..c67c1ba87596 --- /dev/null +++ b/app-text/pdfminer/metadata.xml @@ -0,0 +1,8 @@ + + + + + + pdfminer + + diff --git a/app-text/pdfminer/pdfminer-20131113.ebuild b/app-text/pdfminer/pdfminer-20131113.ebuild new file mode 100644 index 000000000000..737235045c34 --- /dev/null +++ b/app-text/pdfminer/pdfminer-20131113.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +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/ https://pypi.org/project/pdfminer/" +SRC_URI="mirror://pypi/p/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +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 +} diff --git a/app-text/pdfminer/pdfminer-20140328-r1.ebuild b/app-text/pdfminer/pdfminer-20140328-r1.ebuild new file mode 100644 index 000000000000..2fc3e5eeaed6 --- /dev/null +++ b/app-text/pdfminer/pdfminer-20140328-r1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 +PYTHON_COMPAT=( python2_7 pypy ) + +inherit distutils-r1 + +DESCRIPTION="Python tool for extracting information from PDF documents" +HOMEPAGE="http://www.unixuser.org/~euske/python/pdfminer/ https://pypi.org/project/pdfminer/" +SRC_URI="mirror://pypi/p/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc examples test" + +python_compile_all(){ + use examples && emake -C samples all +} + +python_test() { + emake test +} + +python_install_all() { + use doc && local HTML_DOCS=( docs/. ) + use examples && local EXAMPLES=( samples/. ) + distutils-r1_python_install_all +} diff --git a/app-text/pdfminer/pdfminer-20140328.ebuild b/app-text/pdfminer/pdfminer-20140328.ebuild new file mode 100644 index 000000000000..3f0dbf03188c --- /dev/null +++ b/app-text/pdfminer/pdfminer-20140328.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 +PYTHON_COMPAT=( python2_7 pypy ) + +inherit distutils-r1 + +DESCRIPTION="Python tool for extracting information from PDF documents" +HOMEPAGE="http://www.unixuser.org/~euske/python/pdfminer/ https://pypi.org/project/pdfminer/" +SRC_URI="mirror://pypi/p/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="amd64 x86" +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 +} -- cgit v1.2.3