[Gpg4win-commits] [git] Gpg4win - branch, master, updated. gpg4win-2.1.0-107-ga67784b

by Werner Koch cvs at cvs.gnupg.org
Wed Dec 5 22:33:06 CET 2012


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GnuPG for Windows".

The branch, master has been updated
       via  a67784b894454a6df7b6d45f700e6cd95d60c2cc (commit)
       via  4ddb9b0d0ce7ec2dd8a5ba817818a984624d2d59 (commit)
       via  c5404abb7cc8c284c2a8184a529fb0fdb82d8b50 (commit)
       via  9d75af16cb55346e8050f2707a9c3cfea83b03b1 (commit)
      from  36fc56030efbab8f5f190f8ada7b7e32896038ca (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit a67784b894454a6df7b6d45f700e6cd95d60c2cc
Author: Werner Koch <wk at gnupg.org>
Date:   Wed Dec 5 21:04:04 2012 +0100

    Fix regression in VPATH builds.
    
    * src/installer.nsi (T_HowtoSmimeFile): Use build directory for the
    file name.

diff --git a/README b/README
index 84b6847..995aced 100644
--- a/README
+++ b/README
@@ -47,18 +47,16 @@ installed:
  unzip
  texinfo
  imagemagick
- tetex-bin
- tetex-extra
- latex-xcolor (for the compendium)
- tr
  gs-common (gs)
  docbook-utils
- hyperlatex
  sharutils (uudecode for claws icon patch)
  gettext (msgfmt, dcgettext, gmsgfmt, xgettext for glib)
  libglib2.0-dev (glib-genmarshal, glib-compile-{resources,schemas})
  libgdk-pixbuf2.0-dev (gdk-pixbuf-csource)
  docbook-utils, ghostscript (claws-mail manual)
+ texlive (you need most modules, e.g. texlive-latex-extra)
+ latex-xcolor (for the compendium)
+
 
 
 Building the Webpages
diff --git a/src/installer.nsi b/src/installer.nsi
index 4934d42..5a68c3b 100644
--- a/src/installer.nsi
+++ b/src/installer.nsi
@@ -529,23 +529,23 @@ LangString T_SMIMECheckboxText ${LANG_ENGLISH} \
 	"Root certificate defined or skip configuration"
 
 LicenseLangString T_HowtoSmimeFile ${LANG_GERMAN} \
-	"${TOP_SRCDIR}/src/HOWTO-SMIME.de.txt"
+	"${BUILD_DIR}/HOWTO-SMIME.de.txt"
 LicenseLangString T_HowtoSmimeFile ${LANG_ENGLISH} \
-	"${TOP_SRCDIR}/src/HOWTO-SMIME.en.txt"
+	"${BUILD_DIR}/HOWTO-SMIME.en.txt"
 LicenseLangString T_HowtoSmimeFile ${LANG_FRENCH} \
-	"${TOP_SRCDIR}/src/HOWTO-SMIME.en.txt"
+	"${BUILD_DIR}/HOWTO-SMIME.en.txt"
 LicenseLangString T_HowtoSmimeFile ${LANG_SPANISH} \
-	"${TOP_SRCDIR}/src/HOWTO-SMIME.en.txt"
+	"${BUILD_DIR}/HOWTO-SMIME.en.txt"
 LicenseLangString T_HowtoSmimeFile ${LANG_PORTUGUESE} \
-	"${TOP_SRCDIR}/src/HOWTO-SMIME.en.txt"
+	"${BUILD_DIR}/HOWTO-SMIME.en.txt"
 LicenseLangString T_HowtoSmimeFile ${LANG_CZECH} \
-	"${TOP_SRCDIR}/src/HOWTO-SMIME.en.txt"
+	"${BUILD_DIR}/HOWTO-SMIME.en.txt"
 LicenseLangString T_HowtoSmimeFile ${LANG_ARABIC} \
-	"${TOP_SRCDIR}/src/HOWTO-SMIME.en.txt"
+	"${BUILD_DIR}/HOWTO-SMIME.en.txt"
 LicenseLangString T_HowtoSmimeFile ${LANG_RUSSIAN} \
-	"${TOP_SRCDIR}/src/HOWTO-SMIME.en.txt"
+	"${BUILD_DIR}/HOWTO-SMIME.en.txt"
 LicenseLangString T_HowtoSmimeFile ${LANG_ITALIAN} \
-	"${TOP_SRCDIR}/src/HOWTO-SMIME.en.txt"
+	"${BUILD_DIR}/HOWTO-SMIME.en.txt"
 
 #---------------------------------------------
 # From the old installation checking functions

commit 4ddb9b0d0ce7ec2dd8a5ba817818a984624d2d59
Author: Werner Koch <wk at gnupg.org>
Date:   Wed Dec 5 10:25:50 2012 +0100

    Silent automake warnings about GNU make features.
    
    * autogen.sh: Add -Wno-portability
    --
    
    We require GNU make anyway, thus there is no point to print these
    warnings.

diff --git a/autogen.sh b/autogen.sh
index 9b6d0e4..afe16d7 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -220,7 +220,7 @@ $ACLOCAL -I m4 $ACLOCAL_FLAGS
 echo "Running autoheader..."
 $AUTOHEADER
 echo "Running automake --gnu ..."
-$AUTOMAKE --gnu;
+$AUTOMAKE --gnu -Wno-portability;
 echo "Running autoconf${FORCE} ..."
 $AUTOCONF${FORCE}
 

commit c5404abb7cc8c284c2a8184a529fb0fdb82d8b50
Author: Werner Koch <wk at gnupg.org>
Date:   Wed Dec 5 10:18:43 2012 +0100

    Install development files for the GnuPG related libraries.
    
    * src/inst-gpgme.nsi: Install gpgme import lib and header file,
    * src/inst-libassuan.nsi: Likewise.
    * src/inst-libgcrypt.nsi: Likewise.
    * src/inst-libgpg-error.nsi: Likewise.
    * src/inst-libksba.nsi: Likewise.
    * src/uninst-gpg4win.nsi: Remove the new files.
    * src/uninst-gpgme.nsi: Ditto.
    * src/uninst-libassuan.nsi: Ditto.
    * src/uninst-libgcrypt.nsi: Ditto.
    * src/uninst-libgpg-error.nsi: Ditto.
    * src/uninst-libksba.nsi: Ditto.

diff --git a/NEWS b/NEWS
index b47f563..8e34789 100644
--- a/NEWS
+++ b/NEWS
@@ -10,6 +10,11 @@ Noteworthy changes in version 2.1.1 (unreleased)
 
 (de) Neue Versionen von GnuPG, GpgOL, GPA and Claws-Mail.
 
+(en) Development files for the crypto libraries will now be installed.
+
+(de) Entwicklerwerkzeuge für die Krypto-Bibliotheken werden nun mit
+     installiert.
+
 ~~~~~~~~~~~~~~~
 GnuPG:          2.0.19
 Kleopatra:      2.1.0 (2011-02-04)
diff --git a/src/inst-gpgme.nsi b/src/inst-gpgme.nsi
index ce18fba..8b8e8d5 100644
--- a/src/inst-gpgme.nsi
+++ b/src/inst-gpgme.nsi
@@ -1,18 +1,18 @@
 # inst-gpgme.nsi - Installer snippet for gpgme.     -*- coding: latin-1; -*-
 # Copyright (C) 2005, 2007, 2008 g10 Code GmbH
-# 
+#
 # This file is part of GPG4Win.
-# 
+#
 # GPG4Win is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
 # the Free Software Foundation; either version 2 of the License, or
 # (at your option) any later version.
-# 
+#
 # GPG4Win is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
-# 
+#
 # You should have received a copy of the GNU General Public License
 # along with this program; if not, write to the Free Software
 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
@@ -51,5 +51,12 @@ Section "-gpgme" SEC_gpgme
 
   File "${prefix}/libexec/gpgme-w32spawn.exe"
 
+  SetOutPath "$INSTDIR\lib"
+  File /oname=libgpgme.imp "${prefix}/lib/libgpgme.dll.a"
+  File /oname=libgpgme-glib.imp "${prefix}/lib/libgpgme-glib.dll.a"
+
+  SetOutPath "$INSTDIR\include"
+  File "${prefix}/include/gpgme.h"
+
 !endif
 SectionEnd
diff --git a/src/inst-libassuan.nsi b/src/inst-libassuan.nsi
index c214447..deb338a 100644
--- a/src/inst-libassuan.nsi
+++ b/src/inst-libassuan.nsi
@@ -1,18 +1,18 @@
 # inst-libassuan.nsi - snippet for libassuan.   -*- coding: latin-1; -*-
 # Copyright (C) 2007 g10 Code GmbH
-# 
+#
 # This file is part of Gpg4win.
-# 
+#
 # Gpg4win is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
 # the Free Software Foundation; either version 2 of the License, or
 # (at your option) any later version.
-# 
+#
 # Gpg4win is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
-# 
+#
 # You should have received a copy of the GNU General Public License
 # along with this program; if not, write to the Free Software
 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
@@ -43,6 +43,11 @@ Section "-libassuan" SEC_libassuan
       File /oname=libassuan-0.dll.tmp "${prefix}/bin/libassuan-0.dll"
       Rename /REBOOTOK libassuan-0.dll.tmp libassuan-0.dll
 
+  SetOutPath "$INSTDIR\lib"
+  File /oname=libgpg-assuan.imp "${prefix}/lib/libassuan.dll.a"
+
+  SetOutPath "$INSTDIR\include"
+  File "${prefix}/include/assuan.h"
 
 !endif
 SectionEnd
diff --git a/src/inst-libgcrypt.nsi b/src/inst-libgcrypt.nsi
index 89bf6e1..ac875b5 100644
--- a/src/inst-libgcrypt.nsi
+++ b/src/inst-libgcrypt.nsi
@@ -1,18 +1,18 @@
 # inst-libgcrypt.nsi - snippet for libgcrypt.   -*- coding: latin-1; -*-
 # Copyright (C) 2007 g10 Code GmbH
-# 
+#
 # This file is part of Gpg4win.
-# 
+#
 # Gpg4win is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
 # the Free Software Foundation; either version 2 of the License, or
 # (at your option) any later version.
-# 
+#
 # Gpg4win is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
-# 
+#
 # You should have received a copy of the GNU General Public License
 # along with this program; if not, write to the Free Software
 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
@@ -42,6 +42,13 @@ Section "-libgcrypt" SEC_libgcrypt
       File /oname=libgcrypt-11.dll.tmp "${prefix}/bin/libgcrypt-11.dll"
       Rename /REBOOTOK libgcrypt-11.dll.tmp libgcrypt-11.dll
 
+  SetOutPath "$INSTDIR\lib"
+  File /oname=libgcrypt.imp "${prefix}/lib/libgcrypt.dll.a"
+
+  SetOutPath "$INSTDIR\include"
+  File "${prefix}/include/gcrypt.h"
+  File "${prefix}/include/gcrypt-module.h"
+
 
 !endif
 SectionEnd
diff --git a/src/inst-libgpg-error.nsi b/src/inst-libgpg-error.nsi
index 36d81e5..fb689c3 100644
--- a/src/inst-libgpg-error.nsi
+++ b/src/inst-libgpg-error.nsi
@@ -1,18 +1,18 @@
 # inst-libgpg-error.nsi - snippet for libgpg-error.   -*- coding: latin-1; -*-
 # Copyright (C) 2005 g10 Code GmbH
-# 
+#
 # This file is part of GPG4Win.
-# 
+#
 # GPG4Win is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
 # the Free Software Foundation; either version 2 of the License, or
 # (at your option) any later version.
-# 
+#
 # GPG4Win is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
-# 
+#
 # You should have received a copy of the GNU General Public License
 # along with this program; if not, write to the Free Software
 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
@@ -52,11 +52,14 @@ Section "-libgpg-error" SEC_libgpg_error
   SetOutPath "$INSTDIR\share\locale\fr\LC_MESSAGES"
   File ${prefix}/share/locale/fr/LC_MESSAGES/libgpg-error.mo
 
-!ifdef DEBUG
   SetOutPath "$INSTDIR"
-
-  # We install a couple of binaries that may be useful for testing.
   File ${prefix}/bin/gpg-error.exe
-!endif
+
+  SetOutPath "$INSTDIR\lib"
+  File /oname=libgpg-error.imp "${prefix}/lib/libgpg-error.dll.a"
+
+  SetOutPath "$INSTDIR\include"
+  File "${prefix}/include/gpg-error.h"
+
 !endif
 SectionEnd
diff --git a/src/inst-libksba.nsi b/src/inst-libksba.nsi
index fb278cb..f517394 100644
--- a/src/inst-libksba.nsi
+++ b/src/inst-libksba.nsi
@@ -1,18 +1,18 @@
 # inst-libksba.nsi - snippet for libksba.   -*- coding: latin-1; -*-
 # Copyright (C) 2007 g10 Code GmbH
-# 
+#
 # This file is part of Gpg4win.
-# 
+#
 # Gpg4win is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
 # the Free Software Foundation; either version 2 of the License, or
 # (at your option) any later version.
-# 
+#
 # Gpg4win is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
-# 
+#
 # You should have received a copy of the GNU General Public License
 # along with this program; if not, write to the Free Software
 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
@@ -36,5 +36,11 @@ Section "-libksba" SEC_libksba
 !else
   File ${prefix}/bin/libksba-8.dll
 
+  SetOutPath "$INSTDIR\lib"
+  File /oname=libksba.imp "${prefix}/lib/libksba.dll.a"
+
+  SetOutPath "$INSTDIR\include"
+  File "${prefix}/include/ksba.h"
+
 !endif
 SectionEnd
diff --git a/src/uninst-gpg4win.nsi b/src/uninst-gpg4win.nsi
index 96378c7..b662db1 100644
--- a/src/uninst-gpg4win.nsi
+++ b/src/uninst-gpg4win.nsi
@@ -114,6 +114,7 @@ Section "-un.gpg4win"
 
   # Try to remove other top directories.
   RMDir "$INSTDIR\lib"
+  RMDir "$INSTDIR\include"
   RMDir "$INSTDIR\share"
   RMDir "$INSTDIR\pub"
   RMDir "$INSTDIR"
diff --git a/src/uninst-gpgme.nsi b/src/uninst-gpgme.nsi
index e0e18f8..f02e177 100644
--- a/src/uninst-gpgme.nsi
+++ b/src/uninst-gpgme.nsi
@@ -1,18 +1,18 @@
 # uninst-gpgme.nsi - Installer snippet for gpgme.   -*- coding: latin-1; -*-
 # Copyright (C) 2005, 2007, 2008 g10 Code GmbH
-# 
+#
 # This file is part of GPG4Win.
-# 
+#
 # GPG4Win is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
 # the Free Software Foundation; either version 2 of the License, or
 # (at your option) any later version.
-# 
+#
 # GPG4Win is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
-# 
+#
 # You should have received a copy of the GNU General Public License
 # along with this program; if not, write to the Free Software
 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
@@ -34,6 +34,7 @@ Section "-un.gpgme"
   Delete "$INSTDIR\libgpgme-glib-11.dll"
   Delete "$INSTDIR\libgpgme-qt-11.dll"
   Delete "$INSTDIR\gpgme-w32spawn.exe"
-  RMDir "$INSTDIR"
+  Delete "$INSTDIR\lib\libgpgme.imp"
+  Delete "$INSTDIR\include\gpgme.h"
 !endif
 SectionEnd
diff --git a/src/uninst-libassuan.nsi b/src/uninst-libassuan.nsi
index 55ad547..8f10b7d 100644
--- a/src/uninst-libassuan.nsi
+++ b/src/uninst-libassuan.nsi
@@ -1,18 +1,18 @@
 # uninst-libassuan.nsi - Uninstaller f. libassuan.  -*- coding: latin-1; -*-
 # Copyright (C) 2007 g10 Code GmbH
-# 
+#
 # This file is part of Gpg4win.
-# 
+#
 # Gpg4win is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
 # the Free Software Foundation; either version 2 of the License, or
 # (at your option) any later version.
-# 
+#
 # Gpg4win is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
-# 
+#
 # You should have received a copy of the GNU General Public License
 # along with this program; if not, write to the Free Software
 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
@@ -32,6 +32,8 @@ Section "-un.libassuan"
   Call un.SourceDelete
 !else
   Delete "$INSTDIR\libassuan-0.dll"
+  Delete "$INSTDIR\lib\libassuan.imp"
+  Delete "$INSTDIR\include\assuan.h"
 
 !endif
 SectionEnd
diff --git a/src/uninst-libgcrypt.nsi b/src/uninst-libgcrypt.nsi
index f79f4f4..9a8830c 100644
--- a/src/uninst-libgcrypt.nsi
+++ b/src/uninst-libgcrypt.nsi
@@ -1,18 +1,18 @@
 # uninst-libgcrypt.nsi - Uninstaller f. libgcrypt.  -*- coding: latin-1; -*-
 # Copyright (C) 2007 g10 Code GmbH
-# 
+#
 # This file is part of Gpg4win.
-# 
+#
 # Gpg4win is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
 # the Free Software Foundation; either version 2 of the License, or
 # (at your option) any later version.
-# 
+#
 # Gpg4win is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
-# 
+#
 # You should have received a copy of the GNU General Public License
 # along with this program; if not, write to the Free Software
 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
@@ -32,6 +32,9 @@ Section "-un.libgcrypt"
   Call un.SourceDelete
 !else
   Delete "$INSTDIR\libgcrypt-11.dll"
+  Delete "$INSTDIR\lib\libgcrypt.imp"
+  Delete "$INSTDIR\include\gcrypt.h"
+  Delete "$INSTDIR\include\gcrypt-module.h"
 
   RMDir "$INSTDIR"
 !endif
diff --git a/src/uninst-libgpg-error.nsi b/src/uninst-libgpg-error.nsi
index 0d16092..5b2cb38 100644
--- a/src/uninst-libgpg-error.nsi
+++ b/src/uninst-libgpg-error.nsi
@@ -1,18 +1,18 @@
 # uninst-libgpg-error.nsi - Installer f. libgpg-error. -*- coding: latin-1; -*-
 # Copyright (C) 2005 g10 Code GmbH
-# 
+#
 # This file is part of GPG4Win.
-# 
+#
 # GPG4Win is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
 # the Free Software Foundation; either version 2 of the License, or
 # (at your option) any later version.
-# 
+#
 # GPG4Win is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
-# 
+#
 # You should have received a copy of the GNU General Public License
 # along with this program; if not, write to the Free Software
 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
@@ -46,9 +46,10 @@ Section "-un.libgpg-error"
   RMDir "$INSTDIR\share\locale\fr"
   RMDir "$INSTDIR\share\locale"
   RMDir "$INSTDIR\share"
-!ifdef DEBUG
   Delete "$INSTDIR\gpg-error.exe"
-!endif
+  Delete "$INSTDIR\lib\libgpg-error.imp"
+  Delete "$INSTDIR\include\gpg-error.h"
+
   RMDir "$INSTDIR"
 !endif
 SectionEnd
diff --git a/src/uninst-libksba.nsi b/src/uninst-libksba.nsi
index a63f83c..a776ede 100644
--- a/src/uninst-libksba.nsi
+++ b/src/uninst-libksba.nsi
@@ -1,18 +1,18 @@
 # uninst-libksba.nsi - Uninstaller f. libksba.  -*- coding: latin-1; -*-
 # Copyright (C) 2007 g10 Code GmbH
-# 
+#
 # This file is part of Gpg4win.
-# 
+#
 # Gpg4win is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
 # the Free Software Foundation; either version 2 of the License, or
 # (at your option) any later version.
-# 
+#
 # Gpg4win is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
-# 
+#
 # You should have received a copy of the GNU General Public License
 # along with this program; if not, write to the Free Software
 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
@@ -32,6 +32,8 @@ Section "-un.libksba"
   Call un.SourceDelete
 !else
   Delete "$INSTDIR\libksba-8.dll"
+  Delete "$INSTDIR\lib\libksba.imp"
+  Delete "$INSTDIR\include\ksba.h"
 
   RMDir "$INSTDIR"
 !endif

commit 9d75af16cb55346e8050f2707a9c3cfea83b03b1
Author: Werner Koch <wk at gnupg.org>
Date:   Wed Dec 5 10:12:38 2012 +0100

    Fix c+p errors in the docs
    
    --

diff --git a/ChangeLog b/ChangeLog
index d6b1e87..0c7d673 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,8 +1,8 @@
 No more ChangeLog files
 ========================
 
-Do not modify any of the ChangeLog files in Libassuan.  Starting on
-March 26, 2011 we put change information only in the GIT commit
+Do not modify any of the ChangeLog files in Gpg4win.  Starting on
+March 26, 2012 we put change information only in the GIT commit
 log, and generate a top-level ChangeLog file from logs at "make dist"
 time.  As such, there are strict requirements on the form of the
 commit log messages.  See doc/HACKING for details.  The old ChangeLog
diff --git a/doc/HACKING b/doc/HACKING
index 8b5ac8e..e646e01 100644
--- a/doc/HACKING
+++ b/doc/HACKING
@@ -4,8 +4,8 @@
 
 * No more ChangeLog files
 
-  Do not modify any of the ChangeLog files in Libassuan.  Starting on
-  March 26, 2011 we put change information only in the GIT commit log,
+  Do not modify any of the ChangeLog files in Gpg4win.  Starting on
+  March 26, 2012 we put change information only in the GIT commit log,
   and generate a top-level ChangeLog file from logs at "make dist"
   time.  As such, there are strict requirements on the form of the
   commit log messages.  The old ChangeLog has been stored as

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog                   |    4 ++--
 NEWS                        |    5 +++++
 README                      |    8 +++-----
 autogen.sh                  |    2 +-
 doc/HACKING                 |    4 ++--
 src/inst-gpgme.nsi          |   15 +++++++++++----
 src/inst-libassuan.nsi      |   13 +++++++++----
 src/inst-libgcrypt.nsi      |   15 +++++++++++----
 src/inst-libgpg-error.nsi   |   19 +++++++++++--------
 src/inst-libksba.nsi        |   14 ++++++++++----
 src/installer.nsi           |   18 +++++++++---------
 src/uninst-gpg4win.nsi      |    1 +
 src/uninst-gpgme.nsi        |   11 ++++++-----
 src/uninst-libassuan.nsi    |   10 ++++++----
 src/uninst-libgcrypt.nsi    |   11 +++++++----
 src/uninst-libgpg-error.nsi |   13 +++++++------
 src/uninst-libksba.nsi      |   10 ++++++----
 17 files changed, 107 insertions(+), 66 deletions(-)


hooks/post-receive
-- 
GnuPG for Windows
http://git.gnupg.org



More information about the Gpg4win-commits mailing list