Commit Graph
41 Commits
Author SHA1 Message Date
c-ludenberg 5b4aade95f fix(ci): add sudo -E to build command, update IA metadata for Dinit 2026-07-06 19:56:25 +02:00
c-ludenberg 9fe5174cc7 feat: add GitHub Pages docs site (Just the Docs), split packagechooser, disable IA upload
- docs/: new 13-page Jekyll site with Just the Docs theme
  - Home, Building, Installer, Packages, CI/CD, Development
  - Desktop Environments (with GNOME joke), Wallpapers, Launcher
  - Overlays, Root Overlay, Live Overlay
- .github/workflows/pages.yml: build & deploy docs from docs/ on
  push to master (only when docs/ changes)
- .github/workflows/build.yml: temporarily disable Internet Archive
  upload (if: false) until ISO is stable
- live-overlay/settings.conf: add instances section for init + desktop
  packagechooser instances
- live-overlay/modules/packagechooser_init.conf: init system selector
  (OpenRC, Runit, S6, Dinit) via netinstall-add method
- live-overlay/modules/packagechooser_desktop.conf: DE selector
  (Plasma, Xfce, Cinnamon, MATE, LXQt, i3, Sway, Hyprland + No Desktop)
  via legacy method
- README.md, AGENTS.md: fix sudo buildiso -> sudo ./buildiso, add note
  about system buildiso lacking --overwrite='*'
- .gitignore: add docs/_site/
2026-06-29 21:27:46 +02:00
c-ludenberg 4a4f35d91b fix CI: use WORKSPACE_DIR env var instead of github.workspace for IA upload path (container path mismatch) 2026-06-28 18:28:45 +02:00
c-ludenberg f7215a534b CI: mkdir -p before ia.ini, use $HOME 2026-06-27 19:13:23 +02:00
c-ludenberg d399c24b02 CI: mount tmpfs as step instead of container --tmpfs
--tmpfs with size= in container options may not parse correctly
on GH Actions. Mount tmpfs as a run step for full control.
2026-06-27 19:05:03 +02:00
c-ludenberg a2e0c9cd5e CI: check existing swap before creating 2026-06-27 19:02:19 +02:00
c-ludenberg abf36b955d CI: use dd instead of fallocate for swap 2026-06-27 19:00:23 +02:00
c-ludenberg 9648c6454a CI: add 12G swap & 12G tmpfs, fix pip PEP 668 2026-06-27 18:58:18 +02:00
c-ludenberg e5464914e7 CI: bump tmpfs to 8G, fix artifact paths
rootfs.img ran out of space on default-size tmpfs (3.5G).
The KDE rootfs + squashfs output needs ~5-6G.

Also fix artifact upload and IA upload paths — ISO_POOL defaults
to $WORKSPACE_DIR/iso, not /var/lib/artools/buildiso/iso/.
2026-06-27 18:44:33 +02:00
c-ludenberg 2b4d23fdfb CI: add exec,suid,dev to --tmpfs mount
Docker's --tmpfs defaults to noexec, which prevents all chroot'd
pacman post-transaction hooks from executing (mkinitcpio, sysusers,
etc.). The missing vmlinuz was a symptom — noexec meant the linux
package install hooks couldn't generate the initramfs.
2026-06-27 18:34:18 +02:00
c-ludenberg 0f8eb250e8 CI: add --tmpfs for build directory to fix nested overlayfs in Docker
Docker's default overlayfs driver doesn't support nested overlayfs
upperdirs. A tmpfs at the build location sidesteps the issue.
2026-06-27 18:29:06 +02:00
c-ludenberg 38aea4c370 CI: use our buildiso with --overwrite='*' to resolve calamares branding file conflict
- Stock buildiso from artools passes --overwrite='*' through basestrap
  to pacman (basestrap stuffs all remaining args into pacman_args).
  Our copy already has this flag; CI was ignoring it.
- Add jack2, noto-fonts-emoji to common.yaml to pre-resolve provider
  prompts before they block the build.
2026-06-27 18:26:16 +02:00
c-ludenberg e6a456aba6 ci: copy pacman.conf to both user and system dirs; fix vi provider ambiguity 2026-06-27 18:15:49 +02:00
c-ludenberg 89fca2b385 ci: fix pacman.conf path — use relative path from workspace root 2026-06-27 18:14:17 +02:00
c-ludenberg 0d9b3af062 feat: migrate from archiso to artools — are you threatening me in SKECHERS?!
Strip out archiso (airootfs, efiboot, syslinux, mkarchiso, prepare.sh,
Dockerfile, mirrorlist, profiledef.sh, packages.x86_64, reset.sh,
run_before_squashfs.sh) and adopt artools buildiso with full antergos
iso-profiles. Bitch, you NEED therapy.

Are you threatening me?
- 154 files changed, 2804 insertions, 7352 deletions
- buildiso wrapper + iso-profiles/antergos/ (profile.yaml, root-overlay,
  live-overlay) + iso-profiles/common/common.yaml
- pacman.conf.d/iso-x86_64.conf with antergos-pkgs repo first

...Are you THREATENING me in SKECHERS?!
- Calamares offline + online module dirs, antergos-next branding
- componentName must match dir or Branding.cpp goes full T-square
- calamares before calamares-branding-antergos-next so --overwrite='*'
  wins correctly. YOU'RE ON YOUR FOURTH WIFE RIGHT NOW-
- calamares-next.desktop in live-overlay (/usr/share + /etc/skel/Desktop)
- netinstall.yaml bundled. No remote deps. Kill that bitch (Cnchi).

What fuckin' college would care if you drew some bullshit picture
about your feelings?
- CI: artixlinux/artixlinux:base container, install artools, buildiso -p
  antergos, IA upload with collection=open_source_software. Class is in
  session. Maybe I should grow 40 feet! Then you'd REALLY like me!
- IA: mediatype=software keeps us out of Community Texts jail. The
  question is; what's this stick gonna do?

It's honestly super humbling, when the trashiest repo you know;
probably coked out of its mind... says the most thoughtful thing
you've done in years.
- README.md rewritten with Artix/OpenRC/KDE badges, build instructions,
  migration notes. Nice SpongeBob impression. ...Nice SpongeBob impression.
- AGENTS.md updated (identity ritual, gotchas, commands, repo layout)
- Restore LICENSE, NOTICES, APOLOGY.txt, CHANGELOG.md from git history.
  Some files you just don't let die. No matter what, you NEVER use that
  N-word! (...should've said nothing.)
- .gitignore: work/ iso/ out/. Go work at Starbucks with your little apron.

So laugh all you want. Forget about me all you want. But at least
I'll be gorgeous forever. Mother, I'm in the SquashFS now.

Signed-off-by: Celestia Ludenberg <ash8820@proton.me>
2026-06-27 18:03:54 +02:00
c-ludenberg 266ec69576 R.I.P. Cnchi (2012-2026) — Calamares is the big boy installer now
Full removal of Cnchi from the ISO. It was the original Antergos
installer and we tried to keep it alive with a GTK4 port, but the
Python GTK4 bindings were unstable, the maintenance burden was
unsustainable for a solo dev, and Calamares simply does everything
better.

What changed:
  - README: complete rewrite of installer section with eulogy and
    'Why Calamares and not Cnchi' explanation
  - packages.x86_64: cnchi removed (calamares stays)
  - run_before_squashfs.sh: removed cnchi memes dir creation, cnchi
    desktop file fix, cnchi version comment; changed GTK theme from
    Adwaita to Adwaita-dark (fixes white-on-white welcome app)
  - airootfs/.../cnchi.desktop: deleted
  - user-commands-before.bash: updated cnchi references → generic
  - user_commands.bash: updated cnchi reference → generic
  - .gitignore: removed Cnchi/ entry
  - AGENTS.md: cnchi → calamares
  - .github/workflows/build.yml: cnchi → calamares in README gen
  - NOTICES: kept historical Cnchi credit (unchanged)

🕯️ Requiescat in pace, Cnchi. You did your job.
2026-06-23 13:35:40 +02:00
c-ludenberg de3f815195 SF workflow: upload to pulsar-linux /Antergos-NeXT ISO's/, add validation and release logic 2026-06-15 20:08:39 +02:00
c-ludenberg 12087244d4 all fixes: wallpaper registration, pkexec cnchi, polkit nopasswd, CI → SourceForge 2026-06-12 19:27:37 +02:00
c-ludenberg c0cee890e5 IA: use software collection instead of opensource 2026-06-08 20:44:14 +02:00
c-ludenberg 3697368708 IA upload: remove linux_distributions (curated collection, API rejects) 2026-06-08 20:43:52 +02:00
c-ludenberg 2f9735f9ba Remove temp fix-ia workflow (collection fixed) 2026-06-08 20:38:59 +02:00
c-ludenberg 905f790086 fix-ia: try just opensource collection 2026-06-08 20:37:55 +02:00
c-ludenberg 6038b198d6 temp: fix IA collection for existing item 2026-06-08 20:36:33 +02:00
c-ludenberg 25724166e2 IA: add linux_distributions collection 2026-06-08 20:28:02 +02:00
c-ludenberg 3af529cdac IA description: add note about early release DE limitations 2026-06-08 20:23:13 +02:00
c-ludenberg 97edcf3f99 fix: correct ia.ini s3 section format 2026-06-08 15:32:57 +00:00
c-ludenberg 7d55c896bf fix: write keys to ia.ini config file 2026-06-08 15:21:15 +00:00
c-ludenberg e4ab50ba67 fix: use IAS3_ACCESS_KEY env var names 2026-06-08 14:44:37 +00:00
c-ludenberg 0061ebd7a8 fix: use IA S3 keys for auth 2026-06-08 14:16:35 +00:00
c-ludenberg 26421b2725 fix: try older internetarchive version 2026-06-08 14:11:28 +00:00
c-ludenberg f7e20c4696 fix: yaml syntax - remove heredoc 2026-06-08 05:05:06 +00:00
c-ludenberg 0141315b8e fix: try netrc + ini config for ia auth 2026-06-08 05:01:16 +00:00
c-ludenberg 340b0bc05a fix: write ia credentials to config file
The ia CLI removed --email/--password flags.
Create config file with email and password from secrets.
2026-06-08 04:54:39 +00:00
c-ludenberg 70d0f88dbb fix: use AWS-style env vars for internetarchive auth
The ia CLI removed --email/--password flags.
Now uses AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY env vars.
2026-06-08 04:49:30 +00:00
c-ludenberg 76421ef321 fix: add --break-system-packages for PEP 668 compatibility
The archlinux container now has Python's externally-managed-environment protection.
This fix allows pip to install internetarchive for Internet Archive uploads.
2026-06-07 19:52:29 +00:00
c-ludenberg 92bfcf8cda Improve Internet Archive metadata 2026-06-07 20:43:31 +02:00
c-ludenberg 2c726ecb64 Add Internet Archive upload to CI 2026-06-07 20:39:24 +02:00
c-ludenberg fc00d568cc Add --privileged to container for chroot mounts 2026-06-07 19:54:24 +02:00
c-ludenberg 2e7366a6c7 Add base-devel to CI deps 2026-06-07 19:49:58 +02:00
c-ludenberg ca3e77f7c9 Fix CI workflow, add antergos-pkgs repo to build pacman.conf 2026-06-07 19:46:17 +02:00
c-ludenberg c8d450871b Add Dockerfile and CI build workflow 2026-06-07 19:38:16 +02:00