mirror of
https://github.com/sbopkg/sbopkg
synced 2024-12-31 10:23:25 +01:00
make SBo 13.0 the default in sbopkg.conf.new; add 13.0 repo to 40-sbo.repo; remove duplicate entry in ChangeLog-current.txt; replace a file name usage with STARTQUEUE in sbopkg
This commit is contained in:
parent
3dcf17941a
commit
08e6246bf1
4 changed files with 6 additions and 8 deletions
|
@ -78,11 +78,6 @@ enhancements:
|
||||||
queuefiles much easier and more intuitive.
|
queuefiles much easier and more intuitive.
|
||||||
* Add ability to load more than one queuefile at a time when building
|
* Add ability to load more than one queuefile at a time when building
|
||||||
from command line interface.
|
from command line interface.
|
||||||
* Add several new functions related to checking GPG-signed tarballs, such as
|
|
||||||
those that SlackBuilds.org provides. Sbopkg will now automatically check
|
|
||||||
these tarballs when building or installing a package. Additionally, there
|
|
||||||
are two new menu items in info_item that allow the user to check the GPG
|
|
||||||
signature or re-extract the GPG-signed tarball.
|
|
||||||
* The info_item dialog now shows non-SBo installed packages and gained a
|
* The info_item dialog now shows non-SBo installed packages and gained a
|
||||||
more robust approach to finding both the installed package names and
|
more robust approach to finding both the installed package names and
|
||||||
the available packages in $OUTPUT.
|
the available packages in $OUTPUT.
|
||||||
|
@ -116,4 +111,6 @@ enhancements:
|
||||||
* Fix issue where custom build options may not be correctly exported.
|
* Fix issue where custom build options may not be correctly exported.
|
||||||
* Add a 'diff' entry to the script customization menu.
|
* Add a 'diff' entry to the script customization menu.
|
||||||
* Add in 'uname -m' test for x86_64 and if so, set ARCH to x86_64.
|
* Add in 'uname -m' test for x86_64 and if so, set ARCH to x86_64.
|
||||||
|
* Set default SBo repo to 13.0; add 13.0 repo to
|
||||||
|
/etc/sbopkg/repos.d/40-sbo.repo
|
||||||
+--------------------------+
|
+--------------------------+
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
# custom repository files.
|
# custom repository files.
|
||||||
#
|
#
|
||||||
# Repo Branch Description Tag Tool Link
|
# Repo Branch Description Tag Tool Link
|
||||||
|
SBo 13.0 "SBo repository for Slackware 13.0" _SBo rsync slackbuilds.org::slackbuilds/13.0
|
||||||
SBo 12.2 "SBo repository for Slackware 12.2" _SBo rsync slackbuilds.org::slackbuilds/12.2
|
SBo 12.2 "SBo repository for Slackware 12.2" _SBo rsync slackbuilds.org::slackbuilds/12.2
|
||||||
SBo 12.1 "SBo repository for Slackware 12.1" _SBo rsync slackbuilds.org::slackbuilds/12.1
|
SBo 12.1 "SBo repository for Slackware 12.1" _SBo rsync slackbuilds.org::slackbuilds/12.1
|
||||||
SBo 12.0 "SBo repository for Slackware 12.0" _SBo rsync slackbuilds.org::slackbuilds/12.0
|
SBo 12.0 "SBo repository for Slackware 12.0" _SBo rsync slackbuilds.org::slackbuilds/12.0
|
||||||
|
|
|
@ -14,7 +14,7 @@ SRCDIR=${SRCDIR:-/var/cache/sbopkg}
|
||||||
SBOPKGTMP=${SBOPKGTMP:-/tmp/sbopkg}
|
SBOPKGTMP=${SBOPKGTMP:-/tmp/sbopkg}
|
||||||
# Non-directory variables:
|
# Non-directory variables:
|
||||||
REPO_NAME=${REPO_NAME:-SBo}
|
REPO_NAME=${REPO_NAME:-SBo}
|
||||||
REPO_BRANCH=${REPO_BRANCH:-12.2}
|
REPO_BRANCH=${REPO_BRANCH:-13.0}
|
||||||
KEEPLOG=YES
|
KEEPLOG=YES
|
||||||
LOGFILE=$LOGDIR/sbopkg-build-log
|
LOGFILE=$LOGDIR/sbopkg-build-log
|
||||||
DEBUG=0
|
DEBUG=0
|
||||||
|
|
|
@ -4131,8 +4131,8 @@ else
|
||||||
if [[ ${PICK_NAME:0:1} == "-" ]]; then
|
if [[ ${PICK_NAME:0:1} == "-" ]]; then
|
||||||
continue
|
continue
|
||||||
else
|
else
|
||||||
if ! grep -qx $PICK_NAME $SBOPKGTMP/sbopkg-start-queue; then
|
if ! grep -qx $PICK_NAME $STARTQUEUE; then
|
||||||
echo $PICK_NAME >> $SBOPKGTMP/sbopkg-start-queue
|
echo $PICK_NAME >> $STARTQUEUE
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
done < $TMPQUEUE
|
done < $TMPQUEUE
|
||||||
|
|
Loading…
Reference in a new issue