blob: 7b9e083c553b81b460967a3cd4b78e7c9c36d7d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# sbotools2
**sbotools2** provides a ports-like interface to [slackbuilds.org](http://www.slackbuilds.org/).
This is the maintenance fork of the [original sbotools](https://https://pink-mist.github.io/sbotools/)
version 2 by a new maintainer. Changes are listed in the [ChangeLog](ChangeLog.md).
Another has taken over [sbotools](https://pghvlaans.github.io/sbotools/) for version 3.
## Project To Do's
Planned improvements and known bugs are listed on the project's
[todo branch](https://git.server.ky/slackcoder/sbotools2/tree?h=todo).
## Auditing Changes
You can audit the forked changes by asking git to show commits since the last known official commit.
```sh
git remote add pink-mist https://github.com/pink-mist/sbotools
git fetch pink-mist
git show pink-mist/master..
```
The latest changes on the master branch can be verified using the maintainer's
[GPG Key](GPG-KEY) included in the project. The 'FINGERPRINT' should not
change unless the maintainer does.
```sh
FINGERPRINT=D0CFFD1075CAB8DA329975078D147EEA19EFF029
if ! gpg2 --list-keys | grep "$FINGERPRINT" >/dev/null; then
gpg2 --import ./GPG-KEY
fi
if git verify-commit origin/master; then
echo "verification ok"
else
echo "verification failed"
fi
```
|