First Commit

This commit is contained in:
2025-11-19 11:44:03 -07:00
parent 98a06c7e2a
commit 1e2df5c220
24 changed files with 1068 additions and 0 deletions

44
debian/changelog vendored Normal file
View File

@@ -0,0 +1,44 @@
grub-btrfs (4.11-1~1rakuos2) UNRELEASED; urgency=medium
* Build for RakuOS
-- Tohur <tohur@Josh-PC> Sat, 08 Nov 2025 14:17:54 -0700
grub-btrfs (4.11-1~1siduction1) unstable; urgency=medium
* Non-maintainer upload.
* rebuild for siduction
-- Torsten Wohlfarth <towo@siduction.org> Mon, 06 Jan 2025 16:44:38 +0100
grub-btrfs (4.11-0kali3) kali-dev; urgency=medium
[ Kali Janitor ]
* Set upstream metadata fields: Repository-Browse.
* Update standards version to 4.6.1, no changes needed.
* Add ITP bugs in 4.11-0kali1.
* Set upstream metadata fields: Repository.
* Set upstream metadata fields: Bug-Database, Bug-Submit.
* Update standards version to 4.6.2, no changes needed.
[ Steev Klimaszewski ]
* ci: Disable piuparts since the install always fails in a container.
[ Arnaud Rebillout ]
* Drop comments and useless boilerplate in maintscripts
* Ensure update-grub is installed before using it (thx ak-li1)
* Update control file
-- Arnaud Rebillout <arnaudr@kali.org> Mon, 06 Jan 2025 09:45:00 +0700
grub-btrfs (4.11-0kali2) kali-dev; urgency=medium
* Depend on grub2-common not grub-common
-- Steev Klimaszewski <steev@kali.org> Tue, 01 Nov 2022 23:19:46 -0500
grub-btrfs (4.11-0kali1) kali-dev; urgency=medium
* Initial release. Closes: #941627
-- Carsten Boeving <re4son@kali.org> Fri, 04 Feb 2022 17:55:12 +0700

18
debian/control vendored Normal file
View File

@@ -0,0 +1,18 @@
Source: grub-btrfs
Section: utils
Priority: optional
Maintainer: Kali Developers <devel@kali.org>
Uploaders: Carsten Boeving <re4son@kali.org>, Arnaud Rebillout <arnaudr@kali.org>
Rules-Requires-Root: no
Build-Depends: debhelper-compat (= 13)
Standards-Version: 4.7.0
Homepage: https://github.com/Antynea/grub-btrfs
Vcs-Git: https://gitlab.com/kalilinux/packages/grub-btrfs.git
Vcs-Browser: https://gitlab.com/kalilinux/packages/grub-btrfs
Package: grub-btrfs
Architecture: all
Depends: ${misc:Depends}, btrfs-progs, grub2-common, gawk
Description: adds btrfs snapshots to the grub menu
This package improves the grub bootloader by adding a btrfs snapshots
sub-menu, allowing the user to boot into snapshots.

17
debian/copyright vendored Normal file
View File

@@ -0,0 +1,17 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: grub-btrfs
Source: https://github.com/Antynea/grub-btrfs
Files: *
Copyright:
Copyright 2014-2022 Antynea <anty_fab@hotmail.fr>
License: GPL-3
Files: debian/*
Copyright: 2022 Carsten Boeving <re4son@kali.org>
License: GPL-3
Comment: Debian packaging is licensed under the same terms as upstream
License: GPL-3
On Debian systems, the complete text of the GPL-3 can be found in
/usr/share/common-licenses/GPL-3.

1
debian/docs vendored Normal file
View File

@@ -0,0 +1 @@
README.md

10
debian/gbp.conf vendored Normal file
View File

@@ -0,0 +1,10 @@
[DEFAULT]
debian-branch = kali/master
debian-tag = kali/%(version)s
pristine-tar = True
[pq]
patch-numbers = False
[dch]
multimaint-merge = True

1
debian/grub-btrfs.path vendored Symbolic link
View File

@@ -0,0 +1 @@
../grub-btrfs.path

16
debian/grub-btrfs.postinst vendored Normal file
View File

@@ -0,0 +1,16 @@
#!/bin/sh
# see: dh_installdeb(1)
set -e
case "$1" in
configure)
if command -v update-grub >/dev/null; then
update-grub
fi
;;
esac
#DEBHELPER#
# vim:set et ts=4 sw=4:

16
debian/grub-btrfs.postrm vendored Normal file
View File

@@ -0,0 +1,16 @@
#!/bin/sh
# see: dh_installdeb(1)
set -e
case "$1" in
purge)
if command -v update-grub >/dev/null; then
update-grub
fi
;;
esac
#DEBHELPER#
# vim:set et ts=4 sw=4:

1
debian/grub-btrfs.service vendored Symbolic link
View File

@@ -0,0 +1 @@
../grub-btrfs.service

7
debian/kali-ci.yml vendored Normal file
View File

@@ -0,0 +1,7 @@
include:
- https://gitlab.com/kalilinux/tools/kali-ci-pipeline/raw/master/recipes/kali.yml
# The installation attempts to run grub-probe to figure out what device is /
# which doesn't exist in the CI containers, so just disable it in the CI.
variables:
SALSA_CI_DISABLE_PIUPARTS: 1

10
debian/rules vendored Executable file
View File

@@ -0,0 +1,10 @@
#!/usr/bin/make -f
%:
dh $@ --buildsystem=none
override_dh_auto_install:
install -D -m 0755 41_snapshots-btrfs debian/grub-btrfs/etc/grub.d/41_snapshots-btrfs
install -D -m 0644 config debian/grub-btrfs/etc/default/grub-btrfs/config
# Remove the shebang, this file is meant to be sourced
sed -i '1 s/^#!.*//' debian/grub-btrfs/etc/default/grub-btrfs/config

1
debian/source/format vendored Normal file
View File

@@ -0,0 +1 @@
3.0 (quilt)

5
debian/upstream/metadata vendored Normal file
View File

@@ -0,0 +1,5 @@
---
Bug-Database: https://github.com/Antynea/grub-btrfs/issues
Bug-Submit: https://github.com/Antynea/grub-btrfs/issues/new
Repository: https://github.com/Antynea/grub-btrfs.git
Repository-Browse: https://github.com/Antynea/grub-btrfs

4
debian/watch vendored Normal file
View File

@@ -0,0 +1,4 @@
version=4
opts="filenamemangle=s%(?:.*?)?v?(\d[\d.]*@ARCHIVE_EXT@)%@PACKAGE@-$1%" \
https://github.com/Antynea/grub-btrfs/tags \
(?:.*?/)?v?@ANY_VERSION@@ARCHIVE_EXT@