* [gentoo-commits] repo/proj/guru:dev commit in: sys-boot/grml-rescueboot/
@ 2024-06-28 1:54 Vitaly Zdanevich
0 siblings, 0 replies; 5+ messages in thread
From: Vitaly Zdanevich @ 2024-06-28 1:54 UTC (permalink / raw
To: gentoo-commits
commit: 90288e42e6ca962564eb4b0a900c01c9275b805d
Author: Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru>
AuthorDate: Fri Jun 28 01:53:38 2024 +0000
Commit: Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru>
CommitDate: Fri Jun 28 01:53:38 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=90288e42
sys-boot/grml-rescueboot: new package
Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly <AT> ya.ru>
sys-boot/grml-rescueboot/Manifest | 1 +
.../grml-rescueboot/grml-rescueboot-0.6.1.ebuild | 47 ++++++++++++++++++++++
sys-boot/grml-rescueboot/metadata.xml | 11 +++++
3 files changed, 59 insertions(+)
diff --git a/sys-boot/grml-rescueboot/Manifest b/sys-boot/grml-rescueboot/Manifest
new file mode 100644
index 000000000..ddf57799f
--- /dev/null
+++ b/sys-boot/grml-rescueboot/Manifest
@@ -0,0 +1 @@
+DIST grml-rescueboot_0.6.1_all.deb 8308 BLAKE2B 0295172a2d89f50ed9f24848b6dcd3328066c4236c482b779126a54b81bbeb3dda644c201e6f1f5a550f1358c64bfb9539499ed1b956880ebc0890d0f36d6672 SHA512 d1c728941c526a44d87c7d0971541563d7dddba5f1c46e13091879d047910ada1b8d5e8756157f696530cbed95e66baf7948be1546e31bac6feff8df80fc3084
diff --git a/sys-boot/grml-rescueboot/grml-rescueboot-0.6.1.ebuild b/sys-boot/grml-rescueboot/grml-rescueboot-0.6.1.ebuild
new file mode 100644
index 000000000..359f6bb07
--- /dev/null
+++ b/sys-boot/grml-rescueboot/grml-rescueboot-0.6.1.ebuild
@@ -0,0 +1,47 @@
+# Copyright 2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit unpacker
+
+DESCRIPTION="grub2 script to add ISO images to the grub2 boot menu"
+HOMEPAGE="http://wiki.grml.org/doku.php?id=rescueboot"
+
+SRC_URI="http://deb.grml.org/pool/main/g/${PN}/${PN}_${PV}_all.deb"
+S="${WORKDIR}"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+ sys-boot/grub
+"
+
+src_unpack() {
+ unpack_deb ${A}
+}
+
+src_install() {
+ insinto /etc/default/
+ doins etc/default/grml-rescueboot
+
+ insinto /etc/grub.d/
+ doins etc/grub.d/42_grml
+ fperms +x /etc/grub.d/42_grml
+}
+
+pkg_postinst() {
+ einfo "Default folder for ISOs is /boot/grml/"
+ einfo "You can change it in /etc/default/grml-rescueboot"
+ einfo "Put some ISOs to the folder,"
+ einfo "mount your /boot:"
+ einfo "mount /dev/sda1 /boot/"
+ einfo "and run"
+ einfo "grub-mkconfig -o /boot/grub/grub.cfg"
+ einfo "Not all ISOs are bootable this way"
+ einfo "Works for Ubuntu, Debian (not all ISOs)"
+ einfo "https://grml.org/download/"
+ einfo "but not for Gentoo ISO, see https://bugs.gentoo.org/568464"
+}
diff --git a/sys-boot/grml-rescueboot/metadata.xml b/sys-boot/grml-rescueboot/metadata.xml
new file mode 100644
index 000000000..e76146669
--- /dev/null
+++ b/sys-boot/grml-rescueboot/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person" proxied="yes">
+ <email>zdanevich.vitaly@ya.ru</email>
+ <name>Vitaly Zdanevich</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">grml/grml-rescueboot</remote-id>
+ </upstream>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: sys-boot/grml-rescueboot/
@ 2024-06-29 1:21 Vitaly Zdanevich
0 siblings, 0 replies; 5+ messages in thread
From: Vitaly Zdanevich @ 2024-06-29 1:21 UTC (permalink / raw
To: gentoo-commits
commit: c950092ace5a32466ef68c2c69e60f3e6b5b8d21
Author: Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru>
AuthorDate: Sat Jun 29 01:21:38 2024 +0000
Commit: Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru>
CommitDate: Sat Jun 29 01:21:38 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c950092a
sys-boot/grml-rescueboot: remove reduntant unpack_deb
Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly <AT> ya.ru>
sys-boot/grml-rescueboot/grml-rescueboot-0.6.1.ebuild | 4 ----
1 file changed, 4 deletions(-)
diff --git a/sys-boot/grml-rescueboot/grml-rescueboot-0.6.1.ebuild b/sys-boot/grml-rescueboot/grml-rescueboot-0.6.1.ebuild
index 359f6bb07..9673a628c 100644
--- a/sys-boot/grml-rescueboot/grml-rescueboot-0.6.1.ebuild
+++ b/sys-boot/grml-rescueboot/grml-rescueboot-0.6.1.ebuild
@@ -19,10 +19,6 @@ RDEPEND="
sys-boot/grub
"
-src_unpack() {
- unpack_deb ${A}
-}
-
src_install() {
insinto /etc/default/
doins etc/default/grml-rescueboot
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: sys-boot/grml-rescueboot/
@ 2024-06-29 1:23 Vitaly Zdanevich
0 siblings, 0 replies; 5+ messages in thread
From: Vitaly Zdanevich @ 2024-06-29 1:23 UTC (permalink / raw
To: gentoo-commits
commit: b9559a7e45fad1e1f3e24666ca086fc0176ad123
Author: Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru>
AuthorDate: Sat Jun 29 01:23:16 2024 +0000
Commit: Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru>
CommitDate: Sat Jun 29 01:23:16 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b9559a7e
sys-boot/grml-rescueboot: http -> httpS
Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly <AT> ya.ru>
sys-boot/grml-rescueboot/grml-rescueboot-0.6.1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys-boot/grml-rescueboot/grml-rescueboot-0.6.1.ebuild b/sys-boot/grml-rescueboot/grml-rescueboot-0.6.1.ebuild
index 9673a628c..d5ef3ff12 100644
--- a/sys-boot/grml-rescueboot/grml-rescueboot-0.6.1.ebuild
+++ b/sys-boot/grml-rescueboot/grml-rescueboot-0.6.1.ebuild
@@ -6,9 +6,9 @@ EAPI=8
inherit unpacker
DESCRIPTION="grub2 script to add ISO images to the grub2 boot menu"
-HOMEPAGE="http://wiki.grml.org/doku.php?id=rescueboot"
+HOMEPAGE="https://wiki.grml.org/doku.php?id=rescueboot"
-SRC_URI="http://deb.grml.org/pool/main/g/${PN}/${PN}_${PV}_all.deb"
+SRC_URI="https://deb.grml.org/pool/main/g/${PN}/${PN}_${PV}_all.deb"
S="${WORKDIR}"
LICENSE="GPL-2"
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: sys-boot/grml-rescueboot/
@ 2024-06-29 1:38 Vitaly Zdanevich
0 siblings, 0 replies; 5+ messages in thread
From: Vitaly Zdanevich @ 2024-06-29 1:38 UTC (permalink / raw
To: gentoo-commits
commit: d500708f0d8acce214eb32beb8b7e5a949213a80
Author: Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru>
AuthorDate: Sat Jun 29 01:38:23 2024 +0000
Commit: Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru>
CommitDate: Sat Jun 29 01:38:23 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d500708f
sys-boot/grml-rescueboot: insinto -> exeinto
Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly <AT> ya.ru>
sys-boot/grml-rescueboot/grml-rescueboot-0.6.1.ebuild | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/sys-boot/grml-rescueboot/grml-rescueboot-0.6.1.ebuild b/sys-boot/grml-rescueboot/grml-rescueboot-0.6.1.ebuild
index d5ef3ff12..e5437389f 100644
--- a/sys-boot/grml-rescueboot/grml-rescueboot-0.6.1.ebuild
+++ b/sys-boot/grml-rescueboot/grml-rescueboot-0.6.1.ebuild
@@ -23,9 +23,8 @@ src_install() {
insinto /etc/default/
doins etc/default/grml-rescueboot
- insinto /etc/grub.d/
- doins etc/grub.d/42_grml
- fperms +x /etc/grub.d/42_grml
+ exeinto /etc/grub.d/
+ newexe etc/grub.d/42_grml 42_grml
}
pkg_postinst() {
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: sys-boot/grml-rescueboot/
@ 2024-07-13 1:17 Vitaly Zdanevich
0 siblings, 0 replies; 5+ messages in thread
From: Vitaly Zdanevich @ 2024-07-13 1:17 UTC (permalink / raw
To: gentoo-commits
commit: abc50d4a5626bbaa8f0f85039175dea57ef37f0d
Author: Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru>
AuthorDate: Sat Jul 13 01:17:10 2024 +0000
Commit: Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru>
CommitDate: Sat Jul 13 01:17:10 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=abc50d4a
sys-boot/grml-rescueboot: SRC_URI from Debian deb to GitHub
Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly <AT> ya.ru>
sys-boot/grml-rescueboot/Manifest | 3 ++-
sys-boot/grml-rescueboot/grml-rescueboot-0.6.1.ebuild | 13 +++++++------
2 files changed, 9 insertions(+), 7 deletions(-)
diff --git a/sys-boot/grml-rescueboot/Manifest b/sys-boot/grml-rescueboot/Manifest
index ddf57799f..e702764dd 100644
--- a/sys-boot/grml-rescueboot/Manifest
+++ b/sys-boot/grml-rescueboot/Manifest
@@ -1 +1,2 @@
-DIST grml-rescueboot_0.6.1_all.deb 8308 BLAKE2B 0295172a2d89f50ed9f24848b6dcd3328066c4236c482b779126a54b81bbeb3dda644c201e6f1f5a550f1358c64bfb9539499ed1b956880ebc0890d0f36d6672 SHA512 d1c728941c526a44d87c7d0971541563d7dddba5f1c46e13091879d047910ada1b8d5e8756157f696530cbed95e66baf7948be1546e31bac6feff8df80fc3084
+DIST 42_grml 4444 BLAKE2B e0fe62323e017259b058e12f03994645ceba5f339c058b5241553cb2ece0d8a5ddd31bc8d686b926d0921ab433e9b8f1f9f32a2af3b9aa774750b6ddda66e3c4 SHA512 7a4c3da564d6ce84da9f44c54178994ab8777987c143dc109987442a26bb44b55a126aca8086873bb85bb39dba437bfa5b897222a815272d5e692374ff510948
+DIST grml-rescueboot 404 BLAKE2B b9750a2aa2381862b6d87095b40844c1ec10c492a932c9f1b974fd2e13a7ab451db7347d6bb3e305ca2ce9f064dcbb78b28633c6bdfae92d32a0a5727ac44ba2 SHA512 f7b36959d9d41d485b3f57d4d6a6f6ed011e385325e0c2c796e27057515583606f4dc12d30a37131089c259ae71cc005786b8a38d0d2e6f22f49507fa99ae2f5
diff --git a/sys-boot/grml-rescueboot/grml-rescueboot-0.6.1.ebuild b/sys-boot/grml-rescueboot/grml-rescueboot-0.6.1.ebuild
index e5437389f..74b964f2d 100644
--- a/sys-boot/grml-rescueboot/grml-rescueboot-0.6.1.ebuild
+++ b/sys-boot/grml-rescueboot/grml-rescueboot-0.6.1.ebuild
@@ -3,13 +3,14 @@
EAPI=8
-inherit unpacker
-
DESCRIPTION="grub2 script to add ISO images to the grub2 boot menu"
HOMEPAGE="https://wiki.grml.org/doku.php?id=rescueboot"
-SRC_URI="https://deb.grml.org/pool/main/g/${PN}/${PN}_${PV}_all.deb"
-S="${WORKDIR}"
+SRC_URI="https://raw.github.com/grml/grml-rescueboot/master/etc/default/grml-rescueboot
+ https://raw.github.com/grml/grml-rescueboot/master/42_grml
+"
+
+S="${DISTDIR}"
LICENSE="GPL-2"
SLOT="0"
@@ -21,10 +22,10 @@ RDEPEND="
src_install() {
insinto /etc/default/
- doins etc/default/grml-rescueboot
+ doins grml-rescueboot
exeinto /etc/grub.d/
- newexe etc/grub.d/42_grml 42_grml
+ newexe 42_grml 42_grml
}
pkg_postinst() {
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-07-13 1:17 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-29 1:21 [gentoo-commits] repo/proj/guru:dev commit in: sys-boot/grml-rescueboot/ Vitaly Zdanevich
-- strict thread matches above, loose matches on Subject: below --
2024-07-13 1:17 Vitaly Zdanevich
2024-06-29 1:38 Vitaly Zdanevich
2024-06-29 1:23 Vitaly Zdanevich
2024-06-28 1:54 Vitaly Zdanevich
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox