From 29aca1e36f959b813a4c5f50daf3cdfd38cf50c4 Mon Sep 17 00:00:00 2001 From: davidovski Date: Sat, 20 Nov 2021 18:18:21 +0000 Subject: added index --- build-repo.sh | 10 ++++++++++ index.html | 15 +++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 index.html diff --git a/build-repo.sh b/build-repo.sh index 6d95b92..f4cd0d5 100755 --- a/build-repo.sh +++ b/build-repo.sh @@ -9,6 +9,7 @@ fetch () { } build () { + REPOS_INDEX=dist/repo/index.html rm $REPOS_INDEX @@ -152,11 +153,20 @@ sync () { [[ $# = 0 ]] || rsync -vLta --no-perms --no-owner --no-group --delete -z -e ssh ./dist/ $1 } +index () { + INDEX=dist/index.html + rm $INDEX + + echo-head "xilinux" >> $INDEX + cat index.html >> $INDEX +} + # update the repository clean fetch build +index clean sync $@ diff --git a/index.html b/index.html new file mode 100644 index 0000000..e832fc6 --- /dev/null +++ b/index.html @@ -0,0 +1,15 @@ +

xilinux

+ +

xilinux is a linux distro that currently has no reason to exist other than just a fun project of mine. Maybe it will do something unique to other distros in the future.

+ + +

If you are interesting in setting up a repo, helping with development, maintaining the repos, or even just interested in this distro, contact davidovski at xi@davidovski.xyz or on matrix davidovski@matrix.org Any help in any form would greatly be appreciated.

+ +

This is davidovski's xilinux repo

+ +

Explore packages

+ +

This repo is a mirror of xi.davidovski.xyz, the development build system for xilinux.

+ +

Currently there are no other build systems in action and all other "sources" are just mirrors of this one; being a development system, updates will only be made whenever I manually build all packages

+ -- cgit v1.2.1