diff options
author | davidovski <david@davidovski.xyz> | 2022-05-31 11:05:19 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-05-31 11:05:19 +0100 |
commit | 48ca75555522716f0f686dcae3dd6cf3d8ad714d (patch) | |
tree | 00c0f58550ba4661e87376f2f02c8001c69bae44 /repo/xi | |
parent | 871b2b573f01c1b3176a0f65458b3d281b41c437 (diff) |
removed idea of repos
Diffstat (limited to 'repo/xi')
-rw-r--r-- | repo/xi/sysconfigs/sysconfigs.xibuild | 97 | ||||
-rw-r--r-- | repo/xi/xib/xib.xibuild | 11 | ||||
-rw-r--r-- | repo/xi/xibuild/xibuild.xibuild | 14 | ||||
-rw-r--r-- | repo/xi/xipkg/xipkg.xibuild | 18 | ||||
-rw-r--r-- | repo/xi/xiutils/hbar.xibuild | 5 | ||||
-rw-r--r-- | repo/xi/xiutils/parseconf.xibuild | 7 | ||||
-rw-r--r-- | repo/xi/xiutils/shtests.xibuild | 7 | ||||
-rw-r--r-- | repo/xi/xiutils/xichroot.xibuild | 8 | ||||
-rw-r--r-- | repo/xi/xiutils/xitui.xibuild | 6 | ||||
-rw-r--r-- | repo/xi/xiutils/xiutils.xibuild | 22 |
10 files changed, 0 insertions, 195 deletions
diff --git a/repo/xi/sysconfigs/sysconfigs.xibuild b/repo/xi/sysconfigs/sysconfigs.xibuild deleted file mode 100644 index c3723c1..0000000 --- a/repo/xi/sysconfigs/sysconfigs.xibuild +++ /dev/null @@ -1,97 +0,0 @@ -#!/bin/sh - -MAKEDEPS="" -DEPS="sh" - -PKG_VER=N/A -DESC="Default system configs for xilinux" - -package () { - mkdir -p $PKG_DEST/etc/ - mkdir -p $PKG_DEST/etc/sysconfig - - cat > $PKG_DEST/etc/profile << "EOF" - -umask 022 - -PS1="\u@\h \w $ " -PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/.local/bin - -export PATH -export PS1 - -# Termcap is outdated, old, and crusty, kill it. -unset TERMCAP - -# Man is much better than us at figuring this out -unset MANPATH -export QT_QPA_PLATFORMTHEME=qt5ct -EOF - - cat > $PKG_DEST/etc/inputrc << "EOF" -# Begin /etc/inputrc -# Modified by Chris Lynn <roryo@roryo.dynup.net> - -# Allow the command prompt to wrap to the next line -set horizontal-scroll-mode Off - -# Enable 8bit input -set meta-flag On -set input-meta On - -# Turns off 8th bit stripping -set convert-meta Off - -# Keep the 8th bit for display -set output-meta On - -# none, visible or audible -set bell-style none - -# All of the following map the escape sequence of the value -# contained in the 1st argument to the readline specific functions -"\eOd": backward-word -"\eOc": forward-word - -# for linux console -"\e[1~": beginning-of-line -"\e[4~": end-of-line -"\e[5~": beginning-of-history -"\e[6~": end-of-history -"\e[3~": delete-char -"\e[2~": quoted-insert - -# for xterm -"\eOH": beginning-of-line -"\eOF": end-of-line - -# for Konsole -"\e[H": beginning-of-line -"\e[F": end-of-line - -# End /etc/inputrc -EOF - cat > $PKG_DEST/etc/shells << "EOF" - /bin/sh -EOF - - cat > $PKG_DEST/etc/lsb-release << "EOF" -LSB_VERSION=1.4 -DISTRIB_ID=xi -DISTRIB_RELEASE=rolling -DISTRIB_DESCRIPTION="XiLinux" -EOF - cat > $PKG_DEST/etc/os-release << "EOF" -NAME="xilinux" -PRETTY_NAME="XiLinux" -ID=xi -BUILD_ID=rolling -ANSI_COLOR="38;2;23;147;209" -HOME_URL="https://xi.davidovski.xyz" -DOCUMENTATION_URL="https://xi.davidovski.xyz" -SUPPORT_URL="https://xi.davidovski.xyz" -BUG_REPORT_URL="https://xi.davidovski.xyz" -LOGO=xilinux-logo -EOF - -} diff --git a/repo/xi/xib/xib.xibuild b/repo/xi/xib/xib.xibuild deleted file mode 100644 index f8b2395..0000000 --- a/repo/xi/xib/xib.xibuild +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh - -MAKEDEPS="" -DEPS="xichroot xibuild xipkg xiutils hbar parseconf git tar unzip" - -SOURCE=https://git.davidovski.xyz/xilinux/xib.git -DESC="The XiBuild system" - -package () { - make DESTDIR=$PKG_DEST install -} diff --git a/repo/xi/xibuild/xibuild.xibuild b/repo/xi/xibuild/xibuild.xibuild deleted file mode 100644 index c8a3ab0..0000000 --- a/repo/xi/xibuild/xibuild.xibuild +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh - -MAKEDEPS="make" -DEPS="xiutils parseconf tar unzip hbar" - -PKG_VER=1.3 -SOURCE=https://git.davidovski.xyz/xilinux/xibuild.git -BRANCH=v$PKG_VER - -DESC="Tools for building xipkgs on XiLinux" - -package () { - make DESTDIR=$PKG_DEST install -} diff --git a/repo/xi/xipkg/xipkg.xibuild b/repo/xi/xipkg/xipkg.xibuild deleted file mode 100644 index 1d48e38..0000000 --- a/repo/xi/xipkg/xipkg.xibuild +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/sh - -MAKEDEPS="make" -DEPS="openssl curl dash xiutils findutils diffutils sed xichroot grep base64 sort hbar parseconf xiutils" - -PKG_VER=1.4.3 -SOURCE=https://git.davidovski.xyz/xilinux/xipkg.git -BRANCH="v$PKG_VER" - -DESC="The xilinux package manager" - -build () { - make -} - -package () { - make DESTDIR=$PKG_DEST install -} diff --git a/repo/xi/xiutils/hbar.xibuild b/repo/xi/xiutils/hbar.xibuild deleted file mode 100644 index 8e00b6a..0000000 --- a/repo/xi/xiutils/hbar.xibuild +++ /dev/null @@ -1,5 +0,0 @@ -DESC="Horizontal Loading bar" - -package () { - add_from_main usr/bin/hbar -} diff --git a/repo/xi/xiutils/parseconf.xibuild b/repo/xi/xiutils/parseconf.xibuild deleted file mode 100644 index 559cda3..0000000 --- a/repo/xi/xiutils/parseconf.xibuild +++ /dev/null @@ -1,7 +0,0 @@ -DESC="Simple config file parser" - -DEPS="sh" - -package () { - add_from_main usr/bin/parseconf -} diff --git a/repo/xi/xiutils/shtests.xibuild b/repo/xi/xiutils/shtests.xibuild deleted file mode 100644 index 8f45afe..0000000 --- a/repo/xi/xiutils/shtests.xibuild +++ /dev/null @@ -1,7 +0,0 @@ -DESC="Simple shell testing suite" - -DEPS="xiutils sh" - -package () { - add_from_main usr/bin/shtests -} diff --git a/repo/xi/xiutils/xichroot.xibuild b/repo/xi/xiutils/xichroot.xibuild deleted file mode 100644 index b39308f..0000000 --- a/repo/xi/xiutils/xichroot.xibuild +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh - -DEPS="bash" -DESC="A script to aid with chrooting on XiLinux" - -package () { - make DESTDIR=$PKG_DEST install-chroot -} diff --git a/repo/xi/xiutils/xitui.xibuild b/repo/xi/xiutils/xitui.xibuild deleted file mode 100644 index edc7188..0000000 --- a/repo/xi/xiutils/xitui.xibuild +++ /dev/null @@ -1,6 +0,0 @@ -DESC="xilinux Text User Interface tools" -DEPS="sh ncurses stty" - -package () { - add_from_main usr/lib/xitui.sh -} diff --git a/repo/xi/xiutils/xiutils.xibuild b/repo/xi/xiutils/xiutils.xibuild deleted file mode 100644 index 0c6ee70..0000000 --- a/repo/xi/xiutils/xiutils.xibuild +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/sh - -MAKEDEPS="make gcc" -DEPS="musl sh" - -PKG_VER=1.5 -SOURCE=https://git.davidovski.xyz/xilinux/xiutils.git -BRANCH="v$PKG_VER" - -DESC="Utilities required by various components of the xilinux system" - -build () { - make -} - -check () { - make check -} - -package () { - make DESTDIR=$PKG_DEST install -} |