New packages for paper2remarkable
This commit is contained in:
parent
38003ffab1
commit
5b79c65f2f
11 changed files with 150 additions and 0 deletions
3
app-text/pdfminer/Manifest
Normal file
3
app-text/pdfminer/Manifest
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
DIST pdfminer.six-20200517.tar.gz 7343299 BLAKE2B 417e71ded4f81702a86c4270d02d21f9c6dbe088b96a55eb80b8c9525b23c1926920ea8f444bc7387d7aaeebd1687a6bf5906beda9c1429536110bbec8aaea52 SHA512 f0db350c1128c4e38e95b3bdd5429b222589046ff2b17fef2878433bc8f704a5be068721483e0555e3583c1cb4ed09641ecce713440fd963c33a1d31ca65f1c6
|
||||
EBUILD pdfminer-20200517.ebuild 768 BLAKE2B 6596e623d879f70d636eaf2d8ddd3b6701bbd7963c486a9da00f8871be9b22acb975d6c10aa4645fe0e1f97f982f563cc4da4a8e773bb9845a408905eab1253f SHA512 710a0025d24d267ce07cf278b5292b9d8e697c9c0344f222e5d99e5dc9b2303c6ff7fd70b00bf22bdb5b4bf7939629944c67f72b8340411f1f417072a1f623aa
|
||||
MISC metadata.xml 238 BLAKE2B 436e60128ac8083524cc8290bfe2eb3eff4af4bafe7a13320972438a85d29da40ada392d2295001add6aed88c9407529e0975a7ae7eefc976655216def9bb36f SHA512 899f64c55b53cf0a2d38498f0b0070d4707a6eb0289d8138c6757f703909dc2b6a009fee9fe640e5c16adca6f2f953cf445ba6e6b8f5f43d9185ef836a611297
|
||||
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>
|
||||
<!-- maintainer-needed -->
|
||||
<upstream>
|
||||
<remote-id type="pypi">pdfminer</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
33
app-text/pdfminer/pdfminer-20200517.ebuild
Normal file
33
app-text/pdfminer/pdfminer-20200517.ebuild
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{7..9} )
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Python tool for extracting information from PDF documents"
|
||||
HOMEPAGE="https://euske.github.io/pdfminer/ https://pypi.org/project/pdfminer.six/"
|
||||
SRC_URI="mirror://pypi/p/pdfminer.six/pdfminer.six-${PV}.tar.gz"
|
||||
S="${WORKDIR}/pdfminer.six-${PV}"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 x86"
|
||||
IUSE="doc examples"
|
||||
|
||||
RDEPEND="dev-python/pycryptodome[${PYTHON_USEDEP}]"
|
||||
|
||||
python_compile_all() {
|
||||
use examples && emake -C samples all
|
||||
}
|
||||
|
||||
python_test() {
|
||||
emake test
|
||||
}
|
||||
|
||||
python_install_all() {
|
||||
use doc && local HTML_DOCS=( docs/. )
|
||||
use examples && dodoc -r samples
|
||||
distutils-r1_python_install_all
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue