mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-10 15:45:15 -04:00
dev-python/pylatex: new package
Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: David Denoncin <ddenoncin@gmail.com>
This commit is contained in:
1
dev-python/pylatex/Manifest
Normal file
1
dev-python/pylatex/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST PyLaTeX.tar.gz 300388 BLAKE2B fd3744afa43240e093de683ea14181da879b80e366357cc0d46bc49d6e3d23e47e2a0dd81e840a6df5a049055fac7049d3977e7c731e74f85749eff795345733 SHA512 b44ccecb81984613efe5c96f8f0e722fa7b1f4473b8f283196001cd38e062e2b78a4adb8e80c5fdd69558406bec482738520bb998f838d92c0af2b328eb74d07
|
||||
13
dev-python/pylatex/metadata.xml
Normal file
13
dev-python/pylatex/metadata.xml
Normal file
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>ddenoncin@gmail.com</email>
|
||||
<name>David Denoncin</name>
|
||||
</maintainer>
|
||||
<use>
|
||||
<flag name="numpy">Optionally add dev-python/numpy</flag>
|
||||
<flag name="matplotlib">Optionally add dev-python/matplotlib</flag>
|
||||
</use>
|
||||
</pkgmetadata>
|
||||
53
dev-python/pylatex/pylatex-1.3.1.ebuild
Normal file
53
dev-python/pylatex/pylatex-1.3.1.ebuild
Normal file
@@ -0,0 +1,53 @@
|
||||
# Copyright 2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
MY_PN="PyLaTeX"
|
||||
MY_P="${MY_PN}-${PV}"
|
||||
S="${WORKDIR}/${MY_P}"
|
||||
|
||||
PYTHON_COMPAT=( python3_{6,7,8} ) #python2_7 -> error: package directory 'python2_source/pylatex' does not exist
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="A Python library for creating LaTeX files and snippets"
|
||||
HOMEPAGE="https://github.com/JelteF/PyLaTeX"
|
||||
SRC_URI="https://github.com/JelteF/${MY_PN}/archive/v${PV}.tar.gz -> ${MY_PN}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="examples matplotlib numpy" # quantities can be used also, but is not a gentoo package.
|
||||
|
||||
DEPEND="
|
||||
dev-python/ordered-set[${PYTHON_USEDEP}]
|
||||
matplotlib? ( dev-python/matplotlib[$PYTHON_USEDEP] )
|
||||
numpy? ( dev-python/numpy[$PYTHON_USEDEP] )
|
||||
"
|
||||
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
distutils_enable_tests nose
|
||||
distutils_enable_sphinx docs
|
||||
|
||||
src_prepare(){
|
||||
if use doc; then
|
||||
sphinx-apidoc -F -o docs "${S}"/pylatex # conf.py is not included in source
|
||||
fi
|
||||
|
||||
distutils-r1_src_prepare
|
||||
}
|
||||
|
||||
python_install_all() {
|
||||
if use examples ; then
|
||||
docinto examples
|
||||
dodoc -r examples/.
|
||||
fi
|
||||
|
||||
distutils-r1_python_install_all
|
||||
}
|
||||
|
||||
src_test() {
|
||||
rm "${S}"/tests/test_quantities.py # quantities is not a gentoo package
|
||||
distutils-r1_src_test
|
||||
}
|
||||
Reference in New Issue
Block a user