* [gentoo-commits] repo/gentoo:master commit in: games-arcade/gnome-nibbles/files/, games-arcade/gnome-nibbles/
@ 2023-06-19 15:30 Matt Turner
0 siblings, 0 replies; 2+ messages in thread
From: Matt Turner @ 2023-06-19 15:30 UTC (permalink / raw
To: gentoo-commits
commit: 08ba6bc94bfc08ea9242a19754a2e6067feee1d3
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 19 15:08:44 2023 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Mon Jun 19 15:29:56 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08ba6bc9
games-arcade/gnome-nibbles: Drop old versions
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
games-arcade/gnome-nibbles/Manifest | 1 -
...ome-nibbles-3.38.2-vala-0.50.4-GtkChild-1.patch | 66 --------
...ome-nibbles-3.38.2-vala-0.50.4-GtkChild-2.patch | 178 ---------------------
.../gnome-nibbles/gnome-nibbles-3.38.2-r1.ebuild | 53 ------
4 files changed, 298 deletions(-)
diff --git a/games-arcade/gnome-nibbles/Manifest b/games-arcade/gnome-nibbles/Manifest
index b8d24f6cfb2b..fee0c94d9dc6 100644
--- a/games-arcade/gnome-nibbles/Manifest
+++ b/games-arcade/gnome-nibbles/Manifest
@@ -1,2 +1 @@
-DIST gnome-nibbles-3.38.2.tar.xz 337680 BLAKE2B 96ca3794d72f600608b049aafe83808e917ec8e8462b19d31af36f2570e6c3fc8b3c9e85cbaa4ec9f041ecb934aa99701d13fcf232c447f5a4f51e6a98a66173 SHA512 e0146e33efa20ca48131be76a7f1738f8e3e2503a152c879e1d0d6accb091f9c4cb36c6d3009ca824bf6c4ac0ff5249b17e6423919c615992f0c4bef6dfcd601
DIST gnome-nibbles-3.38.3.tar.xz 388996 BLAKE2B cb8482568e5a9e87d2ff974ab9c1a7a33d353554a3bf56774dd451da06cfe97267ae82c90d8331563886c1051e0d59693785773b31247c450c795c05e748854c SHA512 08102ab6a48cc121b2ea4d0edc32e3ee7b0eb56441d061367ca7c058cf94046fe185767999b262c9aaeac70e2086333f024b70ba85810e4275a9cbdede5dacee
diff --git a/games-arcade/gnome-nibbles/files/gnome-nibbles-3.38.2-vala-0.50.4-GtkChild-1.patch b/games-arcade/gnome-nibbles/files/gnome-nibbles-3.38.2-vala-0.50.4-GtkChild-1.patch
deleted file mode 100644
index c7a86316925e..000000000000
--- a/games-arcade/gnome-nibbles/files/gnome-nibbles-3.38.2-vala-0.50.4-GtkChild-1.patch
+++ /dev/null
@@ -1,66 +0,0 @@
-From 1b48446068608aff9b5edf1fdbd4b8c0d9f0be94 Mon Sep 17 00:00:00 2001
-From: Rico Tzschichholz <ricotz@ubuntu.com>
-Date: Sat, 16 Jan 2021 13:56:10 +0100
-Subject: [PATCH] Don't alter or try to write [GtkChild] fields
-
-See https://gitlab.gnome.org/GNOME/vala/issues/1121
----
- src/controls.vala | 30 +++++++++++++++---------------
- 1 file changed, 15 insertions(+), 15 deletions(-)
-
-diff --git a/src/controls.vala b/src/controls.vala
-index 4f07358..584c9ff 100644
---- a/src/controls.vala
-+++ b/src/controls.vala
-@@ -140,25 +140,25 @@ private class ControlsGrid : Button
- arrow_left.set_from_pixbuf (arrow.rotate_simple (Gdk.PixbufRotation.COUNTERCLOCKWISE));
- arrow_right.set_from_pixbuf (arrow.rotate_simple (Gdk.PixbufRotation.CLOCKWISE));
-
-- up_handler = worm_props.notify ["up"].connect (() => configure_label (worm_props.up, ref move_up_label));
-- down_handler = worm_props.notify ["down"].connect (() => configure_label (worm_props.down, ref move_down_label));
-- left_handler = worm_props.notify ["left"].connect (() => configure_label (worm_props.left, ref move_left_label));
-- right_handler = worm_props.notify ["right"].connect (() => configure_label (worm_props.right, ref move_right_label));
--
-- configure_label (worm_props.up, ref move_up_label);
-- configure_label (worm_props.down, ref move_down_label);
-- configure_label (worm_props.left, ref move_left_label);
-- configure_label (worm_props.right, ref move_right_label);
-+ up_handler = worm_props.notify ["up"].connect (() => configure_label (worm_props.up, move_up_label));
-+ down_handler = worm_props.notify ["down"].connect (() => configure_label (worm_props.down, move_down_label));
-+ left_handler = worm_props.notify ["left"].connect (() => configure_label (worm_props.left, move_left_label));
-+ right_handler = worm_props.notify ["right"].connect (() => configure_label (worm_props.right, move_right_label));
-+
-+ configure_label (worm_props.up, move_up_label);
-+ configure_label (worm_props.down, move_down_label);
-+ configure_label (worm_props.left, move_left_label);
-+ configure_label (worm_props.right, move_right_label);
- }
-
- internal void mark_duplicated_keys (GenericSet<uint> duplicate_keys)
- {
-- set_duplicate_class (worm_props.up in duplicate_keys, ref move_up_label);
-- set_duplicate_class (worm_props.down in duplicate_keys, ref move_down_label);
-- set_duplicate_class (worm_props.left in duplicate_keys, ref move_left_label);
-- set_duplicate_class (worm_props.right in duplicate_keys, ref move_right_label);
-+ set_duplicate_class (worm_props.up in duplicate_keys, move_up_label);
-+ set_duplicate_class (worm_props.down in duplicate_keys, move_down_label);
-+ set_duplicate_class (worm_props.left in duplicate_keys, move_left_label);
-+ set_duplicate_class (worm_props.right in duplicate_keys, move_right_label);
- }
-- private static void set_duplicate_class (bool new_value, ref Label label)
-+ private static void set_duplicate_class (bool new_value, Label label)
- {
- if (new_value)
- label.get_style_context ().add_class ("duplicate");
-@@ -175,7 +175,7 @@ private class ControlsGrid : Button
- worm_props.disconnect (color_handler);
- }
-
-- private static void configure_label (uint key_value, ref Label label)
-+ private static void configure_label (uint key_value, Label label)
- {
- string? key_name = Gdk.keyval_name (key_value);
- if (key_name == "Up")
---
-GitLab
-
diff --git a/games-arcade/gnome-nibbles/files/gnome-nibbles-3.38.2-vala-0.50.4-GtkChild-2.patch b/games-arcade/gnome-nibbles/files/gnome-nibbles-3.38.2-vala-0.50.4-GtkChild-2.patch
deleted file mode 100644
index 48c565303196..000000000000
--- a/games-arcade/gnome-nibbles/files/gnome-nibbles-3.38.2-vala-0.50.4-GtkChild-2.patch
+++ /dev/null
@@ -1,178 +0,0 @@
-From 62964e9256fcac616109af874dbb2bd8342a9853 Mon Sep 17 00:00:00 2001
-From: Rico Tzschichholz <ricotz@ubuntu.com>
-Date: Wed, 17 Mar 2021 11:25:05 +0100
-Subject: [PATCH] Reference of [GtkChild] fields is handled by GtkBuilder, type
- must be unowned
-
----
- src/controls.vala | 20 ++++++++++----------
- src/nibbles-window.vala | 26 +++++++++++++-------------
- src/players.vala | 6 +++---
- src/preferences-dialog.vala | 30 +++++++++++++++---------------
- src/scoreboard.vala | 6 +++---
- 5 files changed, 44 insertions(+), 44 deletions(-)
-
-diff --git a/src/controls.vala b/src/controls.vala
-index 584c9ff..f95d210 100644
---- a/src/controls.vala
-+++ b/src/controls.vala
-@@ -22,7 +22,7 @@ using Gtk;
- [GtkTemplate (ui = "/org/gnome/Nibbles/ui/controls.ui")]
- private class Controls : Box
- {
-- [GtkChild] private Box grids_box;
-+ [GtkChild] private unowned Box grids_box;
- private Gee.LinkedList<ControlsGrid> grids = new Gee.LinkedList<ControlsGrid> ();
-
- private Gdk.Pixbuf arrow_pixbuf;
-@@ -100,15 +100,15 @@ private class Controls : Box
- [GtkTemplate (ui = "/org/gnome/Nibbles/ui/controls-grid.ui")]
- private class ControlsGrid : Button
- {
-- [GtkChild] private Label name_label;
-- [GtkChild] private Image arrow_up;
-- [GtkChild] private Image arrow_down;
-- [GtkChild] private Image arrow_left;
-- [GtkChild] private Image arrow_right;
-- [GtkChild] private Label move_up_label;
-- [GtkChild] private Label move_down_label;
-- [GtkChild] private Label move_left_label;
-- [GtkChild] private Label move_right_label;
-+ [GtkChild] private unowned Label name_label;
-+ [GtkChild] private unowned Image arrow_up;
-+ [GtkChild] private unowned Image arrow_down;
-+ [GtkChild] private unowned Image arrow_left;
-+ [GtkChild] private unowned Image arrow_right;
-+ [GtkChild] private unowned Label move_up_label;
-+ [GtkChild] private unowned Label move_down_label;
-+ [GtkChild] private unowned Label move_left_label;
-+ [GtkChild] private unowned Label move_right_label;
-
- internal WormProperties worm_props;
- internal ulong external_handler;
-diff --git a/src/nibbles-window.vala b/src/nibbles-window.vala
-index 6961326..6bfb74a 100644
---- a/src/nibbles-window.vala
-+++ b/src/nibbles-window.vala
-@@ -40,30 +40,30 @@ private class NibblesWindow : ApplicationWindow
- private int window_height;
-
- /* Main widgets */
-- [GtkChild] private Stack main_stack;
-- [GtkChild] private Overlay overlay;
-+ [GtkChild] private unowned Stack main_stack;
-+ [GtkChild] private unowned Overlay overlay;
-
- /* HeaderBar */
-- [GtkChild] private HeaderBar headerbar;
-- [GtkChild] private MenuButton hamburger_menu;
-- [GtkChild] private Button new_game_button;
-- [GtkChild] private Button pause_button;
-+ [GtkChild] private unowned HeaderBar headerbar;
-+ [GtkChild] private unowned MenuButton hamburger_menu;
-+ [GtkChild] private unowned Button new_game_button;
-+ [GtkChild] private unowned Button pause_button;
-
- /* Pre-game screen widgets */
-- [GtkChild] private Players players;
-- [GtkChild] private Speed speed;
-- [GtkChild] private Controls controls;
-+ [GtkChild] private unowned Players players;
-+ [GtkChild] private unowned Speed speed;
-+ [GtkChild] private unowned Controls controls;
-
- /* Statusbar widgets */
-- [GtkChild] private Stack statusbar_stack;
-- [GtkChild] private Label countdown;
-- [GtkChild] private Scoreboard scoreboard;
-+ [GtkChild] private unowned Stack statusbar_stack;
-+ [GtkChild] private unowned Label countdown;
-+ [GtkChild] private unowned Scoreboard scoreboard;
- private Gdk.Pixbuf scoreboard_life;
-
- /* Rendering of the game */
- private NibblesView? view;
-
-- [GtkChild] private Box game_box;
-+ [GtkChild] private unowned Box game_box;
- private Games.GridFrame frame;
-
- /* Game being played */
-diff --git a/src/players.vala b/src/players.vala
-index 9198412..4bde18e 100644
---- a/src/players.vala
-+++ b/src/players.vala
-@@ -21,9 +21,9 @@ using Gtk;
- [GtkTemplate (ui = "/org/gnome/Nibbles/ui/players.ui")]
- private class Players : Box
- {
-- [GtkChild] private ToggleButton worms4;
-- [GtkChild] private ToggleButton worms5;
-- [GtkChild] private ToggleButton worms6;
-+ [GtkChild] private unowned ToggleButton worms4;
-+ [GtkChild] private unowned ToggleButton worms5;
-+ [GtkChild] private unowned ToggleButton worms6;
-
- private SimpleAction nibbles_number_action;
- private SimpleAction players_number_action;
-diff --git a/src/preferences-dialog.vala b/src/preferences-dialog.vala
-index 216a1e2..2d3a7bf 100644
---- a/src/preferences-dialog.vala
-+++ b/src/preferences-dialog.vala
-@@ -24,21 +24,21 @@ private class PreferencesDialog : Window
- private GLib.Settings settings;
- private Gee.ArrayList<GLib.Settings> worm_settings;
-
-- [GtkChild] private Stack stack;
-- [GtkChild] private Stack headerbar_stack;
-- [GtkChild] private ComboBoxText worm_combobox;
-- [GtkChild] private Gtk.ListStore list_store_1;
-- [GtkChild] private Gtk.ListStore list_store_2;
-- [GtkChild] private Gtk.ListStore list_store_3;
-- [GtkChild] private Gtk.ListStore list_store_4;
-- [GtkChild] private TreeView tree_view_1;
-- [GtkChild] private TreeView tree_view_2;
-- [GtkChild] private TreeView tree_view_3;
-- [GtkChild] private TreeView tree_view_4;
-- [GtkChild] private ComboBoxText combo_box_1;
-- [GtkChild] private ComboBoxText combo_box_2;
-- [GtkChild] private ComboBoxText combo_box_3;
-- [GtkChild] private ComboBoxText combo_box_4;
-+ [GtkChild] private unowned Stack stack;
-+ [GtkChild] private unowned Stack headerbar_stack;
-+ [GtkChild] private unowned ComboBoxText worm_combobox;
-+ [GtkChild] private unowned Gtk.ListStore list_store_1;
-+ [GtkChild] private unowned Gtk.ListStore list_store_2;
-+ [GtkChild] private unowned Gtk.ListStore list_store_3;
-+ [GtkChild] private unowned Gtk.ListStore list_store_4;
-+ [GtkChild] private unowned TreeView tree_view_1;
-+ [GtkChild] private unowned TreeView tree_view_2;
-+ [GtkChild] private unowned TreeView tree_view_3;
-+ [GtkChild] private unowned TreeView tree_view_4;
-+ [GtkChild] private unowned ComboBoxText combo_box_1;
-+ [GtkChild] private unowned ComboBoxText combo_box_2;
-+ [GtkChild] private unowned ComboBoxText combo_box_3;
-+ [GtkChild] private unowned ComboBoxText combo_box_4;
-
- private Gee.ArrayList<Gtk.ListStore> list_stores;
- private Gee.ArrayList<TreeView> tree_views;
-diff --git a/src/scoreboard.vala b/src/scoreboard.vala
-index a41aee1..aebc1cc 100644
---- a/src/scoreboard.vala
-+++ b/src/scoreboard.vala
-@@ -59,9 +59,9 @@ private class Scoreboard : Box
- [GtkTemplate (ui = "/org/gnome/Nibbles/ui/player-score-box.ui")]
- private class PlayerScoreBox : Box
- {
-- [GtkChild] private Label name_label;
-- [GtkChild] private Label score_label;
-- [GtkChild] private Grid lives_grid;
-+ [GtkChild] private unowned Label name_label;
-+ [GtkChild] private unowned Label score_label;
-+ [GtkChild] private unowned Grid lives_grid;
-
- private Gee.LinkedList<Image> life_images = new Gee.LinkedList<Image> ();
-
---
-GitLab
-
diff --git a/games-arcade/gnome-nibbles/gnome-nibbles-3.38.2-r1.ebuild b/games-arcade/gnome-nibbles/gnome-nibbles-3.38.2-r1.ebuild
deleted file mode 100644
index afbe437b2d54..000000000000
--- a/games-arcade/gnome-nibbles/gnome-nibbles-3.38.2-r1.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit gnome.org gnome2-utils meson vala xdg
-
-DESCRIPTION="Nibbles clone for GNOME"
-HOMEPAGE="https://wiki.gnome.org/Apps/Nibbles https://gitlab.gnome.org/GNOME/gnome-nibbles"
-
-LICENSE="GPL-3+ CC-BY-SA-3.0"
-SLOT="0"
-KEYWORDS="amd64 arm64 ~riscv x86"
-
-RDEPEND="
- >=dev-libs/glib-2.42.0:2
- >=media-libs/clutter-1.22.0:1.0
- >=media-libs/clutter-gtk-1.4.0:1.0
- dev-libs/libgee:0.8=
- >=media-libs/gsound-1.0.2
- >=x11-libs/gtk+-3.24.0:3
- >=dev-libs/libgnome-games-support-1.7.1:1=
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
- dev-util/itstool
- >=sys-devel/gettext-0.19.8
- virtual/pkgconfig
- $(vala_depend)
- media-libs/gsound[vala]
-"
-
-PATCHES=(
- # backport for https://gitlab.gnome.org/GNOME/gnome-nibbles/-/issues/52
- "${FILESDIR}"/${P}-vala-0.50.4-GtkChild-1.patch
- "${FILESDIR}"/${P}-vala-0.50.4-GtkChild-2.patch
-)
-
-src_prepare() {
- default
- vala_setup
- xdg_environment_reset
-}
-
-pkg_postinst() {
- xdg_pkg_postinst
- gnome2_schemas_update
-}
-
-pkg_postrm() {
- xdg_pkg_postrm
- gnome2_schemas_update
-}
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-arcade/gnome-nibbles/files/, games-arcade/gnome-nibbles/
@ 2020-03-29 16:19 Mart Raudsepp
0 siblings, 0 replies; 2+ messages in thread
From: Mart Raudsepp @ 2020-03-29 16:19 UTC (permalink / raw
To: gentoo-commits
commit: e52de2378db772c4eb955ec6aad5f6b733b2e094
Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 29 16:17:51 2020 +0000
Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
CommitDate: Sun Mar 29 16:18:14 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e52de237
games-arcade/gnome-nibbles: bump to 3.36.0
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
games-arcade/gnome-nibbles/Manifest | 1 +
.../files/3.36.0-drop-unnecessary-files.patch | 34 +++++++++++++++
.../gnome-nibbles/gnome-nibbles-3.36.0.ebuild | 51 ++++++++++++++++++++++
3 files changed, 86 insertions(+)
diff --git a/games-arcade/gnome-nibbles/Manifest b/games-arcade/gnome-nibbles/Manifest
index 30b76d5b16a..730a781931c 100644
--- a/games-arcade/gnome-nibbles/Manifest
+++ b/games-arcade/gnome-nibbles/Manifest
@@ -1 +1,2 @@
DIST gnome-nibbles-3.32.0.tar.xz 495180 BLAKE2B dd7c14a1ec3900e25b64f92519c51eadedf5eac6faa9f8a35612876cf2bb796049f278e904e796aba427f579c5bda093a15dd5310141b9dd7be179b0ecf5b629 SHA512 f151b66edcde40e971113cdff7f3b92d740b2f04d943a168cc5471a18fabf5649d31d68beb3ad3ce29f91b36d34ff49725ce0c67f87184f6af1cafd0aed92349
+DIST gnome-nibbles-3.36.0.tar.xz 317624 BLAKE2B 6b9a582964ba03520e83900bdf00043133edac3ec3fd63a183687875026f70349efa737fd0f6e27fa2feeaf577f1e2957bd02a24213c2ddd573f6fae7c695922 SHA512 f7753589e2bab5d87528cf5dd4365fdc0920555d480cac225f99a9bb5b6c5670779d43602ce8f715c6a185a304c606a1121fb139eb493df69d17a40dffa8d4a4
diff --git a/games-arcade/gnome-nibbles/files/3.36.0-drop-unnecessary-files.patch b/games-arcade/gnome-nibbles/files/3.36.0-drop-unnecessary-files.patch
new file mode 100644
index 00000000000..63ae2102606
--- /dev/null
+++ b/games-arcade/gnome-nibbles/files/3.36.0-drop-unnecessary-files.patch
@@ -0,0 +1,34 @@
+From 2ca8c1e70635eba7f667e5d97b6d85bda2374b9e Mon Sep 17 00:00:00 2001
+From: Mart Raudsepp <leio@gentoo.org>
+Date: Sun, 29 Mar 2020 19:13:14 +0300
+Subject: [PATCH] meson: Don't install data files consumed as gresources
+
+Fixes #36
+---
+ data/meson.build | 10 ----------
+ 1 file changed, 10 deletions(-)
+
+diff --git a/data/meson.build b/data/meson.build
+index 08fa461..0492411 100644
+--- a/data/meson.build
++++ b/data/meson.build
+@@ -32,16 +32,6 @@ install_data([
+ 'teleport.ogg'
+ ], install_dir: sounddir)
+
+-# UI files
+-install_data([
+- 'nibbles.ui',
+- 'nibbles.css',
+- 'scoreboard.ui',
+- 'player-score-box.ui',
+- 'controls-grid.ui',
+- 'preferences-dialog.ui'
+-], install_dir: pkgdatadir)
+-
+ # Icons
+ foreach size: [ '16x16', '22x22', '24x24', '32x32', '48x48' ]
+ install_data(join_paths('icons', 'hicolor', size, 'org.gnome.Nibbles.png'),
+--
+2.20.1
+
diff --git a/games-arcade/gnome-nibbles/gnome-nibbles-3.36.0.ebuild b/games-arcade/gnome-nibbles/gnome-nibbles-3.36.0.ebuild
new file mode 100644
index 00000000000..a8604f0c04c
--- /dev/null
+++ b/games-arcade/gnome-nibbles/gnome-nibbles-3.36.0.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit gnome.org gnome2-utils meson vala xdg
+
+DESCRIPTION="Nibbles clone for Gnome"
+HOMEPAGE="https://wiki.gnome.org/Apps/Nibbles"
+
+LICENSE="GPL-3+ CC-BY-SA-3.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE=""
+
+RDEPEND="
+ >=dev-libs/glib-2.40.0:2
+ >=media-libs/clutter-1.22.0:1.0
+ >=media-libs/clutter-gtk-1.4.0:1.0
+ dev-libs/libgee:0.8=
+ >=media-libs/gsound-1.0.2
+ >=x11-libs/gtk+-3.18.0:3
+ dev-libs/libgnome-games-support:1=
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ dev-util/itstool
+ >=sys-devel/gettext-0.19.8
+ virtual/pkgconfig
+ $(vala_depend)
+ media-libs/gsound[vala]
+"
+
+PATCHES=(
+ "${FILESDIR}"/${PV}-drop-unnecessary-files.patch # https://gitlab.gnome.org/GNOME/gnome-nibbles/merge_requests/11
+)
+
+src_prepare() {
+ xdg_src_prepare
+ vala_src_prepare
+}
+
+pkg_postinst() {
+ xdg_pkg_postinst
+ gnome2_schemas_update
+}
+
+pkg_postrm() {
+ xdg_pkg_postrm
+ gnome2_schemas_update
+}
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2023-06-19 15:30 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-06-19 15:30 [gentoo-commits] repo/gentoo:master commit in: games-arcade/gnome-nibbles/files/, games-arcade/gnome-nibbles/ Matt Turner
-- strict thread matches above, loose matches on Subject: below --
2020-03-29 16:19 Mart Raudsepp
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox