public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-python/dirq/
@ 2017-03-22 16:37 Marek Szuba
  0 siblings, 0 replies; 3+ messages in thread
From: Marek Szuba @ 2017-03-22 16:37 UTC (permalink / raw
  To: gentoo-commits

commit:     c10f286b7c947e27c9aa10b4ec00b14b3d2326c1
Author:     Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 22 16:34:01 2017 +0000
Commit:     Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Wed Mar 22 16:35:51 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c10f286b

dev-python/dirq: new package

A port of Perl module Directory-Queue, developed at CERN. Used by the CERN
Puppet librarian Jens.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-python/dirq/Manifest          |  1 +
 dev-python/dirq/dirq-1.7.1.ebuild | 24 ++++++++++++++++++++++++
 dev-python/dirq/metadata.xml      | 20 ++++++++++++++++++++
 3 files changed, 45 insertions(+)

diff --git a/dev-python/dirq/Manifest b/dev-python/dirq/Manifest
new file mode 100644
index 00000000000..4e1390434b7
--- /dev/null
+++ b/dev-python/dirq/Manifest
@@ -0,0 +1 @@
+DIST dirq-1.7.1.tar.gz 32645 SHA256 258eac86de81fd013f11f309582bdff9f26c76e572214cf291c65c1bc667864c SHA512 8865f395e6ef81131c5e1df9f97cf1768557af06d446a79ece29e23b83c228cbb158099a7e85360423013cd8e5ead8970c5160865f065d16fcc288c2ce9d176f WHIRLPOOL dcd86acf6830f2e843a7691d816115aef7d1c9b9fa0a796bff4559a9d211779ce24ab03ced8ac7b917a35082aa34b1d2de90d480e94ae3db97c4a0e9dea28dd6

diff --git a/dev-python/dirq/dirq-1.7.1.ebuild b/dev-python/dirq/dirq-1.7.1.ebuild
new file mode 100644
index 00000000000..e304075fa72
--- /dev/null
+++ b/dev-python/dirq/dirq-1.7.1.ebuild
@@ -0,0 +1,24 @@
+# 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
+
+DESCRIPTION="Python port of Perl module Directory::Queue"
+HOMEPAGE="https://github.com/cern-mig/python-dirq"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="${PYTHON_DEPS}"
+DEPEND="${RDEPEND}"
+
+# Note: as of 2017-03-22, dirq tests are known to fail in Docker containers
+python_test() {
+	esetup.py test
+}

diff --git a/dev-python/dirq/metadata.xml b/dev-python/dirq/metadata.xml
new file mode 100644
index 00000000000..2e025c6c071
--- /dev/null
+++ b/dev-python/dirq/metadata.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>marecki@gentoo.org</email>
+		<name>Marek Szuba</name>
+	</maintainer>
+	<longdescription lang="en">
+		The goal of this module is to offer a queue system using the underlying
+		filesystem for storage, security and to prevent race conditions via
+		atomic operations. It focuses on simplicity, robustness and scalability.
+
+		This module allows multiple concurrent readers and writers to interact
+		with the same queue.
+	</longdescription>
+	<upstream>
+		<remote-id type="github">cern-mig/python-dirq</remote-id>
+		<remote-id type="pypi">dirq</remote-id>
+	</upstream>
+</pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/dirq/
@ 2017-04-20 10:45 Marek Szuba
  0 siblings, 0 replies; 3+ messages in thread
From: Marek Szuba @ 2017-04-20 10:45 UTC (permalink / raw
  To: gentoo-commits

commit:     2c34fea1edd4488742bf9345ab857d64985de2dc
Author:     Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 20 10:45:20 2017 +0000
Commit:     Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Thu Apr 20 10:45:20 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c34fea1

dev-python/dirq: enforce PYTHON_REQUIRED_USE

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-python/dirq/dirq-1.7.1.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/dirq/dirq-1.7.1.ebuild b/dev-python/dirq/dirq-1.7.1.ebuild
index e304075fa72..5fd3db570d6 100644
--- a/dev-python/dirq/dirq-1.7.1.ebuild
+++ b/dev-python/dirq/dirq-1.7.1.ebuild
@@ -17,6 +17,7 @@ KEYWORDS="~amd64"
 
 RDEPEND="${PYTHON_DEPS}"
 DEPEND="${RDEPEND}"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 
 # Note: as of 2017-03-22, dirq tests are known to fail in Docker containers
 python_test() {


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/dirq/
@ 2017-12-16  8:20 Tobias Klausmann
  0 siblings, 0 replies; 3+ messages in thread
From: Tobias Klausmann @ 2017-12-16  8:20 UTC (permalink / raw
  To: gentoo-commits

commit:     0a72610158666022513ca10340eb2a91309c67d9
Author:     Tobias Klausmann <klausman <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 16 08:19:55 2017 +0000
Commit:     Tobias Klausmann <klausman <AT> gentoo <DOT> org>
CommitDate: Sat Dec 16 08:19:55 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a726101

dev-python/dirq-1.7.1-r0: amd64 stable

Gentoo-Bug: http://bugs.gentoo.org/626780

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

diff --git a/dev-python/dirq/dirq-1.7.1.ebuild b/dev-python/dirq/dirq-1.7.1.ebuild
index 5fd3db570d6..6bfe5e8640c 100644
--- a/dev-python/dirq/dirq-1.7.1.ebuild
+++ b/dev-python/dirq/dirq-1.7.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 
 RDEPEND="${PYTHON_DEPS}"
 DEPEND="${RDEPEND}"


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

end of thread, other threads:[~2017-12-16  8:20 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-04-20 10:45 [gentoo-commits] repo/gentoo:master commit in: dev-python/dirq/ Marek Szuba
  -- strict thread matches above, loose matches on Subject: below --
2017-12-16  8:20 Tobias Klausmann
2017-03-22 16:37 Marek Szuba

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