diff options
author | 2020-07-06 15:18:18 +0200 | |
---|---|---|
committer | 2020-07-06 15:21:09 +0200 | |
commit | 8bb4aa09abe7154a56eb61a705f5526b015050cf (patch) | |
tree | 224eaca4f1f9e72363987d5ec53ba6f53879bb8e /bin | |
parent | Rework the example GraphQL queries (diff) | |
download | soko-8bb4aa09abe7154a56eb61a705f5526b015050cf.tar.gz soko-8bb4aa09abe7154a56eb61a705f5526b015050cf.tar.bz2 soko-8bb4aa09abe7154a56eb61a705f5526b015050cf.zip |
Integrate information from external services
This is a major revision of the application. That is the application
can display:
- repology.org data
- qa-reports (pkgcheck)
- pull-requests
- bugs
- security bugs
- dependencies
for each package now. Apart from that a page for each maintainer
(project, developer or proxied maintainer) has been added, that
contains information about packages he maintains, as:
- outdated packages
- pull-requests
- bugs
- security bugs
- changelog
Finally the design has also been slightly altered to display all of
the new information.
Signed-off-by: Max Magorsch <arzano@gentoo.org>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/fullupdate.sh | 2 | ||||
-rwxr-xr-x | bin/update.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bin/fullupdate.sh b/bin/fullupdate.sh index a798e42..a1e07e1 100755 --- a/bin/fullupdate.sh +++ b/bin/fullupdate.sh @@ -26,7 +26,7 @@ update_md5cache(){ fullupdate_database(){ cd /mnt/packages-tree/gentoo/ || exit 1 - /go/src/soko/bin/soko fullupdate + /go/src/soko/bin/soko --fullupdate } diff --git a/bin/update.sh b/bin/update.sh index 2476006..ac8a9ee 100755 --- a/bin/update.sh +++ b/bin/update.sh @@ -26,7 +26,7 @@ update_md5cache(){ update_database(){ cd /mnt/packages-tree/gentoo/ || exit 1 - /go/src/soko/bin/soko update + /go/src/soko/bin/soko --update } |