# HG changeset patch # User Christophe Lincoln # Date 1392546575 -3600 # Node ID 89b1cd522e577cdcd65a57d31bf8213697c10451 # Parent b0fe4db661238045ee915729843c312975b22cf3 tazpkg info: Fix license and up copyright date diff -r b0fe4db66123 -r 89b1cd522e57 COPYING --- a/COPYING Sun Feb 16 11:22:38 2014 +0100 +++ b/COPYING Sun Feb 16 11:29:35 2014 +0100 @@ -2,7 +2,7 @@ =============================================================================== -Copyright (c) 2007-2013 SliTaz GNU/Linux +Copyright (c) 2007-2014 SliTaz GNU/Linux Français diff -r b0fe4db66123 -r 89b1cd522e57 README --- a/README Sun Feb 16 11:22:38 2014 +0100 +++ b/README Sun Feb 16 11:29:35 2014 +0100 @@ -1,4 +1,4 @@ -README for TazPkg - Tiny autonomous packages manager +README for TazPKG - Tiny autonomous packages manager =============================================================================== diff -r b0fe4db66123 -r 89b1cd522e57 tazpkg --- a/tazpkg Sun Feb 16 11:22:38 2014 +0100 +++ b/tazpkg Sun Feb 16 11:29:35 2014 +0100 @@ -1,13 +1,14 @@ #!/bin/sh -# TazPkg - Tiny autonomous zone packages manager. +# +# TazPKG - Tiny autonomous zone packages manager. # # This is a lightwight packages manager for *.tazpkg files written in SHell -# script. It works well with Busybox ash shell and bash. TazPkg lets you -# list, install, remove, download or get information about a package. You can -# use 'tazpkg usage' to get a list of commands with short descriptions. TazPkg -# also resolves dependencies and can upgrade packages from a mirror. +# script. It works well with Busybox ash shell and bash. TazPKG lets you +# list, install, remove, download or get information about a package. You +# can use 'tazpkg usage' to get a list of commands with short descriptions. +# TazPKG also resolves dependencies and can upgrade packages from a mirror. # -# (C) 2007-2013 SliTaz - GNU General Public License v3. +# (C) 2007-2014 SliTaz - GNU General Public License v3. # # Authors: See the AUTHORS files # @@ -17,7 +18,7 @@ #################### # TazPkg version -VERSION=5.1 +VERSION=5.2 . /etc/slitaz/slitaz.conf . /etc/slitaz/tazpkg.conf @@ -32,6 +33,7 @@ # # Functions set for translate categories # + # No operations, only for xgettext collect gettext_noop() { gettext "base-system"; gettext "x-window"; gettext "utilities"; @@ -1667,12 +1669,12 @@ $(gettext 'Category :') $(gettext $CATEGORY) $(gettext 'Short desc :') $SHORT_DESC $(gettext 'Maintainer :') $MAINTAINER" - [ "$LICENSE" ] && emsg "$(gettext 'License :') $DEPENDS" - [ "$DEPENDS" ] && emsg "$(gettext 'Depends :') $DEPENDS" - [ "$SUGGESTED" ] && emsg "$(gettext 'Suggested :') $SUGGESTED" + [ "$LICENSE" ] && emsg "$(gettext 'License :') $LICENSE" + [ "$DEPENDS" ] && emsg "$(gettext 'Depends :') $DEPENDS" + [ "$SUGGESTED" ] && emsg "$(gettext 'Suggested :') $SUGGESTED" [ "$BUILD_DEPENDS" ] && emsg "$(gettext 'Build deps :') $BUILD_DEPENDS" - [ "$WANTED" ] && emsg "$(gettext 'Wanted src :') $WANTED" - [ "$WEB_SITE" ] && emsg "$(gettext 'Web site :') $WEB_SITE" + [ "$WANTED" ] && emsg "$(gettext 'Wanted src :') $WANTED" + [ "$WEB_SITE" ] && emsg "$(gettext 'Web site :') $WEB_SITE" footer ;; desc)