dev-python/pdfposter: Live ebuild added.

Package-Manager: Portage-2.3.20, Repoman-2.3.6
Manifest-Sign-Key: 766B8122134269123401492A8B54D7A3FF3CDB17
This commit is contained in:
Nils Freydank 2018-01-26 11:13:31 +01:00
parent 5ccc7f4564
commit 00aa247f81
No known key found for this signature in database
GPG Key ID: 1D1E9E428EF58746
2 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>holgersson@posteo.de</email>
<name>Nils Freydank</name>
</maintainer>
</pkgmetadata>

View File

@ -0,0 +1,37 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 python3_5 )
inherit distutils-r1
DESCRIPTION="PDF scaling and tiling tool"
HOMEPAGE="https://gitlab.com/pdftools/pdfposter"
if [[ ${PV} == *9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://gitlab.com/pdftools/pdfposter.git"
EGIT_BRANCH="develop"
else
SRC_URI="https://gitlab.com/pdftools/${PN}/repository/v${PV}/archive.tar.gz -> ${P}.tar.gz"
COMMIT_ID="7999866cb542073f5787c9c35624b8ecd19c35ec"
KEYWORDS="~amd64 ~x86"
S="${WORKDIR}/${PN}-v${PV}-${COMMIT_ID}"
fi
LICENSE="GPL-3"
SLOT="0"
KEYWORDS=""
IUSE=""
DEPEND="
dev-python/PyPDF2[${PYTHON_USEDEP}]
dev-python/setuptools[${PYTHON_USEDEP}]
"
RDEPEND="${DEPEND}"
python_install_all() {
distutils-r1_python_install_all
find "${ED}" -name '*.pth' -delete || die
}