diff options
| author | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2007-04-11 17:57:40 +0000 | 
|---|---|---|
| committer | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2007-04-11 17:57:40 +0000 | 
| commit | e1ce188d86ca344b44e02dbba4ea6a34b6f73c5a (patch) | |
| tree | 5cf066d74db4f32428d86d64b3f74aa0e194fb94 | |
| parent | 4d3757ed2de98426c519b1ae580e293917502f42 (diff) | |
| download | simplepkg-e1ce188d86ca344b44e02dbba4ea6a34b6f73c5a.tar.gz simplepkg-e1ce188d86ca344b44e02dbba4ea6a34b6f73c5a.tar.bz2 | |
small fixes
git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@337 04377dda-e619-0410-9926-eae83683ac58
| -rw-r--r-- | trunk/doc/CHANGELOG | 9 | ||||
| -rwxr-xr-x | trunk/simplepkg.SlackBuild | 2 | ||||
| -rwxr-xr-x | trunk/src/lspkg | 3 | ||||
| -rwxr-xr-x | trunk/src/repos | 4 | 
4 files changed, 12 insertions, 6 deletions
| diff --git a/trunk/doc/CHANGELOG b/trunk/doc/CHANGELOG index 3b660f5..2fc3d35 100644 --- a/trunk/doc/CHANGELOG +++ b/trunk/doc/CHANGELOG @@ -1,6 +1,15 @@  simplepkg changelog  =================== +0.5pre17 +======== + +  - createpkg +    - bugfix + +  - lspkg: +    - bugfixes +  0.5pre16  ======== diff --git a/trunk/simplepkg.SlackBuild b/trunk/simplepkg.SlackBuild index 28ca938..fdc8a7f 100755 --- a/trunk/simplepkg.SlackBuild +++ b/trunk/simplepkg.SlackBuild @@ -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" diff --git a/trunk/src/lspkg b/trunk/src/lspkg index 167b547..01900f2 100755 --- a/trunk/src/lspkg +++ b/trunk/src/lspkg @@ -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 diff --git a/trunk/src/repos b/trunk/src/repos index f9605ad..e4a17ee 100755 --- a/trunk/src/repos +++ b/trunk/src/repos @@ -10,10 +10,6 @@  #  # 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" | 
