mirror of
https://github.com/sbopkg/sbopkg
synced 2025-01-13 20:01:13 +01:00
tweaked KNOWN_ISSUES, check_gpg(), load_user_queue()
this misc revision adds a note about git to KNOWN_ISSUES, silences unwanted output from gpg in check_gpg(), and provides a better button to a widget in load_user_queue()
This commit is contained in:
parent
90d57940b8
commit
e9605f78b6
2 changed files with 10 additions and 3 deletions
|
@ -51,3 +51,10 @@ tools it uses:
|
||||||
(or the ARCH you've set) in certain cases, such as in widget titles.
|
(or the ARCH you've set) in certain cases, such as in widget titles.
|
||||||
|
|
||||||
Workaround: none needed
|
Workaround: none needed
|
||||||
|
|
||||||
|
* when using sbopkg to sync to SBo git repositories (which is possible but
|
||||||
|
unsupported) unexpected results may occur. See
|
||||||
|
http://code.google.com/p/sbopkg/issues/detail?id=47
|
||||||
|
http://sbopkg.org/pipermail/sbopkg-users/2010-May/000477.html
|
||||||
|
|
||||||
|
Workaround: see above links
|
||||||
|
|
|
@ -1323,7 +1323,7 @@ check_gpg() {
|
||||||
$GPGNAME tarball found.")" 8 40
|
$GPGNAME tarball found.")" 8 40
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
if ! gpg --verify $CHKPKG.*.asc > /dev/null 2>&1; then
|
if ! gpg --verify $CHKPKG.*.asc &> /dev/null 2>&1; then
|
||||||
dialog --title "WARNING" --yesno "$(crunch "GPG CHECK FAILED!\n\n \
|
dialog --title "WARNING" --yesno "$(crunch "GPG CHECK FAILED!\n\n \
|
||||||
Would you like to delete the $GPGNAME directory and tarball \
|
Would you like to delete the $GPGNAME directory and tarball \
|
||||||
so you can perform a new sync? If so, all local changes to \
|
so you can perform a new sync? If so, all local changes to \
|
||||||
|
@ -1622,8 +1622,8 @@ load_user_queue() {
|
||||||
echo "Reading the queuefile, please be patient..."
|
echo "Reading the queuefile, please be patient..."
|
||||||
parse_queue $FILE
|
parse_queue $FILE
|
||||||
if [[ -f $MISSING_LIST_FILE ]]; then
|
if [[ -f $MISSING_LIST_FILE ]]; then
|
||||||
dialog --title "Packages not found" --textbox \
|
dialog --title "Packages not found" \
|
||||||
$MISSING_LIST_FILE 0 0
|
--exit-label OK --textbox $MISSING_LIST_FILE 0 0
|
||||||
fi
|
fi
|
||||||
LAST_USER_QUEUE_ON_DISK=$FILE
|
LAST_USER_QUEUE_ON_DISK=$FILE
|
||||||
rm -f $USERQUEUE_LOCK $MISSING_LIST_FILE
|
rm -f $USERQUEUE_LOCK $MISSING_LIST_FILE
|
||||||
|
|
Loading…
Reference in a new issue