public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: games-arcade/opensurge/
@ 2019-10-08 22:54 Haelwenn Monnier
  0 siblings, 0 replies; 6+ messages in thread
From: Haelwenn Monnier @ 2019-10-08 22:54 UTC (permalink / raw
  To: gentoo-commits

commit:     6d807695b84b05cdcadb6624e18e22cb740acfe1
Author:     Haelwenn (lanodan) Monnier <contact <AT> hacktivis <DOT> me>
AuthorDate: Mon Jul 22 22:06:33 2019 +0000
Commit:     Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
CommitDate: Tue Oct  8 22:50:59 2019 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6d807695

games-arcade/opensurge: New Package

Signed-off-by: Haelwenn (lanodan) Monnier <contact <AT> hacktivis.me>

 games-arcade/opensurge/Manifest                  |  1 +
 games-arcade/opensurge/metadata.xml              | 11 ++++++
 games-arcade/opensurge/opensurge-0.5.0_p1.ebuild | 50 ++++++++++++++++++++++++
 games-arcade/opensurge/opensurge-9999.ebuild     | 35 +++++++++++++++++
 4 files changed, 97 insertions(+)

diff --git a/games-arcade/opensurge/Manifest b/games-arcade/opensurge/Manifest
new file mode 100644
index 0000000..0a58f0c
--- /dev/null
+++ b/games-arcade/opensurge/Manifest
@@ -0,0 +1 @@
+DIST opensurge-0.5.0-1.tar.gz 26292706 BLAKE2B 6643e2c9763df671e451da75a1c2f775e2469be8c576c7457a762a125cc02f12088674148a72c5e0534111e85b8b13042c0af7fcb8a8979579d5f81ae16216aa SHA512 b8227e864819fbd9beed0831cda2ca72eb8fb2a0c39852d4bfc82a834b462009e92b1aa83d50ce5955e934da2d4c8eb3ce3740cf812f4f3eebc3171c8b22a95a

diff --git a/games-arcade/opensurge/metadata.xml b/games-arcade/opensurge/metadata.xml
new file mode 100644
index 0000000..5d67204
--- /dev/null
+++ b/games-arcade/opensurge/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>contact@hacktivis.me</email>
+		<name>Haelwenn (lanodan) Monnier</name>
+	</maintainer>
+	<longdescription lang="en">
+	Open Surge is a fun 2D retro platformer inspired by old-school Sonic games. Play, hack, become a creator and unleash your creativity!
+	</longdescription>
+</pkgmetadata>

diff --git a/games-arcade/opensurge/opensurge-0.5.0_p1.ebuild b/games-arcade/opensurge/opensurge-0.5.0_p1.ebuild
new file mode 100644
index 0000000..10b3381
--- /dev/null
+++ b/games-arcade/opensurge/opensurge-0.5.0_p1.ebuild
@@ -0,0 +1,50 @@
+# Copyright 2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake-utils
+
+if [[ "${PV}" == "9999" ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/alemart/opensurge"
+else
+	MY_PV="${PV//_p/-}"
+	SRC_URI="https://github.com/alemart/opensurge/archive/v${MY_PV}.tar.gz -> ${PN}-${MY_PV}.tar.gz"
+	KEYWORDS="~amd64"
+	S="${WORKDIR}/${PN}-${MY_PV}/"
+fi
+
+DESCRIPTION="fun 2D retro platformer inspired by old-school Sonic games"
+HOMEPAGE="http://opensurge2d.org/"
+LICENSE="GPL-3"
+SLOT="0"
+
+# Allegro:5 libs to USE
+# - image: jpeg,png
+# - primitives: opengl
+# - font+ttf: truetype
+# - acodec+audio: alsa/openal/oss/pulseaudio (present in REQUIRED_USE)
+# - dialog: gtk
+DEPEND="
+	>=media-libs/allegro-5.2.5:=
+	media-libs/allegro[jpeg,png,opengl,truetype,gtk]
+	dev-games/surgescript:=
+"
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+	sed -i '/INSTALL(TARGETS "${GAME_UNIXNAME}" /s/"${CMAKE_INSTALL_PREFIX}/\0\/bin/' \
+		CMakeLists.txt || die "Failed fixing executable target"
+
+	cmake-utils_src_prepare
+}
+
+src_configure() {
+	local mycmakeargs=(
+		-DGAME_DATADIR="/usr/share/games/${PN}"
+		-DCMAKE_INSTALL_PREFIX="/usr"
+	)
+
+	cmake-utils_src_configure
+}

diff --git a/games-arcade/opensurge/opensurge-9999.ebuild b/games-arcade/opensurge/opensurge-9999.ebuild
new file mode 100644
index 0000000..2758ffd
--- /dev/null
+++ b/games-arcade/opensurge/opensurge-9999.ebuild
@@ -0,0 +1,35 @@
+# Copyright 2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake-utils
+
+MY_PV="${PV/_/-}"
+
+if [[ "${PV}" == "9999" ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/alemart/opensurge"
+else
+	SRC_URI="https://github.com/alemart/opensurge/archive/v${MY_PV}.tar.gz -> ${PN}-${MY_PV}.tar.gz"
+	KEYWORDS="~amd64"
+	S="${WORKDIR}/${PN}-${MY_PV}/"
+fi
+
+DESCRIPTION="fun 2D retro platformer inspired by old-school Sonic games"
+HOMEPAGE="http://opensurge2d.org/"
+LICENSE="GPL-3"
+SLOT="0"
+
+# Allegro:5 libs to USE
+# - image: jpeg,png
+# - primitives: opengl
+# - font+ttf: truetype
+# - acodec+audio: alsa/openal/oss/pulseaudio (present in REQUIRED_USE)
+# - dialog: gtk
+DEPEND="
+	>=media-libs/allegro-5.2.5:=
+	media-libs/allegro[jpeg,png,opengl,truetype,gtk]
+	dev-games/surgescript:=
+"
+RDEPEND="${DEPEND}"


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

* [gentoo-commits] repo/proj/guru:dev commit in: games-arcade/opensurge/
@ 2019-10-09  0:12 Haelwenn Monnier
  0 siblings, 0 replies; 6+ messages in thread
From: Haelwenn Monnier @ 2019-10-09  0:12 UTC (permalink / raw
  To: gentoo-commits

commit:     c972512839acc5b0a158d749ff2b1e5b0eb0243e
Author:     Haelwenn (lanodan) Monnier <contact <AT> hacktivis <DOT> me>
AuthorDate: Tue Oct  8 23:41:46 2019 +0000
Commit:     Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
CommitDate: Tue Oct  8 23:41:46 2019 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c9725128

games-arcade/opensurge: Need USE=vorbis for media-libs/allegro

Signed-off-by: Haelwenn (lanodan) Monnier <contact <AT> hacktivis.me>

 games-arcade/opensurge/opensurge-0.5.0_p1.ebuild | 3 ++-
 games-arcade/opensurge/opensurge-9999.ebuild     | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/games-arcade/opensurge/opensurge-0.5.0_p1.ebuild b/games-arcade/opensurge/opensurge-0.5.0_p1.ebuild
index 10b3381..8105565 100644
--- a/games-arcade/opensurge/opensurge-0.5.0_p1.ebuild
+++ b/games-arcade/opensurge/opensurge-0.5.0_p1.ebuild
@@ -26,9 +26,10 @@ SLOT="0"
 # - font+ttf: truetype
 # - acodec+audio: alsa/openal/oss/pulseaudio (present in REQUIRED_USE)
 # - dialog: gtk
+# allegro[vorbis] isn't in CMakeList.txt but is required for the .ogg assets
 DEPEND="
 	>=media-libs/allegro-5.2.5:=
-	media-libs/allegro[jpeg,png,opengl,truetype,gtk]
+	media-libs/allegro[jpeg,png,opengl,truetype,gtk,vorbis]
 	dev-games/surgescript:=
 "
 RDEPEND="${DEPEND}"

diff --git a/games-arcade/opensurge/opensurge-9999.ebuild b/games-arcade/opensurge/opensurge-9999.ebuild
index 2758ffd..da9d296 100644
--- a/games-arcade/opensurge/opensurge-9999.ebuild
+++ b/games-arcade/opensurge/opensurge-9999.ebuild
@@ -27,9 +27,10 @@ SLOT="0"
 # - font+ttf: truetype
 # - acodec+audio: alsa/openal/oss/pulseaudio (present in REQUIRED_USE)
 # - dialog: gtk
+# allegro[vorbis] isn't in CMakeList.txt but is required for the .ogg assets
 DEPEND="
 	>=media-libs/allegro-5.2.5:=
-	media-libs/allegro[jpeg,png,opengl,truetype,gtk]
+	media-libs/allegro[jpeg,png,opengl,truetype,gtk,vorbis]
 	dev-games/surgescript:=
 "
 RDEPEND="${DEPEND}"


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

* [gentoo-commits] repo/proj/guru:dev commit in: games-arcade/opensurge/
@ 2020-04-04 21:23 Haelwenn Monnier
  0 siblings, 0 replies; 6+ messages in thread
From: Haelwenn Monnier @ 2020-04-04 21:23 UTC (permalink / raw
  To: gentoo-commits

commit:     84e64b141cad19839c7757b79630866a1b8d821b
Author:     Haelwenn (lanodan) Monnier <contact <AT> hacktivis <DOT> me>
AuthorDate: Sat Apr  4 21:23:04 2020 +0000
Commit:     Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
CommitDate: Sat Apr  4 21:23:04 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=84e64b14

games-arcade/opensurge: Move from cmake-utils to cmake

Signed-off-by: Haelwenn (lanodan) Monnier <contact <AT> hacktivis.me>

 games-arcade/opensurge/opensurge-0.5.0_p1.ebuild | 8 ++++----
 games-arcade/opensurge/opensurge-9999.ebuild     | 4 ++--
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/games-arcade/opensurge/opensurge-0.5.0_p1.ebuild b/games-arcade/opensurge/opensurge-0.5.0_p1.ebuild
index 8105565..071f9fa 100644
--- a/games-arcade/opensurge/opensurge-0.5.0_p1.ebuild
+++ b/games-arcade/opensurge/opensurge-0.5.0_p1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 2019 Gentoo Authors
+# Copyright 2019-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-inherit cmake-utils
+inherit cmake
 
 if [[ "${PV}" == "9999" ]]; then
 	inherit git-r3
@@ -38,7 +38,7 @@ src_prepare() {
 	sed -i '/INSTALL(TARGETS "${GAME_UNIXNAME}" /s/"${CMAKE_INSTALL_PREFIX}/\0\/bin/' \
 		CMakeLists.txt || die "Failed fixing executable target"
 
-	cmake-utils_src_prepare
+	cmake_src_prepare
 }
 
 src_configure() {
@@ -47,5 +47,5 @@ src_configure() {
 		-DCMAKE_INSTALL_PREFIX="/usr"
 	)
 
-	cmake-utils_src_configure
+	cmake_src_configure
 }

diff --git a/games-arcade/opensurge/opensurge-9999.ebuild b/games-arcade/opensurge/opensurge-9999.ebuild
index da9d296..e56fc30 100644
--- a/games-arcade/opensurge/opensurge-9999.ebuild
+++ b/games-arcade/opensurge/opensurge-9999.ebuild
@@ -1,9 +1,9 @@
-# Copyright 2019 Gentoo Authors
+# Copyright 2019-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-inherit cmake-utils
+inherit cmake
 
 MY_PV="${PV/_/-}"
 


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

* [gentoo-commits] repo/proj/guru:dev commit in: games-arcade/opensurge/
@ 2020-04-11  0:06 Haelwenn Monnier
  0 siblings, 0 replies; 6+ messages in thread
From: Haelwenn Monnier @ 2020-04-11  0:06 UTC (permalink / raw
  To: gentoo-commits

commit:     a04f96e6334753a262a85fb4a22e510e6b508828
Author:     Haelwenn (lanodan) Monnier <contact <AT> hacktivis <DOT> me>
AuthorDate: Sat Apr 11 00:04:02 2020 +0000
Commit:     Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
CommitDate: Sat Apr 11 00:05:52 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a04f96e6

games-arcade/opensurge: Version clean, 0.5.0_p1

Signed-off-by: Haelwenn (lanodan) Monnier <contact <AT> hacktivis.me>

 games-arcade/opensurge/Manifest                  |  1 -
 games-arcade/opensurge/opensurge-0.5.0_p1.ebuild | 51 ------------------------
 2 files changed, 52 deletions(-)

diff --git a/games-arcade/opensurge/Manifest b/games-arcade/opensurge/Manifest
index f46405a..58c252b 100644
--- a/games-arcade/opensurge/Manifest
+++ b/games-arcade/opensurge/Manifest
@@ -1,2 +1 @@
-DIST opensurge-0.5.0-1.tar.gz 26292706 BLAKE2B 6643e2c9763df671e451da75a1c2f775e2469be8c576c7457a762a125cc02f12088674148a72c5e0534111e85b8b13042c0af7fcb8a8979579d5f81ae16216aa SHA512 b8227e864819fbd9beed0831cda2ca72eb8fb2a0c39852d4bfc82a834b462009e92b1aa83d50ce5955e934da2d4c8eb3ce3740cf812f4f3eebc3171c8b22a95a
 DIST opensurge-0.5.1.2.tar.gz 27992793 BLAKE2B a52194969c0e49f560a5eb256b86b6b11538e20fe75449685b4f3a37d51c940eed4a9b7be604b92877a68b0fa68aaf03ce250b7c0b6698a52e4c372e17c3fa63 SHA512 b58e1fb410147a883523ed7ae765a9499994f8f07a195400f4df6bcee386602ab91392a7cf5eb54445819ca68a06695cf23be773d0d8a750657cadff6e79a4fd

diff --git a/games-arcade/opensurge/opensurge-0.5.0_p1.ebuild b/games-arcade/opensurge/opensurge-0.5.0_p1.ebuild
deleted file mode 100644
index 071f9fa..0000000
--- a/games-arcade/opensurge/opensurge-0.5.0_p1.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 2019-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-if [[ "${PV}" == "9999" ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/alemart/opensurge"
-else
-	MY_PV="${PV//_p/-}"
-	SRC_URI="https://github.com/alemart/opensurge/archive/v${MY_PV}.tar.gz -> ${PN}-${MY_PV}.tar.gz"
-	KEYWORDS="~amd64"
-	S="${WORKDIR}/${PN}-${MY_PV}/"
-fi
-
-DESCRIPTION="fun 2D retro platformer inspired by old-school Sonic games"
-HOMEPAGE="http://opensurge2d.org/"
-LICENSE="GPL-3"
-SLOT="0"
-
-# Allegro:5 libs to USE
-# - image: jpeg,png
-# - primitives: opengl
-# - font+ttf: truetype
-# - acodec+audio: alsa/openal/oss/pulseaudio (present in REQUIRED_USE)
-# - dialog: gtk
-# allegro[vorbis] isn't in CMakeList.txt but is required for the .ogg assets
-DEPEND="
-	>=media-libs/allegro-5.2.5:=
-	media-libs/allegro[jpeg,png,opengl,truetype,gtk,vorbis]
-	dev-games/surgescript:=
-"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-	sed -i '/INSTALL(TARGETS "${GAME_UNIXNAME}" /s/"${CMAKE_INSTALL_PREFIX}/\0\/bin/' \
-		CMakeLists.txt || die "Failed fixing executable target"
-
-	cmake_src_prepare
-}
-
-src_configure() {
-	local mycmakeargs=(
-		-DGAME_DATADIR="/usr/share/games/${PN}"
-		-DCMAKE_INSTALL_PREFIX="/usr"
-	)
-
-	cmake_src_configure
-}


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

* [gentoo-commits] repo/proj/guru:dev commit in: games-arcade/opensurge/
@ 2020-04-12 10:26 Sergey Torokhov
  0 siblings, 0 replies; 6+ messages in thread
From: Sergey Torokhov @ 2020-04-12 10:26 UTC (permalink / raw
  To: gentoo-commits

commit:     5746079dceef8d58bbcc3a455c642cbae0e469b8
Author:     Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
AuthorDate: Sun Apr 12 10:23:35 2020 +0000
Commit:     Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
CommitDate: Sun Apr 12 10:23:35 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5746079d

games-arcade/opensurge: fix HOMEPAGE to use https instead of http

Signed-off-by: Sergey Torokhov <torokhov-s-a <AT> yandex.ru>

 games-arcade/opensurge/opensurge-0.5.1.2.ebuild | 2 +-
 games-arcade/opensurge/opensurge-9999.ebuild    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/games-arcade/opensurge/opensurge-0.5.1.2.ebuild b/games-arcade/opensurge/opensurge-0.5.1.2.ebuild
index f74724b..939414c 100644
--- a/games-arcade/opensurge/opensurge-0.5.1.2.ebuild
+++ b/games-arcade/opensurge/opensurge-0.5.1.2.ebuild
@@ -14,7 +14,7 @@ else
 fi
 
 DESCRIPTION="fun 2D retro platformer inspired by old-school Sonic games"
-HOMEPAGE="http://opensurge2d.org/"
+HOMEPAGE="https://opensurge2d.org/"
 LICENSE="GPL-3"
 SLOT="0"
 

diff --git a/games-arcade/opensurge/opensurge-9999.ebuild b/games-arcade/opensurge/opensurge-9999.ebuild
index 918d900..f6af9d6 100644
--- a/games-arcade/opensurge/opensurge-9999.ebuild
+++ b/games-arcade/opensurge/opensurge-9999.ebuild
@@ -14,7 +14,7 @@ else
 fi
 
 DESCRIPTION="fun 2D retro platformer inspired by old-school Sonic games"
-HOMEPAGE="http://opensurge2d.org/"
+HOMEPAGE="https://opensurge2d.org/"
 LICENSE="GPL-3"
 SLOT="0"
 


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

* [gentoo-commits] repo/proj/guru:dev commit in: games-arcade/opensurge/
  2021-03-28 11:43 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
@ 2021-03-28 11:24 ` Andrew Ammerlaan
  0 siblings, 0 replies; 6+ messages in thread
From: Andrew Ammerlaan @ 2021-03-28 11:24 UTC (permalink / raw
  To: gentoo-commits

commit:     179294a0f94af37995c32fabbf6de1977dad2a30
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Sun Mar 28 11:21:47 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sun Mar 28 11:21:47 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=179294a0

games-arcade/opensurge: add MissingUseDepDefault

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

 games-arcade/opensurge/opensurge-0.5.1.2.ebuild | 4 ++--
 games-arcade/opensurge/opensurge-9999.ebuild    | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/games-arcade/opensurge/opensurge-0.5.1.2.ebuild b/games-arcade/opensurge/opensurge-0.5.1.2.ebuild
index 939414c9d..c4a7aee12 100644
--- a/games-arcade/opensurge/opensurge-0.5.1.2.ebuild
+++ b/games-arcade/opensurge/opensurge-0.5.1.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2019-2020 Gentoo Authors
+# Copyright 2019-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -27,7 +27,7 @@ SLOT="0"
 # allegro[vorbis] isn't in CMakeList.txt but is required for the .ogg assets
 DEPEND="
 	>=media-libs/allegro-5.2.5:=
-	media-libs/allegro[jpeg,png,opengl,truetype,gtk,vorbis]
+	media-libs/allegro[jpeg,png,opengl,truetype(-),gtk(-),vorbis]
 	>=dev-games/surgescript-0.5.4.3:=
 "
 RDEPEND="${DEPEND}"

diff --git a/games-arcade/opensurge/opensurge-9999.ebuild b/games-arcade/opensurge/opensurge-9999.ebuild
index f6af9d66a..3368435a8 100644
--- a/games-arcade/opensurge/opensurge-9999.ebuild
+++ b/games-arcade/opensurge/opensurge-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2019-2020 Gentoo Authors
+# Copyright 2019-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -27,7 +27,7 @@ SLOT="0"
 # allegro[vorbis] isn't in CMakeList.txt but is required for the .ogg assets
 DEPEND="
 	>=media-libs/allegro-5.2.5:=
-	media-libs/allegro[jpeg,png,opengl,truetype,gtk,vorbis]
+	media-libs/allegro[jpeg,png,opengl,truetype(-),gtk(-),vorbis]
 	>=dev-games/surgescript-0.5.4.3:=
 "
 RDEPEND="${DEPEND}"


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

end of thread, other threads:[~2021-03-28 11:24 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-10-09  0:12 [gentoo-commits] repo/proj/guru:dev commit in: games-arcade/opensurge/ Haelwenn Monnier
  -- strict thread matches above, loose matches on Subject: below --
2021-03-28 11:43 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2021-03-28 11:24 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2020-04-12 10:26 Sergey Torokhov
2020-04-11  0:06 Haelwenn Monnier
2020-04-04 21:23 Haelwenn Monnier
2019-10-08 22:54 Haelwenn Monnier

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