diff options
Diffstat (limited to 'system')
-rw-r--r-- | system/asbt/README | 7 | ||||
-rw-r--r-- | system/asbt/asbt.SlackBuild | 2 | ||||
-rw-r--r-- | system/asbt/asbt.info | 6 | ||||
-rw-r--r-- | system/asbt/doinst.sh | 4 |
4 files changed, 10 insertions, 9 deletions
diff --git a/system/asbt/README b/system/asbt/README index 32b720e878fd..9d85245506e5 100644 --- a/system/asbt/README +++ b/system/asbt/README @@ -1,8 +1,8 @@ asbt is a tool for managing packages in your local copy of slackbuilds, usually obtained from http://slackbuilds.org/ (SBo). -It supports searching (-s), viewing information (-i,-r,-d,-v) , downloading (-g), -building (-B), and installing/removing/upgrading packages. +It supports searching (-s), viewing information (-i,-r,-d,-v) , +downloading (-g), building (-B), and installing/removing/upgrading packages. The list of available options is present in the readme and the man page. @@ -23,4 +23,7 @@ adjust according to your wish, are: 4) gitdir="/home/$USER/git/slackbuilds/.git" # Directory where the slackbuilds git repository is present. +5) editor="/usr/bin/vim" + # Editor for viewing/editing slackbuilds. + These variables can also be configured via editing /etc/asbt/asbt.conf diff --git a/system/asbt/asbt.SlackBuild b/system/asbt/asbt.SlackBuild index 1d8ee08a1e8c..12e634ed8337 100644 --- a/system/asbt/asbt.SlackBuild +++ b/system/asbt/asbt.SlackBuild @@ -23,7 +23,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=asbt -VERSION=${VERSION:-0.8.2} +VERSION=${VERSION:-0.8.3} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} ARCH=noarch diff --git a/system/asbt/asbt.info b/system/asbt/asbt.info index b93705d73f29..a980c915614b 100644 --- a/system/asbt/asbt.info +++ b/system/asbt/asbt.info @@ -1,8 +1,8 @@ PRGNAM="asbt" -VERSION="0.8.2" +VERSION="0.8.3" HOMEPAGE="http://github.com/aadityabagga/asbt" -DOWNLOAD="http://github.com/aadityabagga/asbt/archive/0.8.2.tar.gz" -MD5SUM="542295c1e69ea44232b0418fa7951c4d" +DOWNLOAD="http://github.com/aadityabagga/asbt/archive/0.8.3.tar.gz" +MD5SUM="9143bde146d21cd29e24316942edb76f" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="" diff --git a/system/asbt/doinst.sh b/system/asbt/doinst.sh index 69b1d2d95c7a..a989c1290e90 100644 --- a/system/asbt/doinst.sh +++ b/system/asbt/doinst.sh @@ -7,10 +7,8 @@ config() { elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then # toss the redundant copy rm $NEW - else - # Otherwise, we leave the .new copy for the admin to consider... - echo -e "New configuration file /etc/asbt/asbt.conf.new created.\nYou may need to merge changes." fi + # Otherwise, we leave the .new copy for the admin to consider... } config etc/asbt/asbt.conf.new |