* [gentoo-commits] repo/gentoo:master commit in: dev-python/minidb/
@ 2016-01-20 14:45 Patrice Clement
0 siblings, 0 replies; 40+ messages in thread
From: Patrice Clement @ 2016-01-20 14:45 UTC (permalink / raw
To: gentoo-commits
commit: 3339a586b474023f7cf638d90bc10a4227b3c7ef
Author: Louis Sautier <sautier.louis <AT> gmail <DOT> com>
AuthorDate: Wed Jan 20 12:05:04 2016 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Wed Jan 20 12:05:04 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3339a586
dev-python/minidb: new dep required by www-misc/urlwatch-2.0
Package-Manager: portage-2.2.27
dev-python/minidb/Manifest | 1 +
dev-python/minidb/metadata.xml | 14 ++++++++++++++
dev-python/minidb/minidb-2.0.1.ebuild | 29 +++++++++++++++++++++++++++++
3 files changed, 44 insertions(+)
diff --git a/dev-python/minidb/Manifest b/dev-python/minidb/Manifest
new file mode 100644
index 0000000..23002d4
--- /dev/null
+++ b/dev-python/minidb/Manifest
@@ -0,0 +1 @@
+DIST minidb-2.0.1.tar.gz 13848 SHA256 be894fc4e68e3ce9b84b3992f12fbbea5051d3c2a11019b1da463099f24725f5 SHA512 98be264ba669ef08f180c469ca8375540436244228ee4e0c4e4b0511425b909eb4c64dc812a27d0b490af5972e0897538f905590b7d2dd19f6fdd160280a6b4b WHIRLPOOL a209d44f26add8ebae0ad142c94fdfcd4698b80d4f7e491ad16d36a4704f8fa9f3e8649aead9b268cb80055c6ae9f4691e6428979e048907a79caef8165fb864
diff --git a/dev-python/minidb/metadata.xml b/dev-python/minidb/metadata.xml
new file mode 100644
index 0000000..82fbe79
--- /dev/null
+++ b/dev-python/minidb/metadata.xml
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <herd>proxy-maintainers</herd>
+ <maintainer>
+ <email>sautier.louis@gmail.com</email>
+ <name>Louis Sautier</name>
+ <description>Proxied maintainer; set to assignee in all bugs</description>
+ </maintainer>
+ <upstream>
+ <remote-id type="pypi">minidb</remote-id>
+ <remote-id type="github">thp/minidb</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/dev-python/minidb/minidb-2.0.1.ebuild b/dev-python/minidb/minidb-2.0.1.ebuild
new file mode 100644
index 0000000..0db93ab
--- /dev/null
+++ b/dev-python/minidb/minidb-2.0.1.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python{3_4,3_5} )
+
+inherit distutils-r1
+
+DESCRIPTION="Simple SQLite-based object store"
+HOMEPAGE="http://thp.io/2010/minidb/"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${PN}-${PV}.tar.gz"
+
+LICENSE="ISC"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+DEPEND="
+ dev-python/setuptools[${PYTHON_USEDEP}]
+ test? ( dev-python/nose[${PYTHON_USEDEP}] )
+"
+
+S="${WORKDIR}/${PN}-${PV}"
+
+python_test() {
+ nosetests test || die "tests failed with ${EPYTHON}"
+}
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/minidb/
@ 2016-03-29 13:53 Ian Delaney
0 siblings, 0 replies; 40+ messages in thread
From: Ian Delaney @ 2016-03-29 13:53 UTC (permalink / raw
To: gentoo-commits
commit: 85dab0e18944605c7417a6f758edcf4f3021b910
Author: Louis Sautier <sautier.louis <AT> gmail <DOT> com>
AuthorDate: Tue Mar 29 12:03:25 2016 +0000
Commit: Ian Delaney <idella4 <AT> gentoo <DOT> org>
CommitDate: Tue Mar 29 13:52:47 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85dab0e1
dev-python/minidb: add missing PYTHON_REQ_USE, minor fixes
edit to vn. 2.0.1
Package-Manager: portage-2.2.28
Closes: https://github.com/gentoo/gentoo/pull/1160
Signed-off-by: Ian Delaney <idella4 <AT> gentoo.org>
dev-python/minidb/metadata.xml | 1 +
dev-python/minidb/minidb-2.0.1.ebuild | 7 +++----
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/dev-python/minidb/metadata.xml b/dev-python/minidb/metadata.xml
index 41161b6..9144106 100644
--- a/dev-python/minidb/metadata.xml
+++ b/dev-python/minidb/metadata.xml
@@ -13,5 +13,6 @@
<upstream>
<remote-id type="pypi">minidb</remote-id>
<remote-id type="github">thp/minidb</remote-id>
+ <bugs-to>https://github.com/thp/minidb/issues</bugs-to>
</upstream>
</pkgmetadata>
diff --git a/dev-python/minidb/minidb-2.0.1.ebuild b/dev-python/minidb/minidb-2.0.1.ebuild
index 0db93ab..c3097b0 100644
--- a/dev-python/minidb/minidb-2.0.1.ebuild
+++ b/dev-python/minidb/minidb-2.0.1.ebuild
@@ -2,15 +2,16 @@
# Distributed under the terms of the GNU General Public License v2
# $Id$
-EAPI=5
+EAPI=6
PYTHON_COMPAT=( python{3_4,3_5} )
+PYTHON_REQ_USE="sqlite"
inherit distutils-r1
DESCRIPTION="Simple SQLite-based object store"
HOMEPAGE="http://thp.io/2010/minidb/"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${PN}-${PV}.tar.gz"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="ISC"
SLOT="0"
@@ -22,8 +23,6 @@ DEPEND="
test? ( dev-python/nose[${PYTHON_USEDEP}] )
"
-S="${WORKDIR}/${PN}-${PV}"
-
python_test() {
nosetests test || die "tests failed with ${EPYTHON}"
}
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/minidb/
@ 2016-07-04 0:05 Göktürk Yüksek
0 siblings, 0 replies; 40+ messages in thread
From: Göktürk Yüksek @ 2016-07-04 0:05 UTC (permalink / raw
To: gentoo-commits
commit: b6ed47fc578522a2fe79c00af487167ceb5808b3
Author: Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 3 23:24:10 2016 +0000
Commit: Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
CommitDate: Mon Jul 4 00:03:27 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6ed47fc
dev-python/minidb: revbump to fix vdb breakage
Commit 85dab0e18944605c7417a6f758edcf4f3021b910 adds PYTHON_REQ_USE in
place which introduces a new runtime dependency on python. Revbump to
fix possible vdb breakage.
Package-Manager: portage-2.2.28
dev-python/minidb/{minidb-2.0.1.ebuild => minidb-2.0.1-r1.ebuild} | 0
1 file changed, 0 insertions(+), 0 deletions(-)
diff --git a/dev-python/minidb/minidb-2.0.1.ebuild b/dev-python/minidb/minidb-2.0.1-r1.ebuild
similarity index 100%
rename from dev-python/minidb/minidb-2.0.1.ebuild
rename to dev-python/minidb/minidb-2.0.1-r1.ebuild
^ permalink raw reply [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/minidb/
@ 2016-09-03 22:00 Patrice Clement
0 siblings, 0 replies; 40+ messages in thread
From: Patrice Clement @ 2016-09-03 22:00 UTC (permalink / raw
To: gentoo-commits
commit: 0822801f47adeea595582b658ad74eb1ee126abc
Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 3 21:58:50 2016 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Sat Sep 3 22:00:19 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0822801f
dev-python/minidb: Stable for amd64. Retroactively mark stable for the remaining arches using the ALLARCHES policy.
Package-Manager: portage-2.2.28
dev-python/minidb/minidb-2.0.1-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/minidb/minidb-2.0.1-r1.ebuild b/dev-python/minidb/minidb-2.0.1-r1.ebuild
index c3097b0..3df0dce 100644
--- a/dev-python/minidb/minidb-2.0.1-r1.ebuild
+++ b/dev-python/minidb/minidb-2.0.1-r1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="ISC"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
IUSE="test"
DEPEND="
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/minidb/
@ 2017-01-16 9:28 David Seifert
0 siblings, 0 replies; 40+ messages in thread
From: David Seifert @ 2017-01-16 9:28 UTC (permalink / raw
To: gentoo-commits
commit: b9e07140ae13284b7501e02e1ce24e12f27fd9c5
Author: Louis Sautier <sautier.louis <AT> gmail <DOT> com>
AuthorDate: Mon Jan 16 00:51:09 2017 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Mon Jan 16 09:27:39 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9e07140
dev-python/minidb: bump to 2.0.2
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Closes: https://github.com/gentoo/gentoo/pull/3496
dev-python/minidb/Manifest | 1 +
dev-python/minidb/metadata.xml | 1 -
dev-python/minidb/minidb-2.0.2.ebuild | 28 ++++++++++++++++++++++++++++
3 files changed, 29 insertions(+), 1 deletion(-)
diff --git a/dev-python/minidb/Manifest b/dev-python/minidb/Manifest
index 23002d4..e4c0ebe 100644
--- a/dev-python/minidb/Manifest
+++ b/dev-python/minidb/Manifest
@@ -1 +1,2 @@
DIST minidb-2.0.1.tar.gz 13848 SHA256 be894fc4e68e3ce9b84b3992f12fbbea5051d3c2a11019b1da463099f24725f5 SHA512 98be264ba669ef08f180c469ca8375540436244228ee4e0c4e4b0511425b909eb4c64dc812a27d0b490af5972e0897538f905590b7d2dd19f6fdd160280a6b4b WHIRLPOOL a209d44f26add8ebae0ad142c94fdfcd4698b80d4f7e491ad16d36a4704f8fa9f3e8649aead9b268cb80055c6ae9f4691e6428979e048907a79caef8165fb864
+DIST minidb-2.0.2.tar.gz 13928 SHA256 43d59231556e9ed43d88c8c1ffcca30886b4db6436625599eeeb22bb9f74ab2b SHA512 92879d6df61b0f9f72f9fe8f1cf38d559477983c6bba8c88ed02289570daff02f6f8d7010c0a95ffce049ab67be69323c47caefdfe3a8b008038377235ed9a5f WHIRLPOOL 3ec87fc16ca02c817c70917a8bb0b3da5f12aeaf0b54827551b27a1549ad8daad635d88a81a14730c9deea50ca582f201cbef83ca929a14d91b1b722d5865a58
diff --git a/dev-python/minidb/metadata.xml b/dev-python/minidb/metadata.xml
index 9144106..0d15c31 100644
--- a/dev-python/minidb/metadata.xml
+++ b/dev-python/minidb/metadata.xml
@@ -4,7 +4,6 @@
<maintainer type="person">
<email>sautier.louis@gmail.com</email>
<name>Louis Sautier</name>
- <description>Proxied maintainer; set to assignee in all bugs</description>
</maintainer>
<maintainer type="project">
<email>proxy-maint@gentoo.org</email>
diff --git a/dev-python/minidb/minidb-2.0.2.ebuild b/dev-python/minidb/minidb-2.0.2.ebuild
new file mode 100644
index 00000000..48fb218
--- /dev/null
+++ b/dev-python/minidb/minidb-2.0.2.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python{3_4,3_5} )
+PYTHON_REQ_USE="sqlite"
+
+inherit distutils-r1
+
+DESCRIPTION="Simple SQLite-based object store"
+HOMEPAGE="https://thp.io/2010/minidb/"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="ISC"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+DEPEND="
+ dev-python/setuptools[${PYTHON_USEDEP}]
+ test? ( dev-python/nose[${PYTHON_USEDEP}] )
+"
+
+python_test() {
+ nosetests test || die "tests failed with ${EPYTHON}"
+}
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/minidb/
@ 2017-01-16 9:28 David Seifert
0 siblings, 0 replies; 40+ messages in thread
From: David Seifert @ 2017-01-16 9:28 UTC (permalink / raw
To: gentoo-commits
commit: d60c37233136c1999dc8f7f8613079510475e60c
Author: Louis Sautier <sautier.louis <AT> gmail <DOT> com>
AuthorDate: Mon Jan 16 00:53:53 2017 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Mon Jan 16 09:27:44 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d60c3723
dev-python/minidb: update HOMEPAGE
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Closes: https://github.com/gentoo/gentoo/pull/3496
dev-python/minidb/minidb-2.0.1-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-python/minidb/minidb-2.0.1-r1.ebuild b/dev-python/minidb/minidb-2.0.1-r1.ebuild
index 3df0dce..ea39cd2 100644
--- a/dev-python/minidb/minidb-2.0.1-r1.ebuild
+++ b/dev-python/minidb/minidb-2.0.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
@@ -10,7 +10,7 @@ PYTHON_REQ_USE="sqlite"
inherit distutils-r1
DESCRIPTION="Simple SQLite-based object store"
-HOMEPAGE="http://thp.io/2010/minidb/"
+HOMEPAGE="https://thp.io/2010/minidb/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="ISC"
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/minidb/
@ 2017-05-16 23:19 Manuel Rüger
0 siblings, 0 replies; 40+ messages in thread
From: Manuel Rüger @ 2017-05-16 23:19 UTC (permalink / raw
To: gentoo-commits
commit: 30cde42da94f3c296fa5edc249a41e3b12911cc7
Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Tue May 16 23:19:19 2017 +0000
Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Tue May 16 23:19:19 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30cde42d
dev-python/minidb: Add python3_6
Package-Manager: Portage-2.3.5, Repoman-2.3.2
dev-python/minidb/minidb-2.0.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/minidb/minidb-2.0.2.ebuild b/dev-python/minidb/minidb-2.0.2.ebuild
index 73bbc42ce04..c99962ef184 100644
--- a/dev-python/minidb/minidb-2.0.2.ebuild
+++ b/dev-python/minidb/minidb-2.0.2.ebuild
@@ -3,7 +3,7 @@
EAPI=6
-PYTHON_COMPAT=( python{3_4,3_5} )
+PYTHON_COMPAT=( python3_{4,5,6} )
PYTHON_REQ_USE="sqlite"
inherit distutils-r1
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/minidb/
@ 2018-06-18 10:34 Louis Sautier
0 siblings, 0 replies; 40+ messages in thread
From: Louis Sautier @ 2018-06-18 10:34 UTC (permalink / raw
To: gentoo-commits
commit: 195ba3a27946b54dee00fef8ea645216fe89da25
Author: Louis Sautier <sbraz <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 17 23:32:14 2018 +0000
Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org>
CommitDate: Mon Jun 18 10:33:58 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=195ba3a2
dev-python/minidb: change my email in metadata.xml
Package-Manager: Portage-2.3.40, Repoman-2.3.9
dev-python/minidb/metadata.xml | 6 +-----
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/dev-python/minidb/metadata.xml b/dev-python/minidb/metadata.xml
index 0d15c314bd9..91fac9f6e93 100644
--- a/dev-python/minidb/metadata.xml
+++ b/dev-python/minidb/metadata.xml
@@ -2,13 +2,9 @@
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
- <email>sautier.louis@gmail.com</email>
+ <email>sbraz@gentoo.org</email>
<name>Louis Sautier</name>
</maintainer>
- <maintainer type="project">
- <email>proxy-maint@gentoo.org</email>
- <name>Proxy Maintainers</name>
- </maintainer>
<upstream>
<remote-id type="pypi">minidb</remote-id>
<remote-id type="github">thp/minidb</remote-id>
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/minidb/
@ 2018-06-24 13:57 Louis Sautier
0 siblings, 0 replies; 40+ messages in thread
From: Louis Sautier @ 2018-06-24 13:57 UTC (permalink / raw
To: gentoo-commits
commit: 8d402c3e419bb10594b8fd7cc4936171ec3b5c1c
Author: Louis Sautier <sbraz <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 24 13:56:39 2018 +0000
Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org>
CommitDate: Sun Jun 24 13:56:39 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d402c3e
dev-python/minidb: amd64 and x86 stable
Bug: https://bugs.gentoo.org/658934
Package-Manager: Portage-2.3.40, Repoman-2.3.9
dev-python/minidb/minidb-2.0.2.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-python/minidb/minidb-2.0.2.ebuild b/dev-python/minidb/minidb-2.0.2.ebuild
index c99962ef184..8648a165355 100644
--- a/dev-python/minidb/minidb-2.0.2.ebuild
+++ b/dev-python/minidb/minidb-2.0.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="ISC"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
IUSE="test"
DEPEND="
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/minidb/
@ 2018-07-21 14:30 Louis Sautier
0 siblings, 0 replies; 40+ messages in thread
From: Louis Sautier @ 2018-07-21 14:30 UTC (permalink / raw
To: gentoo-commits
commit: ebf9e4919796106103cd1a8ff4ee19e78d405b63
Author: Louis Sautier <sbraz <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 21 14:28:51 2018 +0000
Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org>
CommitDate: Sat Jul 21 14:30:08 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebf9e491
dev-python/minidb: EAPI=7, add python 3.7
Package-Manager: Portage-2.3.43, Repoman-2.3.10
dev-python/minidb/minidb-2.0.2-r1.ebuild | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/dev-python/minidb/minidb-2.0.2-r1.ebuild b/dev-python/minidb/minidb-2.0.2-r1.ebuild
new file mode 100644
index 00000000000..51dff2891b1
--- /dev/null
+++ b/dev-python/minidb/minidb-2.0.2-r1.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{4,5,6,7} )
+PYTHON_REQ_USE="sqlite"
+
+inherit distutils-r1
+
+DESCRIPTION="Simple SQLite-based object store"
+HOMEPAGE="https://thp.io/2010/minidb/"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="ISC"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+BDEPEND="
+ dev-python/setuptools[${PYTHON_USEDEP}]
+ test? ( dev-python/nose[${PYTHON_USEDEP}] )
+"
+
+python_test() {
+ nosetests test || die "tests failed with ${EPYTHON}"
+}
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/minidb/
@ 2018-07-21 14:30 Louis Sautier
0 siblings, 0 replies; 40+ messages in thread
From: Louis Sautier @ 2018-07-21 14:30 UTC (permalink / raw
To: gentoo-commits
commit: d591652d56c806c2e2717b77b6b5a73a61fdad6a
Author: Louis Sautier <sbraz <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 21 14:29:43 2018 +0000
Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org>
CommitDate: Sat Jul 21 14:30:08 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d591652d
dev-python/minidb: remove old
Package-Manager: Portage-2.3.43, Repoman-2.3.10
dev-python/minidb/Manifest | 1 -
dev-python/minidb/minidb-2.0.1-r1.ebuild | 27 ---------------------------
2 files changed, 28 deletions(-)
diff --git a/dev-python/minidb/Manifest b/dev-python/minidb/Manifest
index 0735a804f77..3aaa30e22c9 100644
--- a/dev-python/minidb/Manifest
+++ b/dev-python/minidb/Manifest
@@ -1,2 +1 @@
-DIST minidb-2.0.1.tar.gz 13848 BLAKE2B 4aeea547693ccb8a67fba147b640535952402dce8b97c6aa1a78ce92997ddfbfc34ecbc4d444eedfd7b3ddcfe71841777eba0bb2fbdeba49114032baaea9c0a6 SHA512 98be264ba669ef08f180c469ca8375540436244228ee4e0c4e4b0511425b909eb4c64dc812a27d0b490af5972e0897538f905590b7d2dd19f6fdd160280a6b4b
DIST minidb-2.0.2.tar.gz 13928 BLAKE2B 7b6997bd0ed852561c1a45e1d8f63030798c59ebbe67ba3e9f38c08eddcf22028756b17c5ce8aa460e5d3113ef54cdafe782cb471aabfe208b093af702694cb7 SHA512 92879d6df61b0f9f72f9fe8f1cf38d559477983c6bba8c88ed02289570daff02f6f8d7010c0a95ffce049ab67be69323c47caefdfe3a8b008038377235ed9a5f
diff --git a/dev-python/minidb/minidb-2.0.1-r1.ebuild b/dev-python/minidb/minidb-2.0.1-r1.ebuild
deleted file mode 100644
index 33437a21986..00000000000
--- a/dev-python/minidb/minidb-2.0.1-r1.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{3_4,3_5} )
-PYTHON_REQ_USE="sqlite"
-
-inherit distutils-r1
-
-DESCRIPTION="Simple SQLite-based object store"
-HOMEPAGE="https://thp.io/2010/minidb/"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="ISC"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="test"
-
-DEPEND="
- dev-python/setuptools[${PYTHON_USEDEP}]
- test? ( dev-python/nose[${PYTHON_USEDEP}] )
-"
-
-python_test() {
- nosetests test || die "tests failed with ${EPYTHON}"
-}
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/minidb/
@ 2019-12-03 3:02 Aaron Bauman
0 siblings, 0 replies; 40+ messages in thread
From: Aaron Bauman @ 2019-12-03 3:02 UTC (permalink / raw
To: gentoo-commits
commit: 536910b5adcebe0572505c9a2c7936059fc82fd7
Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 3 02:59:45 2019 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Tue Dec 3 03:02:17 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=536910b5
dev-python/minidb: amd64 stable
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
Package-Manager: Portage-2.3.80, Repoman-2.3.19
dev-python/minidb/minidb-2.0.2-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/minidb/minidb-2.0.2-r1.ebuild b/dev-python/minidb/minidb-2.0.2-r1.ebuild
index e3e82844285..d7cabf043a3 100644
--- a/dev-python/minidb/minidb-2.0.2-r1.ebuild
+++ b/dev-python/minidb/minidb-2.0.2-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="ISC"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
IUSE="test"
BDEPEND="
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/minidb/
@ 2020-03-23 22:01 Louis Sautier
0 siblings, 0 replies; 40+ messages in thread
From: Louis Sautier @ 2020-03-23 22:01 UTC (permalink / raw
To: gentoo-commits
commit: 07b8bfd47f929a4f2013da7fca1986b6a0e2fda7
Author: Louis Sautier <sbraz <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 23 21:56:37 2020 +0000
Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org>
CommitDate: Mon Mar 23 21:56:37 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07b8bfd4
dev-python/minidb: bump to 2.0.3, Python 3.8 support
Also rely on more modern distutils-r1 features.
Package-Manager: Portage-2.3.93, Repoman-2.3.20
Signed-off-by: Louis Sautier <sbraz <AT> gentoo.org>
dev-python/minidb/Manifest | 1 +
dev-python/minidb/minidb-2.0.3.ebuild | 20 ++++++++++++++++++++
2 files changed, 21 insertions(+)
diff --git a/dev-python/minidb/Manifest b/dev-python/minidb/Manifest
index 3aaa30e22c9..d200f641992 100644
--- a/dev-python/minidb/Manifest
+++ b/dev-python/minidb/Manifest
@@ -1 +1,2 @@
DIST minidb-2.0.2.tar.gz 13928 BLAKE2B 7b6997bd0ed852561c1a45e1d8f63030798c59ebbe67ba3e9f38c08eddcf22028756b17c5ce8aa460e5d3113ef54cdafe782cb471aabfe208b093af702694cb7 SHA512 92879d6df61b0f9f72f9fe8f1cf38d559477983c6bba8c88ed02289570daff02f6f8d7010c0a95ffce049ab67be69323c47caefdfe3a8b008038377235ed9a5f
+DIST minidb-2.0.3.tar.gz 13992 BLAKE2B 7ccb26625c199517ee63e99b1839037046c29a4c72a26f457ef3b4c22ef1f23b0bf632b37790c2981fd2c08929a39e8f015b4cf890d04d5e9926cd07b5def699 SHA512 90e2c51af64a373a9dce5e6fad94440a8e5ff3136ba4004deebb5f9a7a7f039ebf1b903a361d678771b6e18e951cacbd7392f1fe2df8db04cef04526a07a3ce2
diff --git a/dev-python/minidb/minidb-2.0.3.ebuild b/dev-python/minidb/minidb-2.0.3.ebuild
new file mode 100644
index 00000000000..06868ee324b
--- /dev/null
+++ b/dev-python/minidb/minidb-2.0.3.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7,8} )
+PYTHON_REQ_USE="sqlite"
+DISTUTILS_USE_SETUPTOOLS=no
+
+inherit distutils-r1
+
+DESCRIPTION="Simple SQLite-based object store"
+HOMEPAGE="https://thp.io/2010/minidb/"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="ISC"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+distutils_enable_tests nose
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/minidb/
@ 2020-03-25 13:25 Michał Górny
0 siblings, 0 replies; 40+ messages in thread
From: Michał Górny @ 2020-03-25 13:25 UTC (permalink / raw
To: gentoo-commits
commit: 04e41f01df5329d747f1cb11f44d9f460addcb02
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 25 13:03:51 2020 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Mar 25 13:25:10 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04e41f01
dev-python/minidb: Stabilize 2.0.2-r1 ALLARCHES
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/minidb/minidb-2.0.2-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/minidb/minidb-2.0.2-r1.ebuild b/dev-python/minidb/minidb-2.0.2-r1.ebuild
index b65d38614eb..9ac6acb7f24 100644
--- a/dev-python/minidb/minidb-2.0.2-r1.ebuild
+++ b/dev-python/minidb/minidb-2.0.2-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="ISC"
SLOT="0"
-KEYWORDS="amd64 arm64 ~x86"
+KEYWORDS="amd64 arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/minidb/
@ 2020-03-25 13:25 Michał Górny
0 siblings, 0 replies; 40+ messages in thread
From: Michał Górny @ 2020-03-25 13:25 UTC (permalink / raw
To: gentoo-commits
commit: 18045f97fadef72225ac68ba8f18ddc8249daa47
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 25 13:04:00 2020 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Mar 25 13:25:12 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18045f97
dev-python/minidb: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/minidb/minidb-2.0.2.ebuild | 28 ----------------------------
1 file changed, 28 deletions(-)
diff --git a/dev-python/minidb/minidb-2.0.2.ebuild b/dev-python/minidb/minidb-2.0.2.ebuild
deleted file mode 100644
index 8dcd822edca..00000000000
--- a/dev-python/minidb/minidb-2.0.2.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python3_6 )
-PYTHON_REQ_USE="sqlite"
-
-inherit distutils-r1
-
-DESCRIPTION="Simple SQLite-based object store"
-HOMEPAGE="https://thp.io/2010/minidb/"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="ISC"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-DEPEND="
- dev-python/setuptools[${PYTHON_USEDEP}]
- test? ( dev-python/nose[${PYTHON_USEDEP}] )
-"
-
-python_test() {
- nosetests test || die "tests failed with ${EPYTHON}"
-}
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/minidb/
@ 2020-05-03 21:14 Louis Sautier
0 siblings, 0 replies; 40+ messages in thread
From: Louis Sautier @ 2020-05-03 21:14 UTC (permalink / raw
To: gentoo-commits
commit: 9141de6fb2f2573dfccd8bc862f01fed47356838
Author: Louis Sautier <sbraz <AT> gentoo <DOT> org>
AuthorDate: Sun May 3 20:41:37 2020 +0000
Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org>
CommitDate: Sun May 3 21:14:46 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9141de6f
dev-python/minidb: bump to 2.0.4, uses pytest instead of nose
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Louis Sautier <sbraz <AT> gentoo.org>
dev-python/minidb/Manifest | 1 +
dev-python/minidb/minidb-2.0.4.ebuild | 20 ++++++++++++++++++++
2 files changed, 21 insertions(+)
diff --git a/dev-python/minidb/Manifest b/dev-python/minidb/Manifest
index d200f641992..23e648bba2f 100644
--- a/dev-python/minidb/Manifest
+++ b/dev-python/minidb/Manifest
@@ -1,2 +1,3 @@
DIST minidb-2.0.2.tar.gz 13928 BLAKE2B 7b6997bd0ed852561c1a45e1d8f63030798c59ebbe67ba3e9f38c08eddcf22028756b17c5ce8aa460e5d3113ef54cdafe782cb471aabfe208b093af702694cb7 SHA512 92879d6df61b0f9f72f9fe8f1cf38d559477983c6bba8c88ed02289570daff02f6f8d7010c0a95ffce049ab67be69323c47caefdfe3a8b008038377235ed9a5f
DIST minidb-2.0.3.tar.gz 13992 BLAKE2B 7ccb26625c199517ee63e99b1839037046c29a4c72a26f457ef3b4c22ef1f23b0bf632b37790c2981fd2c08929a39e8f015b4cf890d04d5e9926cd07b5def699 SHA512 90e2c51af64a373a9dce5e6fad94440a8e5ff3136ba4004deebb5f9a7a7f039ebf1b903a361d678771b6e18e951cacbd7392f1fe2df8db04cef04526a07a3ce2
+DIST minidb-2.0.4.tar.gz 14104 BLAKE2B 020996d1e83a84aad26d073b3fcf5161edc1698f0876e499b5dddf88bc5ad776d5203c9dfd49cb9651f66425dad5bf9b3a751940da2cb3f841157af23940ccb8 SHA512 c7f34b20fbfe3300957d1e73a6237850209b55ed08f7d9de1e5dc710fcce8360e359136f8f996aedb38620ae08122e3e1c44922c60db6c16a1d57711d47a8c61
diff --git a/dev-python/minidb/minidb-2.0.4.ebuild b/dev-python/minidb/minidb-2.0.4.ebuild
new file mode 100644
index 00000000000..4f6ce1effae
--- /dev/null
+++ b/dev-python/minidb/minidb-2.0.4.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7,8} )
+PYTHON_REQ_USE="sqlite"
+DISTUTILS_USE_SETUPTOOLS=no
+
+inherit distutils-r1
+
+DESCRIPTION="Simple SQLite-based object store"
+HOMEPAGE="https://thp.io/2010/minidb/"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="ISC"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+distutils_enable_tests pytest
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/minidb/
@ 2020-06-03 15:10 Agostino Sarubbo
0 siblings, 0 replies; 40+ messages in thread
From: Agostino Sarubbo @ 2020-06-03 15:10 UTC (permalink / raw
To: gentoo-commits
commit: 52d66ab47adeff8cededb01cdecef5170ea60b4f
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 3 15:09:34 2020 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Wed Jun 3 15:09:34 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52d66ab4
dev-python/minidb: amd64 stable wrt bug #726596
Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
dev-python/minidb/minidb-2.0.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/minidb/minidb-2.0.3.ebuild b/dev-python/minidb/minidb-2.0.3.ebuild
index 06868ee324b..057b0efa6d6 100644
--- a/dev-python/minidb/minidb-2.0.3.ebuild
+++ b/dev-python/minidb/minidb-2.0.3.ebuild
@@ -15,6 +15,6 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="ISC"
SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 ~x86"
distutils_enable_tests nose
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/minidb/
@ 2020-06-03 15:21 Agostino Sarubbo
0 siblings, 0 replies; 40+ messages in thread
From: Agostino Sarubbo @ 2020-06-03 15:21 UTC (permalink / raw
To: gentoo-commits
commit: 851434ed88f6d1140c9c9c200cb33053160a2f28
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 3 15:21:24 2020 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Wed Jun 3 15:21:24 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=851434ed
dev-python/minidb: x86 stable wrt bug #726596
Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
dev-python/minidb/minidb-2.0.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/minidb/minidb-2.0.3.ebuild b/dev-python/minidb/minidb-2.0.3.ebuild
index 057b0efa6d6..b18609625fe 100644
--- a/dev-python/minidb/minidb-2.0.3.ebuild
+++ b/dev-python/minidb/minidb-2.0.3.ebuild
@@ -15,6 +15,6 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="ISC"
SLOT="0"
-KEYWORDS="amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
distutils_enable_tests nose
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/minidb/
@ 2020-06-06 19:31 Mart Raudsepp
0 siblings, 0 replies; 40+ messages in thread
From: Mart Raudsepp @ 2020-06-06 19:31 UTC (permalink / raw
To: gentoo-commits
commit: 0fc02a5bc8f3b4c61b92a95191d60492e81ea4a4
Author: Sam James (sam_c) <sam <AT> cmpct <DOT> info>
AuthorDate: Sat Jun 6 17:12:03 2020 +0000
Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
CommitDate: Sat Jun 6 19:30:48 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0fc02a5b
dev-python/minidb: arm64 stable (bug #726596)
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Sam James (sam_c) <sam <AT> cmpct.info>
Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
dev-python/minidb/minidb-2.0.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/minidb/minidb-2.0.3.ebuild b/dev-python/minidb/minidb-2.0.3.ebuild
index b18609625fe..2b821d0c673 100644
--- a/dev-python/minidb/minidb-2.0.3.ebuild
+++ b/dev-python/minidb/minidb-2.0.3.ebuild
@@ -15,6 +15,6 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="ISC"
SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
+KEYWORDS="amd64 arm64 x86"
distutils_enable_tests nose
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/minidb/
@ 2020-07-09 12:22 Michał Górny
0 siblings, 0 replies; 40+ messages in thread
From: Michał Górny @ 2020-07-09 12:22 UTC (permalink / raw
To: gentoo-commits
commit: e04b26170f6acdc7ccab715048341c32eca1c480
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 9 12:22:39 2020 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Jul 9 12:22:39 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e04b2617
dev-python/minidb: Stabilize 2.0.4 ALLARCHES, #731442
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/minidb/minidb-2.0.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/minidb/minidb-2.0.4.ebuild b/dev-python/minidb/minidb-2.0.4.ebuild
index 8f689962105..6430f1ee313 100644
--- a/dev-python/minidb/minidb-2.0.4.ebuild
+++ b/dev-python/minidb/minidb-2.0.4.ebuild
@@ -15,6 +15,6 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="ISC"
SLOT="0"
-KEYWORDS="~amd64 ~arm64 x86"
+KEYWORDS="amd64 arm64 x86"
distutils_enable_tests pytest
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/minidb/
@ 2020-07-09 12:22 Michał Górny
0 siblings, 0 replies; 40+ messages in thread
From: Michał Górny @ 2020-07-09 12:22 UTC (permalink / raw
To: gentoo-commits
commit: 702ebde3717e280b68f720d26eeab6936229c4b9
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 9 12:21:35 2020 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Jul 9 12:21:35 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=702ebde3
dev-python/minidb: Mark ALLARCHES
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/minidb/metadata.xml | 1 +
1 file changed, 1 insertion(+)
diff --git a/dev-python/minidb/metadata.xml b/dev-python/minidb/metadata.xml
index 91fac9f6e93..c2b5d697e18 100644
--- a/dev-python/minidb/metadata.xml
+++ b/dev-python/minidb/metadata.xml
@@ -5,6 +5,7 @@
<email>sbraz@gentoo.org</email>
<name>Louis Sautier</name>
</maintainer>
+ <stabilize-allarches/>
<upstream>
<remote-id type="pypi">minidb</remote-id>
<remote-id type="github">thp/minidb</remote-id>
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/minidb/
@ 2020-08-24 14:01 Louis Sautier
0 siblings, 0 replies; 40+ messages in thread
From: Louis Sautier @ 2020-08-24 14:01 UTC (permalink / raw
To: gentoo-commits
commit: e6c830fc5ee2442d19daa58b383471ffd4b65e68
Author: Louis Sautier <sbraz <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 24 13:37:50 2020 +0000
Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org>
CommitDate: Mon Aug 24 14:01:43 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6c830fc
dev-python/minidb: add Python 3.9 support
Package-Manager: Portage-3.0.3, Repoman-2.3.23
Signed-off-by: Louis Sautier <sbraz <AT> gentoo.org>
dev-python/minidb/minidb-2.0.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/minidb/minidb-2.0.4.ebuild b/dev-python/minidb/minidb-2.0.4.ebuild
index 6430f1ee313..41443b8339e 100644
--- a/dev-python/minidb/minidb-2.0.4.ebuild
+++ b/dev-python/minidb/minidb-2.0.4.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-PYTHON_COMPAT=( python3_{6,7,8} )
+PYTHON_COMPAT=( python3_{6,7,8,9} )
PYTHON_REQ_USE="sqlite"
DISTUTILS_USE_SETUPTOOLS=no
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/minidb/
@ 2021-05-09 21:57 Louis Sautier
0 siblings, 0 replies; 40+ messages in thread
From: Louis Sautier @ 2021-05-09 21:57 UTC (permalink / raw
To: gentoo-commits
commit: 1cac45594d3270417b2acdecd79e91eef8ef482e
Author: Louis Sautier <sbraz <AT> gentoo <DOT> org>
AuthorDate: Sun May 9 21:45:12 2021 +0000
Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org>
CommitDate: Sun May 9 21:56:50 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1cac4559
dev-python/minidb: enable Python 3.10
Signed-off-by: Louis Sautier <sbraz <AT> gentoo.org>
dev-python/minidb/minidb-2.0.4.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-python/minidb/minidb-2.0.4.ebuild b/dev-python/minidb/minidb-2.0.4.ebuild
index be7daa76636..76b8f51300b 100644
--- a/dev-python/minidb/minidb-2.0.4.ebuild
+++ b/dev-python/minidb/minidb-2.0.4.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-PYTHON_COMPAT=( python3_{7,8,9} )
+PYTHON_COMPAT=( python3_{7..10} )
PYTHON_REQ_USE="sqlite"
DISTUTILS_USE_SETUPTOOLS=no
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/minidb/
@ 2021-06-06 13:07 Louis Sautier
0 siblings, 0 replies; 40+ messages in thread
From: Louis Sautier @ 2021-06-06 13:07 UTC (permalink / raw
To: gentoo-commits
commit: 5fb94304ac0181675bbd0fccc74686d621ab4107
Author: Louis Sautier <sbraz <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 6 13:03:50 2021 +0000
Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org>
CommitDate: Sun Jun 6 13:06:37 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5fb94304
dev-python/minidb: add 2.0.5
Signed-off-by: Louis Sautier <sbraz <AT> gentoo.org>
dev-python/minidb/Manifest | 1 +
dev-python/minidb/minidb-2.0.5.ebuild | 20 ++++++++++++++++++++
2 files changed, 21 insertions(+)
diff --git a/dev-python/minidb/Manifest b/dev-python/minidb/Manifest
index 446cba019f4..d74b66c03f9 100644
--- a/dev-python/minidb/Manifest
+++ b/dev-python/minidb/Manifest
@@ -1 +1,2 @@
DIST minidb-2.0.4.tar.gz 14104 BLAKE2B 020996d1e83a84aad26d073b3fcf5161edc1698f0876e499b5dddf88bc5ad776d5203c9dfd49cb9651f66425dad5bf9b3a751940da2cb3f841157af23940ccb8 SHA512 c7f34b20fbfe3300957d1e73a6237850209b55ed08f7d9de1e5dc710fcce8360e359136f8f996aedb38620ae08122e3e1c44922c60db6c16a1d57711d47a8c61
+DIST minidb-2.0.5.tar.gz 11957 BLAKE2B 31b500e420f256988ddaff7271b143f628aea5ebf0abe77125d9ce5143dca3d3d3fb1061c39d325d5df564514b786d751dec90d82fc3310c0f76daf1b4683d02 SHA512 889e678a99c7a5dff5ae7ae2c3540e978f09616384450934f2f16797a3a06c9d863b57eced4b2cde0a4bdfa4923b754e473bde0905c86d948d3bdb81a8e6dbad
diff --git a/dev-python/minidb/minidb-2.0.5.ebuild b/dev-python/minidb/minidb-2.0.5.ebuild
new file mode 100644
index 00000000000..7fcf72270de
--- /dev/null
+++ b/dev-python/minidb/minidb-2.0.5.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7..10} )
+PYTHON_REQ_USE="sqlite"
+DISTUTILS_USE_SETUPTOOLS=no
+
+inherit distutils-r1
+
+DESCRIPTION="Simple SQLite-based object store"
+HOMEPAGE="https://thp.io/2010/minidb/"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="ISC"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+distutils_enable_tests pytest
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/minidb/
@ 2021-07-12 21:50 Sam James
0 siblings, 0 replies; 40+ messages in thread
From: Sam James @ 2021-07-12 21:50 UTC (permalink / raw
To: gentoo-commits
commit: 355599267ddb128bbec7db36ff5a03e6e6c7a9b6
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 12 21:47:52 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jul 12 21:47:52 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35559926
dev-python/minidb: Stabilize 2.0.5 ALLARCHES, #801757
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/minidb/minidb-2.0.5.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/minidb/minidb-2.0.5.ebuild b/dev-python/minidb/minidb-2.0.5.ebuild
index 7fcf72270de..76b8f51300b 100644
--- a/dev-python/minidb/minidb-2.0.5.ebuild
+++ b/dev-python/minidb/minidb-2.0.5.ebuild
@@ -15,6 +15,6 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="ISC"
SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 arm64 x86"
distutils_enable_tests pytest
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/minidb/
@ 2021-07-12 22:53 Michał Górny
0 siblings, 0 replies; 40+ messages in thread
From: Michał Górny @ 2021-07-12 22:53 UTC (permalink / raw
To: gentoo-commits
commit: 296b0b64586fd742c3d39804287caec9c550e2a8
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 12 22:49:25 2021 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Jul 12 22:49:25 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=296b0b64
dev-python/minidb: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/minidb/Manifest | 1 -
dev-python/minidb/minidb-2.0.4.ebuild | 20 --------------------
2 files changed, 21 deletions(-)
diff --git a/dev-python/minidb/Manifest b/dev-python/minidb/Manifest
index d74b66c03f9..603c0b63df2 100644
--- a/dev-python/minidb/Manifest
+++ b/dev-python/minidb/Manifest
@@ -1,2 +1 @@
-DIST minidb-2.0.4.tar.gz 14104 BLAKE2B 020996d1e83a84aad26d073b3fcf5161edc1698f0876e499b5dddf88bc5ad776d5203c9dfd49cb9651f66425dad5bf9b3a751940da2cb3f841157af23940ccb8 SHA512 c7f34b20fbfe3300957d1e73a6237850209b55ed08f7d9de1e5dc710fcce8360e359136f8f996aedb38620ae08122e3e1c44922c60db6c16a1d57711d47a8c61
DIST minidb-2.0.5.tar.gz 11957 BLAKE2B 31b500e420f256988ddaff7271b143f628aea5ebf0abe77125d9ce5143dca3d3d3fb1061c39d325d5df564514b786d751dec90d82fc3310c0f76daf1b4683d02 SHA512 889e678a99c7a5dff5ae7ae2c3540e978f09616384450934f2f16797a3a06c9d863b57eced4b2cde0a4bdfa4923b754e473bde0905c86d948d3bdb81a8e6dbad
diff --git a/dev-python/minidb/minidb-2.0.4.ebuild b/dev-python/minidb/minidb-2.0.4.ebuild
deleted file mode 100644
index 76b8f51300b..00000000000
--- a/dev-python/minidb/minidb-2.0.4.ebuild
+++ /dev/null
@@ -1,20 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..10} )
-PYTHON_REQ_USE="sqlite"
-DISTUTILS_USE_SETUPTOOLS=no
-
-inherit distutils-r1
-
-DESCRIPTION="Simple SQLite-based object store"
-HOMEPAGE="https://thp.io/2010/minidb/"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="ISC"
-SLOT="0"
-KEYWORDS="amd64 arm64 x86"
-
-distutils_enable_tests pytest
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/minidb/
@ 2022-01-29 15:43 Michał Górny
0 siblings, 0 replies; 40+ messages in thread
From: Michał Górny @ 2022-01-29 15:43 UTC (permalink / raw
To: gentoo-commits
commit: d57349a25e973b653773434b452bafc6fa10160f
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 29 15:30:24 2022 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Jan 29 15:43:44 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d57349a2
dev-python/minidb: Switch to PEP 517 build
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/minidb/minidb-2.0.5-r1.ebuild | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/dev-python/minidb/minidb-2.0.5-r1.ebuild b/dev-python/minidb/minidb-2.0.5-r1.ebuild
new file mode 100644
index 000000000000..3806d2037aa7
--- /dev/null
+++ b/dev-python/minidb/minidb-2.0.5-r1.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_REQ_USE="sqlite"
+
+inherit distutils-r1
+
+DESCRIPTION="Simple SQLite-based object store"
+HOMEPAGE="https://thp.io/2010/minidb/"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="ISC"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+distutils_enable_tests pytest
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/minidb/
@ 2022-02-17 19:03 Michał Górny
0 siblings, 0 replies; 40+ messages in thread
From: Michał Górny @ 2022-02-17 19:03 UTC (permalink / raw
To: gentoo-commits
commit: d6d05d1e60ce6b9fffc9c1f4831e08aa49b05b5e
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 17 18:40:24 2022 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Feb 17 19:03:05 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6d05d1e
dev-python/minidb: Bump to 2.0.6
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/minidb/Manifest | 1 +
dev-python/minidb/minidb-2.0.6.ebuild | 20 ++++++++++++++++++++
2 files changed, 21 insertions(+)
diff --git a/dev-python/minidb/Manifest b/dev-python/minidb/Manifest
index 603c0b63df2c..ec0240127fc0 100644
--- a/dev-python/minidb/Manifest
+++ b/dev-python/minidb/Manifest
@@ -1 +1,2 @@
DIST minidb-2.0.5.tar.gz 11957 BLAKE2B 31b500e420f256988ddaff7271b143f628aea5ebf0abe77125d9ce5143dca3d3d3fb1061c39d325d5df564514b786d751dec90d82fc3310c0f76daf1b4683d02 SHA512 889e678a99c7a5dff5ae7ae2c3540e978f09616384450934f2f16797a3a06c9d863b57eced4b2cde0a4bdfa4923b754e473bde0905c86d948d3bdb81a8e6dbad
+DIST minidb-2.0.6.tar.gz 12019 BLAKE2B 00e070d1cbe1966d44228f6ad13b9280ee8d79b1b37a72d685dc53b05d329e6ee02f77a7cac729e6c4e651d66d88d1fcd7be7f704e91b3ef2dddd8c928bfed50 SHA512 17c845d5bd45a99020a96a1e1aeaf2d7663f41dc23828b4ec00e49bebb066e021d751b9a1e1ee846973306198224f91543d20219beaa40b4d245cccc4f746b93
diff --git a/dev-python/minidb/minidb-2.0.6.ebuild b/dev-python/minidb/minidb-2.0.6.ebuild
new file mode 100644
index 000000000000..3806d2037aa7
--- /dev/null
+++ b/dev-python/minidb/minidb-2.0.6.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_REQ_USE="sqlite"
+
+inherit distutils-r1
+
+DESCRIPTION="Simple SQLite-based object store"
+HOMEPAGE="https://thp.io/2010/minidb/"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="ISC"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+distutils_enable_tests pytest
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/minidb/
@ 2022-03-15 11:52 Jakov Smolić
0 siblings, 0 replies; 40+ messages in thread
From: Jakov Smolić @ 2022-03-15 11:52 UTC (permalink / raw
To: gentoo-commits
commit: 4d9e9b8f464bb5748f1792311282db88cd218a78
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 15 11:52:00 2022 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Tue Mar 15 11:52:00 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d9e9b8f
dev-python/minidb: Stabilize 2.0.6 ALLARCHES, #835224
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
dev-python/minidb/minidb-2.0.6.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/minidb/minidb-2.0.6.ebuild b/dev-python/minidb/minidb-2.0.6.ebuild
index 3806d2037aa7..6ce89b4ea5db 100644
--- a/dev-python/minidb/minidb-2.0.6.ebuild
+++ b/dev-python/minidb/minidb-2.0.6.ebuild
@@ -15,6 +15,6 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="ISC"
SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 arm64 x86"
distutils_enable_tests pytest
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/minidb/
@ 2022-03-15 14:14 Michał Górny
0 siblings, 0 replies; 40+ messages in thread
From: Michał Górny @ 2022-03-15 14:14 UTC (permalink / raw
To: gentoo-commits
commit: 60afcbd5d7bd5341f249703f9db3a955b4be2e6d
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 15 14:13:20 2022 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Mar 15 14:13:20 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60afcbd5
dev-python/minidb: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/minidb/Manifest | 1 -
dev-python/minidb/minidb-2.0.5-r1.ebuild | 20 --------------------
dev-python/minidb/minidb-2.0.5.ebuild | 20 --------------------
3 files changed, 41 deletions(-)
diff --git a/dev-python/minidb/Manifest b/dev-python/minidb/Manifest
index ec0240127fc0..6dd535753525 100644
--- a/dev-python/minidb/Manifest
+++ b/dev-python/minidb/Manifest
@@ -1,2 +1 @@
-DIST minidb-2.0.5.tar.gz 11957 BLAKE2B 31b500e420f256988ddaff7271b143f628aea5ebf0abe77125d9ce5143dca3d3d3fb1061c39d325d5df564514b786d751dec90d82fc3310c0f76daf1b4683d02 SHA512 889e678a99c7a5dff5ae7ae2c3540e978f09616384450934f2f16797a3a06c9d863b57eced4b2cde0a4bdfa4923b754e473bde0905c86d948d3bdb81a8e6dbad
DIST minidb-2.0.6.tar.gz 12019 BLAKE2B 00e070d1cbe1966d44228f6ad13b9280ee8d79b1b37a72d685dc53b05d329e6ee02f77a7cac729e6c4e651d66d88d1fcd7be7f704e91b3ef2dddd8c928bfed50 SHA512 17c845d5bd45a99020a96a1e1aeaf2d7663f41dc23828b4ec00e49bebb066e021d751b9a1e1ee846973306198224f91543d20219beaa40b4d245cccc4f746b93
diff --git a/dev-python/minidb/minidb-2.0.5-r1.ebuild b/dev-python/minidb/minidb-2.0.5-r1.ebuild
deleted file mode 100644
index 3806d2037aa7..000000000000
--- a/dev-python/minidb/minidb-2.0.5-r1.ebuild
+++ /dev/null
@@ -1,20 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-PYTHON_REQ_USE="sqlite"
-
-inherit distutils-r1
-
-DESCRIPTION="Simple SQLite-based object store"
-HOMEPAGE="https://thp.io/2010/minidb/"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="ISC"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-
-distutils_enable_tests pytest
diff --git a/dev-python/minidb/minidb-2.0.5.ebuild b/dev-python/minidb/minidb-2.0.5.ebuild
deleted file mode 100644
index 76b8f51300b0..000000000000
--- a/dev-python/minidb/minidb-2.0.5.ebuild
+++ /dev/null
@@ -1,20 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..10} )
-PYTHON_REQ_USE="sqlite"
-DISTUTILS_USE_SETUPTOOLS=no
-
-inherit distutils-r1
-
-DESCRIPTION="Simple SQLite-based object store"
-HOMEPAGE="https://thp.io/2010/minidb/"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="ISC"
-SLOT="0"
-KEYWORDS="amd64 arm64 x86"
-
-distutils_enable_tests pytest
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/minidb/
@ 2022-06-04 19:57 Michał Górny
0 siblings, 0 replies; 40+ messages in thread
From: Michał Górny @ 2022-06-04 19:57 UTC (permalink / raw
To: gentoo-commits
commit: e924760d75afdc05974c704f30800311acfa69f6
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 4 19:54:19 2022 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Jun 4 19:57:51 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e924760d
dev-python/minidb: Add python@ as co-maint.
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/minidb/metadata.xml | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/dev-python/minidb/metadata.xml b/dev-python/minidb/metadata.xml
index 074aad559881..227580c72213 100644
--- a/dev-python/minidb/metadata.xml
+++ b/dev-python/minidb/metadata.xml
@@ -5,6 +5,10 @@
<email>sbraz@gentoo.org</email>
<name>Louis Sautier</name>
</maintainer>
+ <maintainer type="project">
+ <email>python@gentoo.org</email>
+ <name>Python</name>
+ </maintainer>
<stabilize-allarches/>
<upstream>
<remote-id type="pypi">minidb</remote-id>
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/minidb/
@ 2022-09-18 16:11 Arthur Zamarin
0 siblings, 0 replies; 40+ messages in thread
From: Arthur Zamarin @ 2022-09-18 16:11 UTC (permalink / raw
To: gentoo-commits
commit: 5f1b88b1446d071e6e0b2bc74deda32e3f9f5ded
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 17 11:51:09 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Sep 18 16:11:39 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f1b88b1
dev-python/minidb: add 2.0.7
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-python/minidb/Manifest | 1 +
dev-python/minidb/minidb-2.0.7.ebuild | 20 ++++++++++++++++++++
2 files changed, 21 insertions(+)
diff --git a/dev-python/minidb/Manifest b/dev-python/minidb/Manifest
index 6dd535753525..84d61e687ec1 100644
--- a/dev-python/minidb/Manifest
+++ b/dev-python/minidb/Manifest
@@ -1 +1,2 @@
DIST minidb-2.0.6.tar.gz 12019 BLAKE2B 00e070d1cbe1966d44228f6ad13b9280ee8d79b1b37a72d685dc53b05d329e6ee02f77a7cac729e6c4e651d66d88d1fcd7be7f704e91b3ef2dddd8c928bfed50 SHA512 17c845d5bd45a99020a96a1e1aeaf2d7663f41dc23828b4ec00e49bebb066e021d751b9a1e1ee846973306198224f91543d20219beaa40b4d245cccc4f746b93
+DIST minidb-2.0.7.tar.gz 12282 BLAKE2B 349aff4ec7497fc74edd632f719a6f67a2e7c1dff38ea1ea579c820e00dbad4e7269355e4b19ccfe53cf637f0ebdd6cd512e1af84456ef70c05d8e19024ae94d SHA512 dc04d2d51fdc4ecf30e234cb25e17bf0cd5c320dfca6bdd306b61eced89fe8f1fb5df93111ec0c04f1b258ecde467203a968e61b913feee87301dec7e93d9412
diff --git a/dev-python/minidb/minidb-2.0.7.ebuild b/dev-python/minidb/minidb-2.0.7.ebuild
new file mode 100644
index 000000000000..3806d2037aa7
--- /dev/null
+++ b/dev-python/minidb/minidb-2.0.7.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_REQ_USE="sqlite"
+
+inherit distutils-r1
+
+DESCRIPTION="Simple SQLite-based object store"
+HOMEPAGE="https://thp.io/2010/minidb/"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="ISC"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+distutils_enable_tests pytest
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/minidb/
@ 2022-09-18 16:11 Arthur Zamarin
0 siblings, 0 replies; 40+ messages in thread
From: Arthur Zamarin @ 2022-09-18 16:11 UTC (permalink / raw
To: gentoo-commits
commit: 0423b0debae176eee5dfb2af3fcd8efe2c89e919
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 17 11:52:11 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Sep 18 16:11:39 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0423b0de
dev-python/minidb: enable py3.11
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-python/minidb/minidb-2.0.7.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/minidb/minidb-2.0.7.ebuild b/dev-python/minidb/minidb-2.0.7.ebuild
index 3806d2037aa7..0ca8234c832e 100644
--- a/dev-python/minidb/minidb-2.0.7.ebuild
+++ b/dev-python/minidb/minidb-2.0.7.ebuild
@@ -4,7 +4,7 @@
EAPI=8
DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_COMPAT=( python3_{8..11} )
PYTHON_REQ_USE="sqlite"
inherit distutils-r1
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/minidb/
@ 2022-10-22 15:56 Arthur Zamarin
0 siblings, 0 replies; 40+ messages in thread
From: Arthur Zamarin @ 2022-10-22 15:56 UTC (permalink / raw
To: gentoo-commits
commit: 7aff03850ac7a649ad035f3ddb2d0f1d6809b3b1
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 22 15:56:03 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Oct 22 15:56:03 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7aff0385
dev-python/minidb: Stabilize 2.0.7 ALLARCHES, #877949
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-python/minidb/minidb-2.0.7.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/minidb/minidb-2.0.7.ebuild b/dev-python/minidb/minidb-2.0.7.ebuild
index 0ca8234c832e..86737bd6d156 100644
--- a/dev-python/minidb/minidb-2.0.7.ebuild
+++ b/dev-python/minidb/minidb-2.0.7.ebuild
@@ -15,6 +15,6 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="ISC"
SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 arm64 x86"
distutils_enable_tests pytest
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/minidb/
@ 2022-10-22 16:00 Michał Górny
0 siblings, 0 replies; 40+ messages in thread
From: Michał Górny @ 2022-10-22 16:00 UTC (permalink / raw
To: gentoo-commits
commit: af0dfce3b50d192f5d95e77824fd7cf99da8d05e
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 22 15:59:09 2022 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Oct 22 16:00:36 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af0dfce3
dev-python/minidb: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/minidb/Manifest | 1 -
dev-python/minidb/minidb-2.0.6.ebuild | 20 --------------------
2 files changed, 21 deletions(-)
diff --git a/dev-python/minidb/Manifest b/dev-python/minidb/Manifest
index 84d61e687ec1..01ec6158bfab 100644
--- a/dev-python/minidb/Manifest
+++ b/dev-python/minidb/Manifest
@@ -1,2 +1 @@
-DIST minidb-2.0.6.tar.gz 12019 BLAKE2B 00e070d1cbe1966d44228f6ad13b9280ee8d79b1b37a72d685dc53b05d329e6ee02f77a7cac729e6c4e651d66d88d1fcd7be7f704e91b3ef2dddd8c928bfed50 SHA512 17c845d5bd45a99020a96a1e1aeaf2d7663f41dc23828b4ec00e49bebb066e021d751b9a1e1ee846973306198224f91543d20219beaa40b4d245cccc4f746b93
DIST minidb-2.0.7.tar.gz 12282 BLAKE2B 349aff4ec7497fc74edd632f719a6f67a2e7c1dff38ea1ea579c820e00dbad4e7269355e4b19ccfe53cf637f0ebdd6cd512e1af84456ef70c05d8e19024ae94d SHA512 dc04d2d51fdc4ecf30e234cb25e17bf0cd5c320dfca6bdd306b61eced89fe8f1fb5df93111ec0c04f1b258ecde467203a968e61b913feee87301dec7e93d9412
diff --git a/dev-python/minidb/minidb-2.0.6.ebuild b/dev-python/minidb/minidb-2.0.6.ebuild
deleted file mode 100644
index 6ce89b4ea5db..000000000000
--- a/dev-python/minidb/minidb-2.0.6.ebuild
+++ /dev/null
@@ -1,20 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-PYTHON_REQ_USE="sqlite"
-
-inherit distutils-r1
-
-DESCRIPTION="Simple SQLite-based object store"
-HOMEPAGE="https://thp.io/2010/minidb/"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="ISC"
-SLOT="0"
-KEYWORDS="amd64 arm64 x86"
-
-distutils_enable_tests pytest
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/minidb/
@ 2023-05-31 19:08 Michał Górny
0 siblings, 0 replies; 40+ messages in thread
From: Michał Górny @ 2023-05-31 19:08 UTC (permalink / raw
To: gentoo-commits
commit: ca214f52661c418fd1060ac0eef4705bb734e740
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed May 31 19:00:12 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed May 31 19:08:44 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca214f52
dev-python/minidb: Enable py3.12
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/minidb/minidb-2.0.7.ebuild | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/dev-python/minidb/minidb-2.0.7.ebuild b/dev-python/minidb/minidb-2.0.7.ebuild
index 0fded5dadf69..893a70346d32 100644
--- a/dev-python/minidb/minidb-2.0.7.ebuild
+++ b/dev-python/minidb/minidb-2.0.7.ebuild
@@ -4,13 +4,16 @@
EAPI=8
DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{10..12} )
PYTHON_REQ_USE="sqlite"
inherit distutils-r1 pypi
DESCRIPTION="Simple SQLite-based object store"
-HOMEPAGE="https://thp.io/2010/minidb/"
+HOMEPAGE="
+ https://thp.io/2010/minidb/
+ https://pypi.org/project/minidb/
+"
LICENSE="ISC"
SLOT="0"
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/minidb/
@ 2024-04-25 4:43 Michał Górny
0 siblings, 0 replies; 40+ messages in thread
From: Michał Górny @ 2024-04-25 4:43 UTC (permalink / raw
To: gentoo-commits
commit: 2c49872d774c9aca65320078c7704290a3c62067
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 25 04:27:31 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Apr 25 04:27:31 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c49872d
dev-python/minidb: Bump to 2.0.8
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/minidb/Manifest | 1 +
dev-python/minidb/minidb-2.0.8.ebuild | 22 ++++++++++++++++++++++
2 files changed, 23 insertions(+)
diff --git a/dev-python/minidb/Manifest b/dev-python/minidb/Manifest
index 01ec6158bfab..8d3be5a4b696 100644
--- a/dev-python/minidb/Manifest
+++ b/dev-python/minidb/Manifest
@@ -1 +1,2 @@
DIST minidb-2.0.7.tar.gz 12282 BLAKE2B 349aff4ec7497fc74edd632f719a6f67a2e7c1dff38ea1ea579c820e00dbad4e7269355e4b19ccfe53cf637f0ebdd6cd512e1af84456ef70c05d8e19024ae94d SHA512 dc04d2d51fdc4ecf30e234cb25e17bf0cd5c320dfca6bdd306b61eced89fe8f1fb5df93111ec0c04f1b258ecde467203a968e61b913feee87301dec7e93d9412
+DIST minidb-2.0.8.tar.gz 15404 BLAKE2B 5cf612036ed18ddd8f42da1ceab398cfe092acbdc11ac75693d1aa3c84960a375db6816dbe1a0ed244d83a4c6958661ba2db6e489ee4b5ab7df359332382f524 SHA512 04cdf6ae3a537aa421cd9ca9c283ac3c721ce35a6e23bf71f56ff70ee94dfad4672feb9cea7490e6747f9c2cfaabc7d163559cce3a40cf643df0287cbea6f994
diff --git a/dev-python/minidb/minidb-2.0.8.ebuild b/dev-python/minidb/minidb-2.0.8.ebuild
new file mode 100644
index 000000000000..fade9deceb5d
--- /dev/null
+++ b/dev-python/minidb/minidb-2.0.8.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} )
+PYTHON_REQ_USE="sqlite"
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Simple SQLite-based object store"
+HOMEPAGE="
+ https://thp.io/2010/minidb/
+ https://pypi.org/project/minidb/
+"
+
+LICENSE="ISC"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+distutils_enable_tests pytest
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/minidb/
@ 2024-05-11 9:49 Arthur Zamarin
0 siblings, 0 replies; 40+ messages in thread
From: Arthur Zamarin @ 2024-05-11 9:49 UTC (permalink / raw
To: gentoo-commits
commit: bed07f15d43653c0aa055911ba798ee56ba283dc
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat May 11 09:48:56 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat May 11 09:48:56 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bed07f15
dev-python/minidb: Stabilize 2.0.8 ALLARCHES, #931713
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-python/minidb/minidb-2.0.8.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/minidb/minidb-2.0.8.ebuild b/dev-python/minidb/minidb-2.0.8.ebuild
index fade9deceb5d..4125a405ef2a 100644
--- a/dev-python/minidb/minidb-2.0.8.ebuild
+++ b/dev-python/minidb/minidb-2.0.8.ebuild
@@ -17,6 +17,6 @@ HOMEPAGE="
LICENSE="ISC"
SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 arm64 x86"
distutils_enable_tests pytest
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/minidb/
@ 2024-05-11 10:02 Michał Górny
0 siblings, 0 replies; 40+ messages in thread
From: Michał Górny @ 2024-05-11 10:02 UTC (permalink / raw
To: gentoo-commits
commit: 28b4bfc9939da6bc3f56bd3807889859dcf53990
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat May 11 09:57:05 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat May 11 09:57:05 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28b4bfc9
dev-python/minidb: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/minidb/Manifest | 1 -
dev-python/minidb/minidb-2.0.7.ebuild | 22 ----------------------
2 files changed, 23 deletions(-)
diff --git a/dev-python/minidb/Manifest b/dev-python/minidb/Manifest
index 8d3be5a4b696..0ec6101b0871 100644
--- a/dev-python/minidb/Manifest
+++ b/dev-python/minidb/Manifest
@@ -1,2 +1 @@
-DIST minidb-2.0.7.tar.gz 12282 BLAKE2B 349aff4ec7497fc74edd632f719a6f67a2e7c1dff38ea1ea579c820e00dbad4e7269355e4b19ccfe53cf637f0ebdd6cd512e1af84456ef70c05d8e19024ae94d SHA512 dc04d2d51fdc4ecf30e234cb25e17bf0cd5c320dfca6bdd306b61eced89fe8f1fb5df93111ec0c04f1b258ecde467203a968e61b913feee87301dec7e93d9412
DIST minidb-2.0.8.tar.gz 15404 BLAKE2B 5cf612036ed18ddd8f42da1ceab398cfe092acbdc11ac75693d1aa3c84960a375db6816dbe1a0ed244d83a4c6958661ba2db6e489ee4b5ab7df359332382f524 SHA512 04cdf6ae3a537aa421cd9ca9c283ac3c721ce35a6e23bf71f56ff70ee94dfad4672feb9cea7490e6747f9c2cfaabc7d163559cce3a40cf643df0287cbea6f994
diff --git a/dev-python/minidb/minidb-2.0.7.ebuild b/dev-python/minidb/minidb-2.0.7.ebuild
deleted file mode 100644
index 893a70346d32..000000000000
--- a/dev-python/minidb/minidb-2.0.7.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..12} )
-PYTHON_REQ_USE="sqlite"
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Simple SQLite-based object store"
-HOMEPAGE="
- https://thp.io/2010/minidb/
- https://pypi.org/project/minidb/
-"
-
-LICENSE="ISC"
-SLOT="0"
-KEYWORDS="amd64 arm64 x86"
-
-distutils_enable_tests pytest
^ permalink raw reply related [flat|nested] 40+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/minidb/
@ 2024-05-18 6:11 Michał Górny
0 siblings, 0 replies; 40+ messages in thread
From: Michał Górny @ 2024-05-18 6:11 UTC (permalink / raw
To: gentoo-commits
commit: f0bd5432fc44b961a531bf590995da1d7b048364
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat May 18 06:06:16 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat May 18 06:11:15 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0bd5432
dev-python/minidb: Enable py3.13
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/minidb/minidb-2.0.8.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/minidb/minidb-2.0.8.ebuild b/dev-python/minidb/minidb-2.0.8.ebuild
index 4125a405ef2a..718447e88b2d 100644
--- a/dev-python/minidb/minidb-2.0.8.ebuild
+++ b/dev-python/minidb/minidb-2.0.8.ebuild
@@ -4,7 +4,7 @@
EAPI=8
DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..12} )
+PYTHON_COMPAT=( python3_{10..13} )
PYTHON_REQ_USE="sqlite"
inherit distutils-r1 pypi
^ permalink raw reply related [flat|nested] 40+ messages in thread
end of thread, other threads:[~2024-05-18 6:11 UTC | newest]
Thread overview: 40+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-25 4:43 [gentoo-commits] repo/gentoo:master commit in: dev-python/minidb/ Michał Górny
-- strict thread matches above, loose matches on Subject: below --
2024-05-18 6:11 Michał Górny
2024-05-11 10:02 Michał Górny
2024-05-11 9:49 Arthur Zamarin
2023-05-31 19:08 Michał Górny
2022-10-22 16:00 Michał Górny
2022-10-22 15:56 Arthur Zamarin
2022-09-18 16:11 Arthur Zamarin
2022-09-18 16:11 Arthur Zamarin
2022-06-04 19:57 Michał Górny
2022-03-15 14:14 Michał Górny
2022-03-15 11:52 Jakov Smolić
2022-02-17 19:03 Michał Górny
2022-01-29 15:43 Michał Górny
2021-07-12 22:53 Michał Górny
2021-07-12 21:50 Sam James
2021-06-06 13:07 Louis Sautier
2021-05-09 21:57 Louis Sautier
2020-08-24 14:01 Louis Sautier
2020-07-09 12:22 Michał Górny
2020-07-09 12:22 Michał Górny
2020-06-06 19:31 Mart Raudsepp
2020-06-03 15:21 Agostino Sarubbo
2020-06-03 15:10 Agostino Sarubbo
2020-05-03 21:14 Louis Sautier
2020-03-25 13:25 Michał Górny
2020-03-25 13:25 Michał Górny
2020-03-23 22:01 Louis Sautier
2019-12-03 3:02 Aaron Bauman
2018-07-21 14:30 Louis Sautier
2018-07-21 14:30 Louis Sautier
2018-06-24 13:57 Louis Sautier
2018-06-18 10:34 Louis Sautier
2017-05-16 23:19 Manuel Rüger
2017-01-16 9:28 David Seifert
2017-01-16 9:28 David Seifert
2016-09-03 22:00 Patrice Clement
2016-07-04 0:05 Göktürk Yüksek
2016-03-29 13:53 Ian Delaney
2016-01-20 14:45 Patrice Clement
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox