public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Andrew Ammerlaan" <andrewammerlaan@riseup.net>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-python/backrefs/
Date: Sat, 28 Mar 2020 11:08:00 +0000 (UTC)	[thread overview]
Message-ID: <1585393212.46889afcbac8a9d2682078d2bc8705c906824a10.andrewammerlaan@gentoo> (raw)

commit:     46889afcbac8a9d2682078d2bc8705c906824a10
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Sat Mar 28 10:24:43 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sat Mar 28 11:00:12 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=46889afc

dev-python/backrefs: fix docs

Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>

 dev-python/backrefs/backrefs-4.3.0.ebuild | 19 +++++++++----------
 1 file changed, 9 insertions(+), 10 deletions(-)

diff --git a/dev-python/backrefs/backrefs-4.3.0.ebuild b/dev-python/backrefs/backrefs-4.3.0.ebuild
index 3ca978f..15281ce 100644
--- a/dev-python/backrefs/backrefs-4.3.0.ebuild
+++ b/dev-python/backrefs/backrefs-4.3.0.ebuild
@@ -3,13 +3,11 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_6 )
-#DISTUTILS_USE_SETUPTOOLS=rdepend
+PYTHON_COMPAT=( python3_{6,7,8} )
 
 inherit distutils-r1
 
-DESCRIPTION="
-Wrapper around re or regex that adds additional back references"
+DESCRIPTION="Wrapper around re or regex that adds additional back references"
 HOMEPAGE="
 	https://github.com/facelessuser/backrefs
 	https://pypi.org/project/backrefs
@@ -19,26 +17,27 @@ SRC_URI="https://github.com/facelessuser/${PN}/archive/${PV}.tar.gz -> ${P}.tar.
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
+
 IUSE="doc"
 
-RDEPEND=""
 DEPEND="
-	${RDEPEND}
 	test? (
 		dev-python/mock[${PYTHON_USEDEP}]
 	)
 "
 BDEPEND="
 	doc? (
-		>=dev-python/mkdocs-material-2.2.5[${PYTHON_USEDEP}]
-		dev-python/pyspelling[${PYTHON_USEDEP}]
+		>=dev-python/mkdocs-material-2.2.5
+		dev-python/pyspelling
 	)
 "
 
 distutils_enable_tests pytest
 
 python_compile_all() {
-	use doc && mkdocs build || die
-	#TODO: install docs
 	default
+	if use doc; then
+		mkdocs build || die "failed to make docs"
+		HTML_DOCS="site"
+	fi
 }


WARNING: multiple messages have this Message-ID (diff)
From: "Andrew Ammerlaan" <andrewammerlaan@riseup.net>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/backrefs/
Date: Sat, 28 Mar 2020 11:00:42 +0000 (UTC)	[thread overview]
Message-ID: <1585393212.46889afcbac8a9d2682078d2bc8705c906824a10.andrewammerlaan@gentoo> (raw)
Message-ID: <20200328110042.nBIjIYvk3Ov7_AX7x2UFrYY9gCtKNcetNWybM44lQwc@z> (raw)

commit:     46889afcbac8a9d2682078d2bc8705c906824a10
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Sat Mar 28 10:24:43 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sat Mar 28 11:00:12 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=46889afc

dev-python/backrefs: fix docs

Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>

 dev-python/backrefs/backrefs-4.3.0.ebuild | 19 +++++++++----------
 1 file changed, 9 insertions(+), 10 deletions(-)

diff --git a/dev-python/backrefs/backrefs-4.3.0.ebuild b/dev-python/backrefs/backrefs-4.3.0.ebuild
index 3ca978f..15281ce 100644
--- a/dev-python/backrefs/backrefs-4.3.0.ebuild
+++ b/dev-python/backrefs/backrefs-4.3.0.ebuild
@@ -3,13 +3,11 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_6 )
-#DISTUTILS_USE_SETUPTOOLS=rdepend
+PYTHON_COMPAT=( python3_{6,7,8} )
 
 inherit distutils-r1
 
-DESCRIPTION="
-Wrapper around re or regex that adds additional back references"
+DESCRIPTION="Wrapper around re or regex that adds additional back references"
 HOMEPAGE="
 	https://github.com/facelessuser/backrefs
 	https://pypi.org/project/backrefs
@@ -19,26 +17,27 @@ SRC_URI="https://github.com/facelessuser/${PN}/archive/${PV}.tar.gz -> ${P}.tar.
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
+
 IUSE="doc"
 
-RDEPEND=""
 DEPEND="
-	${RDEPEND}
 	test? (
 		dev-python/mock[${PYTHON_USEDEP}]
 	)
 "
 BDEPEND="
 	doc? (
-		>=dev-python/mkdocs-material-2.2.5[${PYTHON_USEDEP}]
-		dev-python/pyspelling[${PYTHON_USEDEP}]
+		>=dev-python/mkdocs-material-2.2.5
+		dev-python/pyspelling
 	)
 "
 
 distutils_enable_tests pytest
 
 python_compile_all() {
-	use doc && mkdocs build || die
-	#TODO: install docs
 	default
+	if use doc; then
+		mkdocs build || die "failed to make docs"
+		HTML_DOCS="site"
+	fi
 }


             reply	other threads:[~2020-03-28 11:08 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-03-28 11:08 Andrew Ammerlaan [this message]
2020-03-28 11:00 ` [gentoo-commits] repo/proj/guru:dev commit in: dev-python/backrefs/ Andrew Ammerlaan
  -- strict thread matches above, loose matches on Subject: below --
2020-03-31  9:07 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2020-04-11 20:34 Andrew Ammerlaan
2020-11-20 16:03 Andrew Ammerlaan
2020-11-20 16:05 Andrew Ammerlaan
2020-12-07 11:52 [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2020-12-07 11:52 ` [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan

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=1585393212.46889afcbac8a9d2682078d2bc8705c906824a10.andrewammerlaan@gentoo \
    --to=andrewammerlaan@riseup.net \
    --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