diff options
author | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2007-04-08 01:26:51 +0000 |
---|---|---|
committer | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2007-04-08 01:26:51 +0000 |
commit | d2b32c863175524692874232fd6bc3632825db6e (patch) | |
tree | e426606a1e6397f6684ce80a9c8870e53528263f /trunk | |
parent | 38fdff1d0b0f92493506f2106b1735d02a69658c (diff) | |
download | simplepkg-d2b32c863175524692874232fd6bc3632825db6e.tar.gz simplepkg-d2b32c863175524692874232fd6bc3632825db6e.tar.bz2 |
bugfixes
git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@321 04377dda-e619-0410-9926-eae83683ac58
Diffstat (limited to 'trunk')
-rw-r--r-- | trunk/doc/CHANGELOG | 16 | ||||
-rw-r--r-- | trunk/lib/common.sh | 10 | ||||
-rwxr-xr-x | trunk/simplepkg.SlackBuild | 2 |
3 files changed, 8 insertions, 20 deletions
diff --git a/trunk/doc/CHANGELOG b/trunk/doc/CHANGELOG index 438e183..e1fbb6f 100644 --- a/trunk/doc/CHANGELOG +++ b/trunk/doc/CHANGELOG @@ -1,20 +1,10 @@ simplepkg changelog =================== -0.5pre11 -======== +0.5pre9 - 0.5pre12 +================== - - bugfix - -0.5pre10 -======== - - - bugfix - -0.5pre9 -======= - - - bugfixes + - bugfix releases 0.5pre8 ======= diff --git a/trunk/lib/common.sh b/trunk/lib/common.sh index e54ba95..6d1a5ab 100644 --- a/trunk/lib/common.sh +++ b/trunk/lib/common.sh @@ -589,8 +589,8 @@ function gen_patches_filelist { # generate FILE_LIST # usage: gen_patches_filelist <folder> - if [ ! -z "$1" ]; then - mkdir -p $1 + if [ ! -z "$1" ] && [ -d "$1" ]; then + cwd="`pwd`" cd $1 for file in `find | grep -e ".tgz$"`; do ls -l $file; done > FILE_LIST @@ -611,9 +611,8 @@ function gen_packages_txt { # generate PACKAGES.TXT # usage: gen_packages_txt <folder> - if [ ! -z "$1" ]; then + if [ ! -z "$1" ] && [ -d "$1" ]; then - mkdir -p $1 cwd="`pwd`" cd $1 @@ -637,9 +636,8 @@ function gen_md5_checksums { # generate CHECKSUMS.md5 # usage: gen_md5_checksums <folder> - if [ ! -z "$1" ]; then + if [ ! -z "$1" ] && [ -d "$1" ]; then - mkdir -p $1 cwd="`pwd`" cd $1 diff --git a/trunk/simplepkg.SlackBuild b/trunk/simplepkg.SlackBuild index edd11fa..7c36c71 100755 --- a/trunk/simplepkg.SlackBuild +++ b/trunk/simplepkg.SlackBuild @@ -6,7 +6,7 @@ PACKAGE="simplepkg" PACK_DIR="package-$PACKAGE" BUILD=${BUILD:=1rha} -VERSION="0.5pre11" +VERSION="0.5pre12" ARCH="noarch" LIBEXEC="/usr/libexec/$PACKAGE" BINDIR="/usr/bin" |