]> gitweb.fluxo.info Git - simplepkg.git/commitdiff
small fixes
authorrhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58>
Wed, 11 Apr 2007 17:57:40 +0000 (17:57 +0000)
committerrhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58>
Wed, 11 Apr 2007 17:57:40 +0000 (17:57 +0000)
git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@337 04377dda-e619-0410-9926-eae83683ac58

trunk/doc/CHANGELOG
trunk/simplepkg.SlackBuild
trunk/src/lspkg
trunk/src/repos

index 3b660f5185ddd691ae65b38557e679e5dc14a70d..2fc3d35574ccf869dc06131cea4520f4b2d10de4 100644 (file)
@@ -1,6 +1,15 @@
 simplepkg changelog
 ===================
 
+0.5pre17
+========
+
+  - createpkg
+    - bugfix
+
+  - lspkg:
+    - bugfixes
+
 0.5pre16
 ========
 
index 28ca9383a68364d6870ac967eb2815f2dc6ed8ee..fdc8a7f156c4f5c8d43dcafea630b282f3139f8b 100755 (executable)
@@ -6,7 +6,7 @@
 PACKAGE="simplepkg"
 PACK_DIR="package-$PACKAGE"
 BUILD=${BUILD:=1rha}
-VERSION="0.5pre16"
+VERSION="0.5pre17"
 ARCH="noarch"
 LIBEXEC="/usr/libexec/$PACKAGE"
 BINDIR="/usr/bin"
index 167b547a1af93c8a52a19b75d3e438f0fa401737..01900f266e977d588a316d0af62fb710939e702d 100755 (executable)
@@ -107,8 +107,9 @@ case $1 in
     "-d"|"--description")
         if [ ! -z "$2" ]; then
             for file in $LIST_PKGS; do
+                pack="`package_name $file`"
                 echo -e " Package description for $file:\n"
-                sed -n '/^xine-ui:/ { s/xine-ui://; p; }' $file
+                sed -n "/^$pack:/ { s/$pack://; p; }" $file
             done
         else
             head_line
index f9605ade3103d144fa8d20cbd60460dd472fe4a5..e4a17ee0bd3475b93943938a4b05c940369e3ea6 100755 (executable)
 #
 # Changes by rhatto at riseup.net to fit http://slack.sarava.org needs
 #
-# TODO: - config file options
-#       - integration with binary repository
-#       - package's and CHECKSUMS.md5 signature creation
-#
 
 BASENAME="`basename $0`"
 REPOS_CONF="/etc/simplepkg/repos.conf"