public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: dev-vcs/git-repo-updater/
@ 2020-02-23  3:13 Alessandro Barbieri
  0 siblings, 0 replies; 8+ messages in thread
From: Alessandro Barbieri @ 2020-02-23  3:13 UTC (permalink / raw
  To: gentoo-commits

commit:     3132db2036e7924fe9c76f3221f9aef1ee5cf535
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sun Feb 23 03:13:31 2020 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Sun Feb 23 03:13:31 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3132db20

dev-vcs/git-repo-updater: new package

Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 dev-vcs/git-repo-updater/Manifest                  |  1 +
 .../git-repo-updater/git-repo-updater-0.5.1.ebuild | 32 ++++++++++++++++++++++
 dev-vcs/git-repo-updater/metadata.xml              | 17 ++++++++++++
 3 files changed, 50 insertions(+)

diff --git a/dev-vcs/git-repo-updater/Manifest b/dev-vcs/git-repo-updater/Manifest
new file mode 100644
index 0000000..bee3c5a
--- /dev/null
+++ b/dev-vcs/git-repo-updater/Manifest
@@ -0,0 +1 @@
+DIST git-repo-updater-0.5.1.tar.gz 11430 BLAKE2B bb18ff809e48c2b93aabd287477436ca8140071c61d9266a048758d8d3acd207b601d2f534be22615f9de804a69c37101fbafd4fd8d82da4f9c67f09c9cdd44e SHA512 189717859050ecfb3533f0fed694c3d9674108c4d31dc71036ab04f9f0403bbdd92909995e0de81044581d278bd984ac698ea235db093ccd0c032a8a741c5918

diff --git a/dev-vcs/git-repo-updater/git-repo-updater-0.5.1.ebuild b/dev-vcs/git-repo-updater/git-repo-updater-0.5.1.ebuild
new file mode 100644
index 0000000..23a9d55
--- /dev/null
+++ b/dev-vcs/git-repo-updater/git-repo-updater-0.5.1.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+PYTHON_COMPAT=( python3_{6,7} )
+
+inherit distutils-r1
+
+DESCRIPTION="Easily update multiple git repositories at once"
+HOMEPAGE="https://github.com/earwig/git-repo-updater"
+SRC_URI="https://github.com/earwig/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+	>=dev-python/colorama-0.3.9[${PYTHON_USEDEP}]
+	>=dev-python/git-python-2.1.8[${PYTHON_USEDEP}]
+	dev-python/setuptools[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}
+	test? (
+		dev-python/pytest[${PYTHON_USEDEP}]
+	)
+"
+
+python_test() {
+	pytest -vv gitup/test || die
+}

diff --git a/dev-vcs/git-repo-updater/metadata.xml b/dev-vcs/git-repo-updater/metadata.xml
new file mode 100644
index 0000000..dcf1899
--- /dev/null
+++ b/dev-vcs/git-repo-updater/metadata.xml
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <maintainer type="person">
+    <email>lssndrbarbieri@gmail.com</email>
+    <name>Alessandro Barbieri</name>
+  </maintainer>
+  <upstream>
+    <remote-id type="github">earwig/git-repo-updater</remote-id>
+  </upstream>
+  <longdescription lang="en">
+    gitup is a tool for updating multiple git repositories at once. It is smart
+    enough to handle several remotes, dirty working directories, diverged local
+    branches, detached HEADs, and more. It was originally created to manage a
+    large collection of projects and deal with sporadic internet access.
+  </longdescription>
+</pkgmetadata>


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-vcs/git-repo-updater/
@ 2020-03-02 19:36 Andrew Ammerlaan
  0 siblings, 0 replies; 8+ messages in thread
From: Andrew Ammerlaan @ 2020-03-02 19:36 UTC (permalink / raw
  To: gentoo-commits

commit:     0727330e5e1d9eb27de65a96daf20dd1f238e352
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Mon Mar  2 19:35:57 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Mon Mar  2 19:35:57 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0727330e

dev-vcs/git-repo-updater: Add DISTUTILS_USE_SETUPTOOLS=rdepend

Also replaced deployed distutils_enable_tests
it does exactly the same as the code that was there
but it is shorter

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

 dev-vcs/git-repo-updater/git-repo-updater-0.5.1.ebuild | 14 ++++----------
 1 file changed, 4 insertions(+), 10 deletions(-)

diff --git a/dev-vcs/git-repo-updater/git-repo-updater-0.5.1.ebuild b/dev-vcs/git-repo-updater/git-repo-updater-0.5.1.ebuild
index 23a9d55..e7c418b 100644
--- a/dev-vcs/git-repo-updater/git-repo-updater-0.5.1.ebuild
+++ b/dev-vcs/git-repo-updater/git-repo-updater-0.5.1.ebuild
@@ -2,8 +2,11 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
+
 PYTHON_COMPAT=( python3_{6,7} )
 
+DISTUTILS_USE_SETUPTOOLS=rdepend
+
 inherit distutils-r1
 
 DESCRIPTION="Easily update multiple git repositories at once"
@@ -13,20 +16,11 @@ SRC_URI="https://github.com/earwig/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64"
-IUSE="test"
-RESTRICT="!test? ( test )"
 
 RDEPEND="
 	>=dev-python/colorama-0.3.9[${PYTHON_USEDEP}]
 	>=dev-python/git-python-2.1.8[${PYTHON_USEDEP}]
 	dev-python/setuptools[${PYTHON_USEDEP}]
 "
-DEPEND="${RDEPEND}
-	test? (
-		dev-python/pytest[${PYTHON_USEDEP}]
-	)
-"
 
-python_test() {
-	pytest -vv gitup/test || die
-}
+distutils_enable_tests pytest


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-vcs/git-repo-updater/
@ 2020-03-02 19:37 Andrew Ammerlaan
  0 siblings, 0 replies; 8+ messages in thread
From: Andrew Ammerlaan @ 2020-03-02 19:37 UTC (permalink / raw
  To: gentoo-commits

commit:     87f7034575a88dfa610bd04db579ef26c5433720
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Mon Mar  2 19:37:19 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Mon Mar  2 19:37:19 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=87f70345

dev-vcs/git-repo-updater: No need to specify setuptools in RDEPEND

inherit distutils-r1 already does this for you

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

 dev-vcs/git-repo-updater/git-repo-updater-0.5.1.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/dev-vcs/git-repo-updater/git-repo-updater-0.5.1.ebuild b/dev-vcs/git-repo-updater/git-repo-updater-0.5.1.ebuild
index e7c418b..57c079a 100644
--- a/dev-vcs/git-repo-updater/git-repo-updater-0.5.1.ebuild
+++ b/dev-vcs/git-repo-updater/git-repo-updater-0.5.1.ebuild
@@ -20,7 +20,6 @@ KEYWORDS="~amd64"
 RDEPEND="
 	>=dev-python/colorama-0.3.9[${PYTHON_USEDEP}]
 	>=dev-python/git-python-2.1.8[${PYTHON_USEDEP}]
-	dev-python/setuptools[${PYTHON_USEDEP}]
 "
 
 distutils_enable_tests pytest


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-vcs/git-repo-updater/
@ 2020-03-14 12:45 Andrew Ammerlaan
  0 siblings, 0 replies; 8+ messages in thread
From: Andrew Ammerlaan @ 2020-03-14 12:45 UTC (permalink / raw
  To: gentoo-commits

commit:     71e52133c9f3383f72293e169c4a7fb2fbea37ed
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Sat Mar 14 12:44:00 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sat Mar 14 12:44:00 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=71e52133

dev-vcs/git-repo-updater: git-python has been renamed in ::gentoo

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

 dev-vcs/git-repo-updater/git-repo-updater-0.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-vcs/git-repo-updater/git-repo-updater-0.5.1.ebuild b/dev-vcs/git-repo-updater/git-repo-updater-0.5.1.ebuild
index 57c079a..9194c66 100644
--- a/dev-vcs/git-repo-updater/git-repo-updater-0.5.1.ebuild
+++ b/dev-vcs/git-repo-updater/git-repo-updater-0.5.1.ebuild
@@ -19,7 +19,7 @@ KEYWORDS="~amd64"
 
 RDEPEND="
 	>=dev-python/colorama-0.3.9[${PYTHON_USEDEP}]
-	>=dev-python/git-python-2.1.8[${PYTHON_USEDEP}]
+	>=dev-python/GitPython-2.1.8[${PYTHON_USEDEP}]
 "
 
 distutils_enable_tests pytest


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-vcs/git-repo-updater/
@ 2021-03-14 10:36 Alessandro Barbieri
  0 siblings, 0 replies; 8+ messages in thread
From: Alessandro Barbieri @ 2021-03-14 10:36 UTC (permalink / raw
  To: gentoo-commits

commit:     1d039b72fd8a7efed558d0e4d075fdba47880b45
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sun Mar 14 10:29:52 2021 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Sun Mar 14 10:29:52 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1d039b72

dev-vcs/git-repo-updater: bump py

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 .../git-repo-updater-0.5.1-r1.ebuild               | 25 ++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/dev-vcs/git-repo-updater/git-repo-updater-0.5.1-r1.ebuild b/dev-vcs/git-repo-updater/git-repo-updater-0.5.1-r1.ebuild
new file mode 100644
index 00000000..efe62dab
--- /dev/null
+++ b/dev-vcs/git-repo-updater/git-repo-updater-0.5.1-r1.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+PYTHON_COMPAT=( python3_{7,8,9} )
+
+DISTUTILS_USE_SETUPTOOLS=rdepend
+
+inherit distutils-r1
+
+DESCRIPTION="Easily update multiple git repositories at once"
+HOMEPAGE="https://github.com/earwig/git-repo-updater"
+SRC_URI="https://github.com/earwig/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+	>=dev-python/colorama-0.3.9[${PYTHON_USEDEP}]
+	>=dev-python/GitPython-2.1.8[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-vcs/git-repo-updater/
@ 2021-04-13 13:15 Andrew Ammerlaan
  2021-04-13 13:22 ` [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
  0 siblings, 1 reply; 8+ messages in thread
From: Andrew Ammerlaan @ 2021-04-13 13:15 UTC (permalink / raw
  To: gentoo-commits

commit:     9da08400645b0bbb33d40b90d812d97764977bc5
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Tue Apr 13 13:00:33 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Tue Apr 13 13:00:33 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9da08400

dev-vcs/git-repo-updater: drop old

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

 .../git-repo-updater/git-repo-updater-0.5.1.ebuild | 25 ----------------------
 1 file changed, 25 deletions(-)

diff --git a/dev-vcs/git-repo-updater/git-repo-updater-0.5.1.ebuild b/dev-vcs/git-repo-updater/git-repo-updater-0.5.1.ebuild
deleted file mode 100644
index 35bcb0495..000000000
--- a/dev-vcs/git-repo-updater/git-repo-updater-0.5.1.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-PYTHON_COMPAT=( python3_7 )
-
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
-inherit distutils-r1
-
-DESCRIPTION="Easily update multiple git repositories at once"
-HOMEPAGE="https://github.com/earwig/git-repo-updater"
-SRC_URI="https://github.com/earwig/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND="
-	>=dev-python/colorama-0.3.9[${PYTHON_USEDEP}]
-	>=dev-python/GitPython-2.1.8[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest


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

* [gentoo-commits] repo/proj/guru:master commit in: dev-vcs/git-repo-updater/
  2021-04-13 13:15 [gentoo-commits] repo/proj/guru:dev commit in: dev-vcs/git-repo-updater/ Andrew Ammerlaan
@ 2021-04-13 13:22 ` Andrew Ammerlaan
  0 siblings, 0 replies; 8+ messages in thread
From: Andrew Ammerlaan @ 2021-04-13 13:22 UTC (permalink / raw
  To: gentoo-commits

commit:     9da08400645b0bbb33d40b90d812d97764977bc5
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Tue Apr 13 13:00:33 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Tue Apr 13 13:00:33 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9da08400

dev-vcs/git-repo-updater: drop old

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

 .../git-repo-updater/git-repo-updater-0.5.1.ebuild | 25 ----------------------
 1 file changed, 25 deletions(-)

diff --git a/dev-vcs/git-repo-updater/git-repo-updater-0.5.1.ebuild b/dev-vcs/git-repo-updater/git-repo-updater-0.5.1.ebuild
deleted file mode 100644
index 35bcb0495..000000000
--- a/dev-vcs/git-repo-updater/git-repo-updater-0.5.1.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-PYTHON_COMPAT=( python3_7 )
-
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
-inherit distutils-r1
-
-DESCRIPTION="Easily update multiple git repositories at once"
-HOMEPAGE="https://github.com/earwig/git-repo-updater"
-SRC_URI="https://github.com/earwig/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND="
-	>=dev-python/colorama-0.3.9[${PYTHON_USEDEP}]
-	>=dev-python/GitPython-2.1.8[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-vcs/git-repo-updater/
@ 2022-05-29 21:04 Alessandro Barbieri
  0 siblings, 0 replies; 8+ messages in thread
From: Alessandro Barbieri @ 2022-05-29 21:04 UTC (permalink / raw
  To: gentoo-commits

commit:     3d84ec24d3a1e110095e3b01f8cd06c036c3aa24
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sun May 29 20:56:46 2022 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Sun May 29 21:04:52 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3d84ec24

dev-vcs/git-repo-updater: EAPI 8

Closes: https://bugs.gentoo.org/848363
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 dev-vcs/git-repo-updater/Manifest                                | 2 +-
 ...-updater-0.5.1-r1.ebuild => git-repo-updater-0.5.1-r2.ebuild} | 9 ++++-----
 2 files changed, 5 insertions(+), 6 deletions(-)

diff --git a/dev-vcs/git-repo-updater/Manifest b/dev-vcs/git-repo-updater/Manifest
index bee3c5acf..43b371f5f 100644
--- a/dev-vcs/git-repo-updater/Manifest
+++ b/dev-vcs/git-repo-updater/Manifest
@@ -1 +1 @@
-DIST git-repo-updater-0.5.1.tar.gz 11430 BLAKE2B bb18ff809e48c2b93aabd287477436ca8140071c61d9266a048758d8d3acd207b601d2f534be22615f9de804a69c37101fbafd4fd8d82da4f9c67f09c9cdd44e SHA512 189717859050ecfb3533f0fed694c3d9674108c4d31dc71036ab04f9f0403bbdd92909995e0de81044581d278bd984ac698ea235db093ccd0c032a8a741c5918
+DIST git-repo-updater-0.5.1.gh.tar.gz 11430 BLAKE2B bb18ff809e48c2b93aabd287477436ca8140071c61d9266a048758d8d3acd207b601d2f534be22615f9de804a69c37101fbafd4fd8d82da4f9c67f09c9cdd44e SHA512 189717859050ecfb3533f0fed694c3d9674108c4d31dc71036ab04f9f0403bbdd92909995e0de81044581d278bd984ac698ea235db093ccd0c032a8a741c5918

diff --git a/dev-vcs/git-repo-updater/git-repo-updater-0.5.1-r1.ebuild b/dev-vcs/git-repo-updater/git-repo-updater-0.5.1-r2.ebuild
similarity index 83%
rename from dev-vcs/git-repo-updater/git-repo-updater-0.5.1-r1.ebuild
rename to dev-vcs/git-repo-updater/git-repo-updater-0.5.1-r2.ebuild
index 906168b9e..61d0ec66a 100644
--- a/dev-vcs/git-repo-updater/git-repo-updater-0.5.1-r1.ebuild
+++ b/dev-vcs/git-repo-updater/git-repo-updater-0.5.1-r2.ebuild
@@ -1,17 +1,16 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="7"
-
-PYTHON_COMPAT=( python3_{8,9} )
+EAPI=8
 
 DISTUTILS_USE_SETUPTOOLS=rdepend
+PYTHON_COMPAT=( python3_{8..11} )
 
 inherit distutils-r1
 
 DESCRIPTION="Easily update multiple git repositories at once"
 HOMEPAGE="https://github.com/earwig/git-repo-updater"
-SRC_URI="https://github.com/earwig/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+SRC_URI="https://github.com/earwig/${PN}/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"


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

end of thread, other threads:[~2022-05-29 21:05 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-04-13 13:15 [gentoo-commits] repo/proj/guru:dev commit in: dev-vcs/git-repo-updater/ Andrew Ammerlaan
2021-04-13 13:22 ` [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
  -- strict thread matches above, loose matches on Subject: below --
2022-05-29 21:04 [gentoo-commits] repo/proj/guru:dev " Alessandro Barbieri
2021-03-14 10:36 Alessandro Barbieri
2020-03-14 12:45 Andrew Ammerlaan
2020-03-02 19:37 Andrew Ammerlaan
2020-03-02 19:36 Andrew Ammerlaan
2020-02-23  3:13 Alessandro Barbieri

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