2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-02 22:12:27 +00:00

Merge branch 'master' of github.com:dylanaraps/kiss-experiment

This commit is contained in:
Dylan Araps 2019-07-19 16:50:47 +03:00
commit 41c336c932
24 changed files with 27 additions and 25 deletions

View File

@ -4,7 +4,7 @@ The package system was built specifically for KISS and employs a UNIX-like file
The data in each file is separated by lines and spaces. The repository and packages can be manipulated and read using any programming language. The build script (for each package) can be written in whatever language you desire.
More information: https://kissx.github.io/pages/package-system/
More information: https://getkiss.org/pages/package-system/
## Index
@ -36,7 +36,7 @@ When a package is added to `public` it is assumed that the **first** committer i
A simple package to use as a reference is `file`. It has dependencies and uses the GNU configure style (*which a lot of packages use*).
https://github.com/kissx/packages/tree/master/core/file
https://github.com/kisslinux/packages/tree/master/core/file
## Generating checksums

View File

@ -1,7 +1,8 @@
#!/bin/sh -e
./configure \
--prefix=/usr
--prefix=/usr \
--disable-nls
make
make DESTDIR="$1" install

View File

@ -1 +1 @@
039ee45b61d95e5003e7e8376f9080001b4066ff357bde271b7faace53b9d804 bison-3.3.2.tar.xz
27159ac5ebf736dffd5636fd2cd625767c9e437de65baa63cb0de83570bd820d bison-3.4.1.tar.xz

View File

@ -1 +1 @@
https://ftp.gnu.org/gnu/bison/bison-3.3.2.tar.xz
https://ftp.gnu.org/gnu/bison/bison-3.4.1.tar.xz

View File

@ -1 +1 @@
3.3.2 1
3.4.1 1

View File

@ -1 +1 @@
f6c22074877f235aebc7c53057dbc7ee82358f8ae58bfb767e955c18c859a77a curl-7.65.1.tar.xz
b6124b68ed56172012f767a9ea36d3b8ed45adafe7953bd11add66ae6f9d8a39 curl-7.65.2.tar.xz

View File

@ -1 +1 @@
https://curl.haxx.se/download/curl-7.65.1.tar.xz
https://curl.haxx.se/download/curl-7.65.2.tar.xz

View File

@ -1 +1 @@
7.65.1 1
7.65.2 1

View File

@ -1 +1 @@
4952c9ae91e36d762e13cc5b9e8f7eeb5453e4aee4cd9b7402e73f2d4e65e009 e2fsprogs-1.45.2.tar.xz
90d10066b815e27b0b4875f0d5e396c663e0bf55aa3ca10868978d10c6ffe595 e2fsprogs-1.45.3.tar.xz

View File

@ -1 +1 @@
https://mirrors.edge.kernel.org/pub/linux/kernel/people/tytso/e2fsprogs/v1.45.2/e2fsprogs-1.45.2.tar.xz
https://mirrors.edge.kernel.org/pub/linux/kernel/people/tytso/e2fsprogs/v1.45.3/e2fsprogs-1.45.3.tar.xz

View File

@ -1 +1 @@
1.45.2 3
1.45.3 1

View File

@ -1 +1 @@
a6fd449701bedcb98d92575d7b0f6cb394c07cae8d71347170efa49fc1ec0da3 kbd-2.0.4.tar.gz
50637e41eaa4d8ee2dc3bcfccafdabe082e165f0804c1a84cce20a32ff850ce1 kbd-2.1.0.tar.gz

View File

@ -1 +1 @@
https://www.kernel.org/pub/linux/utils/kbd/kbd-2.0.4.tar.gz
https://www.kernel.org/pub/linux/utils/kbd/kbd-2.1.0.tar.gz

View File

@ -1 +1 @@
2.0.4 1
2.1.0 1

View File

@ -1 +1 @@
fc6586ddcdb70fa763c38e47822ae015659933105a1caf3ff5474a26f4cca1a6 linux-firmware-20190618.tar.gz
ed1839de23db0cc97958c58f35f4bcc8a87a6282a4cd34e07a44a419ed4d3f0a linux-firmware-20190717.tar.gz

View File

@ -1 +1 @@
https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/snapshot/linux-firmware-20190618.tar.gz
https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/snapshot/linux-firmware-20190717.tar.gz

View File

@ -1 +1 @@
20190618 1
20190717 1

View File

@ -1 +1 @@
8a3e55be3e788700836db6f75875b4d3b824a581d1eacfc2fcd29ed4e727ba3e linux-5.1.16.tar.xz
3581e84e9d63298a14c147f925cd496ebb25c5a08cf065ba63c54cdee6d86506 linux-5.2.1.tar.xz

View File

@ -1 +1 @@
https://kernel.org/pub/linux/kernel/v5.x/linux-5.1.16.tar.xz
https://kernel.org/pub/linux/kernel/v5.x/linux-5.2.1.tar.xz

View File

@ -1 +1 @@
5.1.16 1
5.2.1 1

View File

@ -17,5 +17,6 @@ make \
INSTALL_MOD_PATH="$1/usr" \
install
# Rename 'vmlinuz' according to package version.
# Rename 'vmlinuz' and 'System.map" according to package version.
mv "$1/boot/vmlinuz" "$1/boot/vmlinuz-$version" || :
mv "$1/boot/System.map" "$1/boot/System.map-$version" || :

View File

@ -1,2 +1,2 @@
8a3e55be3e788700836db6f75875b4d3b824a581d1eacfc2fcd29ed4e727ba3e linux-5.1.16.tar.xz
3581e84e9d63298a14c147f925cd496ebb25c5a08cf065ba63c54cdee6d86506 linux-5.2.1.tar.xz
f132ec727f71f120b05c7d25cc596f6f14848b29770e5ef04e95337415475510 .config

View File

@ -1,2 +1,2 @@
https://kernel.org/pub/linux/kernel/v5.x/linux-5.1.16.tar.xz
https://kernel.org/pub/linux/kernel/v5.x/linux-5.2.1.tar.xz
files/.config

View File

@ -1 +1 @@
5.1.16 4
5.2.1 1