public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:master commit in: app-backup/timeshift-autosnap/
@ 2021-10-06  1:13 Theo Anderson
  0 siblings, 0 replies; 8+ messages in thread
From: Theo Anderson @ 2021-10-06  1:13 UTC (permalink / raw
  To: gentoo-commits

commit:     2779cde02fa82e5138ce9b3ebcc9d7bc9668c077
Author:     Pascal Jäger <pascal.jaeger <AT> leimstift <DOT> de>
AuthorDate: Tue Oct  5 19:20:20 2021 +0000
Commit:     Theo Anderson <telans <AT> posteo <DOT> de>
CommitDate: Tue Oct  5 19:24:24 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2779cde0

app-backup/timeshift-autosnap: changed massage to the user from echo to elog

Package-Manager: Portage-3.0.26, Repoman-3.0.3
Signed-off-by: Pascal Jäger <pascal.jaeger <AT> leimstift.de>

 app-backup/timeshift-autosnap/timeshift-autosnap-0.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-backup/timeshift-autosnap/timeshift-autosnap-0.9.ebuild b/app-backup/timeshift-autosnap/timeshift-autosnap-0.9.ebuild
index 00aa5efc9..a2c30bdb7 100644
--- a/app-backup/timeshift-autosnap/timeshift-autosnap-0.9.ebuild
+++ b/app-backup/timeshift-autosnap/timeshift-autosnap-0.9.ebuild
@@ -37,7 +37,7 @@ src_install(){
 }
 
 pkg_postinst() {
-	echo "to run timeshift-autosnap everytime you emerge a package run: 
+	elog "to run timeshift-autosnap everytime you emerge a package run: 
 'touch /etc/portage/bashrc' 
 'grep -q  '#!/bin/' /etc/portage/bashrc || awk -i inplace 'BEGINFILE{print "#!/bin/sh"}{print}' /etc/portage/bashrc 
 'grep -q 'timeshift-autosnap' /etc/portage/bashrc || echo 'function pre_pkg_setup() { /usr/bin/timeshift-autosnap ; }' >> /etc/portage/bashrc'"


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

* [gentoo-commits] repo/proj/guru:master commit in: app-backup/timeshift-autosnap/
  2021-10-08 19:06 [gentoo-commits] repo/proj/guru:dev commit in: app-backup/timeshift-autosnap/ Arthur Zamarin
@ 2021-10-08 19:05 ` Arthur Zamarin
  0 siblings, 0 replies; 8+ messages in thread
From: Arthur Zamarin @ 2021-10-08 19:05 UTC (permalink / raw
  To: gentoo-commits

commit:     f34e6970b60ad53341d56481c7a530689d4cd5b8
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Oct  8 18:54:25 2021 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Oct  8 18:54:57 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f34e6970

app-backup/timeshift-autosnap: use readme.gentoo for better output handling

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 .../timeshift-autosnap/timeshift-autosnap-0.9.ebuild   | 18 +++++++++++-------
 1 file changed, 11 insertions(+), 7 deletions(-)

diff --git a/app-backup/timeshift-autosnap/timeshift-autosnap-0.9.ebuild b/app-backup/timeshift-autosnap/timeshift-autosnap-0.9.ebuild
index 495c14e15..2ead2e4c1 100644
--- a/app-backup/timeshift-autosnap/timeshift-autosnap-0.9.ebuild
+++ b/app-backup/timeshift-autosnap/timeshift-autosnap-0.9.ebuild
@@ -3,6 +3,8 @@
 
 EAPI=8
 
+inherit readme.gentoo-r1
+
 DESCRIPTION="Automatically creates a timeshift-snapshot when executed"
 HOMEPAGE="https://gitlab.com/gobonja/timeshift-autosnap"
 SRC_URI="https://gitlab.com/gobonja/timeshift-autosnap/-/archive/${PV}/{$P}.tar.gz -> ${P}.tar.gz"
@@ -10,35 +12,37 @@ SRC_URI="https://gitlab.com/gobonja/timeshift-autosnap/-/archive/${PV}/{$P}.tar.
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE=""
 
 DEPEND="
 	app-backup/timeshift
 	>=sys-apps/portage-2.1
 "
 RDEPEND="${DEPEND}"
-BDEPEND=""
 
 PATCHES=( "${FILESDIR}/${PN}-remove-arch-specific.patch" )
 
+DISABLE_AUTOFORMATTING=1
+DOC_CONTENTS='to run timeshift-autosnap everytime you emerge a package run:
+$ touch /etc/portage/bashrc
+$ grep -q  "#!/bin/" /etc/portage/bashrc || awk -i inplace "BEGINFILE{print "#!/bin/sh"}{print}" /etc/portage/bashrc
+$ grep -q timeshift-autosnap /etc/portage/bashrc || echo "function pre_pkg_setup() { /usr/bin/timeshift-autosnap ; }" >> /etc/portage/bashrc'
+
 src_unpack() {
 	default
 	mv ${WORKDIR}/timeshift-autosnap-${PV}* ${WORKDIR}/timeshift-autosnap-${PV}
 }
 
 src_compile(){
-	true
+	:
 }
 
 src_install(){
 	dobin timeshift-autosnap
 	insinto /etc
 	doins timeshift-autosnap.conf
+	readme.gentoo_create_doc
 }
 
 pkg_postinst() {
-	elog "to run timeshift-autosnap everytime you emerge a package run: 
-'touch /etc/portage/bashrc' 
-'grep -q  '#!/bin/' /etc/portage/bashrc || awk -i inplace 'BEGINFILE{print "#!/bin/sh"}{print}' /etc/portage/bashrc 
-'grep -q 'timeshift-autosnap' /etc/portage/bashrc || echo 'function pre_pkg_setup() { /usr/bin/timeshift-autosnap ; }' >> /etc/portage/bashrc'"
+	readme.gentoo_print_elog
 }


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

* [gentoo-commits] repo/proj/guru:master commit in: app-backup/timeshift-autosnap/
  2021-10-08 19:06 [gentoo-commits] repo/proj/guru:dev " Arthur Zamarin
@ 2021-10-08 19:05 ` Arthur Zamarin
  0 siblings, 0 replies; 8+ messages in thread
From: Arthur Zamarin @ 2021-10-08 19:05 UTC (permalink / raw
  To: gentoo-commits

commit:     1b1fc18bec2265b5bfe562a28e129a07cfe90ce7
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Oct  8 18:45:24 2021 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Oct  8 18:45:24 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1b1fc18b

app-backup/timeshift-autosnap: fix leading spaces

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 app-backup/timeshift-autosnap/timeshift-autosnap-0.9.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/app-backup/timeshift-autosnap/timeshift-autosnap-0.9.ebuild b/app-backup/timeshift-autosnap/timeshift-autosnap-0.9.ebuild
index a2c30bdb7..495c14e15 100644
--- a/app-backup/timeshift-autosnap/timeshift-autosnap-0.9.ebuild
+++ b/app-backup/timeshift-autosnap/timeshift-autosnap-0.9.ebuild
@@ -13,8 +13,8 @@ KEYWORDS="~amd64 ~x86"
 IUSE=""
 
 DEPEND="
-        app-backup/timeshift
-        >=sys-apps/portage-2.1
+	app-backup/timeshift
+	>=sys-apps/portage-2.1
 "
 RDEPEND="${DEPEND}"
 BDEPEND=""
@@ -22,7 +22,7 @@ BDEPEND=""
 PATCHES=( "${FILESDIR}/${PN}-remove-arch-specific.patch" )
 
 src_unpack() {
-        default
+	default
 	mv ${WORKDIR}/timeshift-autosnap-${PV}* ${WORKDIR}/timeshift-autosnap-${PV}
 }
 


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

* [gentoo-commits] repo/proj/guru:dev commit in: app-backup/timeshift-autosnap/
@ 2021-10-08 19:06 Arthur Zamarin
  2021-10-08 19:05 ` [gentoo-commits] repo/proj/guru:master " Arthur Zamarin
  0 siblings, 1 reply; 8+ messages in thread
From: Arthur Zamarin @ 2021-10-08 19:06 UTC (permalink / raw
  To: gentoo-commits

commit:     f34e6970b60ad53341d56481c7a530689d4cd5b8
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Oct  8 18:54:25 2021 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Oct  8 18:54:57 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f34e6970

app-backup/timeshift-autosnap: use readme.gentoo for better output handling

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 .../timeshift-autosnap/timeshift-autosnap-0.9.ebuild   | 18 +++++++++++-------
 1 file changed, 11 insertions(+), 7 deletions(-)

diff --git a/app-backup/timeshift-autosnap/timeshift-autosnap-0.9.ebuild b/app-backup/timeshift-autosnap/timeshift-autosnap-0.9.ebuild
index 495c14e15..2ead2e4c1 100644
--- a/app-backup/timeshift-autosnap/timeshift-autosnap-0.9.ebuild
+++ b/app-backup/timeshift-autosnap/timeshift-autosnap-0.9.ebuild
@@ -3,6 +3,8 @@
 
 EAPI=8
 
+inherit readme.gentoo-r1
+
 DESCRIPTION="Automatically creates a timeshift-snapshot when executed"
 HOMEPAGE="https://gitlab.com/gobonja/timeshift-autosnap"
 SRC_URI="https://gitlab.com/gobonja/timeshift-autosnap/-/archive/${PV}/{$P}.tar.gz -> ${P}.tar.gz"
@@ -10,35 +12,37 @@ SRC_URI="https://gitlab.com/gobonja/timeshift-autosnap/-/archive/${PV}/{$P}.tar.
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE=""
 
 DEPEND="
 	app-backup/timeshift
 	>=sys-apps/portage-2.1
 "
 RDEPEND="${DEPEND}"
-BDEPEND=""
 
 PATCHES=( "${FILESDIR}/${PN}-remove-arch-specific.patch" )
 
+DISABLE_AUTOFORMATTING=1
+DOC_CONTENTS='to run timeshift-autosnap everytime you emerge a package run:
+$ touch /etc/portage/bashrc
+$ grep -q  "#!/bin/" /etc/portage/bashrc || awk -i inplace "BEGINFILE{print "#!/bin/sh"}{print}" /etc/portage/bashrc
+$ grep -q timeshift-autosnap /etc/portage/bashrc || echo "function pre_pkg_setup() { /usr/bin/timeshift-autosnap ; }" >> /etc/portage/bashrc'
+
 src_unpack() {
 	default
 	mv ${WORKDIR}/timeshift-autosnap-${PV}* ${WORKDIR}/timeshift-autosnap-${PV}
 }
 
 src_compile(){
-	true
+	:
 }
 
 src_install(){
 	dobin timeshift-autosnap
 	insinto /etc
 	doins timeshift-autosnap.conf
+	readme.gentoo_create_doc
 }
 
 pkg_postinst() {
-	elog "to run timeshift-autosnap everytime you emerge a package run: 
-'touch /etc/portage/bashrc' 
-'grep -q  '#!/bin/' /etc/portage/bashrc || awk -i inplace 'BEGINFILE{print "#!/bin/sh"}{print}' /etc/portage/bashrc 
-'grep -q 'timeshift-autosnap' /etc/portage/bashrc || echo 'function pre_pkg_setup() { /usr/bin/timeshift-autosnap ; }' >> /etc/portage/bashrc'"
+	readme.gentoo_print_elog
 }


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

* [gentoo-commits] repo/proj/guru:master commit in: app-backup/timeshift-autosnap/
@ 2021-11-03 11:28 Andrew Ammerlaan
  0 siblings, 0 replies; 8+ messages in thread
From: Andrew Ammerlaan @ 2021-11-03 11:28 UTC (permalink / raw
  To: gentoo-commits

commit:     10eccecfd100f87131399a2e615856e07a8fd14f
Author:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Wed Nov  3 11:27:07 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Wed Nov  3 11:28:00 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=10eccecf

app-backup/timeshift-autosnap: quote unqouted variable, and || die

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>

 app-backup/timeshift-autosnap/timeshift-autosnap-0.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-backup/timeshift-autosnap/timeshift-autosnap-0.9.ebuild b/app-backup/timeshift-autosnap/timeshift-autosnap-0.9.ebuild
index 2ead2e4c1..604b487cd 100644
--- a/app-backup/timeshift-autosnap/timeshift-autosnap-0.9.ebuild
+++ b/app-backup/timeshift-autosnap/timeshift-autosnap-0.9.ebuild
@@ -29,7 +29,7 @@ $ grep -q timeshift-autosnap /etc/portage/bashrc || echo "function pre_pkg_setup
 
 src_unpack() {
 	default
-	mv ${WORKDIR}/timeshift-autosnap-${PV}* ${WORKDIR}/timeshift-autosnap-${PV}
+	mv "${WORKDIR}"/timeshift-autosnap-${PV}* "${WORKDIR}"/timeshift-autosnap-${PV} || die
 }
 
 src_compile(){


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

* [gentoo-commits] repo/proj/guru:master commit in: app-backup/timeshift-autosnap/
@ 2024-06-06 10:27 David Roman
  0 siblings, 0 replies; 8+ messages in thread
From: David Roman @ 2024-06-06 10:27 UTC (permalink / raw
  To: gentoo-commits

commit:     c0c19bf7dd49589a9955d9904b894528e9677491
Author:     Lucio Sauer <watermanpaint <AT> posteo <DOT> net>
AuthorDate: Wed Jun  5 19:42:34 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Thu Jun  6 09:07:23 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c0c19bf7

app-backup/timeshift-autosnap: update malformed variable in SRC_URI

Fix BetterCompressionCheck

Signed-off-by: Lucio Sauer <watermanpaint <AT> posteo.net>

 app-backup/timeshift-autosnap/Manifest                      | 2 +-
 app-backup/timeshift-autosnap/timeshift-autosnap-0.9.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-backup/timeshift-autosnap/Manifest b/app-backup/timeshift-autosnap/Manifest
index 632a41ef2..77fc67a3c 100644
--- a/app-backup/timeshift-autosnap/Manifest
+++ b/app-backup/timeshift-autosnap/Manifest
@@ -1 +1 @@
-DIST timeshift-autosnap-0.9.tar.gz 2876 BLAKE2B 03063b1cedd18eee56681b9af10954f7c26a0dfdd08eb51ba0dc56c5b86eed1dac3024cd5b790ed2f00f30a9c09988d2c2785dad4041e931e3af2301f7159491 SHA512 15dbe97ef26954c33aa0a9dccb62a93da81b98d7194423111536d5ef7c832b8432c75b58b9edbbfaa669a333692bd71624a221928ca8e186cdf833d7ebd63c9c
+DIST timeshift-autosnap-0.9.tar.bz2 2916 BLAKE2B 7489596c3ce65bc1e5efb718118ab6a9b4913a988728c90f15403d72ff015017727a7c61691cad2f430c539f491e930dd035fdd743808caecac3d5db21b8aa7c SHA512 c24ba50ddd2f30ae375a12f485f8e61fdb628bfc4245cb9c1632b786ad4de0655b57c829451b3b093b88f5e2dcbe055131d21c9020491a7931da3b0812277700

diff --git a/app-backup/timeshift-autosnap/timeshift-autosnap-0.9.ebuild b/app-backup/timeshift-autosnap/timeshift-autosnap-0.9.ebuild
index 604b487cd..673c91a9a 100644
--- a/app-backup/timeshift-autosnap/timeshift-autosnap-0.9.ebuild
+++ b/app-backup/timeshift-autosnap/timeshift-autosnap-0.9.ebuild
@@ -7,7 +7,7 @@ inherit readme.gentoo-r1
 
 DESCRIPTION="Automatically creates a timeshift-snapshot when executed"
 HOMEPAGE="https://gitlab.com/gobonja/timeshift-autosnap"
-SRC_URI="https://gitlab.com/gobonja/timeshift-autosnap/-/archive/${PV}/{$P}.tar.gz -> ${P}.tar.gz"
+SRC_URI="https://gitlab.com/gobonja/timeshift-autosnap/-/archive/${PV}/${P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0"


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

* [gentoo-commits] repo/proj/guru:master commit in: app-backup/timeshift-autosnap/
@ 2024-06-06 14:49 David Roman
  0 siblings, 0 replies; 8+ messages in thread
From: David Roman @ 2024-06-06 14:49 UTC (permalink / raw
  To: gentoo-commits

commit:     5f55e3b882108448ad1d0a2100ebc3535a2a8375
Author:     Lucio Sauer <watermanpaint <AT> posteo <DOT> net>
AuthorDate: Thu Jun  6 12:27:51 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Thu Jun  6 12:54:37 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5f55e3b8

app-backup/timeshift-autosnap: fix src_unpack phase

Remove redundant src_compile

Closes: https://bugs.gentoo.org/933685
Signed-off-by: Lucio Sauer <watermanpaint <AT> posteo.net>

 app-backup/timeshift-autosnap/timeshift-autosnap-0.9.ebuild | 11 +----------
 1 file changed, 1 insertion(+), 10 deletions(-)

diff --git a/app-backup/timeshift-autosnap/timeshift-autosnap-0.9.ebuild b/app-backup/timeshift-autosnap/timeshift-autosnap-0.9.ebuild
index 673c91a9a..4209aebe5 100644
--- a/app-backup/timeshift-autosnap/timeshift-autosnap-0.9.ebuild
+++ b/app-backup/timeshift-autosnap/timeshift-autosnap-0.9.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2019-2021 Gentoo Authors
+# Copyright 2019-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -27,15 +27,6 @@ $ touch /etc/portage/bashrc
 $ grep -q  "#!/bin/" /etc/portage/bashrc || awk -i inplace "BEGINFILE{print "#!/bin/sh"}{print}" /etc/portage/bashrc
 $ grep -q timeshift-autosnap /etc/portage/bashrc || echo "function pre_pkg_setup() { /usr/bin/timeshift-autosnap ; }" >> /etc/portage/bashrc'
 
-src_unpack() {
-	default
-	mv "${WORKDIR}"/timeshift-autosnap-${PV}* "${WORKDIR}"/timeshift-autosnap-${PV} || die
-}
-
-src_compile(){
-	:
-}
-
 src_install(){
 	dobin timeshift-autosnap
 	insinto /etc


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

* [gentoo-commits] repo/proj/guru:master commit in: app-backup/timeshift-autosnap/
@ 2024-07-24  7:28 David Roman
  0 siblings, 0 replies; 8+ messages in thread
From: David Roman @ 2024-07-24  7:28 UTC (permalink / raw
  To: gentoo-commits

commit:     10e643c31b2df2c5d9a53068c1f9eba8ec315103
Author:     Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru>
AuthorDate: Thu Jul 18 17:25:00 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Thu Jul 18 17:25:00 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=10e643c3

app-backup/timeshift-autosnap: ExcessiveLineLength fix

Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly <AT> ya.ru>

 .../timeshift-autosnap/timeshift-autosnap-0.9-r1.ebuild    | 14 ++++++++++----
 1 file changed, 10 insertions(+), 4 deletions(-)

diff --git a/app-backup/timeshift-autosnap/timeshift-autosnap-0.9-r1.ebuild b/app-backup/timeshift-autosnap/timeshift-autosnap-0.9-r1.ebuild
index 36a6cbead..5f0c5c0f4 100644
--- a/app-backup/timeshift-autosnap/timeshift-autosnap-0.9-r1.ebuild
+++ b/app-backup/timeshift-autosnap/timeshift-autosnap-0.9-r1.ebuild
@@ -17,11 +17,17 @@ RDEPEND="app-backup/timeshift"
 
 PATCHES=( "${FILESDIR}/${PN}-remove-arch-specific.patch" )
 
+bashrc=/etc/portage/bashrc
 DISABLE_AUTOFORMATTING=1
-DOC_CONTENTS='to run timeshift-autosnap everytime you emerge a package run:
-$ touch /etc/portage/bashrc
-$ grep -q  "#!/bin/" /etc/portage/bashrc || awk -i inplace "BEGINFILE{print "#!/bin/sh"}{print}" /etc/portage/bashrc
-$ grep -q timeshift-autosnap /etc/portage/bashrc || echo "function pre_pkg_setup() { /usr/bin/timeshift-autosnap ; }" >> /etc/portage/bashrc'
+DOC_CONTENTS="to run timeshift-autosnap everytime you emerge a package run:
+# touch ${bashrc}
+
+# grep -q '#!/bin/' ${bashrc} || awk -i inplace 'BEGINFILE{print '#!/bin/sh'}{print}' ${bashrc}
+
+# grep -q timeshift-autosnap ${bashrc} || echo '
+function pre_pkg_setup() {
+	/usr/bin/timeshift-autosnap ;
+}' >> ${bashrc}"
 
 src_install(){
 	dobin timeshift-autosnap


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

end of thread, other threads:[~2024-07-24  7:28 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-10-08 19:06 [gentoo-commits] repo/proj/guru:dev commit in: app-backup/timeshift-autosnap/ Arthur Zamarin
2021-10-08 19:05 ` [gentoo-commits] repo/proj/guru:master " Arthur Zamarin
  -- strict thread matches above, loose matches on Subject: below --
2024-07-24  7:28 David Roman
2024-06-06 14:49 David Roman
2024-06-06 10:27 David Roman
2021-11-03 11:28 Andrew Ammerlaan
2021-10-08 19:06 [gentoo-commits] repo/proj/guru:dev " Arthur Zamarin
2021-10-08 19:05 ` [gentoo-commits] repo/proj/guru:master " Arthur Zamarin
2021-10-06  1:13 Theo Anderson

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