]> gitweb.fluxo.info Git - simplepkg.git/commitdiff
simplepkg 0.6pre14 fixes a minor bug in simplaret
authorrhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58>
Sun, 23 Dec 2007 19:30:53 +0000 (19:30 +0000)
committerrhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58>
Sun, 23 Dec 2007 19:30:53 +0000 (19:30 +0000)
git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@477 04377dda-e619-0410-9926-eae83683ac58

trunk/doc/CHANGELOG
trunk/simplepkg.SlackBuild
trunk/src/simplaret

index 0920f98565f7bcc5b9e67e501f06f51c40fdfa30..627b9c156e7040824e99056cd252c583e8bb9009 100644 (file)
@@ -1,6 +1,11 @@
 simplepkg changelog
 ===================
 
+0.6pre14
+========
+
+  - simplaret: ignoring slack-required lines starting which "#"
+
 0.6pre13
 ========
 
index 462aad31b8843b469eb751095a675d8903249874..48351b042803cd4976b8208676e4111ad6a9d976 100755 (executable)
@@ -18,7 +18,7 @@
 PACKAGE="simplepkg"
 PACK_DIR="package-$PACKAGE"
 BUILD=${BUILD:=1rha}
-VERSION="0.6pre13"
+VERSION="0.6pre14"
 ARCH="noarch"
 LIBEXEC="/usr/libexec/$PACKAGE"
 BINDIR="/usr/bin"
index 7cf7796e4c7321065348b066987fcff72b5c07dd..f0139c63089d3834accf1a4cd6c4124da86f91bc 100755 (executable)
@@ -949,7 +949,7 @@ function simplaret_install {
       if [ -f "$slack_required" ] && [ "$DEPENDENCY_CHECKING" == "1" ]; then
         # this routine checks for dependencies in package's slack-required
         # procedure adapted from createpkg script
-        ( cat $slack_required | while read dep; do
+        ( grep -v '^#' $slack_required | while read dep; do
            if [ ! -z "$dep" ]; then
             dependency="`echo $dep | awk '{ print $1 }'`"
             simplaret_solve_dep $name $dependency $root