Did stuff
Some checks are pending
Checks / Spelling (push) Waiting to run
Checks / Python Linters (push) Waiting to run
Checks / Shell Linters (push) Waiting to run
Checks / 📦 Packit config lint (push) Waiting to run
Checks / 🔍 Check for valid snapshot urls (push) Waiting to run
Checks / 🔍 Check JSON files for formatting consistency (push) Waiting to run
Generate / Documentation (push) Waiting to run
Generate / Test Data (push) Waiting to run
Tests / Unittest (push) Waiting to run
Tests / Assembler test (legacy) (push) Waiting to run
Tests / Smoke run: unittest as normal user on default runner (push) Waiting to run

This commit is contained in:
robojerk 2025-08-26 11:52:32 -07:00
parent 502e1469ae
commit 61e7caaddb
34 changed files with 2108 additions and 3204 deletions

View file

@ -0,0 +1,40 @@
{
"environments": [
{
"name": "bookworm-amd64",
"suite": "bookworm",
"architecture": "amd64",
"mirror": "http://deb.debian.org/debian",
"components": [
"main",
"contrib",
"non-free-firmware"
],
"extra_repositories": [],
"build_dependencies": [
"build-essential",
"devscripts",
"debhelper"
],
"enabled": true
},
{
"name": "sid-amd64",
"suite": "sid",
"architecture": "amd64",
"mirror": "http://deb.debian.org/debian",
"components": [
"main",
"contrib",
"non-free-firmware"
],
"extra_repositories": [],
"build_dependencies": [
"build-essential",
"devscripts",
"debhelper"
],
"enabled": true
}
]
}

View file

View file

@ -0,0 +1,99 @@
{
"flavors": [
{
"name": "gnome",
"display_name": "GNOME",
"description": "Modern, intuitive desktop environment",
"packages": [
"task-gnome-desktop",
"gnome-core"
],
"dependencies": [
"gnome-session",
"gnome-shell",
"gdm3"
],
"variants": [
"bookworm",
"sid",
"testing"
],
"enabled": true,
"priority": 100
},
{
"name": "kde",
"display_name": "KDE Plasma",
"description": "Feature-rich, customizable desktop",
"packages": [
"task-kde-desktop",
"plasma-desktop"
],
"dependencies": [
"kde-plasma-desktop",
"sddm"
],
"variants": [
"bookworm",
"sid",
"testing"
],
"enabled": true,
"priority": 200
},
{
"name": "xfce",
"display_name": "Xfce",
"description": "Lightweight, fast desktop environment",
"packages": [
"task-xfce-desktop",
"xfce4"
],
"dependencies": [
"xfce4-session",
"lightdm"
],
"variants": [
"bookworm",
"sid",
"testing"
],
"enabled": true,
"priority": 300
},
{
"name": "mate",
"display_name": "MATE",
"description": "Traditional GNOME 2 desktop",
"packages": [
"task-mate-desktop",
"mate-desktop"
],
"dependencies": [
"mate-session-manager",
"lightdm"
],
"variants": [
"bookworm",
"sid",
"testing"
],
"enabled": true,
"priority": 400
},
{
"name": "minimal",
"display_name": "Minimal",
"description": "Minimal system without desktop",
"packages": [],
"dependencies": [],
"variants": [
"bookworm",
"sid",
"testing"
],
"enabled": true,
"priority": 500
}
]
}

View file

@ -0,0 +1,80 @@
{
"variants": [
{
"name": "bookworm",
"codename": "Bookworm",
"version": "12",
"status": "stable",
"release_date": "2023-06-10T00:00:00",
"end_of_life": "2026-06-10T00:00:00",
"architectures": [
"amd64",
"arm64",
"armel",
"armhf",
"i386",
"mips64el",
"mipsel",
"ppc64el",
"s390x"
],
"mirrors": [
"http://deb.debian.org/debian",
"http://security.debian.org/debian-security"
],
"security_support": true,
"updates_support": true,
"backports_support": true
},
{
"name": "sid",
"codename": "Sid",
"version": "unstable",
"status": "unstable",
"release_date": null,
"end_of_life": null,
"architectures": [
"amd64",
"arm64",
"armel",
"armhf",
"i386",
"mips64el",
"mipsel",
"ppc64el",
"s390x"
],
"mirrors": [
"http://deb.debian.org/debian"
],
"security_support": false,
"updates_support": false,
"backports_support": false
},
{
"name": "testing",
"codename": "Trixie",
"version": "13",
"status": "testing",
"release_date": null,
"end_of_life": null,
"architectures": [
"amd64",
"arm64",
"armel",
"armhf",
"i386",
"mips64el",
"mipsel",
"ppc64el",
"s390x"
],
"mirrors": [
"http://deb.debian.org/debian"
],
"security_support": false,
"updates_support": false,
"backports_support": false
}
]
}