public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-python/ReParser/
@ 2017-01-06  0:12 William Hubbs
  0 siblings, 0 replies; 3+ messages in thread
From: William Hubbs @ 2017-01-06  0:12 UTC (permalink / raw
  To: gentoo-commits

commit:     aa0d59d0f79adf50a090ef3bbc17266c6dd9dc02
Author:     William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Tue Jan  3 19:28:33 2017 +0000
Commit:     William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Fri Jan  6 00:08:01 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa0d59d0

dev-python/ReParser: initial ebuild

Package-Manager: Portage-2.3.0, Repoman-2.3.1

 dev-python/ReParser/Manifest              |  1 +
 dev-python/ReParser/ReParser-1.4.3.ebuild | 26 ++++++++++++++++++++++++++
 dev-python/ReParser/metadata.xml          | 11 +++++++++++
 3 files changed, 38 insertions(+)

diff --git a/dev-python/ReParser/Manifest b/dev-python/ReParser/Manifest
new file mode 100644
index 00000000..84b3804
--- /dev/null
+++ b/dev-python/ReParser/Manifest
@@ -0,0 +1 @@
+DIST ReParser-1.4.3.tar.gz 4560 SHA256 e69caf58a29d6e04723f6a7a456d304b7acfcf413957dafcd90ee49eccc2d15a SHA512 db02caa6f4f1997cfc7a79283b1b90d3ff96e7fa2e7ba5b119e0060b97d1dd2604640c7d0a8503dbc05613b9b507e7d8732e9448c3ecb59ba85cf340ff1a5e2b WHIRLPOOL dd14ed07b663558a0701ff26b14bb98288c13874e66d1399af98444f65302630148a289590f739d4950fcfb5a5a5825c7173da7215d307e474c57032b70524ae

diff --git a/dev-python/ReParser/ReParser-1.4.3.ebuild b/dev-python/ReParser/ReParser-1.4.3.ebuild
new file mode 100644
index 00000000..16cfd3f
--- /dev/null
+++ b/dev-python/ReParser/ReParser-1.4.3.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python3_{4,5} )
+inherit distutils-r1
+
+if [[ ${PV} = *9999* ]]; then
+	EGIT_REPO_URI="git://github.com/hickford/MechanicalSoup"
+	inherit git-r3
+else
+	SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+	KEYWORDS="~amd64"
+fi
+
+DESCRIPTION="simple regex-based lexer/parser for inline markup"
+HOMEPAGE="https://pypi.python.org/pypi/ReParser"
+
+LICENSE="MIT"
+SLOT="0"
+IUSE=""
+
+DEPEND="dev-python/setuptools"
+RDEPEND=""

diff --git a/dev-python/ReParser/metadata.xml b/dev-python/ReParser/metadata.xml
new file mode 100644
index 00000000..b692da6
--- /dev/null
+++ b/dev-python/ReParser/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>williamh@gentoo.org</email>
+		<name>William Hubbs</name>
+	</maintainer>
+	<maintainer type="project">
+		<email>python@gentoo.org</email>
+	</maintainer>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/ReParser/
@ 2017-05-05 12:42 Manuel Rüger
  0 siblings, 0 replies; 3+ messages in thread
From: Manuel Rüger @ 2017-05-05 12:42 UTC (permalink / raw
  To: gentoo-commits

commit:     6748c9e7da95c613cae0e03688ed5eac55bf43a6
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Fri May  5 12:35:27 2017 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Fri May  5 12:41:47 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6748c9e7

dev-python/ReParser: Add python3_6

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 dev-python/ReParser/ReParser-1.4.3.ebuild | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/dev-python/ReParser/ReParser-1.4.3.ebuild b/dev-python/ReParser/ReParser-1.4.3.ebuild
index 4c88260335e..7c8bcd2d450 100644
--- a/dev-python/ReParser/ReParser-1.4.3.ebuild
+++ b/dev-python/ReParser/ReParser-1.4.3.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-PYTHON_COMPAT=( python3_{4,5} )
+PYTHON_COMPAT=( python3_{4,5,6} )
 inherit distutils-r1
 
 if [[ ${PV} = *9999* ]]; then
@@ -14,12 +14,11 @@ else
 	KEYWORDS="~amd64"
 fi
 
-DESCRIPTION="simple regex-based lexer/parser for inline markup"
+DESCRIPTION="Simple regex-based lexer/parser for inline markup"
 HOMEPAGE="https://pypi.python.org/pypi/ReParser"
 
 LICENSE="MIT"
 SLOT="0"
 IUSE=""
 
-DEPEND="dev-python/setuptools"
-RDEPEND=""
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/ReParser/
@ 2017-07-30  9:15 Michał Górny
  0 siblings, 0 replies; 3+ messages in thread
From: Michał Górny @ 2017-07-30  9:15 UTC (permalink / raw
  To: gentoo-commits

commit:     ee3413cf609577da36ca17f4a64574591aea8db5
Author:     David Hicks <david <AT> hicks <DOT> id <DOT> au>
AuthorDate: Sat Jul 29 10:45:01 2017 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Jul 30 09:15:48 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee3413cf

dev-python/ReParser: use HTTPS for GitHub

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 dev-python/ReParser/ReParser-1.4.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/ReParser/ReParser-1.4.3.ebuild b/dev-python/ReParser/ReParser-1.4.3.ebuild
index 7c8bcd2d450..d32e469cd44 100644
--- a/dev-python/ReParser/ReParser-1.4.3.ebuild
+++ b/dev-python/ReParser/ReParser-1.4.3.ebuild
@@ -7,7 +7,7 @@ PYTHON_COMPAT=( python3_{4,5,6} )
 inherit distutils-r1
 
 if [[ ${PV} = *9999* ]]; then
-	EGIT_REPO_URI="git://github.com/hickford/MechanicalSoup"
+	EGIT_REPO_URI="https://github.com/hickford/MechanicalSoup"
 	inherit git-r3
 else
 	SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-07-30  9:16 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-01-06  0:12 [gentoo-commits] repo/gentoo:master commit in: dev-python/ReParser/ William Hubbs
  -- strict thread matches above, loose matches on Subject: below --
2017-05-05 12:42 Manuel Rüger
2017-07-30  9:15 Michał Górny

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox