public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-python/webpy/
@ 2016-12-20 15:19 Tobias Klausmann
  0 siblings, 0 replies; 6+ messages in thread
From: Tobias Klausmann @ 2016-12-20 15:19 UTC (permalink / raw
  To: gentoo-commits

commit:     2b0f25a9e334ee8dcaf714338e8b381539b67a55
Author:     Tobias Klausmann <klausman <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 20 15:19:03 2016 +0000
Commit:     Tobias Klausmann <klausman <AT> gentoo <DOT> org>
CommitDate: Tue Dec 20 15:19:03 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b0f25a9

dev-python/webpy-0.37-r1: stable on amd64

Gentoo-Bug: 593140

 dev-python/webpy/webpy-0.37-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/webpy/webpy-0.37-r1.ebuild b/dev-python/webpy/webpy-0.37-r1.ebuild
index d93d5ab..4b77811 100644
--- a/dev-python/webpy/webpy-0.37-r1.ebuild
+++ b/dev-python/webpy/webpy-0.37-r1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="http://www.webpy.org/static/${MY_PN}-${PV}.tar.gz"
 
 LICENSE="public-domain"
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~hppa ~x86 ~amd64-linux ~x86-linux"
 IUSE=""
 
 DEPEND=""


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/webpy/
@ 2017-01-22 11:27 Jeroen Roovers
  0 siblings, 0 replies; 6+ messages in thread
From: Jeroen Roovers @ 2017-01-22 11:27 UTC (permalink / raw
  To: gentoo-commits

commit:     4057838e1c76c9e7e2b92c6fef24a59fbba3e9a4
Author:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 22 11:27:26 2017 +0000
Commit:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Sun Jan 22 11:27:26 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4057838e

dev-python/webpy: Stable for HPPA (bug #593140).

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --ignore-arches

 dev-python/webpy/webpy-0.37-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/webpy/webpy-0.37-r1.ebuild b/dev-python/webpy/webpy-0.37-r1.ebuild
index 57560ec..219d85c 100644
--- a/dev-python/webpy/webpy-0.37-r1.ebuild
+++ b/dev-python/webpy/webpy-0.37-r1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="http://www.webpy.org/static/${MY_PN}-${PV}.tar.gz"
 
 LICENSE="public-domain"
 SLOT="0"
-KEYWORDS="amd64 ~hppa x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 hppa x86 ~amd64-linux ~x86-linux"
 IUSE=""
 
 DEPEND=""


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/webpy/
@ 2017-02-14 23:54 Manuel Rüger
  0 siblings, 0 replies; 6+ messages in thread
From: Manuel Rüger @ 2017-02-14 23:54 UTC (permalink / raw
  To: gentoo-commits

commit:     c11070a9685fbd0ddf82d157723b6b4e1156ab0b
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 14 23:53:41 2017 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Tue Feb 14 23:53:41 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c11070a9

dev-python/webpy: Remove old

Package-Manager: portage-2.3.3

 dev-python/webpy/webpy-0.37.ebuild | 41 --------------------------------------
 1 file changed, 41 deletions(-)

diff --git a/dev-python/webpy/webpy-0.37.ebuild b/dev-python/webpy/webpy-0.37.ebuild
deleted file mode 100644
index 294152b981..0000000000
--- a/dev-python/webpy/webpy-0.37.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="3"
-PYTHON_DEPEND="2"
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="3.* 2.7-pypy-* *-jython"
-
-inherit distutils
-
-MY_PN="web.py"
-
-DESCRIPTION="A small and simple web framework for Python"
-HOMEPAGE="http://www.webpy.org https://pypi.python.org/pypi/web.py"
-SRC_URI="http://www.webpy.org/static/${MY_PN}-${PV}.tar.gz"
-
-LICENSE="public-domain"
-SLOT="0"
-KEYWORDS="amd64 hppa x86 ~amd64-linux ~x86-linux"
-IUSE=""
-
-DEPEND=""
-RDEPEND=""
-
-S="${WORKDIR}/web.py-${PV}"
-
-PYTHON_MODNAME="web"
-
-src_test() {
-	testing() {
-		local return_status="0" test tests="db http net template utils"
-		for test in ${tests}; do
-			echo "Running doctests in ${test}.py..."
-			"$(PYTHON)" web/${test}.py || return_status="$?"
-		done
-
-		return "${return_status}"
-	}
-	python_execute_function testing
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/webpy/
@ 2017-04-22 22:00 Patrice Clement
  0 siblings, 0 replies; 6+ messages in thread
From: Patrice Clement @ 2017-04-22 22:00 UTC (permalink / raw
  To: gentoo-commits

commit:     68b28eb092c1c324b6bcbb267d9eeaaf08397d0d
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 22 21:57:09 2017 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Sat Apr 22 21:57:09 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68b28eb0

dev-python/webpy: version bump.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-python/webpy/Manifest          |  1 +
 dev-python/webpy/webpy-0.38.ebuild | 29 +++++++++++++++++++++++++++++
 2 files changed, 30 insertions(+)

diff --git a/dev-python/webpy/Manifest b/dev-python/webpy/Manifest
index a47e989306e..7e0eb3919d0 100644
--- a/dev-python/webpy/Manifest
+++ b/dev-python/webpy/Manifest
@@ -1 +1,2 @@
 DIST web.py-0.37.tar.gz 90232 SHA256 748c7e99ad9e36f62ea19f7965eb7dd7860b530e8f563ed60ce3e53e7409a550 SHA512 766e24d9df6ab1c3a214156794a19c23fcb16ca7a4ee7586a7723f802eab2ba0b8cda4653c2504ef63f773609436ac12dfd40bbe6cf20e2f93bf95493f041628 WHIRLPOOL 4782dc9b4b894ee1787478a77c1afe193096046feeebbe5ce4f904c26d22d5814c606d2d0112614de1ab19851a2e40a78e56f74c1dc59f94ec9462fd33842110
+DIST web.py-0.38.tar.gz 91877 SHA256 09c61b5b6b6e1dd558818d07dfbab3b2da0623603079c7d7223644b287f08870 SHA512 cac697206945f918bbe657d019623132e0bde9eabb0836f617cf86482095c756d6f28984e0efbedaab954966b58578d30cd9ecfecc0ed79f7d0ac74d95a19a12 WHIRLPOOL f70fce769fafe4711af53dc576af90144cdc9c66b534e8c829d38506de22ae124762a5e7f1d2bd5625bc7836a6f8a51dbb2eccf91eda0097eb488fc10a4b76a0

diff --git a/dev-python/webpy/webpy-0.38.ebuild b/dev-python/webpy/webpy-0.38.ebuild
new file mode 100644
index 00000000000..48dce6b4ac4
--- /dev/null
+++ b/dev-python/webpy/webpy-0.38.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1
+
+MY_PN="web.py"
+
+DESCRIPTION="A small and simple web framework for Python"
+HOMEPAGE="http://www.webpy.org https://pypi.python.org/pypi/web.py"
+SRC_URI="http://www.webpy.org/static/${MY_PN}-${PV}.tar.gz"
+
+LICENSE="public-domain"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~x86 ~amd64-linux ~x86-linux"
+
+S="${WORKDIR}/web.py-${PV}"
+
+python_test() {
+	local return_status="0" test tests="db http net template utils"
+	for test in ${tests}; do
+		echo "Running doctests in ${test}.py..."
+		"${PYTHON}" web/${test}.py || return_status="$?"
+	done
+		return "${return_status}"
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/webpy/
@ 2017-04-29 16:26 David Seifert
  0 siblings, 0 replies; 6+ messages in thread
From: David Seifert @ 2017-04-29 16:26 UTC (permalink / raw
  To: gentoo-commits

commit:     275184f532d830217acc89734247f7196ee91815
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 29 10:53:04 2017 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Apr 29 16:26:37 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=275184f5

dev-python/webpy: [QA] Fix python_test() to die on failure

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 dev-python/webpy/webpy-0.38.ebuild | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/dev-python/webpy/webpy-0.38.ebuild b/dev-python/webpy/webpy-0.38.ebuild
index 48dce6b4ac4..f289a598c08 100644
--- a/dev-python/webpy/webpy-0.38.ebuild
+++ b/dev-python/webpy/webpy-0.38.ebuild
@@ -17,13 +17,12 @@ LICENSE="public-domain"
 SLOT="0"
 KEYWORDS="~amd64 ~hppa ~x86 ~amd64-linux ~x86-linux"
 
-S="${WORKDIR}/web.py-${PV}"
+S="${WORKDIR}/${MY_PN}-${PV}"
 
 python_test() {
-	local return_status="0" test tests="db http net template utils"
-	for test in ${tests}; do
-		echo "Running doctests in ${test}.py..."
-		"${PYTHON}" web/${test}.py || return_status="$?"
+	local t
+	for t in db http net template utils; do
+		einfo "Running doctests in ${t}.py..."
+		"${EPYTHON}" web/${t}.py || die "Test ${t} failed with ${EPYTHON}"
 	done
-		return "${return_status}"
 }


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/webpy/
@ 2020-01-04  9:15 Mikle Kolyada
  0 siblings, 0 replies; 6+ messages in thread
From: Mikle Kolyada @ 2020-01-04  9:15 UTC (permalink / raw
  To: gentoo-commits

commit:     2a6c6c92da8a0bc21bea22ab6aabb0c5d29e18f7
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sat Jan  4 09:15:38 2020 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sat Jan  4 09:15:38 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a6c6c92

dev-python/webpy: remove last-rited pkg

Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>

 dev-python/webpy/Manifest             |  2 --
 dev-python/webpy/metadata.xml         | 13 -------------
 dev-python/webpy/webpy-0.37-r1.ebuild | 32 --------------------------------
 dev-python/webpy/webpy-0.38.ebuild    | 28 ----------------------------
 4 files changed, 75 deletions(-)

diff --git a/dev-python/webpy/Manifest b/dev-python/webpy/Manifest
deleted file mode 100644
index 281e067466d..00000000000
--- a/dev-python/webpy/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST web.py-0.37.tar.gz 90232 BLAKE2B 3c6e867ce54a6e2cb7c4a296d1191344ea88b643518d5a3a8f7248d217c54c40ab2bc4288551ed47714418fb234b68c08c4c677277e131c626927571035f0c78 SHA512 766e24d9df6ab1c3a214156794a19c23fcb16ca7a4ee7586a7723f802eab2ba0b8cda4653c2504ef63f773609436ac12dfd40bbe6cf20e2f93bf95493f041628
-DIST web.py-0.38.tar.gz 91877 BLAKE2B cb5f009e0004b58cb431aa2d78a6127c83873d77e119a242d2aa745e69c304866df8333b8039b5e52d47b23b6c9f38d1d47bc03f449ead577775b99e57b1a48a SHA512 cac697206945f918bbe657d019623132e0bde9eabb0836f617cf86482095c756d6f28984e0efbedaab954966b58578d30cd9ecfecc0ed79f7d0ac74d95a19a12

diff --git a/dev-python/webpy/metadata.xml b/dev-python/webpy/metadata.xml
deleted file mode 100644
index fac6a719b9a..00000000000
--- a/dev-python/webpy/metadata.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-	<maintainer type="project">
-		<email>python@gentoo.org</email>
-		<name>Python</name>
-	</maintainer>
-	<longdescription lang="en">
-		web.py provides small and simple web framework for
-		python. It is a convenient tool for small sized
-		websites.
-	</longdescription>
-</pkgmetadata>

diff --git a/dev-python/webpy/webpy-0.37-r1.ebuild b/dev-python/webpy/webpy-0.37-r1.ebuild
deleted file mode 100644
index c59c79bb397..00000000000
--- a/dev-python/webpy/webpy-0.37-r1.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1
-
-MY_PN="web.py"
-
-DESCRIPTION="A small and simple web framework for Python"
-HOMEPAGE="http://www.webpy.org https://pypi.org/project/web.py/"
-SRC_URI="http://www.webpy.org/static/${MY_PN}-${PV}.tar.gz"
-
-LICENSE="public-domain"
-SLOT="0"
-KEYWORDS="amd64 hppa x86 ~amd64-linux ~x86-linux"
-IUSE=""
-
-DEPEND=""
-RDEPEND=""
-
-S="${WORKDIR}/web.py-${PV}"
-
-python_test() {
-	local return_status="0" test tests="db http net template utils"
-	for test in ${tests}; do
-		echo "Running doctests in ${test}.py..."
-		"${PYTHON}" web/${test}.py || return_status="$?"
-	done
-		return "${return_status}"
-}

diff --git a/dev-python/webpy/webpy-0.38.ebuild b/dev-python/webpy/webpy-0.38.ebuild
deleted file mode 100644
index 28895eb899d..00000000000
--- a/dev-python/webpy/webpy-0.38.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1
-
-MY_PN="web.py"
-
-DESCRIPTION="A small and simple web framework for Python"
-HOMEPAGE="http://www.webpy.org https://pypi.org/project/web.py/"
-SRC_URI="http://www.webpy.org/static/${MY_PN}-${PV}.tar.gz"
-
-LICENSE="public-domain"
-SLOT="0"
-KEYWORDS="~amd64 ~hppa ~x86 ~amd64-linux ~x86-linux"
-
-S="${WORKDIR}/${MY_PN}-${PV}"
-
-python_test() {
-	local t
-	for t in db http net template utils; do
-		einfo "Running doctests in ${t}.py..."
-		"${EPYTHON}" web/${t}.py || die "Test ${t} failed with ${EPYTHON}"
-	done
-}


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

end of thread, other threads:[~2020-01-04  9:15 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-02-14 23:54 [gentoo-commits] repo/gentoo:master commit in: dev-python/webpy/ Manuel Rüger
  -- strict thread matches above, loose matches on Subject: below --
2020-01-04  9:15 Mikle Kolyada
2017-04-29 16:26 David Seifert
2017-04-22 22:00 Patrice Clement
2017-01-22 11:27 Jeroen Roovers
2016-12-20 15:19 Tobias Klausmann

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