* [gentoo-commits] repo/gentoo:master commit in: sys-auth/realtime-base/
@ 2016-02-05 14:22 Alexis Ballier
0 siblings, 0 replies; 11+ messages in thread
From: Alexis Ballier @ 2016-02-05 14:22 UTC (permalink / raw
To: gentoo-commits
commit: 8f7c14811b1e77f8144b81177eefd7c082c8e611
Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 5 14:22:11 2016 +0000
Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Fri Feb 5 14:22:11 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f7c1481
sys-auth/realtime-base: update homepage, bug #568680
Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>
sys-auth/realtime-base/realtime-base-0.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-auth/realtime-base/realtime-base-0.1.ebuild b/sys-auth/realtime-base/realtime-base-0.1.ebuild
index bf2defe..3886009 100644
--- a/sys-auth/realtime-base/realtime-base-0.1.ebuild
+++ b/sys-auth/realtime-base/realtime-base-0.1.ebuild
@@ -7,7 +7,7 @@ EAPI=3
inherit user
DESCRIPTION="Sets up realtime scheduling"
-HOMEPAGE="http://www.jackaudio.org/linux_rt_config"
+HOMEPAGE="http://jackaudio.org/faq/linux_rt_config.html"
SRC_URI=""
LICENSE="public-domain"
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-auth/realtime-base/
@ 2017-06-16 10:10 Alexis Ballier
0 siblings, 0 replies; 11+ messages in thread
From: Alexis Ballier @ 2017-06-16 10:10 UTC (permalink / raw
To: gentoo-commits
commit: 9eb57af896a1e5aa0fa320238216c30e18cfb2de
Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 16 10:03:35 2017 +0000
Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Fri Jun 16 10:03:35 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9eb57af8
sys-auth/realtime-base: keyword ~arm64
Package-Manager: Portage-2.3.6, Repoman-2.3.2
sys-auth/realtime-base/realtime-base-0.1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys-auth/realtime-base/realtime-base-0.1.ebuild b/sys-auth/realtime-base/realtime-base-0.1.ebuild
index a24c3f278bc..7af8533be7c 100644
--- a/sys-auth/realtime-base/realtime-base-0.1.ebuild
+++ b/sys-auth/realtime-base/realtime-base-0.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=3
@@ -11,7 +11,7 @@ SRC_URI=""
LICENSE="public-domain"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86 ~amd64-fbsd"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sh sparc x86 ~amd64-fbsd"
IUSE=""
DEPEND=""
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-auth/realtime-base/
@ 2018-01-03 18:39 David Seifert
0 siblings, 0 replies; 11+ messages in thread
From: David Seifert @ 2018-01-03 18:39 UTC (permalink / raw
To: gentoo-commits
commit: f4af38b859561b460b9ab17166880b06339c5966
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 3 18:37:12 2018 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Wed Jan 3 18:37:12 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4af38b8
sys-auth/realtime-base: Port to EAPI 6
Package-Manager: Portage-2.3.19, Repoman-2.3.6
sys-auth/realtime-base/realtime-base-0.1.ebuild | 26 ++++++++++++-------------
1 file changed, 13 insertions(+), 13 deletions(-)
diff --git a/sys-auth/realtime-base/realtime-base-0.1.ebuild b/sys-auth/realtime-base/realtime-base-0.1.ebuild
index 7af8533be7c..1fc02cd38e0 100644
--- a/sys-auth/realtime-base/realtime-base-0.1.ebuild
+++ b/sys-auth/realtime-base/realtime-base-0.1.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-EAPI=3
+EAPI=6
inherit user
@@ -17,30 +17,30 @@ IUSE=""
DEPEND=""
RDEPEND="virtual/pam"
+S=${WORKDIR}
+
limitsdfile=40-${PN}.conf
rtgroup=realtime
-S=${WORKDIR}
-
pkg_setup() {
enewgroup ${rtgroup}
}
-print_limitsdfile() {
- printf "# Start of ${limitsdfile} from ${P}\n\n"
- printf "@${rtgroup}\t-\trtprio\t99\n"
- printf "@${rtgroup}\t-\tmemlock\tunlimited\n"
- printf "\n# End of ${limitsdfile} from ${P}\n"
-}
-
src_compile() {
einfo "Generating ${limitsdfile}"
- print_limitsdfile > "${S}/${limitsdfile}"
+ cat > ${limitsdfile} <<- EOF || die
+ # Start of ${limitsdfile} from ${P}
+
+ @${rtgroup} - rtprio 99
+ @${rtgroup} - memlock unlimited
+
+ # End of ${limitsdfile} from ${P}
+ EOF
}
src_install() {
insinto /etc/security/limits.d/
- doins "${S}/${limitsdfile}" || die
+ doins ${limitsdfile}
}
pkg_postinst() {
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-auth/realtime-base/
@ 2019-03-20 19:06 Mikle Kolyada
0 siblings, 0 replies; 11+ messages in thread
From: Mikle Kolyada @ 2019-03-20 19:06 UTC (permalink / raw
To: gentoo-commits
commit: bf197873badb1d5c014c3c959bc4f7cad647cbb1
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 20 19:00:23 2019 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Wed Mar 20 19:06:45 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf197873
sys-auth/realtime-base: mark s390 stable
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
sys-auth/realtime-base/realtime-base-0.1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys-auth/realtime-base/realtime-base-0.1.ebuild b/sys-auth/realtime-base/realtime-base-0.1.ebuild
index 1fc02cd38e0..ebb3152fedf 100644
--- a/sys-auth/realtime-base/realtime-base-0.1.ebuild
+++ b/sys-auth/realtime-base/realtime-base-0.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -11,7 +11,7 @@ SRC_URI=""
LICENSE="public-domain"
SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sh sparc x86 ~amd64-fbsd"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sh sparc x86 ~amd64-fbsd"
IUSE=""
DEPEND=""
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-auth/realtime-base/
@ 2019-05-14 17:53 Aaron Bauman
0 siblings, 0 replies; 11+ messages in thread
From: Aaron Bauman @ 2019-05-14 17:53 UTC (permalink / raw
To: gentoo-commits
commit: 692ac4e9572373371855bf27cd1b036462ec0c8c
Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Tue May 14 17:47:42 2019 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Tue May 14 17:53:01 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=692ac4e9
sys-auth/realtime-base: arm64 stable
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.12
RepoMan-Options: --include-arches="arm64"
sys-auth/realtime-base/realtime-base-0.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-auth/realtime-base/realtime-base-0.1.ebuild b/sys-auth/realtime-base/realtime-base-0.1.ebuild
index ebb3152fedf..fe8a8dabcbf 100644
--- a/sys-auth/realtime-base/realtime-base-0.1.ebuild
+++ b/sys-auth/realtime-base/realtime-base-0.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI=""
LICENSE="public-domain"
SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sh sparc x86 ~amd64-fbsd"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ppc ppc64 s390 sh sparc x86 ~amd64-fbsd"
IUSE=""
DEPEND=""
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-auth/realtime-base/
@ 2019-10-12 18:51 Mikle Kolyada
0 siblings, 0 replies; 11+ messages in thread
From: Mikle Kolyada @ 2019-10-12 18:51 UTC (permalink / raw
To: gentoo-commits
commit: 27bbf027e89a657df4a6c8d69f19dba4476e1400
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 12 18:51:29 2019 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sat Oct 12 18:51:29 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27bbf027
sys-auth/realtime-base: migrate to sys-libs/pam
Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
sys-auth/realtime-base/realtime-base-0.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-auth/realtime-base/realtime-base-0.1.ebuild b/sys-auth/realtime-base/realtime-base-0.1.ebuild
index 372c09dd55a..c5b1a5c95dc 100644
--- a/sys-auth/realtime-base/realtime-base-0.1.ebuild
+++ b/sys-auth/realtime-base/realtime-base-0.1.ebuild
@@ -15,7 +15,7 @@ KEYWORDS="alpha amd64 arm arm64 hppa ia64 ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=""
-RDEPEND="virtual/pam"
+RDEPEND="sys-libs/pam"
S=${WORKDIR}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-auth/realtime-base/
@ 2020-06-04 9:06 David Seifert
0 siblings, 0 replies; 11+ messages in thread
From: David Seifert @ 2020-06-04 9:06 UTC (permalink / raw
To: gentoo-commits
commit: b485d174d3ac2ecf1f9d2f778b6299a9e3b83d84
Author: Alexey Sokolov <sokolov <AT> google <DOT> com>
AuthorDate: Thu Jun 4 09:06:09 2020 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Thu Jun 4 09:06:09 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b485d174
sys-auth/realtime-base: update homepage
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Alexey Sokolov <sokolov <AT> google.com>
Signed-off-by: David Seifert <soap <AT> gentoo.org>
sys-auth/realtime-base/realtime-base-0.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-auth/realtime-base/realtime-base-0.1.ebuild b/sys-auth/realtime-base/realtime-base-0.1.ebuild
index 03d68312751..170da001fd5 100644
--- a/sys-auth/realtime-base/realtime-base-0.1.ebuild
+++ b/sys-auth/realtime-base/realtime-base-0.1.ebuild
@@ -6,7 +6,7 @@ EAPI=6
inherit user
DESCRIPTION="Sets up realtime scheduling"
-HOMEPAGE="http://jackaudio.org/faq/linux_rt_config.html"
+HOMEPAGE="https://jackaudio.org/faq/linux_rt_config.html"
SRC_URI=""
LICENSE="public-domain"
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-auth/realtime-base/
@ 2021-05-06 20:57 Thomas Deutschmann
0 siblings, 0 replies; 11+ messages in thread
From: Thomas Deutschmann @ 2021-05-06 20:57 UTC (permalink / raw
To: gentoo-commits
commit: b08fd77cb2269e001121234a1f2e46d4f328a438
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Thu May 6 20:54:58 2021 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Thu May 6 20:54:58 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b08fd77c
sys-auth/realtime-base: migrate to GLEP 81
Closes: https://bugs.gentoo.org/777417
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
...realtime-base-0.1.ebuild => realtime-base-0.1-r1.ebuild} | 13 ++++---------
1 file changed, 4 insertions(+), 9 deletions(-)
diff --git a/sys-auth/realtime-base/realtime-base-0.1.ebuild b/sys-auth/realtime-base/realtime-base-0.1-r1.ebuild
similarity index 90%
rename from sys-auth/realtime-base/realtime-base-0.1.ebuild
rename to sys-auth/realtime-base/realtime-base-0.1-r1.ebuild
index 2faa18931f6..dcd0207aef9 100644
--- a/sys-auth/realtime-base/realtime-base-0.1.ebuild
+++ b/sys-auth/realtime-base/realtime-base-0.1-r1.ebuild
@@ -1,9 +1,7 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=6
-
-inherit user
+EAPI=7
DESCRIPTION="Sets up realtime scheduling"
HOMEPAGE="https://jackaudio.org/faq/linux_rt_config.html"
@@ -15,17 +13,14 @@ KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~s390 sparc x86"
IUSE=""
DEPEND=""
-RDEPEND="sys-libs/pam"
+RDEPEND="acct-group/realtime
+ sys-libs/pam"
-S=${WORKDIR}
+S="${WORKDIR}"
limitsdfile=40-${PN}.conf
rtgroup=realtime
-pkg_setup() {
- enewgroup ${rtgroup}
-}
-
src_compile() {
einfo "Generating ${limitsdfile}"
cat > ${limitsdfile} <<- EOF || die
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-auth/realtime-base/
@ 2021-08-18 1:07 Marek Szuba
0 siblings, 0 replies; 11+ messages in thread
From: Marek Szuba @ 2021-08-18 1:07 UTC (permalink / raw
To: gentoo-commits
commit: 94025712e533063b66c89659dd8aca69672e1eb1
Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 18 00:24:47 2021 +0000
Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Wed Aug 18 01:07:10 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94025712
sys-auth/realtime-base: keyword 0.1-r1 for ~riscv
Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
sys-auth/realtime-base/realtime-base-0.1-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-auth/realtime-base/realtime-base-0.1-r1.ebuild b/sys-auth/realtime-base/realtime-base-0.1-r1.ebuild
index dcd0207aef9..a28d0c4446b 100644
--- a/sys-auth/realtime-base/realtime-base-0.1-r1.ebuild
+++ b/sys-auth/realtime-base/realtime-base-0.1-r1.ebuild
@@ -9,7 +9,7 @@ SRC_URI=""
LICENSE="public-domain"
SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~s390 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86"
IUSE=""
DEPEND=""
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-auth/realtime-base/
@ 2023-03-10 6:05 Viorel Munteanu
0 siblings, 0 replies; 11+ messages in thread
From: Viorel Munteanu @ 2023-03-10 6:05 UTC (permalink / raw
To: gentoo-commits
commit: b2ec2aa772b403fb02929ffe4cd430a31ad83eb6
Author: Matoro Mahri <matoro <AT> users <DOT> noreply <DOT> github <DOT> com>
AuthorDate: Thu Mar 9 04:47:11 2023 +0000
Commit: Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Fri Mar 10 06:02:53 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2ec2aa7
sys-auth/realtime-base: Keyword 0.1-r1 mips, #898020
Signed-off-by: Matoro Mahri <matoro <AT> users.noreply.github.com>
Signed-off-by: Viorel Munteanu <ceamac <AT> gentoo.org>
sys-auth/realtime-base/realtime-base-0.1-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys-auth/realtime-base/realtime-base-0.1-r1.ebuild b/sys-auth/realtime-base/realtime-base-0.1-r1.ebuild
index 5cea0efc327f..4f8202ec7a5b 100644
--- a/sys-auth/realtime-base/realtime-base-0.1-r1.ebuild
+++ b/sys-auth/realtime-base/realtime-base-0.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -9,7 +9,7 @@ SRC_URI=""
LICENSE="public-domain"
SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv ~s390 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86"
IUSE=""
DEPEND=""
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-auth/realtime-base/
@ 2024-08-13 12:10 Joonas Niilola
0 siblings, 0 replies; 11+ messages in thread
From: Joonas Niilola @ 2024-08-13 12:10 UTC (permalink / raw
To: gentoo-commits
commit: d8a2fc68b7c0c22d63a4bbd95355b79f5aabdd4e
Author: Filip Kobierski <fkobi <AT> pm <DOT> me>
AuthorDate: Tue Jul 30 12:35:59 2024 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Tue Aug 13 12:07:47 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8a2fc68
sys-auth/realtime-base: remove empty variables
Signed-off-by: Filip Kobierski <fkobi <AT> pm.me>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
sys-auth/realtime-base/realtime-base-0.1-r1.ebuild | 8 ++------
1 file changed, 2 insertions(+), 6 deletions(-)
diff --git a/sys-auth/realtime-base/realtime-base-0.1-r1.ebuild b/sys-auth/realtime-base/realtime-base-0.1-r1.ebuild
index 4f8202ec7a5b..68984bdb79a1 100644
--- a/sys-auth/realtime-base/realtime-base-0.1-r1.ebuild
+++ b/sys-auth/realtime-base/realtime-base-0.1-r1.ebuild
@@ -1,23 +1,19 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="Sets up realtime scheduling"
HOMEPAGE="https://jackaudio.org/faq/linux_rt_config.html"
-SRC_URI=""
+S="${WORKDIR}"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86"
-IUSE=""
-DEPEND=""
RDEPEND="acct-group/realtime
sys-libs/pam"
-S="${WORKDIR}"
-
limitsdfile=40-${PN}.conf
rtgroup=realtime
^ permalink raw reply related [flat|nested] 11+ messages in thread
end of thread, other threads:[~2024-08-13 12:10 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-10 6:05 [gentoo-commits] repo/gentoo:master commit in: sys-auth/realtime-base/ Viorel Munteanu
-- strict thread matches above, loose matches on Subject: below --
2024-08-13 12:10 Joonas Niilola
2021-08-18 1:07 Marek Szuba
2021-05-06 20:57 Thomas Deutschmann
2020-06-04 9:06 David Seifert
2019-10-12 18:51 Mikle Kolyada
2019-05-14 17:53 Aaron Bauman
2019-03-20 19:06 Mikle Kolyada
2018-01-03 18:39 David Seifert
2017-06-16 10:10 Alexis Ballier
2016-02-05 14:22 Alexis Ballier
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox