public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:master commit in: app-portage/portage-lostfiles/
@ 2020-03-15 20:20 Andrew Ammerlaan
  0 siblings, 0 replies; 10+ messages in thread
From: Andrew Ammerlaan @ 2020-03-15 20:20 UTC (permalink / raw
  To: gentoo-commits

commit:     202a2ff718ae199cf8652445eaa6ba7c80f3b654
Author:     Michael Egger <michael.egger <AT> tsn <DOT> at>
AuthorDate: Sun Mar 15 15:42:06 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sun Mar 15 15:42:06 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=202a2ff7

app-portage/portage-lostfiles: new package

Package-Manager: Portage-2.3.94, Repoman-2.3.21
Signed-off-by: Michael Egger <michael.egger <AT> tsn.at>

 app-portage/portage-lostfiles/Manifest                   |  1 +
 app-portage/portage-lostfiles/metadata.xml               | 15 +++++++++++++++
 .../portage-lostfiles/portage-lostfiles-0.2.0.ebuild     | 16 ++++++++++++++++
 3 files changed, 32 insertions(+)

diff --git a/app-portage/portage-lostfiles/Manifest b/app-portage/portage-lostfiles/Manifest
new file mode 100644
index 0000000..8f85493
--- /dev/null
+++ b/app-portage/portage-lostfiles/Manifest
@@ -0,0 +1 @@
+DIST portage-lostfiles-0.2.0.tar.gz 10591 BLAKE2B d8f4d68e3b0f35fb7fef9845f7e43af15ed83cef6d703c16a9845e30dab392113e49df048a36275d7cd209efa9416aae94d9e4d11b1a6dfa95ac5643074f5e10 SHA512 795ad2601153dc113af6888a0380c88c929af5cf6ee7f8859d99943776b26c28b53383f8276929ab9e3f748c84309717d898b362561791f764432280921dad74

diff --git a/app-portage/portage-lostfiles/metadata.xml b/app-portage/portage-lostfiles/metadata.xml
new file mode 100644
index 0000000..4bebf85
--- /dev/null
+++ b/app-portage/portage-lostfiles/metadata.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>michael.egger@tsn.at</email>
+		<name>Michael Egger</name>
+	</maintainer>
+	<longdescription>
+		A simple script to identify files not tracked by Portage package manager.
+	</longdescription>
+	<upstream>
+		<bugs-to>https://github.com/gcarq/portage-lostfiles/issues</bugs-to>
+		<doc>https://github.com/gcarq/portage-lostfiles/blob/master/README.md</doc>
+	</upstream>
+</pkgmetadata>

diff --git a/app-portage/portage-lostfiles/portage-lostfiles-0.2.0.ebuild b/app-portage/portage-lostfiles/portage-lostfiles-0.2.0.ebuild
new file mode 100644
index 0000000..e8893c1
--- /dev/null
+++ b/app-portage/portage-lostfiles/portage-lostfiles-0.2.0.ebuild
@@ -0,0 +1,16 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7,8} )
+
+inherit distutils-r1
+
+DESCRIPTION="A simple script to identify files not tracked by Portage package manager"
+HOMEPAGE="https://github.com/gcarq/portage-lostfiles"
+SRC_URI="https://github.com/gcarq/portage-lostfiles/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"


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

* [gentoo-commits] repo/proj/guru:master commit in: app-portage/portage-lostfiles/
@ 2020-03-15 20:21 Andrew Ammerlaan
  0 siblings, 0 replies; 10+ messages in thread
From: Andrew Ammerlaan @ 2020-03-15 20:21 UTC (permalink / raw
  To: gentoo-commits

commit:     8b2d8e9cb20e856c8d669089db442e07d2b0e1e4
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Sun Mar 15 20:02:45 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sun Mar 15 20:02:45 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8b2d8e9c

app-portage/portage-lostfiles: add DISTUTILS_USE_SETUPTOOLS=rdepend

otherwise distutils prints a warning about this

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

 app-portage/portage-lostfiles/portage-lostfiles-0.2.0.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/app-portage/portage-lostfiles/portage-lostfiles-0.2.0.ebuild b/app-portage/portage-lostfiles/portage-lostfiles-0.2.0.ebuild
index e8893c1..c09cd18 100644
--- a/app-portage/portage-lostfiles/portage-lostfiles-0.2.0.ebuild
+++ b/app-portage/portage-lostfiles/portage-lostfiles-0.2.0.ebuild
@@ -5,6 +5,8 @@ EAPI=7
 
 PYTHON_COMPAT=( python3_{6,7,8} )
 
+DISTUTILS_USE_SETUPTOOLS=rdepend
+
 inherit distutils-r1
 
 DESCRIPTION="A simple script to identify files not tracked by Portage package manager"


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

* [gentoo-commits] repo/proj/guru:master commit in: app-portage/portage-lostfiles/
@ 2020-04-12 16:39 Andrew Ammerlaan
  0 siblings, 0 replies; 10+ messages in thread
From: Andrew Ammerlaan @ 2020-04-12 16:39 UTC (permalink / raw
  To: gentoo-commits

commit:     180d9655c6aa40148c230b5976dfe88d791a19da
Author:     Denis Reva <denis7774 <AT> gmail <DOT> com>
AuthorDate: Sun Apr 12 14:20:06 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sun Apr 12 14:20:06 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=180d9655

app-portage/portage-lostfiles:

Fixed manifest.xml have too short description

Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Denis Reva <denis7774 <AT> gmail.com>

 app-portage/portage-lostfiles/metadata.xml | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/app-portage/portage-lostfiles/metadata.xml b/app-portage/portage-lostfiles/metadata.xml
index 4bebf85..45a6e42 100644
--- a/app-portage/portage-lostfiles/metadata.xml
+++ b/app-portage/portage-lostfiles/metadata.xml
@@ -7,6 +7,13 @@
 	</maintainer>
 	<longdescription>
 		A simple script to identify files not tracked by Portage package manager.
+			Notes:
+		Symlinks are not reported as lost as long as the link target exists and is tracked.
+		Some common paths are not reported (e.g.: /etc/group, /etc/machine-id, ...). The full whitelist is defined by WHITELIST in lostfiles.py.
+			Usage
+		git clone https://github.com/gcarq/portage-lostfiles.git
+		cd portage-lostfiles
+		$ ./lostfiles.py
 	</longdescription>
 	<upstream>
 		<bugs-to>https://github.com/gcarq/portage-lostfiles/issues</bugs-to>


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

* [gentoo-commits] repo/proj/guru:master commit in: app-portage/portage-lostfiles/
@ 2020-04-27  7:02 Andrew Ammerlaan
  0 siblings, 0 replies; 10+ messages in thread
From: Andrew Ammerlaan @ 2020-04-27  7:02 UTC (permalink / raw
  To: gentoo-commits

commit:     d7bc143e207121ab3c1e2a3ee2f507de07c69a26
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sun Apr 26 22:29:45 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sun Apr 26 22:39:12 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d7bc143e

app-portage/portage-lostfiles: longdescription lang="en"

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 app-portage/portage-lostfiles/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/portage-lostfiles/metadata.xml b/app-portage/portage-lostfiles/metadata.xml
index 45a6e42..1270aed 100644
--- a/app-portage/portage-lostfiles/metadata.xml
+++ b/app-portage/portage-lostfiles/metadata.xml
@@ -5,7 +5,7 @@
 		<email>michael.egger@tsn.at</email>
 		<name>Michael Egger</name>
 	</maintainer>
-	<longdescription>
+	<longdescription lang="en">
 		A simple script to identify files not tracked by Portage package manager.
 			Notes:
 		Symlinks are not reported as lost as long as the link target exists and is tracked.


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

* [gentoo-commits] repo/proj/guru:master commit in: app-portage/portage-lostfiles/
@ 2021-02-16 21:10 Theo Anderson
  0 siblings, 0 replies; 10+ messages in thread
From: Theo Anderson @ 2021-02-16 21:10 UTC (permalink / raw
  To: gentoo-commits

commit:     29a40fb73d52694595762a77df7aeb346fddc4ae
Author:     Michael Egger <egger.m <AT> protonmail <DOT> com>
AuthorDate: Tue Feb 16 09:44:46 2021 +0000
Commit:     Theo Anderson <telans <AT> posteo <DOT> de>
CommitDate: Tue Feb 16 09:44:46 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=29a40fb7

app-portage/portage-lostfiles: bump to 0.2.2

Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Michael Egger <egger.m <AT> protonmail.com>

 app-portage/portage-lostfiles/Manifest                                | 2 +-
 ...{portage-lostfiles-0.2.0.ebuild => portage-lostfiles-0.2.2.ebuild} | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/app-portage/portage-lostfiles/Manifest b/app-portage/portage-lostfiles/Manifest
index 8f854934..2ae44a80 100644
--- a/app-portage/portage-lostfiles/Manifest
+++ b/app-portage/portage-lostfiles/Manifest
@@ -1 +1 @@
-DIST portage-lostfiles-0.2.0.tar.gz 10591 BLAKE2B d8f4d68e3b0f35fb7fef9845f7e43af15ed83cef6d703c16a9845e30dab392113e49df048a36275d7cd209efa9416aae94d9e4d11b1a6dfa95ac5643074f5e10 SHA512 795ad2601153dc113af6888a0380c88c929af5cf6ee7f8859d99943776b26c28b53383f8276929ab9e3f748c84309717d898b362561791f764432280921dad74
+DIST portage-lostfiles-0.2.2.tar.gz 10618 BLAKE2B a477bafc83d5af7d29759bcaa3c09a89f678a463a94f037689bdef3e85cf3b78bdc53aed87696aa351623c6be210937f50d6f71ef588d9e27dbed061300374af SHA512 cf7b17d9cd3214616f4bb60284275172e4270180a87f4934e6ee5750e62315b2728e4fa0f930c18fc02b4b173b404fa27c3e75fca4f5ae0b740fe0c91025cb36

diff --git a/app-portage/portage-lostfiles/portage-lostfiles-0.2.0.ebuild b/app-portage/portage-lostfiles/portage-lostfiles-0.2.2.ebuild
similarity index 85%
rename from app-portage/portage-lostfiles/portage-lostfiles-0.2.0.ebuild
rename to app-portage/portage-lostfiles/portage-lostfiles-0.2.2.ebuild
index 87ba9dd5..816a32fb 100644
--- a/app-portage/portage-lostfiles/portage-lostfiles-0.2.0.ebuild
+++ b/app-portage/portage-lostfiles/portage-lostfiles-0.2.2.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{7,8} )
+PYTHON_COMPAT=( python3_{7,8,9} )
 
 DISTUTILS_USE_SETUPTOOLS=rdepend
 


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

* [gentoo-commits] repo/proj/guru:dev commit in: app-portage/portage-lostfiles/
  2021-10-02 12:28 [gentoo-commits] repo/proj/guru:master commit in: app-portage/portage-lostfiles/ Arthur Zamarin
@ 2021-10-02 12:23 ` Arthur Zamarin
  0 siblings, 0 replies; 10+ messages in thread
From: Arthur Zamarin @ 2021-10-02 12:23 UTC (permalink / raw
  To: gentoo-commits

commit:     0cafa24ad68ae7f9bd3e7a7d75512bffa55cf92d
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Oct  2 12:16:20 2021 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Oct  2 12:22:45 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0cafa24a

app-portage/portage-lostfiles: enable py3.10, fix DISTUTILS_USE_SETUPTOOLS

Closes: https://bugs.gentoo.org/815787
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 app-portage/portage-lostfiles/portage-lostfiles-0.2.2.ebuild | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/app-portage/portage-lostfiles/portage-lostfiles-0.2.2.ebuild b/app-portage/portage-lostfiles/portage-lostfiles-0.2.2.ebuild
index 816a32fb9..06a33a36e 100644
--- a/app-portage/portage-lostfiles/portage-lostfiles-0.2.2.ebuild
+++ b/app-portage/portage-lostfiles/portage-lostfiles-0.2.2.ebuild
@@ -3,10 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{7,8,9} )
-
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
+PYTHON_COMPAT=( python3_{8..10} )
 inherit distutils-r1
 
 DESCRIPTION="A simple script to identify files not tracked by Portage package manager"


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

* [gentoo-commits] repo/proj/guru:master commit in: app-portage/portage-lostfiles/
@ 2021-10-02 12:28 Arthur Zamarin
  2021-10-02 12:23 ` [gentoo-commits] repo/proj/guru:dev " Arthur Zamarin
  0 siblings, 1 reply; 10+ messages in thread
From: Arthur Zamarin @ 2021-10-02 12:28 UTC (permalink / raw
  To: gentoo-commits

commit:     0cafa24ad68ae7f9bd3e7a7d75512bffa55cf92d
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Oct  2 12:16:20 2021 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Oct  2 12:22:45 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0cafa24a

app-portage/portage-lostfiles: enable py3.10, fix DISTUTILS_USE_SETUPTOOLS

Closes: https://bugs.gentoo.org/815787
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 app-portage/portage-lostfiles/portage-lostfiles-0.2.2.ebuild | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/app-portage/portage-lostfiles/portage-lostfiles-0.2.2.ebuild b/app-portage/portage-lostfiles/portage-lostfiles-0.2.2.ebuild
index 816a32fb9..06a33a36e 100644
--- a/app-portage/portage-lostfiles/portage-lostfiles-0.2.2.ebuild
+++ b/app-portage/portage-lostfiles/portage-lostfiles-0.2.2.ebuild
@@ -3,10 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{7,8,9} )
-
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
+PYTHON_COMPAT=( python3_{8..10} )
 inherit distutils-r1
 
 DESCRIPTION="A simple script to identify files not tracked by Portage package manager"


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

* [gentoo-commits] repo/proj/guru:master commit in: app-portage/portage-lostfiles/
@ 2023-01-04  8:51 Florian Schmaus
  0 siblings, 0 replies; 10+ messages in thread
From: Florian Schmaus @ 2023-01-04  8:51 UTC (permalink / raw
  To: gentoo-commits

commit:     ca65e89eca3f06cdc823dd24ef27b910e77a29f6
Author:     Michael Egger <egger.m <AT> protonmail <DOT> com>
AuthorDate: Mon Jan  2 17:01:46 2023 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Mon Jan  2 17:01:46 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ca65e89e

app-portage/portage-lostfiles: add 0.5.2, drop 0.2.2

Signed-off-by: Michael Egger <egger.m <AT> protonmail.com>

 app-portage/portage-lostfiles/Manifest             |  2 +-
 app-portage/portage-lostfiles/metadata.xml         | 37 +++++++++++-----------
 ...0.2.2.ebuild => portage-lostfiles-0.5.2.ebuild} |  7 ++--
 3 files changed, 24 insertions(+), 22 deletions(-)

diff --git a/app-portage/portage-lostfiles/Manifest b/app-portage/portage-lostfiles/Manifest
index 2ae44a804..dd31f2636 100644
--- a/app-portage/portage-lostfiles/Manifest
+++ b/app-portage/portage-lostfiles/Manifest
@@ -1 +1 @@
-DIST portage-lostfiles-0.2.2.tar.gz 10618 BLAKE2B a477bafc83d5af7d29759bcaa3c09a89f678a463a94f037689bdef3e85cf3b78bdc53aed87696aa351623c6be210937f50d6f71ef588d9e27dbed061300374af SHA512 cf7b17d9cd3214616f4bb60284275172e4270180a87f4934e6ee5750e62315b2728e4fa0f930c18fc02b4b173b404fa27c3e75fca4f5ae0b740fe0c91025cb36
+DIST portage-lostfiles-0.5.2.tar.gz 12554 BLAKE2B 3562c6e0fad3fb4d41b815bf8183826875ef169c068a9c2c0e1370aadf7524ff1b1c06f3a39133f626a6bf520e4ba27e6de31e5dd66dbbbe818a1d4719266ecd SHA512 6418a8bb526e2bd62f1dda1f2f3cc715db0a3df125ccec47347fb93cba12214270d92768d2aafeac2e5487f34832a5c1abab6e0e3dde7dd4ec44bc0881af6764

diff --git a/app-portage/portage-lostfiles/metadata.xml b/app-portage/portage-lostfiles/metadata.xml
index 5daf1a751..a09f34b3d 100644
--- a/app-portage/portage-lostfiles/metadata.xml
+++ b/app-portage/portage-lostfiles/metadata.xml
@@ -1,22 +1,23 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<maintainer type="person">
-		<email>egger.m@protonmail.com</email>
-		<name>Michael Egger</name>
-	</maintainer>
-	<longdescription lang="en">
-		A simple script to identify files not tracked by Portage package manager.
-			Notes:
-		Symlinks are not reported as lost as long as the link target exists and is tracked.
-		Some common paths are not reported (e.g.: /etc/group, /etc/machine-id, ...). The full whitelist is defined by WHITELIST in lostfiles.py.
-			Usage
-		git clone https://github.com/gcarq/portage-lostfiles.git
-		cd portage-lostfiles
-		$ ./lostfiles.py
-	</longdescription>
-	<upstream>
-		<bugs-to>https://github.com/gcarq/portage-lostfiles/issues</bugs-to>
-		<doc>https://github.com/gcarq/portage-lostfiles/blob/master/README.md</doc>
-	</upstream>
+        <maintainer type="person">
+                <email>egger.m@protonmail.com</email>
+                <name>Michael Egger</name>
+        </maintainer>
+        <longdescription lang="en">
+                A simple script to identify files not tracked by Portage package manager.
+                        Notes
+                Symlinks are not reported as lost as long as the link target exists and is tracked,
+                this is the same behavior as implemented in `equery b path`.
+                Some common paths are not reported (e.g.: `/etc/group`, `/etc/machine-id`, ...),
+                those are defined in `IGNORED_PATHS` and `PKG_PATHS` in `lostfiles.py`.
+                        Usage
+                git clone https://github.com/gcarq/portage-lostfiles.git
+                cd portage-lostfiles
+                $ ./lostfiles.py
+        </longdescription>
+        <upstream>
+               <remote-id type="github">gcarq/portage-lostfiles</remote-id>
+        </upstream>
 </pkgmetadata>

diff --git a/app-portage/portage-lostfiles/portage-lostfiles-0.2.2.ebuild b/app-portage/portage-lostfiles/portage-lostfiles-0.5.2.ebuild
similarity index 77%
rename from app-portage/portage-lostfiles/portage-lostfiles-0.2.2.ebuild
rename to app-portage/portage-lostfiles/portage-lostfiles-0.5.2.ebuild
index 06a33a36e..6cd8a7426 100644
--- a/app-portage/portage-lostfiles/portage-lostfiles-0.2.2.ebuild
+++ b/app-portage/portage-lostfiles/portage-lostfiles-0.5.2.ebuild
@@ -1,9 +1,10 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
-PYTHON_COMPAT=( python3_{8..10} )
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..11} )
 inherit distutils-r1
 
 DESCRIPTION="A simple script to identify files not tracked by Portage package manager"


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

* [gentoo-commits] repo/proj/guru:master commit in: app-portage/portage-lostfiles/
@ 2023-12-01 15:26 Viorel Munteanu
  0 siblings, 0 replies; 10+ messages in thread
From: Viorel Munteanu @ 2023-12-01 15:26 UTC (permalink / raw
  To: gentoo-commits

commit:     f5e8044c1095da20b649e1f66370cabe11035de9
Author:     Michael Egger <egger.m <AT> protonmail <DOT> com>
AuthorDate: Thu Nov 30 18:23:23 2023 +0000
Commit:     Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Thu Nov 30 18:23:23 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f5e8044c

app-portage/portage-lostfiles: add 0.5.4, drop 0.5.2

Signed-off-by: Michael Egger <egger.m <AT> protonmail.com>

 app-portage/portage-lostfiles/Manifest                                  | 2 +-
 .../{portage-lostfiles-0.5.2.ebuild => portage-lostfiles-0.5.4.ebuild}  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-portage/portage-lostfiles/Manifest b/app-portage/portage-lostfiles/Manifest
index dd31f2636b..4afe784d56 100644
--- a/app-portage/portage-lostfiles/Manifest
+++ b/app-portage/portage-lostfiles/Manifest
@@ -1 +1 @@
-DIST portage-lostfiles-0.5.2.tar.gz 12554 BLAKE2B 3562c6e0fad3fb4d41b815bf8183826875ef169c068a9c2c0e1370aadf7524ff1b1c06f3a39133f626a6bf520e4ba27e6de31e5dd66dbbbe818a1d4719266ecd SHA512 6418a8bb526e2bd62f1dda1f2f3cc715db0a3df125ccec47347fb93cba12214270d92768d2aafeac2e5487f34832a5c1abab6e0e3dde7dd4ec44bc0881af6764
+DIST portage-lostfiles-0.5.4.tar.gz 12495 BLAKE2B bcf3af787978ba604c0fd6348f4ec2352398790d68f1d2e7e8b5de159820be13807a83cd98255d4f7fe7f0224079d3c9edc22b744bb39ba236aed2607020f7c2 SHA512 a1fd0229b9fd6913982d2c41015364ac1ee78cbee9e0d213cfc7e280fee920c4c8e2b3bfe29979f2110ceb744978d8f255b67b63cd8ff73b1b2cb7ed45a11c74

diff --git a/app-portage/portage-lostfiles/portage-lostfiles-0.5.2.ebuild b/app-portage/portage-lostfiles/portage-lostfiles-0.5.4.ebuild
similarity index 92%
rename from app-portage/portage-lostfiles/portage-lostfiles-0.5.2.ebuild
rename to app-portage/portage-lostfiles/portage-lostfiles-0.5.4.ebuild
index 348963c9a6..917d2dc3b4 100644
--- a/app-portage/portage-lostfiles/portage-lostfiles-0.5.2.ebuild
+++ b/app-portage/portage-lostfiles/portage-lostfiles-0.5.4.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 inherit distutils-r1
 
 DESCRIPTION="A simple script to identify files not tracked by Portage package manager"


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

* [gentoo-commits] repo/proj/guru:master commit in: app-portage/portage-lostfiles/
@ 2024-03-14 10:19 David Roman
  0 siblings, 0 replies; 10+ messages in thread
From: David Roman @ 2024-03-14 10:19 UTC (permalink / raw
  To: gentoo-commits

commit:     6ce490692752e0531008a479aba7b4ddea9b06f1
Author:     Michael Egger <egger.m <AT> protonmail <DOT> com>
AuthorDate: Wed Mar 13 13:16:57 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Wed Mar 13 13:16:57 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6ce49069

app-portage/portage-lostfiles: add 0.5.5, drop 0.5.4

Signed-off-by: Michael Egger <egger.m <AT> protonmail.com>

 app-portage/portage-lostfiles/Manifest                                  | 2 +-
 .../{portage-lostfiles-0.5.4.ebuild => portage-lostfiles-0.5.5.ebuild}  | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/portage-lostfiles/Manifest b/app-portage/portage-lostfiles/Manifest
index 4afe784d56..30cb443f85 100644
--- a/app-portage/portage-lostfiles/Manifest
+++ b/app-portage/portage-lostfiles/Manifest
@@ -1 +1 @@
-DIST portage-lostfiles-0.5.4.tar.gz 12495 BLAKE2B bcf3af787978ba604c0fd6348f4ec2352398790d68f1d2e7e8b5de159820be13807a83cd98255d4f7fe7f0224079d3c9edc22b744bb39ba236aed2607020f7c2 SHA512 a1fd0229b9fd6913982d2c41015364ac1ee78cbee9e0d213cfc7e280fee920c4c8e2b3bfe29979f2110ceb744978d8f255b67b63cd8ff73b1b2cb7ed45a11c74
+DIST portage-lostfiles-0.5.5.tar.gz 12496 BLAKE2B 99d16719ef3065a3284603743c408d69a4db40f901dde2d89025ea403c6e9531128d49978fdd087bf919e961f7f4777b6317e59e251a9c1953a812adb81efd58 SHA512 30062820b9365d4ca7b6303e4732e55dba020d99efe3f0b4bd4023b9f70b03cc151700679710f998939363060d666a1c44460e958a80d7a4397ffa1da4fda331

diff --git a/app-portage/portage-lostfiles/portage-lostfiles-0.5.4.ebuild b/app-portage/portage-lostfiles/portage-lostfiles-0.5.5.ebuild
similarity index 100%
rename from app-portage/portage-lostfiles/portage-lostfiles-0.5.4.ebuild
rename to app-portage/portage-lostfiles/portage-lostfiles-0.5.5.ebuild


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

end of thread, other threads:[~2024-03-14 10:19 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-10-02 12:28 [gentoo-commits] repo/proj/guru:master commit in: app-portage/portage-lostfiles/ Arthur Zamarin
2021-10-02 12:23 ` [gentoo-commits] repo/proj/guru:dev " Arthur Zamarin
  -- strict thread matches above, loose matches on Subject: below --
2024-03-14 10:19 [gentoo-commits] repo/proj/guru:master " David Roman
2023-12-01 15:26 Viorel Munteanu
2023-01-04  8:51 Florian Schmaus
2021-02-16 21:10 Theo Anderson
2020-04-27  7:02 Andrew Ammerlaan
2020-04-12 16:39 Andrew Ammerlaan
2020-03-15 20:21 Andrew Ammerlaan
2020-03-15 20:20 Andrew Ammerlaan

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