[Gpg4win-commits] r83 - in trunk: . packages src

scm-commit at wald.intevation.org scm-commit at wald.intevation.org
Tue Dec 6 11:26:17 CET 2005


Author: werner
Date: 2005-12-06 11:26:17 +0100 (Tue, 06 Dec 2005)
New Revision: 83

Modified:
   trunk/ChangeLog
   trunk/NEWS
   trunk/configure.ac
   trunk/packages/download.sh
   trunk/packages/packages.current
   trunk/src/inst-gpgol.nsi
   trunk/src/uninst-gpgol.nsi
Log:
about to release 0.3.0


Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2005-12-02 10:39:35 UTC (rev 82)
+++ trunk/ChangeLog	2005-12-06 10:26:17 UTC (rev 83)
@@ -1,3 +1,12 @@
+2005-12-06  Werner Koch  <wk at g10code.com>
+
+	Released 0.3.0.
+
+2005-12-02  Werner Koch  <wk at g10code.com>
+
+	* packages/download.sh: New option --force.  Default to skip
+	already existing packages.
+
 2005-12-02  Timo Schulz  <ts at g10code.com>
 
 	* packages/download.sh: Update WinPT url.
@@ -3,4 +12,9 @@
 	* packages/packages.keys: Add second release key for WinPT.
 	
+2005-11-30  Werner Koch  <wk at g10code.com>
+
+	* src/inst-gpgol.nsi: Install German translation.
+	* src/uninst-gpgol.nsi: Likewise.
+
 2005-11-29  Werner Koch  <wk at g10code.com>
 

Modified: trunk/NEWS
===================================================================
--- trunk/NEWS	2005-12-02 10:39:35 UTC (rev 82)
+++ trunk/NEWS	2005-12-06 10:26:17 UTC (rev 83)
@@ -1,7 +1,17 @@
-Noteworthy changes in version 0.2.2
+Noteworthy changes in version 0.3.0 (2005-12-06)
 ------------------------------------------------
 
+  * Add i18n stuff to gpgol.  Only german for now.
 
+  * Winpt updates.
+
+  * Changed the way the download script works.  It now uses a packages
+    file from ftp.gpw4win.org and only downloads packages which are
+    not yet downloaded unless the --force option is used.  Chnages to
+    the packages are to be recorded in that packages file and not
+    anymore in the SVN.
+
+
 Noteworthy changes in version 0.2.1 (2005-11-28)
 ------------------------------------------------
 

Modified: trunk/configure.ac
===================================================================
--- trunk/configure.ac	2005-12-02 10:39:35 UTC (rev 82)
+++ trunk/configure.ac	2005-12-06 10:26:17 UTC (rev 83)
@@ -24,8 +24,8 @@
 
 # Remember to change the version number immediately *after* a release.
 # Uncomment the my_iscvs macro for non-released code.
-m4_define(my_version, [0.2.2])
-m4_define(my_iscvs, yes)
+m4_define(my_version, [0.3.0])
+#m4_define(my_iscvs, yes)
 AC_INIT([gpg4win], my_version[]m4_ifdef([my_iscvs], [-cvs[]m4_translit(
                   [$Revision$],[Ra-z $:])]),
                   [gpg4win-devel at wald.intevation.org])

Modified: trunk/packages/download.sh
===================================================================
--- trunk/packages/download.sh	2005-12-02 10:39:35 UTC (rev 82)
+++ trunk/packages/download.sh	2005-12-06 10:26:17 UTC (rev 83)
@@ -34,6 +34,12 @@
 #    file gnupg/gnupg-1.4.2.tar.gz.sig
 #    
 
+force=no
+if [ "$1" = "--force" ]; then
+    force=yes
+    shift
+fi
+
 WGET=wget
 
 url="ftp://ftp.gpg4win.org/gpg4win/"
@@ -71,10 +77,15 @@
            exit 1
        fi
        url="$server/$value"
-       echo "downloading \`$url'."
-       if ! ${WGET} -c -q "$url" ; then
-           echo "download of \`$url' failed." >&2
-           echo "$url" >> '.#download.failed'
+       name=`basename "$value"`
+       if [ -f "$name" -a "$force" = "no" ]; then
+           echo "package     \`$url' already exists."
+       else
+           echo "downloading \`$url'."
+           if ! ${WGET} -c -q "$url" ; then
+               echo "download of \`$url' failed." >&2
+               echo "$url" >> '.#download.failed'
+           fi
        fi
        ;;
      *)

Modified: trunk/packages/packages.current
===================================================================
--- trunk/packages/packages.current	2005-12-02 10:39:35 UTC (rev 82)
+++ trunk/packages/packages.current	2005-12-06 10:26:17 UTC (rev 83)
@@ -12,8 +12,9 @@
 # commands.  If the first word of a line is "file" the rest of the
 # line will be appended to the current base URL (with a / as
 # delimiter).
+#
+# 2005-12-06 11:16:12
 
-
 # GNU
 
 server ftp://ftp.cs.tu-berlin.de/pub/gnu
@@ -104,7 +105,12 @@
 file gpgee-1.2.2-bin.zip
 file gpgee-1.2.2-src.zip
 
+# GPGol
+server ftp://ftp.g10code.com/g10code/gpgol
 
+file gpgol-0.9.4-cvs.tar.bz2
+
+
 # GnuPG stuff. 
 
 server ftp://ftp.gnupg.org/gcrypt
@@ -121,7 +127,6 @@
 file libgpg-error-1.2-cvs.tar.bz2
 file gpgme-1.2.0-cvs.tar.bz2
 file gpa-0.7.1-cvs.tar.bz2
-file gpgol-0.9.4-cvs.tar.bz2
 file sylpheed-claws-1.9.99cvs5-wk1.tar.bz2
 file man_novice_de-0.0.0-cvs.tar.gz
 file man_advanced_de-0.0.0-cvs.tar.gz

Modified: trunk/src/inst-gpgol.nsi
===================================================================
--- trunk/src/inst-gpgol.nsi	2005-12-02 10:39:35 UTC (rev 82)
+++ trunk/src/inst-gpgol.nsi	2005-12-06 10:26:17 UTC (rev 83)
@@ -43,6 +43,10 @@
   ifErrors 0 +2
      MessageBox MB_OK "$(T_GPGol_RegFailed)"
 
+  SetOutPath "$INSTDIR\share\locale\de\LC_MESSAGES"
+  File ${prefix}/share/locale/de/LC_MESSAGES/gpgol.mo
+
+
 !endif
 SectionEnd
 

Modified: trunk/src/uninst-gpgol.nsi
===================================================================
--- trunk/src/uninst-gpgol.nsi	2005-12-02 10:39:35 UTC (rev 82)
+++ trunk/src/uninst-gpgol.nsi	2005-12-06 10:26:17 UTC (rev 83)
@@ -30,6 +30,9 @@
   Call un.SourceDelete
 !else
 
+  Delete "$INSTDIR\share\locale\de\LC_MESSAGES\gpgol.mo"
+  RMDir "$INSTDIR\share\locale\de\LC_MESSAGES"
+
   UnRegDLL "$INSTDIR\gpgol.dll"
 
   Delete /REBOOTOK "$INSTDIR\gpgol.dll"



More information about the Gpg4win-commits mailing list