1
0
mirror of https://codeberg.org/kiss-community/kiss synced 2024-07-02 14:02:26 +00:00
Commit Graph

1026 Commits

Author SHA1 Message Date
Dylan Araps
4dd4af5ac0
docs: update 2020-05-09 00:47:39 +03:00
Dylan Araps
ca705d8911
kiss: Fix issues with naming conflicts in source extraction 2020-05-09 00:42:39 +03:00
Dylan Araps
5bbc7f9945
kiss: Update portability comment 2020-05-08 22:21:49 +03:00
Dylan Araps
104c54b10a
kiss: Fix typos 2020-05-08 22:19:06 +03:00
Dylan Araps
8cab612d2f
kiss: Fix trailing white-space 2020-05-08 22:15:16 +03:00
Dylan Araps
bbb1873f6e
kiss: Full tar portability. Closes #143 2020-05-08 22:12:27 +03:00
Dylan Araps
0c2893b9dc
kiss: Split KISS_PATH/PATH usage 2020-05-08 18:48:16 +03:00
Dylan Araps
4fa90584b5
kiss: bump version 2020-05-08 11:22:02 +03:00
Dylan Araps
cffaaa63a0
kiss: Remove forgotten cache file 2020-05-08 11:12:27 +03:00
Dylan Araps
c3ead91f81
kiss: bump to 1.13.3 2020-05-07 18:18:34 +03:00
Dylan Araps
caeb6a6d08
kiss: lzip support 2020-05-07 18:17:12 +03:00
Dylan Araps
407a6b722b
kiss: lz is lzip, not lzma 2020-05-07 17:25:35 +03:00
Dylan Araps
bd28b306a2
kiss: bump to 1.13.2 2020-05-07 17:18:20 +03:00
Dylan Araps
754cb72ec8
kiss: Sort compression methods 2020-05-07 16:25:53 +03:00
Dylan Araps
931b2e13f3
kiss: Added lzma support to sources and tarballs 2020-05-07 16:25:18 +03:00
Dylan Araps
6415605174
kiss: Fix error messages 2020-05-07 14:46:50 +03:00
Dylan Araps
69a4a5d255
kiss: bump version 2020-05-07 14:42:52 +03:00
Dylan Araps
c72a6c34db
kiss: Fix openssl sha256sum fallback 2020-05-07 14:42:27 +03:00
Dylan Araps
8a51e76de9
kiss: Fix /etc/ handling bug.
The shell implementations of readlink and sha256sum were being
used always (instead of as a fallback). This commit ensures that
the real utilities are used where possible.

This also means that there is a bug in the openssl fallback of
sha256sum which will be fixed in the following commit.
2020-05-07 14:39:44 +03:00
Dylan Araps
7df8acc0f1
kiss: Faster conflict resolution. 2020-05-06 22:31:54 +03:00
Dylan Araps
e0a44771de
kiss: bump version 2020-05-06 00:51:18 +03:00
Dylan Araps
1c31b264df
kiss: support uncompressed tar archives 2020-05-06 00:48:11 +03:00
Dylan Araps
1933a19e10
kiss: Drop tar's p flag as it's not needed. 2020-05-05 23:08:14 +03:00
Dylan Araps
f10cdb1938
kiss: readlink(), run in subshell 2020-05-02 10:00:59 +03:00
Dylan Araps
881c6114b9
docs: update 2020-05-01 23:44:19 +03:00
Dylan Araps
1712618765
kiss: Remove trailing white-space 2020-05-01 19:26:36 +03:00
Dylan Araps
3cbcab11f3
kiss: Portable shasums 2020-05-01 09:47:01 +03:00
Dylan Araps
99025df126
kiss: Swap back to sha256sum 2020-04-30 19:57:38 +03:00
Dylan Araps
8d2f470295
kiss: Various portability fixes.
- Added POSIX shell implementation of the 'readlink' utility for
  use _only_ when the 'readlink' utility is not available.

- Made tar usage more portable. All that is left now is the removal
  of --strip-components 1 for full (presumed) portability.

- Swapped from sha256sum to shasum as it's more portable. This is
  still not a full solution.

Here's a checklist of where we currently are:

POSIX Core utilities (depends coreutils)
- [x] sh        (POSIX)
- [x] find      (POSIX) -type f, -type d, -exec {} [+;], -o, -print, !
- [x] ls        (POSIX) -l, -d
- [x] sed       (POSIX) -n, s/<search>/<replace>/g, /<delete>/d
- [x] grep      (POSIX) -l, -F, -x, -f, -q, -v
- [x] sort      (POSIX) -r, -u, -k
- [x] tee       (POSIX)
- [x] date      (POSIX)
- [x] mkdir     (POSIX) -p
- [x] rm        (POSIX) -f, -r
- [x] rmdir     (POSIX)
- [x] cp        (POSIX) -f, -P, -p, -L, -R
- [x] mv        (POSIX) -f
- [x] chown     (POSIX) -h
- [x] diff      (POSIX) -U

BSD utilities
- [x] install   (BSD, not POSIX) (still portable) -o, -g, -m, -d

Misc
- [x] readlink  (NOT POSIX) (fallback shell implementation)
- [x] su*       (sudo, doas, su) (in order, optional)
- [x] git       (downloads from git) (must link to curl)

Compiler/libc utilities (depends cc & libc)
- [x] readelf   (Part of compiler toolchain) (GNU, LLVM or elfutils)
- [x] strip     (Part of compiler toolchain) (GNU, LLVM or elfutils)
- [x] ldd       (Part of libc)

Tarball compression
- [ ] tar       (must have --strip-components) (busybox, GNU, libarchive))
- [x] bzip2     (widely used) -d, -z
- [x] xz        (widely used) -d, -z, -c, -T
- [x] gzip      (widely used) -d, -6
- [x] zstd      (optional)    -d, -z, -c
- [x] unzip     (optional)
- [ ] shasum    (checksums) (NO standard. Portable across Linux/BSD)
2020-04-30 19:38:37 +03:00
Dylan Araps
3e4e38d002
kiss: Swap to more portable shasum generation 2020-04-30 17:17:41 +03:00
Dylan Araps
62ee15db43
kiss: Use diff instead of cmp 2020-04-30 16:59:25 +03:00
Dylan Araps
400bc8e83e
kiss: Add message for checksums 2020-04-29 16:22:57 +03:00
Dylan Araps
1ad4076c0d
docs: update 2020-04-29 10:12:55 +03:00
Dylan Araps
23c0278f5b
kiss: Use mak_dir to store the file 2020-04-29 10:12:09 +03:00
dylan
5f00b925c8
Merge pull request #141 from E5ten/posix-sed
kiss: replace sed -i with redirection to a temp file
2020-04-29 10:05:16 +03:00
Dylan Araps
79f6f30e8b
kiss: Use war() for other warnings 2020-04-28 18:40:59 +03:00
Dylan Araps
888e9e06d5
kiss: Add print function for warnings 2020-04-28 18:36:53 +03:00
Dylan Araps
1a89e0b0a2
kiss: warn if package only exists in /var/db/kiss/installed 2020-04-28 18:30:57 +03:00
Ethan Sommer
be793fb1f7 kiss: replace sed -i with redirection to a temp file 2020-04-28 02:18:36 -04:00
Dylan Araps
d46bbf517d
kiss: swap to rm instead of unlink 2020-04-28 08:39:59 +03:00
Dylan Araps
d0100b03a1
kiss: Swap to ls -l instead of stat 2020-04-28 07:43:54 +03:00
Dylan Araps
278c222902
kiss: Swap to ls -l for user name 2020-04-28 06:26:36 +03:00
Dylan Araps
4e196bb09c
kiss: Fix directory permissions 2020-04-26 11:00:28 +03:00
Dylan Araps
adc4c99a19
kiss: Add back die 2020-04-26 09:29:48 +03:00
dylan
d7e251ef02
Merge branch 'master' into kiss-fix-cd 2020-04-26 09:06:41 +03:00
Cliford Sab
7b6ed9bafd kiss: Use suggested primary 2020-04-26 10:38:16 +08:00
Cliford Sab
7e3f208199 kiss: Actually hide an error + whitespace cleanup 2020-04-26 10:31:09 +08:00
Dylan Araps
d4a82ec0f1
docs: update 2020-04-25 14:03:51 +03:00
Dylan Araps
6bc7deb64b
kiss: Add support for KISS_ROOT to install 2020-04-25 14:03:34 +03:00
Dylan Araps
da605670e0
kiss: look in / 2020-04-25 14:01:05 +03:00
Dylan Araps
1b30642474
kiss: Add case for symlinks which would overwrite a dir 2020-04-25 13:58:51 +03:00
Dylan Araps
83b097bef8
docs: update 2020-04-25 09:56:01 +03:00
Dylan Araps
56a63c4742
Merge branch 'master' of github.com:kisslinux/kiss 2020-04-25 09:01:25 +03:00
Dylan Araps
d66ba59b01
kiss: Silent stripping once again 2020-04-25 08:59:44 +03:00
Cliford Sab
f059e16494 kiss: Cleanup 2020-04-24 16:41:32 +08:00
Dylan Araps
e924bb2ec2
kiss: More portable cp flags 2020-04-22 20:08:47 +03:00
Dylan Araps
132ce20099
kiss: Use pkg_manifest to properly update manifest files 2020-04-22 20:03:39 +03:00
Dylan Araps
40d57d4948
kiss: Clean up install 2020-04-22 19:35:17 +03:00
Dylan Araps
8a4c642d4b
kiss: Use install for installation 2020-04-22 19:29:55 +03:00
Dylan Araps
6ce01392bd
kiss: Use sort to reverse the manifest 2020-04-22 17:51:42 +03:00
Dylan Araps
6f31468c94
kiss: Fix symlink permissions bug 2020-04-22 17:47:13 +03:00
Dylan Araps
16097a5b98
kiss: oops 2020-04-22 17:42:57 +03:00
Dylan Araps
f2f2f643f2
kiss: Fix broken symlink handling (runit stuff) 2020-04-22 17:32:08 +03:00
Dylan Araps
285b271dee
kiss: ensure that the owner actually exists 2020-04-22 15:02:28 +03:00
dylan
93ea92ee8e
Merge pull request #136 from kisslinux/no_rsync
kiss: Drop rsync
2020-04-22 14:13:02 +03:00
Dylan Araps
b271605467
kiss: Add KISS_FORCE to bypass manifest checks. Fix bug in manifest checker 2020-04-22 14:00:40 +03:00
Dylan Araps
57e27f73cc
kiss: Set permissions for all non dirs 2020-04-22 13:50:02 +03:00
Dylan Araps
c542169997
kiss: Add install output 2020-04-22 09:37:46 +03:00
Dylan Araps
33cdc64803
kiss: Add comments to new install function 2020-04-22 09:23:19 +03:00
Dylan Araps
6e3064d0f8
kiss: Remove func subshell use 2020-04-22 09:18:12 +03:00
Dylan Araps
c8029d6a71
kiss: Move new install method to function 2020-04-22 09:06:43 +03:00
Dylan Araps
8a49cd6911
kiss: Skip /etc/ 2020-04-22 08:48:16 +03:00
Dylan Araps
776c3f5590
kiss: Drop rsync 2020-04-22 08:41:59 +03:00
Dylan Araps
80f50ca20b
kiss: Abort install if file missing in manifest 2020-04-22 07:45:58 +03:00
Dylan Araps
e67bb8e6b8
kiss: Fix shellcheck 2020-04-21 13:05:28 +03:00
Dylan Araps
9ace6a1b83
kiss: Fix IFS fix 2020-04-20 12:14:25 +03:00
Dylan Araps
c13a48dec2
kiss: minor fixes 2020-04-20 11:07:48 +03:00
Dylan Araps
27e1a65b2b
kiss: Add back LANG=C 2020-04-20 09:56:20 +03:00
Dylan Araps
dc9f40b517
kiss: Fix dumb test 2020-04-20 09:29:53 +03:00
Dylan Araps
fa86269ae5
kiss: Drop LANG= 2020-04-20 09:28:27 +03:00
Dylan Araps
b80df1a12e
kiss: Drop old_ifs 2020-04-20 09:27:57 +03:00
Dylan Araps
1d15a04fe1
docs: update 2020-04-20 09:05:19 +03:00
Dylan Araps
26599066ce
kiss: Smaller ternary 2020-04-20 08:59:13 +03:00
Dylan Araps
0e367daf53
kiss: Case remove UB 2020-04-20 08:58:25 +03:00
Cem Keylan
866860eac7 kiss: use '-x' and '-d' flags in pkg_find instead of '-e'
'-e' flag applies to everything that exists, which is not ideal.
This can, for example, also show README files on personal repositories.
Since our target is user-scripts and package directories, checking
if the target is executable is the best overall solutions as most
directories are also marked executable. This change makes sure we
get what we want while keeping other files out of pkg_find.

Signed-off-by: Dylan Araps <dylan.araps@gmail.com>
2020-04-20 08:55:12 +03:00
Cem Keylan
df6c55e439 Reset arguments on 'kiss help' function
This removes the previous arguments when calling kiss help so that
they are not listed as extensions. This is not a big issue, but
someone can type

    kiss help please

and 'please' would be shown as an available extension.

Signed-off-by: Dylan Araps <dylan.araps@gmail.com>
2020-04-20 08:54:46 +03:00
Dylan Araps
772f6beae3
docs: update 2020-04-19 16:51:30 +03:00
Dylan Araps
3b73381613
kiss: Swap back to prior search behavior 2020-04-19 16:51:01 +03:00
Cem Keylan
65d2d45a8c kiss: fix checksum mistake when checksums file doesn't exist.
If the checksums file doesn't exist on the package directory, kiss
used as_root regardless of permissions. This checks whether the directory
is writable instead of the checksums file, which should provide proper
permissions.

This patch ignores if the directory has weird permissions. If the
directory is writable but the checksums file isn't, kiss will exit
with error. This ignorance is intentional as ideally a package dir
should have identical permissions.

Signed-off-by: Dylan Araps <dylan.araps@gmail.com>
2020-04-19 15:00:19 +03:00
Dylan Araps
ad79c6ea7e
kiss: Fix comment 2020-04-19 09:29:26 +03:00
dylan
7c7aa83710
Merge pull request #135 from clifordsab/kiss-fix-diff
kiss: pkg_fixdeps(): Make diff work across diff-erent implementations
2020-04-18 15:51:25 +03:00
Cliford Sab
36568ec045 kiss: pkg_fixdeps(): More portable diff 2020-04-18 17:57:30 +08:00
Dylan Araps
bcbdd99e5c
kiss: Allow partial matches for extensions.
It is now possible to do 'kiss f' instead of 'kiss fork' to give
a simple example. In the case where there is a conflict in single
lettering, the first match will be used.

This extends to 'kiss fo', 'kiss for' and so on.
2020-04-18 12:48:48 +03:00
Dylan Araps
6786d2ca0a
kiss: Unify usage outputs for all contrib scripts.
Seeing as how these utilities are now better integrated,
more effort should go into the overall interface between
what should be the "benchmark" or example kiss scripts.
2020-04-18 12:11:56 +03:00
Dylan Araps
fdf2775640
kiss: Integrate with user scripts.
kiss' help output will now include all executables found in $PATH
which begin with kiss-*. A comment string is optionally usable via
setting the second line of the script to a string.

Example:

...

This also means that 'kiss <script name>' is also possible now.
If I have a script in my $PATH called kiss-depends, I can now use
it via kiss with 'kiss depends'.
2020-04-18 11:39:37 +03:00
Dylan Araps
afda171053
kiss: Supress error in pkg_install() as we have our own 2020-04-18 10:26:29 +03:00
Dylan Araps
75c9785d39
kiss: Rationale for installation process.
People seem to have the odd belief that little to no thought has
gone into the installation process of the package manager. The
reality is of course the opposite.

This commit adds comments to the pkg_install() function hopefully
giving insight into _why_ it works as it does.

Additional rationale for rsync is that it allowed us to drop
fakeroot from the repositories and package system entirely.
2020-04-18 10:21:33 +03:00
Dylan Araps
8fef13c48b
kiss: Squish build to match its size. 2020-04-18 09:56:21 +03:00
Dylan Araps
764c21426f
kiss: Make 'kiss s' usage saner for scripting.
Changes 'kiss s' to only show the first match if run from a
subshell. Here's a simple example:

-> kiss s zlib
/home/dylan/projects/repo/core/zlib
/var/db/kiss/installed/zlib
-> echo $(kiss s zlib)
/home/dylan/projects/repo/core/zlib
->
2020-04-18 09:54:05 +03:00
Dylan Araps
21caebdfc5
kiss: Hide read error message as we have our own 2020-04-18 09:39:34 +03:00
Dylan Araps
1c059e8139
kiss: Elevate permissions if needed during checksum generation.
This simply modifies as_root() to allow running commands as any
given user and generates checksums according to the owner of the
checksums file and the current user's write permissions.
2020-04-18 09:35:38 +03:00
Dylan Araps
4e7184e20c
kiss: fixdeps(), remove depends file if empty 2020-04-16 08:31:26 +03:00
Dylan Araps
bb9293c629
kiss: Fix shellcheck 2020-04-15 16:13:33 +03:00
Cem Keylan
a0f0b8b5ad kiss: fix possible KISS_ROOT usage
If the user defines KISS_ROOT to / or anything that ends
with '/', some functions will not work as intended (like fixdeps).
This removes the '/' at the very end, if it exists.

Signed-off-by: Dylan Araps <dylan.araps@gmail.com>
2020-04-15 16:08:20 +03:00
Dylan Araps
a6b79b79da
kiss: Ignore llvm in fixdeps. (May revert) 2020-04-15 10:38:18 +03:00
Dylan Araps
6ce63764cb
kiss: bump version 2020-04-15 12:02:12 +03:00
Dylan Araps
f9c0533280
kiss: Fix fixdeps() bugs. Closes #132 2020-04-15 11:58:01 +03:00
Dylan Araps
acb9398f62
kiss: Support CRUX-like usage 2020-04-15 08:39:03 +00:00
Dylan Araps
f11b6e39b6
kiss: zip source support. Closes #133 2020-04-14 14:52:39 +00:00
Dylan Araps
12f717265c
kiss: Fix removal bug. Closes #131 2020-04-14 14:48:36 +00:00
Dylan Araps
2f545dda68
kiss: Fix KISS_ROOT bug. Closes #130 2020-04-14 14:44:05 +00:00
Dylan Araps
041d8906c7
docs: update 2020-03-30 10:54:44 +03:00
Dylan Araps
9186e2105d
kiss: Follow symlinks when detecting dependencies 2020-03-30 10:53:56 +03:00
Dylan Araps
55c2de2af8
kiss: Fix update bug 2020-03-29 10:08:08 +03:00
Dylan Araps
f1d1ba204c
docs: update 2020-03-28 10:15:32 +02:00
Dylan Araps
c57210a71b
kiss: nitpick 2020-03-26 15:00:29 +02:00
Dylan Araps
8210e660a1
kiss: nitpicks 2020-03-26 14:53:03 +02:00
Dylan Araps
759dc1081a
kiss: Minor nitpicks 2020-03-26 12:45:22 +02:00
Dylan Araps
be5d87b3ff
kiss: Force C locale 2020-03-26 12:21:57 +02:00
Dylan Araps
1f9ab42fd6
kiss: Clean up pkg_remove 2020-03-26 12:15:05 +02:00
Dylan Araps
d3b988300a
kiss: Clean up leftover cache entries 2020-03-26 11:30:30 +02:00
Dylan Araps
0d5499f7b8
kiss: fixdeps clean up 2020-03-25 17:36:13 +02:00
Dylan Araps
4ff149bcd5
kiss: Remove newline 2020-03-25 17:22:06 +02:00
Dylan Araps
0fb84cccec
kiss: Clean up 2020-03-25 17:14:44 +02:00
Dylan Araps
8f111e0fc1
kiss: Clean up 2020-03-25 17:03:06 +02:00
Dylan Araps
f1b551db4e
kiss: Minor nitpicks 2020-03-25 13:11:22 +02:00
Dylan Araps
64d0ef3f90
kiss: Minor change 2020-03-25 12:36:55 +02:00
Dylan Araps
09fa052fe2
kiss: Move etc handling to function 2020-03-25 12:21:10 +02:00
Dylan Araps
58b0272574
kiss: Minor changes 2020-03-25 11:59:15 +02:00
Dylan Araps
c84472e531
kiss: simplify 2020-03-23 13:04:45 +02:00
Dylan Araps
d4d01a5512
kiss: Show context when using fixdeps 2020-03-23 12:45:51 +02:00
Dylan Araps
811808f881
kiss: simplify fixdeps 2020-03-23 12:40:38 +02:00
Dylan Araps
7f22697bdc
kiss: simplify 2020-03-23 12:05:54 +02:00
Dylan Araps
2db59e03db
kiss: simplify 2020-03-23 11:41:32 +02:00
Dylan Araps
44c6050a39
kiss: Simplfy pkg_find usage 2020-03-22 16:32:05 +02:00
Dylan Araps
3990e34dc0
kiss: Squish alternatives list 2020-03-22 16:26:08 +02:00
Dylan Araps
a2e36ead63
docs: update 2020-03-22 14:49:06 +02:00
Dylan Araps
d01ffde93c
kiss: zstd support 2020-03-22 14:46:38 +02:00
Dylan Araps
c570d24086
kiss: clean up 2020-03-21 13:54:48 +02:00
Dylan Araps
625d5f6855
kiss: Drop semi-colons 2020-03-21 13:48:05 +02:00
Dylan Araps
c19a20b32c
kiss: lint packages sooner 2020-03-21 13:44:43 +02:00
Dylan Araps
beee6c07f2
kiss: Squish some things together 2020-03-21 13:35:43 +02:00
Dylan Araps
e9bbe7be3e
kiss: Move error 2020-03-21 13:29:56 +02:00
Dylan Araps
2cf5b74c9b
docs: update 2020-03-17 10:14:56 +02:00
Dylan Araps
a2ad91ccb7
kiss: Fix #125 2020-03-17 10:12:43 +02:00
Dylan Araps
cb1f16a282
docs: update 2020-03-15 14:26:55 +02:00
Dylan Araps
fb319ef3c2
docs: update 2020-03-15 14:25:10 +02:00
Dylan Araps
0b4b4ddcd8
kiss: Tar changes.
- Sped up conflict resolution by removing a tar call.
- More portable tar usage in source extraction.
- The same decompressor detection is now used when
  extracting sources.
2020-03-15 14:15:32 +02:00
Dylan Araps
024cab7fb8
kiss: Keep default compression as gz 2020-03-15 13:04:35 +02:00
Dylan Araps
ad9cda2e34
kiss: Configurable and dynamic tarball compression.
This allows you to swap between gzip and xz compression via
the new environment variable ('KISS_COMPRESS'). As of this
commit, new builds will use xz compression (making use of
all cores on the machine).

Other compression methods can easily be added by adding two
simple lines to the script. Your existing package cache will
continue to be used as the package manager will use whatever
tarball is available (for the package and version it is
looking for).
2020-03-15 12:50:49 +02:00
Dylan Araps
1c3ede992e
docs: update 2020-03-13 16:01:19 +02:00
Dylan Araps
f590b5bc73
kiss: Revert build change. Needs more thought 2020-03-13 15:18:04 +02:00
Dylan Araps
58f5819af2
kiss: Allow hooks to modify build files 2020-03-13 13:01:13 +02:00
Dylan Araps
52893958d0
kiss: Added post-install hook 2020-03-13 11:37:28 +02:00
Dylan Araps
ba59821bb8
docs: update 2020-03-12 17:00:53 +02:00
Dylan Araps
148232f2d0
kiss: Fix shellcheck 2020-03-11 19:36:31 +02:00
Dylan Araps
320dcb99ae
kiss; Remove unneeded check 2020-03-11 18:44:06 +02:00
Dylan Araps
70ffebbedc
kiss: Use -- with set 2020-03-11 18:29:37 +02:00
Dylan Araps
18461ddedb
kiss: Remove shift math 2020-03-11 18:27:00 +02:00
Dylan Araps
34e2a79350
docs: update 2020-03-11 17:14:33 +02:00
Dylan Araps
3b4e8083e8
kiss: Remove depends file if empty 2020-03-09 00:14:06 +02:00
Dylan Araps
2ba1a2a0c5
kiss: Revert tty change. Closes #119 2020-03-06 16:29:41 +02:00
Dylan Araps
5a0592abce
kiss: Hide chown errors (meant to fail if needed) 2020-03-05 19:43:47 +02:00
Dylan Araps
54d1688e64
kiss: Fix hook bug. Closes #118 2020-03-05 17:59:47 +02:00
Dylan Araps
f14bc7a110
docs: update 2020-03-05 17:16:13 +02:00
dylan
56d0097da3
Merge pull request #117 from CarbsLinux/build-fail
add build-fail hook
2020-03-05 17:14:48 +02:00
Cem Keylan
41ebab4d8f
add build-fail hook 2020-03-05 18:12:57 +03:00
Cem Keylan
fd0103e621
add pre-install hook 2020-03-05 18:03:37 +03:00
Dylan Araps
9d19826b85
docs: update 2020-03-04 23:02:02 +02:00
Dylan Araps
2f64b45677
kiss: Abort if not TTY and needed 2020-02-29 20:13:47 +02:00
Dylan Araps
3a5485f36c
kiss: Remove -N from diff 2020-02-29 20:07:34 +02:00
Dylan Araps
241b01d66f
docs: update 2020-02-26 18:40:13 +02:00
Dylan Araps
a2164f5617
docs: update 2020-02-24 22:48:47 +02:00
Dylan Araps
07bbe7c59a
kiss: Fix gpg error with su. 2020-02-24 22:48:29 +02:00
Dylan Araps
4dd9c4e5a7
docs: update 2020-02-21 22:51:48 +02:00
Dylan Araps
d263e2bf8e
kiss: Drop 'kiss env'.
Was only useful in confirming whether or not
a specific issue was environment related.

The mentioned issue has been resolved and
this feature is no longer of any use.

Bye.
2020-02-20 12:12:29 +02:00
Dylan Araps
835ab3446d
kiss: Move hooks to function for easy reuse.
This will allow for new hook additions to be single
line changes. I don't know how many additional hooks
we'll add or what they'll be but it's a good idea
regardless.

pre-update(?), post-update(?), pre-install(?), etc
2020-02-20 12:08:26 +02:00
Dylan Araps
55bcaede52
kiss: Drop KISS_AUDIT for now.
I'm going to re-implement this feature in a
smarter way. It doesn't currently work for
partial updates nor does it work at all for
some users.

Some kind of persistent logging would be
far better as we'll be able to view a diff
regardless of the current pull's status.

The best way of doing this will be to grab
a diff of each package pending an update.
This way it's only information useful to
the user.

Fun stuff.
2020-02-20 11:52:35 +02:00
Dylan Araps
9c5b12ad91
kiss: Fix missing var 2020-02-20 01:40:08 +02:00
Dylan Araps
9d284e66e0
kiss: Don't die when sort fails. 2020-02-20 01:27:22 +02:00
Dylan Araps
c36f27048c
docs: update 2020-02-20 01:24:46 +02:00
Dylan Araps
c19dd3b75d
kiss: simplify depends finder file handling.
Removes the use of multiple temporary files and the
number of times they're shuffled around. POSIX sort
is neat.

This should bring minor speedups to the dependency
finder on top of installing GNU grep. I'm sure this
can be further simplified.

I'll be tackling the reduction of checked files
next. Wish me luck.
2020-02-20 01:21:37 +02:00
Dylan Araps
ad89d327f9
kiss: misc clean up 2020-02-20 00:57:12 +02:00
Dylan Araps
0f7dd1c60d
docs: update 2020-02-20 00:51:16 +02:00
Dylan Araps
1113ae5770
kiss: Remove unneeded variable 2020-02-20 00:46:12 +02:00
Dylan Araps
7216124e90
kiss: Print messages from prompt().
This enables the removal of a mess of nested
braces. I'm happy now.
2020-02-20 00:39:21 +02:00
Dylan Araps
d5f609e761
docs: update 2020-02-20 00:37:46 +02:00
Dylan Araps
e59f1b3dcd
kiss: Always remove charset.alias
We never want this. KISS_RM used to remove it
unconditionally but seeing as this is no longer
the case, let's do it post-build.

This is a file related to intltool/gettext and
is installed by multiple packages under the same
name causing endless conflicts.

We have no use for this and nor do I want to
handle this kind of file installation in the
package manager.

It's ugly and I'm glad it's gone.
2020-02-20 00:32:02 +02:00
Dylan Araps
40ff709432
kiss: Remove KISS_RM
I never really liked how this was implemented and it's
rather limited in its use. It was cumbersome to edit
the list to make even a minor change.

Instead, I now recommend using 'KISS_HOOK'. It gives
you total control. KISS_RM can be implemented on a
per-package basis, for all packages overall or
conditionally.

You're also not limited to a simple list of removals.
You can do whatever you like pre- and post- build.

Here's an example script to get you started. There
is more information in the manual and README.

case $TYPE in
    pre-build)
        case $PKG in
           zlib) export CFLAGS="-Os -static" ;;
           curl) export CFLAGS="-O3" ;;
        esac
    ;;

    post-build)
        : "${DEST:?DEST is unset}"

        rm -rf "$DEST/usr/share/doc"
        rm -rf "$DEST/usr/share/gettext"
    ;;
esac
2020-02-20 00:21:45 +02:00
Dylan Araps
a93414e325
kiss: fix url 2020-02-19 23:46:59 +02:00
Dylan Araps
69b471fe1f
kiss: Run env additionally as root 2020-02-19 20:28:31 +02:00
Dylan Araps
040145e118
kiss: Added kiss env 2020-02-19 20:22:43 +02:00
Dylan Araps
48b6fc1c61
docs: update 2020-02-19 18:43:03 +02:00
Dylan Araps
e4656e7d65
handshake: better messages 2020-02-19 18:39:22 +02:00
Dylan Araps
e1eb7413f5
handshake: add package name to message 2020-02-19 18:33:48 +02:00
Dylan Araps
39d2fdb841
kiss: Fix files appearing in kiss search 2020-02-19 18:27:13 +02:00
Dylan Araps
4a2578013d
Merge branch 'master' of github.com:kissx/kiss 2020-02-19 18:22:49 +02:00
Dylan Araps
78faa4bcf3
docs: update 2020-02-19 18:22:32 +02:00
dylan
70854e119a
Merge pull request #113 from kisslinux/smgit
kiss: less git pulls
2020-02-19 17:11:01 +02:00
Dylan Araps
01714f9ad7
kiss: add missing case to etcsums. Print information to user. 2020-02-19 17:05:41 +02:00
Dylan Araps
9d3252cb59
kiss: Fix old behavior 2020-02-19 16:28:44 +02:00
Dylan Araps
1787cbe5b0
kiss: remove left over subshell 2020-02-19 16:13:15 +02:00
Dylan Araps
5cfbe0277d
kiss: shallow branch support 2020-02-19 16:11:02 +02:00
Dylan Araps
d9109773d0
kiss: less git pulls 2020-02-19 15:26:34 +02:00
Dylan Araps
a4ee893169
docs: update 2020-02-19 11:59:47 +02:00
Dylan Araps
1b4196c4e1
kiss: sources comment support 2020-02-18 21:31:53 +02:00
Dylan Araps
83a1f8ca17
docs: update 2020-02-18 21:29:01 +02:00
Dylan Araps
52f018f01c
kiss: revert audit change 2020-02-18 21:28:35 +02:00
Dylan Araps
594c54ea09
kiss: Fix audit not appearing 2020-02-18 21:25:28 +02:00
Dylan Araps
290d11092a
kiss: y/n prompts and view package build file feature 2020-02-18 21:14:49 +02:00
Dylan Araps
9bb2c8bee1
sources: support blank lines 2020-02-14 18:08:00 +02:00
Dylan Araps
8f88aa56fd
kiss: comment support in sources 2020-02-14 18:06:47 +02:00
Dylan Araps
1a17119d7f
kiss: Fix etc symlink handling. Closes #112 2020-02-12 15:52:21 +02:00
Dylan Araps
5d96b2871f
kiss: Fix alternatives bug. Closes #111 2020-02-12 10:38:38 +02:00
Dylan Araps
5bfc5cb0ae
kiss: Allow #arg to be a branch name 2020-02-12 09:27:48 +02:00
Dylan Araps
b1fe5c876c
kiss: fix gpg errors. 2020-02-11 23:47:40 +02:00
Dylan Araps
2302b41cfc
docs: update 2020-02-11 17:33:46 +02:00
Dylan Araps
66ddfd11c1
kiss: Show which file is downloaded 2020-02-11 17:33:38 +02:00
Dylan Araps
98bb76a827
docs: update 2020-02-11 12:27:15 +02:00
Dylan Araps
e00c048820
kiss: more helpful message 2020-02-11 12:04:44 +02:00
Dylan Araps
c671e4cd10
docs: update 2020-02-10 22:42:01 +02:00
Dylan Araps
2353ca467b
docs: update 2020-02-10 22:05:44 +02:00
Dylan Araps
2c0ca29e37
kiss: fixes 2020-02-10 22:04:34 +02:00
Dylan Araps
16f82b50df
kiss: Don't show messages if root 2020-02-10 20:02:45 +02:00
Dylan Araps
99f34f547b
kiss: Allow user to hide build output 2020-02-10 19:36:24 +02:00
Dylan Araps
e2d233fdc8
kiss: Fix GNU find bug 2020-02-10 11:49:31 +02:00
Dylan Araps
934fa076ed
docs: update 2020-02-09 14:30:38 +02:00
Dylan Araps
9f8c04c3b7
kiss: Split git into 3 commands if running under doas/sudo 2020-02-09 14:30:27 +02:00
Dylan Araps
2d89c2e6a7
docs: update 2020-02-09 11:37:16 +02:00
Dylan Araps
83f91fee62
kiss: only show diffs if file has contents 2020-02-09 11:33:55 +02:00
Dylan Araps
77b90da4e2
kiss: Don't keep logs around for updates. git does this for us. 2020-02-09 11:29:05 +02:00
Dylan Araps
fbca8e30d9
kiss: Prevent Ctrl+C or > 0 exit from pager causing kiss to abort 2020-02-09 11:21:41 +02:00
Dylan Araps
1796072e1a
kiss: Add option to show diffs on update 2020-02-09 11:14:33 +02:00
Dylan Araps
ed17fdfbab
docs: update 2020-02-08 20:43:28 +02:00
Dylan Araps
fd1b37bb6e
kiss: clean up 2020-02-08 20:36:58 +02:00
Dylan Araps
cb7e57e8ed
kiss: Add back KISS_DEBUG. Closes #109 2020-02-08 10:55:58 +02:00
Dylan Araps
89a927d3bb
kiss: Fix search not allowing globs 2020-02-08 10:52:53 +02:00
Dylan Araps
4882084585
kiss: Don't git pull. Closes #141 2020-02-08 10:50:31 +02:00
Dylan Araps
cfa4123121
KISS_HOOK: docs 2020-02-07 15:39:56 +02:00
Dylan Araps
51b02b4c6e
docs: update 2020-02-07 15:31:37 +02:00
Dylan Araps
9afe0baafd
kiss: Added pre/post build hooks. Closes #108 2020-02-07 15:29:28 +02:00
Dylan Araps
01052e7d64
kiss: Added pre/post build hooks. Closes #108 2020-02-07 15:24:14 +02:00
Dylan Araps
9d86bb5f9d
docs: update 2020-02-07 13:27:45 +02:00
Dylan Araps
eb2b2a08e0
kiss: simplify 2020-02-06 14:24:21 +02:00
Dylan Araps
428a388c39
kiss: simplify install 2020-02-06 14:20:01 +02:00
Dylan Araps
1b3260b891
kiss: cleanup update messages 2020-02-06 14:06:51 +02:00
Dylan Araps
4ff9c5cc2e
kiss: Remove use of variable 2020-02-06 13:55:01 +02:00
Dylan Araps
7ccd59977d
kiss: avoid creating argument list 2020-02-06 13:42:57 +02:00
Dylan Araps
51c92cf2c7
kiss: kiss b, simpler 2020-02-06 13:31:47 +02:00
Dylan Araps
6bb6cf6752
kiss: Add function to pop list itemS 2020-02-06 13:22:19 +02:00
Dylan Araps
bf78f79496
docs: update 2020-02-06 12:58:20 +02:00
Dylan Araps
865497bd3a
docs: update 2020-02-06 11:14:45 +02:00
Dylan Araps
a37a158169
kiss: order dependencies properly for updates 2020-02-06 11:11:55 +02:00
Dylan Araps
f9c8b0a8db
docs: update 2020-02-06 10:16:43 +02:00
Dylan Araps
321eb542fe
kiss: Fix mkdir 2020-02-06 10:14:48 +02:00
Dylan Araps
e49305ec44
kiss: Create all directories in /etc. Closes #106 2020-02-06 10:11:22 +02:00
Dylan Araps
15c6007d2d
Merge branch 'master' of github.com:kissx/kiss 2020-02-05 11:35:46 +02:00
Dylan Araps
412dc724d4
docs: update 2020-02-05 11:35:35 +02:00
Dylan Araps
24e97f2a00
kiss: clean up 2020-02-05 11:30:29 +02:00
Dylan Araps
98d5aaab79
kiss: Added KISS_ROOT to etcsums 2020-02-05 11:23:00 +02:00
Dylan Araps
0df093f729
kiss: Only run etcsums if /etc exists in package 2020-02-05 11:16:51 +02:00
Dylan Araps
e8ead378d7
kiss: Only run etcsums if /etc exists in package 2020-02-05 11:14:15 +02:00
Dylan Araps
4a9f60afbd
kiss: Still work without etcsums 2020-02-05 11:07:06 +02:00
Dylan Araps
4b20822986
kiss: 3-way etc checksums thing 2020-02-05 10:56:25 +02:00
Dylan Araps
423501106d
kiss: Support GNU tar as well 2020-02-05 01:33:24 +02:00
Dylan Araps
e7b88e7687
kiss: Use libarchive tar if available. 2020-02-05 01:20:30 +02:00
Dylan Araps
a59f1dad60
kiss: Added support for pre-remove scripts. Closes #64 2020-02-04 13:07:33 +02:00
Dylan Araps
d1c809b28d
kiss: Simplify list 2020-02-03 11:21:22 +02:00
Dylan Araps
47f402b162
kiss: Simplify find 2020-02-03 11:17:32 +02:00
Dylan Araps
767e414447
kiss: Simplify regex escape 2020-02-03 11:11:16 +02:00
Dylan Araps
9b19bc0fab
kiss: cleanup 2020-02-03 11:02:04 +02:00
Dylan Araps
e293eb00a6
kiss: show error message on mv fail. Closes #103 2020-02-01 10:20:42 +02:00
Dylan Araps
55e603ab66
docs: update 2020-01-31 11:38:52 +02:00
Dylan Araps
a453e84ed2
docs: update 2020-01-30 17:27:48 +02:00
Dylan Araps
90bc0554f7
kiss: Prevent updates as root from running as root unless needed 2020-01-30 17:27:26 +02:00
Dylan Araps
5857dbe9ef
kiss: Don't pull as git if unneeded 2020-01-30 17:24:57 +02:00
Dylan Araps
d4d5a5f001
kiss: Harden sudo 2020-01-30 15:40:26 +02:00
Dylan Araps
26a20c9738
kiss: Don't spawn sh with sudo/doas 2020-01-30 15:25:46 +02:00
Dylan Araps
5c601bd695
kiss: Tell user about log file on error 2020-01-30 14:53:03 +02:00
Dylan Araps
0a64dc1808
kiss: Fix update issue 2020-01-30 14:42:29 +02:00
Dylan Araps
ca26070683
kiss: Fix update bug 2020-01-30 14:32:57 +02:00
Dylan Araps
b79805e48a
kiss: Fix log naming. Closes #102 2020-01-30 13:43:30 +02:00
Dylan Araps
1ce24cbb7f
docs: update 2020-01-30 12:17:09 +02:00
Dylan Araps
b9bc193e39
kiss: Fix doas issues 2020-01-30 12:16:07 +02:00
Dylan Araps
c100d74941
kiss: doas fixes 2020-01-30 12:04:01 +02:00
Dylan Araps
058ebdc480
doas: Fix path issue 2020-01-30 11:56:06 +02:00
Dylan Araps
8057cafc62
docs: update 2020-01-30 11:25:19 +02:00
Dylan Araps
33dd6848a0
kiss: Fix arg bug 2020-01-30 11:24:59 +02:00
Dylan Araps
23910b4bd6
kiss: Revert to sed -i 2020-01-30 11:18:13 +02:00
Dylan Araps
15cac05092
docs: update 2020-01-30 11:16:50 +02:00
Dylan Araps
61cc12606d
kiss: Revert to sed -i 2020-01-30 11:15:35 +02:00
Dylan Araps
efad712333
kiss: Remove unneeded code 2020-01-30 11:09:26 +02:00
Dylan Araps
cad980317e
docs: update 2020-01-30 11:05:29 +02:00
Dylan Araps
f8d35ce2b5
kiss: Use as_root for git pulls 2020-01-30 10:52:25 +02:00
Dylan Araps
fa1538fb13
kiss: cleaneer as_root 2020-01-30 10:47:11 +02:00
Dylan Araps
546110a1c0
kiss: Allow option of setting sudo command 2020-01-30 10:36:08 +02:00
Dylan Araps
51d9e82230
kiss: Fix stdin with su 2020-01-30 10:17:45 +02:00
Dylan Araps
3e86270338
kiss: as_root: Move to func 2020-01-30 09:50:18 +02:00
Dylan Araps
a7580cc8ee
kiss go back 2020-01-30 09:27:25 +02:00
Dylan Araps
1c6321fd58
docs: update 2020-01-29 15:03:40 +02:00