* [gentoo-commits] repo/proj/guru:dev commit in: net-im/rocketchat-desktop-bin/
@ 2021-04-10 8:39 Andrew Ammerlaan
0 siblings, 0 replies; 7+ messages in thread
From: Andrew Ammerlaan @ 2021-04-10 8:39 UTC (permalink / raw
To: gentoo-commits
commit: 603867b4f1332ee3b5993f334c6ecd9150afee37
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Sat Apr 10 08:39:44 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sat Apr 10 08:39:44 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=603867b4
net-im/rocketchat-desktop-bin: add new package
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
net-im/rocketchat-desktop-bin/Manifest | 1 +
net-im/rocketchat-desktop-bin/metadata.xml | 12 +++++
.../rocketchat-desktop-bin-3.1.1.ebuild | 51 ++++++++++++++++++++++
3 files changed, 64 insertions(+)
diff --git a/net-im/rocketchat-desktop-bin/Manifest b/net-im/rocketchat-desktop-bin/Manifest
new file mode 100644
index 000000000..39341e3f7
--- /dev/null
+++ b/net-im/rocketchat-desktop-bin/Manifest
@@ -0,0 +1 @@
+DIST rocketchat-3.1.1.x86_64.rpm 55360392 BLAKE2B 6384297c1707c549d9a8a26662a610b7fd9c168886b65ebe875eee15553c600be1f322716284011ccc8f6db70d489feea8ae3b7934651315968caccf4e871c1a SHA512 685e64b1c023baf69b1689aac83ebbfd990a0ae35b3c7b3447058595c04a7d845074d845f33dac698d59506069d05aead03b117039782c7703954b324be3cbf2
diff --git a/net-im/rocketchat-desktop-bin/metadata.xml b/net-im/rocketchat-desktop-bin/metadata.xml
new file mode 100644
index 000000000..49aa87d46
--- /dev/null
+++ b/net-im/rocketchat-desktop-bin/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <upstream>
+ <remote-id type="github">RocketChat/Rocket.Chat.Electron</remote-id>
+ <bugs-to>https://github.com/RocketChat/Rocket.Chat.Electron/issues</bugs-to>
+ </upstream>
+ <maintainer type="person">
+ <email>andrewammerlaan@riseup.net</email>
+ <name>Andrew Ammerlaan</name>
+ </maintainer>
+</pkgmetadata>
diff --git a/net-im/rocketchat-desktop-bin/rocketchat-desktop-bin-3.1.1.ebuild b/net-im/rocketchat-desktop-bin/rocketchat-desktop-bin-3.1.1.ebuild
new file mode 100644
index 000000000..ed8056594
--- /dev/null
+++ b/net-im/rocketchat-desktop-bin/rocketchat-desktop-bin-3.1.1.ebuild
@@ -0,0 +1,51 @@
+# Copyright 2019-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit rpm xdg
+
+DESCRIPTION="The Ultimate Open Source Web Chat Platform"
+HOMEPAGE="https://rocket.chat"
+SRC_URI="https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/${PV}/rocketchat-${PV}.x86_64.rpm"
+
+KEYWORDS="-* ~amd64"
+LICENSE="MIT"
+SLOT="0"
+
+RDEPEND="
+ app-accessibility/at-spi2-atk:2
+ dev-libs/atk
+ dev-libs/expat
+ dev-libs/libappindicator
+ dev-libs/nspr
+ dev-libs/nss
+ media-fonts/noto-emoji
+ x11-libs/cairo
+ x11-libs/gdk-pixbuf:2
+ x11-libs/gtk+:3
+ x11-libs/libnotify
+ x11-libs/libxcb
+ x11-libs/libX11
+ x11-libs/libXcomposite
+ x11-libs/libXcursor
+ x11-libs/libXdamage
+ x11-libs/libXext
+ x11-libs/libXfixes
+ x11-libs/libXi
+ x11-libs/libXrandr
+ x11-libs/libXrender
+ x11-libs/libXtst
+ x11-libs/libXScrnSaver
+ x11-libs/pango
+"
+
+QA_PREBUILT="/opt/Rocket.Chat/*"
+
+S="${WORKDIR}"
+
+src_install() {
+ # remove files useless for Gentoo
+ rm -r usr/lib || die
+ cp -a "${S}"/* "${ED}" || die
+}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: net-im/rocketchat-desktop-bin/
2021-04-18 9:10 [gentoo-commits] repo/proj/guru:master commit in: net-im/rocketchat-desktop-bin/ Andrew Ammerlaan
@ 2021-04-18 9:04 ` Andrew Ammerlaan
0 siblings, 0 replies; 7+ messages in thread
From: Andrew Ammerlaan @ 2021-04-18 9:04 UTC (permalink / raw
To: gentoo-commits
commit: 03fac4b36f11417da25f3ce044b7f5ce63a47145
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Sun Apr 18 09:03:58 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sun Apr 18 09:03:58 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=03fac4b3
net-im/rocketchat-desktop-bin: add missing deps
Closes: https://bugs.gentoo.org/783702
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
net-im/rocketchat-desktop-bin/rocketchat-desktop-bin-3.1.1.ebuild | 2 ++
1 file changed, 2 insertions(+)
diff --git a/net-im/rocketchat-desktop-bin/rocketchat-desktop-bin-3.1.1.ebuild b/net-im/rocketchat-desktop-bin/rocketchat-desktop-bin-3.1.1.ebuild
index ed8056594..0c6ba72c3 100644
--- a/net-im/rocketchat-desktop-bin/rocketchat-desktop-bin-3.1.1.ebuild
+++ b/net-im/rocketchat-desktop-bin/rocketchat-desktop-bin-3.1.1.ebuild
@@ -21,6 +21,8 @@ RDEPEND="
dev-libs/nspr
dev-libs/nss
media-fonts/noto-emoji
+ media-libs/alsa-lib
+ net-print/cups
x11-libs/cairo
x11-libs/gdk-pixbuf:2
x11-libs/gtk+:3
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: net-im/rocketchat-desktop-bin/
@ 2021-04-18 9:10 Andrew Ammerlaan
2021-04-18 9:04 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
0 siblings, 1 reply; 7+ messages in thread
From: Andrew Ammerlaan @ 2021-04-18 9:10 UTC (permalink / raw
To: gentoo-commits
commit: 03fac4b36f11417da25f3ce044b7f5ce63a47145
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Sun Apr 18 09:03:58 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sun Apr 18 09:03:58 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=03fac4b3
net-im/rocketchat-desktop-bin: add missing deps
Closes: https://bugs.gentoo.org/783702
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
net-im/rocketchat-desktop-bin/rocketchat-desktop-bin-3.1.1.ebuild | 2 ++
1 file changed, 2 insertions(+)
diff --git a/net-im/rocketchat-desktop-bin/rocketchat-desktop-bin-3.1.1.ebuild b/net-im/rocketchat-desktop-bin/rocketchat-desktop-bin-3.1.1.ebuild
index ed8056594..0c6ba72c3 100644
--- a/net-im/rocketchat-desktop-bin/rocketchat-desktop-bin-3.1.1.ebuild
+++ b/net-im/rocketchat-desktop-bin/rocketchat-desktop-bin-3.1.1.ebuild
@@ -21,6 +21,8 @@ RDEPEND="
dev-libs/nspr
dev-libs/nss
media-fonts/noto-emoji
+ media-libs/alsa-lib
+ net-print/cups
x11-libs/cairo
x11-libs/gdk-pixbuf:2
x11-libs/gtk+:3
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: net-im/rocketchat-desktop-bin/
@ 2021-05-13 6:37 Andrew Ammerlaan
0 siblings, 0 replies; 7+ messages in thread
From: Andrew Ammerlaan @ 2021-05-13 6:37 UTC (permalink / raw
To: gentoo-commits
commit: badb3a0ded8b0717579e1fd5eb33ec2184655340
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Thu May 13 06:37:47 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Thu May 13 06:37:47 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=badb3a0d
net-im/rocketchat-desktop-bin: version bump 3.2.0
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
net-im/rocketchat-desktop-bin/Manifest | 2 +-
...hat-desktop-bin-3.1.1.ebuild => rocketchat-desktop-bin-3.2.0.ebuild} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-im/rocketchat-desktop-bin/Manifest b/net-im/rocketchat-desktop-bin/Manifest
index 39341e3f7..942892449 100644
--- a/net-im/rocketchat-desktop-bin/Manifest
+++ b/net-im/rocketchat-desktop-bin/Manifest
@@ -1 +1 @@
-DIST rocketchat-3.1.1.x86_64.rpm 55360392 BLAKE2B 6384297c1707c549d9a8a26662a610b7fd9c168886b65ebe875eee15553c600be1f322716284011ccc8f6db70d489feea8ae3b7934651315968caccf4e871c1a SHA512 685e64b1c023baf69b1689aac83ebbfd990a0ae35b3c7b3447058595c04a7d845074d845f33dac698d59506069d05aead03b117039782c7703954b324be3cbf2
+DIST rocketchat-3.2.0.x86_64.rpm 55347176 BLAKE2B 69f5dc15a61029aee97638dbde40ede5fd860f8ef51dc40bec09b142f31d2b5ab2d1ca81604ce909327888174a5f549775d4f7a03e55d9a3251004c4164f9a1e SHA512 7d5827c5f8822ab7c1966e5938801de8a8ef73d49f594647294cdb69e0ea37315ed6277830aa1680442577157d705455e1b832b04d7d7a821bdd4e5810598e0d
diff --git a/net-im/rocketchat-desktop-bin/rocketchat-desktop-bin-3.1.1.ebuild b/net-im/rocketchat-desktop-bin/rocketchat-desktop-bin-3.2.0.ebuild
similarity index 100%
rename from net-im/rocketchat-desktop-bin/rocketchat-desktop-bin-3.1.1.ebuild
rename to net-im/rocketchat-desktop-bin/rocketchat-desktop-bin-3.2.0.ebuild
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: net-im/rocketchat-desktop-bin/
2021-05-13 18:50 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
@ 2021-05-13 18:46 ` Andrew Ammerlaan
0 siblings, 0 replies; 7+ messages in thread
From: Andrew Ammerlaan @ 2021-05-13 18:46 UTC (permalink / raw
To: gentoo-commits
commit: c5c5ae5c70b9f196088da31161b3d902f593217b
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Thu May 13 18:46:07 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Thu May 13 18:46:07 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c5c5ae5c
net-im/rocketchat-desktop-bin: minor version bump 3.2.1
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
net-im/rocketchat-desktop-bin/Manifest | 2 +-
...hat-desktop-bin-3.2.0.ebuild => rocketchat-desktop-bin-3.2.1.ebuild} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-im/rocketchat-desktop-bin/Manifest b/net-im/rocketchat-desktop-bin/Manifest
index 942892449..4c94b6e33 100644
--- a/net-im/rocketchat-desktop-bin/Manifest
+++ b/net-im/rocketchat-desktop-bin/Manifest
@@ -1 +1 @@
-DIST rocketchat-3.2.0.x86_64.rpm 55347176 BLAKE2B 69f5dc15a61029aee97638dbde40ede5fd860f8ef51dc40bec09b142f31d2b5ab2d1ca81604ce909327888174a5f549775d4f7a03e55d9a3251004c4164f9a1e SHA512 7d5827c5f8822ab7c1966e5938801de8a8ef73d49f594647294cdb69e0ea37315ed6277830aa1680442577157d705455e1b832b04d7d7a821bdd4e5810598e0d
+DIST rocketchat-3.2.1.x86_64.rpm 55355092 BLAKE2B 53e94118fc04f154ee70c673402124deaa3242ffaf5f0f013bf720ba26787e2a6e0fe698d4f1c314643121b35e382789b23f311f8a93b73d7661b7386ce219da SHA512 69b8201378cf73335c1c847d670006dfa8bcc61a0221edb5eb873635c93fac597b6da4a717dd25d9a0eaddb10331486a8d2870bda5320ae117e83406b03c9f95
diff --git a/net-im/rocketchat-desktop-bin/rocketchat-desktop-bin-3.2.0.ebuild b/net-im/rocketchat-desktop-bin/rocketchat-desktop-bin-3.2.1.ebuild
similarity index 100%
rename from net-im/rocketchat-desktop-bin/rocketchat-desktop-bin-3.2.0.ebuild
rename to net-im/rocketchat-desktop-bin/rocketchat-desktop-bin-3.2.1.ebuild
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: net-im/rocketchat-desktop-bin/
2021-05-14 17:17 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
@ 2021-05-14 16:16 ` Andrew Ammerlaan
0 siblings, 0 replies; 7+ messages in thread
From: Andrew Ammerlaan @ 2021-05-14 16:16 UTC (permalink / raw
To: gentoo-commits
commit: 72fd81d9a4e5d362e655cf3fc5cfae404d43034c
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Fri May 14 16:15:53 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Fri May 14 16:15:53 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=72fd81d9
net-im/rocketchat-desktop-bin: minor version bump 3.2.2
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
net-im/rocketchat-desktop-bin/Manifest | 2 +-
...hat-desktop-bin-3.2.1.ebuild => rocketchat-desktop-bin-3.2.2.ebuild} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-im/rocketchat-desktop-bin/Manifest b/net-im/rocketchat-desktop-bin/Manifest
index 4c94b6e33..a1e56775b 100644
--- a/net-im/rocketchat-desktop-bin/Manifest
+++ b/net-im/rocketchat-desktop-bin/Manifest
@@ -1 +1 @@
-DIST rocketchat-3.2.1.x86_64.rpm 55355092 BLAKE2B 53e94118fc04f154ee70c673402124deaa3242ffaf5f0f013bf720ba26787e2a6e0fe698d4f1c314643121b35e382789b23f311f8a93b73d7661b7386ce219da SHA512 69b8201378cf73335c1c847d670006dfa8bcc61a0221edb5eb873635c93fac597b6da4a717dd25d9a0eaddb10331486a8d2870bda5320ae117e83406b03c9f95
+DIST rocketchat-3.2.2.x86_64.rpm 55347028 BLAKE2B 77fb7f5461b28ae4cf896742b4a65bd19a877aa69984f1040e509b2dfdacdceb4db83d9f6af58e2ef357e5884a927a05d707b0af502cf83c9aeb238a1cec8fad SHA512 5f48168529804d6fc849dac21f3ca0f94b6d8cb5d3ef0086a8f1631c0a66b69741ff5e642e64b08a3df2dd7e3a6d36f97dca5157a43c3a716238f293dcadad7e
diff --git a/net-im/rocketchat-desktop-bin/rocketchat-desktop-bin-3.2.1.ebuild b/net-im/rocketchat-desktop-bin/rocketchat-desktop-bin-3.2.2.ebuild
similarity index 100%
rename from net-im/rocketchat-desktop-bin/rocketchat-desktop-bin-3.2.1.ebuild
rename to net-im/rocketchat-desktop-bin/rocketchat-desktop-bin-3.2.2.ebuild
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: net-im/rocketchat-desktop-bin/
@ 2021-05-20 12:41 Andrew Ammerlaan
0 siblings, 0 replies; 7+ messages in thread
From: Andrew Ammerlaan @ 2021-05-20 12:41 UTC (permalink / raw
To: gentoo-commits
commit: a1e07b07abfae15b1c6e55589593859cf5ae2529
Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Thu May 20 12:40:43 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Thu May 20 12:40:43 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a1e07b07
net-im/rocketchat-desktop-bin: move to ::gentoo
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
net-im/rocketchat-desktop-bin/Manifest | 1 -
net-im/rocketchat-desktop-bin/metadata.xml | 12 -----
.../rocketchat-desktop-bin-3.2.2.ebuild | 53 ----------------------
3 files changed, 66 deletions(-)
diff --git a/net-im/rocketchat-desktop-bin/Manifest b/net-im/rocketchat-desktop-bin/Manifest
deleted file mode 100644
index a1e56775b..000000000
--- a/net-im/rocketchat-desktop-bin/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST rocketchat-3.2.2.x86_64.rpm 55347028 BLAKE2B 77fb7f5461b28ae4cf896742b4a65bd19a877aa69984f1040e509b2dfdacdceb4db83d9f6af58e2ef357e5884a927a05d707b0af502cf83c9aeb238a1cec8fad SHA512 5f48168529804d6fc849dac21f3ca0f94b6d8cb5d3ef0086a8f1631c0a66b69741ff5e642e64b08a3df2dd7e3a6d36f97dca5157a43c3a716238f293dcadad7e
diff --git a/net-im/rocketchat-desktop-bin/metadata.xml b/net-im/rocketchat-desktop-bin/metadata.xml
deleted file mode 100644
index 355f96259..000000000
--- a/net-im/rocketchat-desktop-bin/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <upstream>
- <remote-id type="github">RocketChat/Rocket.Chat.Electron</remote-id>
- <bugs-to>https://github.com/RocketChat/Rocket.Chat.Electron/issues</bugs-to>
- </upstream>
- <maintainer type="person">
- <email>andrewammerlaan@gentoo.org</email>
- <name>Andrew Ammerlaan</name>
- </maintainer>
-</pkgmetadata>
diff --git a/net-im/rocketchat-desktop-bin/rocketchat-desktop-bin-3.2.2.ebuild b/net-im/rocketchat-desktop-bin/rocketchat-desktop-bin-3.2.2.ebuild
deleted file mode 100644
index 0c6ba72c3..000000000
--- a/net-im/rocketchat-desktop-bin/rocketchat-desktop-bin-3.2.2.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 2019-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit rpm xdg
-
-DESCRIPTION="The Ultimate Open Source Web Chat Platform"
-HOMEPAGE="https://rocket.chat"
-SRC_URI="https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/${PV}/rocketchat-${PV}.x86_64.rpm"
-
-KEYWORDS="-* ~amd64"
-LICENSE="MIT"
-SLOT="0"
-
-RDEPEND="
- app-accessibility/at-spi2-atk:2
- dev-libs/atk
- dev-libs/expat
- dev-libs/libappindicator
- dev-libs/nspr
- dev-libs/nss
- media-fonts/noto-emoji
- media-libs/alsa-lib
- net-print/cups
- x11-libs/cairo
- x11-libs/gdk-pixbuf:2
- x11-libs/gtk+:3
- x11-libs/libnotify
- x11-libs/libxcb
- x11-libs/libX11
- x11-libs/libXcomposite
- x11-libs/libXcursor
- x11-libs/libXdamage
- x11-libs/libXext
- x11-libs/libXfixes
- x11-libs/libXi
- x11-libs/libXrandr
- x11-libs/libXrender
- x11-libs/libXtst
- x11-libs/libXScrnSaver
- x11-libs/pango
-"
-
-QA_PREBUILT="/opt/Rocket.Chat/*"
-
-S="${WORKDIR}"
-
-src_install() {
- # remove files useless for Gentoo
- rm -r usr/lib || die
- cp -a "${S}"/* "${ED}" || die
-}
^ permalink raw reply related [flat|nested] 7+ messages in thread
end of thread, other threads:[~2021-05-20 12:41 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-04-18 9:10 [gentoo-commits] repo/proj/guru:master commit in: net-im/rocketchat-desktop-bin/ Andrew Ammerlaan
2021-04-18 9:04 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
-- strict thread matches above, loose matches on Subject: below --
2021-05-20 12:41 Andrew Ammerlaan
2021-05-14 17:17 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2021-05-14 16:16 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2021-05-13 18:50 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2021-05-13 18:46 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2021-05-13 6:37 Andrew Ammerlaan
2021-04-10 8:39 Andrew Ammerlaan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox