tazpkg rev 646

tazpkg info: Fix license and up copyright date
author Christophe Lincoln <pankso@slitaz.org>
date Sun Feb 16 11:29:35 2014 +0100 (2014-02-16)
parents b0fe4db66123
children d224faea85cc
files COPYING README tazpkg
line diff
     1.1 --- a/COPYING	Sun Feb 16 11:22:38 2014 +0100
     1.2 +++ b/COPYING	Sun Feb 16 11:29:35 2014 +0100
     1.3 @@ -2,7 +2,7 @@
     1.4  ===============================================================================
     1.5  
     1.6  
     1.7 -Copyright (c)  2007-2013  SliTaz GNU/Linux
     1.8 +Copyright (c)  2007-2014  SliTaz GNU/Linux
     1.9  
    1.10  
    1.11  Français
     2.1 --- a/README	Sun Feb 16 11:22:38 2014 +0100
     2.2 +++ b/README	Sun Feb 16 11:29:35 2014 +0100
     2.3 @@ -1,4 +1,4 @@
     2.4 -README for TazPkg -  Tiny autonomous packages manager
     2.5 +README for TazPKG -  Tiny autonomous packages manager
     2.6  ===============================================================================
     2.7  
     2.8  
     3.1 --- a/tazpkg	Sun Feb 16 11:22:38 2014 +0100
     3.2 +++ b/tazpkg	Sun Feb 16 11:29:35 2014 +0100
     3.3 @@ -1,13 +1,14 @@
     3.4  #!/bin/sh
     3.5 -# TazPkg - Tiny autonomous zone packages manager.
     3.6 +#
     3.7 +# TazPKG - Tiny autonomous zone packages manager.
     3.8  #
     3.9  # This is a lightwight packages manager for *.tazpkg files written in SHell
    3.10 -# script. It works well with Busybox ash shell and bash. TazPkg lets you
    3.11 -# list, install, remove, download or get information about a package. You can
    3.12 -# use 'tazpkg usage' to get a list of commands with short descriptions. TazPkg
    3.13 -# also resolves dependencies and can upgrade packages from a mirror.
    3.14 +# script. It works well with Busybox ash shell and bash. TazPKG lets you
    3.15 +# list, install, remove, download or get information about a package. You
    3.16 +# can use 'tazpkg usage' to get a list of commands with short descriptions.
    3.17 +# TazPKG also resolves dependencies and can upgrade packages from a mirror.
    3.18  #
    3.19 -# (C) 2007-2013 SliTaz - GNU General Public License v3.
    3.20 +# (C) 2007-2014 SliTaz - GNU General Public License v3.
    3.21  #
    3.22  # Authors: See the AUTHORS files
    3.23  #
    3.24 @@ -17,7 +18,7 @@
    3.25  ####################
    3.26  
    3.27  # TazPkg version
    3.28 -VERSION=5.1
    3.29 +VERSION=5.2
    3.30  
    3.31  . /etc/slitaz/slitaz.conf
    3.32  . /etc/slitaz/tazpkg.conf
    3.33 @@ -32,6 +33,7 @@
    3.34  #
    3.35  # Functions set for translate categories
    3.36  #
    3.37 +
    3.38  # No operations, only for xgettext collect
    3.39  gettext_noop() {
    3.40  	gettext "base-system"; gettext "x-window"; gettext "utilities";
    3.41 @@ -1667,12 +1669,12 @@
    3.42  <b>$(gettext 'Category   :')</b> $(gettext $CATEGORY)
    3.43  <b>$(gettext 'Short desc :')</b> $SHORT_DESC
    3.44  <b>$(gettext 'Maintainer :')</b> $MAINTAINER"
    3.45 -		[ "$LICENSE" ] &&		emsg "<b>$(gettext 'License    :')</b> $DEPENDS"
    3.46 -		[ "$DEPENDS" ] &&		emsg "<b>$(gettext 'Depends    :')</b> $DEPENDS"
    3.47 -		[ "$SUGGESTED" ] &&		emsg "<b>$(gettext 'Suggested  :')</b> $SUGGESTED"
    3.48 +		[ "$LICENSE" ] && emsg "<b>$(gettext 'License    :')</b> $LICENSE"
    3.49 +		[ "$DEPENDS" ] && emsg "<b>$(gettext 'Depends    :')</b> $DEPENDS"
    3.50 +		[ "$SUGGESTED" ] &&	emsg "<b>$(gettext 'Suggested  :')</b> $SUGGESTED"
    3.51  		[ "$BUILD_DEPENDS" ] &&	emsg "<b>$(gettext 'Build deps :')</b> $BUILD_DEPENDS"
    3.52 -		[ "$WANTED" ] &&		emsg "<b>$(gettext 'Wanted src :')</b> $WANTED"
    3.53 -		[ "$WEB_SITE" ] &&		emsg "<b>$(gettext 'Web site   :')</b> $WEB_SITE"
    3.54 +		[ "$WANTED" ] && emsg "<b>$(gettext 'Wanted src :')</b> $WANTED"
    3.55 +		[ "$WEB_SITE" ] && emsg "<b>$(gettext 'Web site   :')</b> $WEB_SITE"
    3.56  		footer
    3.57  		;;
    3.58  	desc)