first commit

This commit is contained in:
2025-11-25 06:03:16 -07:00
parent 30878755db
commit 58b009c762
8 changed files with 69 additions and 0 deletions

5
debian/changelog vendored Normal file
View File

@@ -0,0 +1,5 @@
rakuos-lb-build-settings (1.0.0-1-1rakuos2) unstable; urgency=medium
* add rakuos builds
-- Tohur <tohur@rakuos.org> Wed, 25 Nov 2025 23:22:44 -0700

12
debian/control vendored Normal file
View File

@@ -0,0 +1,12 @@
Source: rakuos-lb-build-settings
Section: metapackages
Priority: optional
Maintainer: RakuOS Team <tohur@tohur.xyz>
Build-Depends: debhelper-compat (= 13),
Standards-Version: 4.6.2
Package: rakuos-lb-build-settings
Architecture: all
Replaces: debootstrap
Depends: ${misc:Depends}
Description: Core OS config for RakuOS

10
debian/copyright vendored Normal file
View File

@@ -0,0 +1,10 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: RakuOS Branding
Upstream-Contact: Joshua Webb <contact@rakuos.org>
Source: https://rakuos.org/
Files: *
Copyright: 2025 Joshua Webb
License: GPL-3+
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License version 3 or later.

1
debian/install vendored Normal file
View File

@@ -0,0 +1 @@
usr/* usr/

4
debian/rules vendored Executable file
View File

@@ -0,0 +1,4 @@
#!/usr/bin/make -f
# Simple dh (debhelper) build rules file
%:
dh $@

1
debian/source/format vendored Normal file
View File

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

View File

@@ -0,0 +1,18 @@
# shellcheck shell=sh
mirror_style release
download_style apt
finddebs_style from-indices
variants - buildd fakechroot minbase
keyring /usr/share/keyrings/rakuos-archive-keyring.gpg
# include common settings
if [ -e "$DEBOOTSTRAP_DIR/scripts/debian-common" ]; then
. "$DEBOOTSTRAP_DIR/scripts/debian-common"
elif [ -e /debootstrap/debian-common ]; then
. /debootstrap/debian-common
elif [ -e "$DEBOOTSTRAP_DIR/debian-common" ]; then
. "$DEBOOTSTRAP_DIR/debian-common"
else
error 1 NOCOMMON "File not found: debian-common"
fi

View File

@@ -0,0 +1,18 @@
# shellcheck shell=sh
mirror_style release
download_style apt
finddebs_style from-indices
variants - buildd fakechroot minbase
keyring /usr/share/keyrings/rakuos-archive-keyring.gpg
# include common settings
if [ -e "$DEBOOTSTRAP_DIR/scripts/debian-common" ]; then
. "$DEBOOTSTRAP_DIR/scripts/debian-common"
elif [ -e /debootstrap/debian-common ]; then
. /debootstrap/debian-common
elif [ -e "$DEBOOTSTRAP_DIR/debian-common" ]; then
. "$DEBOOTSTRAP_DIR/debian-common"
else
error 1 NOCOMMON "File not found: debian-common"
fi