* [gentoo-commits] repo/proj/guru:dev commit in: sys-fs/btrfs-heatmap/
@ 2021-02-14 13:51 Steven Davies
0 siblings, 0 replies; 7+ messages in thread
From: Steven Davies @ 2021-02-14 13:51 UTC (permalink / raw
To: gentoo-commits
commit: 834e0a223c772563a7cf3fd6cc1d099cac047ae4
Author: Steven Davies <gentoo-guru <AT> steev <DOT> me <DOT> uk>
AuthorDate: Sun Feb 14 13:49:54 2021 +0000
Commit: Steven Davies <gentoo-guru <AT> steev <DOT> me <DOT> uk>
CommitDate: Sun Feb 14 13:51:00 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=834e0a22
sys-fs/btrfs-heatmap: New ebuild
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Steven Davies <gentoo-guru <AT> steev.me.uk>
sys-fs/btrfs-heatmap/Manifest | 1 +
sys-fs/btrfs-heatmap/btrfs-heatmap-9.ebuild | 32 +++++++++++++++++++++++++++++
sys-fs/btrfs-heatmap/metadata.xml | 9 ++++++++
3 files changed, 42 insertions(+)
diff --git a/sys-fs/btrfs-heatmap/Manifest b/sys-fs/btrfs-heatmap/Manifest
new file mode 100644
index 00000000..fd6110f1
--- /dev/null
+++ b/sys-fs/btrfs-heatmap/Manifest
@@ -0,0 +1 @@
+DIST btrfs-heatmap-9.tar.gz 661880 BLAKE2B e714dc3d54c099d74aa811a36b25097b32a11de20a92a92e1e9380ad3019cb9d260a1061aee222e800fd0a0718d80810810674d67cd202a7ac3a3abc4b181658 SHA512 0eeeed72ee26d469577c7c8671c2bf93d258537aa606d7d92e866982136b0ebc151419fbd59bc062062f9537651b4a93afc06d1c804a611a89253fc592f3c996
diff --git a/sys-fs/btrfs-heatmap/btrfs-heatmap-9.ebuild b/sys-fs/btrfs-heatmap/btrfs-heatmap-9.ebuild
new file mode 100644
index 00000000..5448620f
--- /dev/null
+++ b/sys-fs/btrfs-heatmap/btrfs-heatmap-9.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7,8,9} )
+
+inherit python-single-r1
+
+DESCRIPTION="Python 3 script to draw a heatmap of a btrfs filesystem"
+HOMEPAGE="https://github.com/knorrie/btrfs-heatmap"
+SRC_URI="https://github.com/knorrie/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="
+ ${PYTHON_DEPS}
+ $(python_gen_cond_dep '
+ >=sys-fs/python-btrfs-12[${PYTHON_MULTI_USEDEP}]
+ ')"
+DEPEND="${RDEPEND}"
+
+src_install()
+{
+ dobin btrfs-heatmap
+ python_fix_shebang "${ED}"/usr/bin/btrfs-heatmap
+ default
+}
diff --git a/sys-fs/btrfs-heatmap/metadata.xml b/sys-fs/btrfs-heatmap/metadata.xml
new file mode 100644
index 00000000..23cb676b
--- /dev/null
+++ b/sys-fs/btrfs-heatmap/metadata.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM 'http://www.gentoo.org/dtd/metadata.dtd'>
+<pkgmetadata>
+ <maintainer type="person">
+ <email>gentoo-guru@steev.me.uk</email>
+ <name>Steven Davies</name>
+ </maintainer>
+ <longdescription>The btrfs heatmap script creates a visualization of how a btrfs filesystem is using the underlying disk space of the block devices that are added to it.</longdescription>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: sys-fs/btrfs-heatmap/
@ 2022-02-10 21:36 Steven Davies
0 siblings, 0 replies; 7+ messages in thread
From: Steven Davies @ 2022-02-10 21:36 UTC (permalink / raw
To: gentoo-commits
commit: 6f7fd3ca77e0c370d8825d565b71fb27a5185d70
Author: Steven Davies <gentoo-guru <AT> steev <DOT> me <DOT> uk>
AuthorDate: Thu Feb 10 21:35:47 2022 +0000
Commit: Steven Davies <gentoo-guru <AT> steev <DOT> me <DOT> uk>
CommitDate: Thu Feb 10 21:35:47 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6f7fd3ca
sys-fs/btrfs-heatmap: Fix DEPENDS
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Steven Davies <gentoo-guru <AT> steev.me.uk>
.../{btrfs-heatmap-9.ebuild => btrfs-heatmap-9-r1.ebuild} | 13 ++++++-------
1 file changed, 6 insertions(+), 7 deletions(-)
diff --git a/sys-fs/btrfs-heatmap/btrfs-heatmap-9.ebuild b/sys-fs/btrfs-heatmap/btrfs-heatmap-9-r1.ebuild
similarity index 73%
rename from sys-fs/btrfs-heatmap/btrfs-heatmap-9.ebuild
rename to sys-fs/btrfs-heatmap/btrfs-heatmap-9-r1.ebuild
index 3a11e71bb..cd92940c0 100644
--- a/sys-fs/btrfs-heatmap/btrfs-heatmap-9.ebuild
+++ b/sys-fs/btrfs-heatmap/btrfs-heatmap-9-r1.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
-PYTHON_COMPAT=( python3_{8,9} )
+PYTHON_COMPAT=( python3_{8,9,10} )
-inherit python-single-r1
+inherit python-r1
DESCRIPTION="Python 3 script to draw a heatmap of a btrfs filesystem"
HOMEPAGE="https://github.com/knorrie/btrfs-heatmap"
@@ -19,9 +19,8 @@ REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RDEPEND="
${PYTHON_DEPS}
- $(python_gen_cond_dep '
- >=sys-fs/python-btrfs-12[${PYTHON_MULTI_USEDEP}]
- ')"
+ >=sys-fs/python-btrfs-12
+ "
DEPEND="${RDEPEND}"
src_install()
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: sys-fs/btrfs-heatmap/
@ 2022-02-20 20:25 Steven Davies
0 siblings, 0 replies; 7+ messages in thread
From: Steven Davies @ 2022-02-20 20:25 UTC (permalink / raw
To: gentoo-commits
commit: f4bbb1f2a7a09ddb221c3688fbb832b6f469e2e2
Author: Steven Davies <gentoo-guru <AT> steev <DOT> me <DOT> uk>
AuthorDate: Sun Feb 20 20:19:42 2022 +0000
Commit: Steven Davies <gentoo-guru <AT> steev <DOT> me <DOT> uk>
CommitDate: Sun Feb 20 20:25:39 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f4bbb1f2
sys-fs/btrfs-heatmap: Fix python eclass (correctly this time?)
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Steven Davies <gentoo-guru <AT> steev.me.uk>
sys-fs/btrfs-heatmap/btrfs-heatmap-9-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-fs/btrfs-heatmap/btrfs-heatmap-9-r1.ebuild b/sys-fs/btrfs-heatmap/btrfs-heatmap-9-r1.ebuild
index cd92940c0..bd1d5bd4e 100644
--- a/sys-fs/btrfs-heatmap/btrfs-heatmap-9-r1.ebuild
+++ b/sys-fs/btrfs-heatmap/btrfs-heatmap-9-r1.ebuild
@@ -5,7 +5,7 @@ EAPI=8
PYTHON_COMPAT=( python3_{8,9,10} )
-inherit python-r1
+inherit python-single-r1
DESCRIPTION="Python 3 script to draw a heatmap of a btrfs filesystem"
HOMEPAGE="https://github.com/knorrie/btrfs-heatmap"
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: sys-fs/btrfs-heatmap/
@ 2023-05-19 18:19 Viorel Munteanu
0 siblings, 0 replies; 7+ messages in thread
From: Viorel Munteanu @ 2023-05-19 18:19 UTC (permalink / raw
To: gentoo-commits
commit: 041a351fb5cf78d89047ba18bc68307e8a723074
Author: Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
AuthorDate: Fri May 19 18:16:55 2023 +0000
Commit: Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Fri May 19 18:18:47 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=041a351f
sys-fs/btrfs-heatmap: fix RDEPEND
Add python_gen_cond_dep so correct python3_10 dependency is pulled in.
Signed-off-by: Viorel Munteanu <ceamac <AT> gentoo.org>
sys-fs/btrfs-heatmap/btrfs-heatmap-9-r1.ebuild | 6 ++++--
sys-fs/btrfs-heatmap/metadata.xml | 3 +++
2 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/sys-fs/btrfs-heatmap/btrfs-heatmap-9-r1.ebuild b/sys-fs/btrfs-heatmap/btrfs-heatmap-9-r1.ebuild
index 9bd96a27f..706b94391 100644
--- a/sys-fs/btrfs-heatmap/btrfs-heatmap-9-r1.ebuild
+++ b/sys-fs/btrfs-heatmap/btrfs-heatmap-9-r1.ebuild
@@ -19,8 +19,10 @@ REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RDEPEND="
${PYTHON_DEPS}
- >=sys-fs/python-btrfs-12
- "
+ $(python_gen_cond_dep '
+ >=sys-fs/python-btrfs-12[${PYTHON_USEDEP}]
+ ')
+"
DEPEND="${RDEPEND}"
src_install()
diff --git a/sys-fs/btrfs-heatmap/metadata.xml b/sys-fs/btrfs-heatmap/metadata.xml
index 81d898764..ae1724cee 100644
--- a/sys-fs/btrfs-heatmap/metadata.xml
+++ b/sys-fs/btrfs-heatmap/metadata.xml
@@ -5,5 +5,8 @@
<email>gentoo-guru@steev.me.uk</email>
<name>Steven Davies</name>
</maintainer>
+ <upstream>
+ <remote-id type="github">knorrie/btrfs-heatmap</remote-id>
+ </upstream>
<longdescription lang="en">The btrfs heatmap script creates a visualization of how a btrfs filesystem is using the underlying disk space of the block devices that are added to it.</longdescription>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: sys-fs/btrfs-heatmap/
@ 2023-05-20 13:44 Steven Davies
0 siblings, 0 replies; 7+ messages in thread
From: Steven Davies @ 2023-05-20 13:44 UTC (permalink / raw
To: gentoo-commits
commit: cf06b3c8bf6e93268b0a712efe058bb829a76e74
Author: Steven Davies <gentoo-guru <AT> steev <DOT> me <DOT> uk>
AuthorDate: Sat May 20 13:38:53 2023 +0000
Commit: Steven Davies <gentoo-guru <AT> steev <DOT> me <DOT> uk>
CommitDate: Sat May 20 13:38:53 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=cf06b3c8
sys-fs/btrfs-heatmap: enable py3.11
Signed-off-by: Steven Davies <gentoo-guru <AT> steev.me.uk>
sys-fs/btrfs-heatmap/btrfs-heatmap-9-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-fs/btrfs-heatmap/btrfs-heatmap-9-r1.ebuild b/sys-fs/btrfs-heatmap/btrfs-heatmap-9-r1.ebuild
index 706b94391..b391c98a4 100644
--- a/sys-fs/btrfs-heatmap/btrfs-heatmap-9-r1.ebuild
+++ b/sys-fs/btrfs-heatmap/btrfs-heatmap-9-r1.ebuild
@@ -3,7 +3,7 @@
EAPI=8
-PYTHON_COMPAT=( python3_10 )
+PYTHON_COMPAT=( python3_10 python3_11 )
inherit python-single-r1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: sys-fs/btrfs-heatmap/
@ 2023-06-14 7:33 Anna Vyalkova
0 siblings, 0 replies; 7+ messages in thread
From: Anna Vyalkova @ 2023-06-14 7:33 UTC (permalink / raw
To: gentoo-commits
commit: 7a51c7063652c66fb0a7cfa8be17a2fdbce668e5
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Wed Jun 14 07:33:45 2023 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Wed Jun 14 07:33:45 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7a51c706
sys-fs/btrfs-heatmap: rename dev-python/btrfs
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
sys-fs/btrfs-heatmap/btrfs-heatmap-9-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-fs/btrfs-heatmap/btrfs-heatmap-9-r1.ebuild b/sys-fs/btrfs-heatmap/btrfs-heatmap-9-r1.ebuild
index b391c98a4..daf10a294 100644
--- a/sys-fs/btrfs-heatmap/btrfs-heatmap-9-r1.ebuild
+++ b/sys-fs/btrfs-heatmap/btrfs-heatmap-9-r1.ebuild
@@ -20,7 +20,7 @@ REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RDEPEND="
${PYTHON_DEPS}
$(python_gen_cond_dep '
- >=sys-fs/python-btrfs-12[${PYTHON_USEDEP}]
+ >=dev-python/btrfs-12[${PYTHON_USEDEP}]
')
"
DEPEND="${RDEPEND}"
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: sys-fs/btrfs-heatmap/
@ 2024-05-11 15:24 Steven Davies
0 siblings, 0 replies; 7+ messages in thread
From: Steven Davies @ 2024-05-11 15:24 UTC (permalink / raw
To: gentoo-commits
commit: 7629eac8bda37b68dd80ffd5eecbe294de413bec
Author: Steven Davies <gentoo-guru <AT> steev <DOT> me <DOT> uk>
AuthorDate: Sat May 11 15:13:27 2024 +0000
Commit: Steven Davies <gentoo-guru <AT> steev <DOT> me <DOT> uk>
CommitDate: Sat May 11 15:23:19 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7629eac8
sys-fs/btrfs-heatmap: enable py3.12, py3.13
Signed-off-by: Steven Davies <gentoo-guru <AT> steev.me.uk>
sys-fs/btrfs-heatmap/btrfs-heatmap-9-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys-fs/btrfs-heatmap/btrfs-heatmap-9-r1.ebuild b/sys-fs/btrfs-heatmap/btrfs-heatmap-9-r1.ebuild
index daf10a294a..da4b9a80ea 100644
--- a/sys-fs/btrfs-heatmap/btrfs-heatmap-9-r1.ebuild
+++ b/sys-fs/btrfs-heatmap/btrfs-heatmap-9-r1.ebuild
@@ -3,7 +3,7 @@
EAPI=8
-PYTHON_COMPAT=( python3_10 python3_11 )
+PYTHON_COMPAT=( python3_10 python3_11 python3_12 )
inherit python-single-r1
@@ -20,7 +20,7 @@ REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RDEPEND="
${PYTHON_DEPS}
$(python_gen_cond_dep '
- >=dev-python/btrfs-12[${PYTHON_USEDEP}]
+ >=dev-python/btrfs-13[${PYTHON_USEDEP}]
')
"
DEPEND="${RDEPEND}"
^ permalink raw reply related [flat|nested] 7+ messages in thread
end of thread, other threads:[~2024-05-11 15:24 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-06-14 7:33 [gentoo-commits] repo/proj/guru:dev commit in: sys-fs/btrfs-heatmap/ Anna Vyalkova
-- strict thread matches above, loose matches on Subject: below --
2024-05-11 15:24 Steven Davies
2023-05-20 13:44 Steven Davies
2023-05-19 18:19 Viorel Munteanu
2022-02-20 20:25 Steven Davies
2022-02-10 21:36 Steven Davies
2021-02-14 13:51 Steven Davies
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox