diff options
author | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2007-01-28 20:45:42 +0000 |
---|---|---|
committer | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2007-01-28 20:45:42 +0000 |
commit | 555464d3c93cccdc2ad7e4f1c603940fd0d57631 (patch) | |
tree | f355e0c496eccc84cfaf30d81fb22f29dee7b728 | |
parent | 964e94af811e34a0b86b73934e572bf0c9668735 (diff) | |
download | simplepkg-555464d3c93cccdc2ad7e4f1c603940fd0d57631.tar.gz simplepkg-555464d3c93cccdc2ad7e4f1c603940fd0d57631.tar.bz2 |
simplepkg 0.4.9pre13
git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@130 04377dda-e619-0410-9926-eae83683ac58
-rw-r--r-- | doc/CHANGELOG | 2 | ||||
-rwxr-xr-x | simplepkg.SlackBuild | 2 | ||||
-rwxr-xr-x | src/simplaret | 3 |
3 files changed, 3 insertions, 4 deletions
diff --git a/doc/CHANGELOG b/doc/CHANGELOG index 2549f5d..57017ea 100644 --- a/doc/CHANGELOG +++ b/doc/CHANGELOG @@ -1,7 +1,7 @@ simplepkg changelog ------------------- -0.4.9pre10-12: small fixes +0.4.9pre10-13: simplaret small fixes 0.4.9pre9: createpkg: - speedup diff --git a/simplepkg.SlackBuild b/simplepkg.SlackBuild index 34ac27a..25f8c6b 100755 --- a/simplepkg.SlackBuild +++ b/simplepkg.SlackBuild @@ -6,7 +6,7 @@ PACKAGE="simplepkg" PACK_DIR="package-$PACKAGE" BUILD=${BUILD:=1rha} -VERSION="0.4.9pre12" +VERSION="0.4.9pre13" ARCH="noarch" LIBEXEC="/usr/libexec/$PACKAGE" BINDIR="/usr/bin" diff --git a/src/simplaret b/src/simplaret index d3dc24f..01fed4f 100755 --- a/src/simplaret +++ b/src/simplaret @@ -514,7 +514,6 @@ function simplaret_search_and_download_patch { # check if the patch was already downloaded if echo "$DOWNLOADED_PATCHES" | grep -q " $ARCH:$VERSION:$sugested "; then echo "jail $root needs package $sugested, but it's already downloaded, skipping donwload" - return fi # search if its installed in the jail @@ -562,7 +561,7 @@ function simplaret_search_and_download_patch { # finally, get the package if [ "$get" == "yes" ]; then - if [ "$S_UPGRADE" == "1" ]; then + if [ "$IS_UPGRADE" == "1" ]; then simplaret_install $sugested else simplaret_get $sugested |