rebrand!: Antergos NeXT -> Euri Linux

This commit is contained in:
2026-08-21 21:34:51 +02:00
parent 24affb4a5a
commit 11706db546
128 changed files with 452 additions and 449 deletions
+1 -1
View File
@@ -36,7 +36,7 @@ Examples of unacceptable behavior include:
* Asking why the project doesn't use systemd (the answer is always "no :3",
this has been established, please respect our time)
* Continuing to insist on systemd after being told no. If you really want a
systemd-based Antergos NeXT, here is your path:
systemd-based Euri Linux, here is your path:
1. Fork this repository from the `before-systemd-change` branch (not master).
Note: that branch uses `archiso`, not our custom `buildiso` — you will
need to adapt every package and profile.
+1 -1
View File
@@ -45,7 +45,7 @@ body:
label: Environment
description: |
Examples:
- **ISO version**: antergos-next-20260701
- **ISO version**: euri-20260701
- **Install method**: Online / BYODE
- **Desktop**: KDE Plasma / Xfce
value: |
+1 -1
View File
@@ -1,5 +1,5 @@
blank_issues_enabled: true
contact_links:
- name: Antergos NeXT Community
- name: Euri Linux Community
url: https://github.com/Antergos-NeXT/antergos-iso/discussions
about: Please ask and answer questions here.
+15 -16
View File
@@ -5,15 +5,10 @@ on:
jobs:
build:
runs-on: host
container:
image: artixlinux/artixlinux:base
options: --privileged
runs-on: artix-runner
steps:
- uses: actions/checkout@v4
- name: Install dependencies
- name: Install dependencies first
run: |
pacman -Syu --noconfirm --needed --overwrite='*' \
artools \
@@ -21,24 +16,28 @@ jobs:
squashfs-tools \
sudo \
python \
python-pip
python-pip \
curl \
ca-certificates
- name: Bootstrap Antergos package signing key
- uses: actions/checkout@v4
- name: Bootstrap Euri package signing key
run: |
KEY_FINGERPRINT=AA644A095D2AF5F950FADB57C51BFE8D3A985236
curl -fsSL -o /tmp/antergos-next.gpg https://raw.githubusercontent.com/Antergos-NeXT/antergos-packages/master/packages/antergos-next-keyring/antergos-next.gpg
curl -fsSL -o /tmp/euri.gpg https://antergos-nas.taild4360b.ts.net/Antergos-NeXT/antergos-packages/raw/branch/master/packages/antergos-next-keyring/antergos-next.gpg
pacman-key --init
pacman-key --add /tmp/antergos-next.gpg
pacman-key --add /tmp/euri.gpg
gpg --homedir /etc/pacman.d/gnupg --batch --with-colons --fingerprint "$KEY_FINGERPRINT" | grep -q "fpr:::::::::$KEY_FINGERPRINT:"
pacman-key --lsign-key "$KEY_FINGERPRINT"
rm -f /tmp/antergos-next.gpg
rm -f /tmp/euri.gpg
- name: Set up WORKSPACE_DIR
run: |
echo "WORKSPACE_DIR=${{ gitea.workspace }}" >> $GITHUB_ENV
- name: Override pacman.conf with antergos-pkgs repo
- name: Override pacman.conf with euri-pkgs repo
run: |
mkdir -p /root/.config/artools/pacman.conf.d
cp "pacman.conf.d/iso-x86_64.conf" \
@@ -48,11 +47,11 @@ jobs:
- name: Build ISO
run: |
sudo -E ./buildiso -p antergos
sudo -E ./buildiso -p euri
- name: Generate checksums
run: |
ISO=$(ls iso/antergos/antergos-*.iso 2>/dev/null | head -1)
ISO=$(ls iso/euri/euri-*.iso 2>/dev/null | head -1)
[[ -z "$ISO" || ! -f "$ISO" ]] && { echo "No ISO found"; exit 1; }
sha256sum "$ISO" > "$ISO.sha256"
cat "$ISO.sha256"
@@ -60,5 +59,5 @@ jobs:
- name: Upload ISO artifact
uses: actions/upload-artifact@v4
with:
name: Antergos-NeXT-ISO
name: Euri-Linux-ISO
path: iso/