public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "David Denoncin" <ddenoncin@gmail.com>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pylatex/
Date: Mon, 18 May 2020 01:25:15 +0000 (UTC)	[thread overview]
Message-ID: <1589765020.adc33f52008525f9614f34df073cb087b4331f90.ddenoncin@gentoo> (raw)

commit:     adc33f52008525f9614f34df073cb087b4331f90
Author:     David Denoncin <ddenoncin <AT> gmail <DOT> com>
AuthorDate: Mon May 18 01:23:40 2020 +0000
Commit:     David Denoncin <ddenoncin <AT> gmail <DOT> com>
CommitDate: Mon May 18 01:23:40 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=adc33f52

dev-python/pylatex: update ebuild to conform with qa standards

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: David Denoncin <ddenoncin <AT> gmail.com>

 dev-python/pylatex/metadata.xml         |  5 ----
 dev-python/pylatex/pylatex-1.3.1.ebuild | 50 ++++++++++++++++++---------------
 2 files changed, 27 insertions(+), 28 deletions(-)

diff --git a/dev-python/pylatex/metadata.xml b/dev-python/pylatex/metadata.xml
index 212167a..ebb4c58 100644
--- a/dev-python/pylatex/metadata.xml
+++ b/dev-python/pylatex/metadata.xml
@@ -6,9 +6,4 @@
 		<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>
-		<flag name="extras">Optionally add dev-python/quantities</flag>
-	</use>
 </pkgmetadata>

diff --git a/dev-python/pylatex/pylatex-1.3.1.ebuild b/dev-python/pylatex/pylatex-1.3.1.ebuild
index c15bb8b..c1f01ab 100644
--- a/dev-python/pylatex/pylatex-1.3.1.ebuild
+++ b/dev-python/pylatex/pylatex-1.3.1.ebuild
@@ -7,8 +7,8 @@ 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
+PYTHON_COMPAT=( python3_{6,7,8} )
+inherit distutils-r1 eutils
 
 DESCRIPTION="A Python library for creating LaTeX files and snippets"
 HOMEPAGE="https://github.com/JelteF/PyLaTeX"
@@ -17,40 +17,44 @@ SRC_URI="https://github.com/JelteF/${MY_PN}/archive/v${PV}.tar.gz -> ${MY_PN}.ta
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="examples matplotlib numpy extras"
+IUSE="examples"
 
 DEPEND="
-	dev-python/ordered-set[${PYTHON_USEDEP}]
-	matplotlib? ( dev-python/matplotlib[$PYTHON_USEDEP] )
-	numpy? ( dev-python/numpy[$PYTHON_USEDEP] )
-	extras? ( dev-python/quantities[$PYTHON_USEDEP] )
+dev-python/ordered-set[${PYTHON_USEDEP}]
 "
-
 RDEPEND="${DEPEND}"
 
-distutils_enable_tests nose
 distutils_enable_sphinx docs
+distutils_enable_tests nose
+
+DEPEND+="
+test? (
+	dev-python/quantities
+	dev-python/matplotlib
+	dev-python/numpy
+)
+"
 
 src_prepare(){
-	if use doc; then
-		sphinx-apidoc -F -o docs "${S}"/pylatex # conf.py is not included in source
-	fi
+if use doc; then
+	sphinx-apidoc -F -o docs "${S}"/pylatex # conf.py is not included in source
+fi
 
-	distutils-r1_src_prepare
+distutils-r1_src_prepare
 }
 
 python_install_all() {
-	if use examples ; then
-		docinto examples
-		dodoc -r examples/.
-	fi
+if use examples ; then
+	docinto examples
+	dodoc -r examples/.
+fi
 
-	distutils-r1_python_install_all
+distutils-r1_python_install_all
 }
 
-src_test() {
-	if  ! use extras ; then
-		rm "${S}"/tests/test_quantities.py # remove if quantities is not installed
-	fi
-	distutils-r1_src_test
+pkg_postinst() {
+	elog "Optional dependencies:"
+	optfeature "matplotlib support" dev-python/matplotlib
+	optfeature "numpy support" dev-python/numpy
+	optfeature "quantities support" dev-python/quantities
 }


             reply	other threads:[~2020-05-18  1:25 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-05-18  1:25 David Denoncin [this message]
  -- strict thread matches above, loose matches on Subject: below --
2020-07-19 11:20 [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pylatex/ David Denoncin
2020-07-01 22:02 David Denoncin
2020-06-14 19:23 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2020-06-14 19:22 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2020-06-09 15:15 Andrew Ammerlaan
2020-05-23 12:29 David Denoncin
2020-05-13 10:49 David Denoncin
2020-05-11  1:11 David Denoncin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1589765020.adc33f52008525f9614f34df073cb087b4331f90.ddenoncin@gentoo \
    --to=ddenoncin@gmail.com \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox