mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-14 21:47:19 +02:00
Generate the ChangeLog from commit logs.
* scripts/gitlog-to-changelog: New script. Taken from gnulib. * scripts/git-log-fix: New file. * scripts/git-log-footer: New file. * scripts/git-hooks/commit-msg: New script. * autogen.sh: Install commit-msg hook for git. * doc/HACKING: Describe the ChangeLog policy. * ChangeLog: New file. * Makefile.am (EXTRA_DIST): Add new files. (gen-ChangeLog): New. (dist-hook): Run gen-ChangeLog. Rename all ChangeLog files to ChangeLog-2011.
This commit is contained in:
parent
0137097fbb
commit
28c6cef128
41 changed files with 2014 additions and 1334 deletions
|
@ -1,3 +1,10 @@
|
|||
2011-12-02 Werner Koch <wk@g10code.com>
|
||||
|
||||
NB: ChangeLog files are no longer manually maintained. Starting
|
||||
on December 1st, 2011 we put change information only in the GIT
|
||||
commit log, and generate a top-level ChangeLog file from logs at
|
||||
"make dist". See doc/HACKING for details.
|
||||
|
||||
2009-08-26 Werner Koch <wk@g10code.com>
|
||||
|
||||
* gpgkeys_hkp.c: Include util.h.
|
||||
|
@ -86,7 +93,7 @@
|
|||
* curl-shim.c (curl_easy_init) [HAVE_W32_SYSTEM]: Call it.
|
||||
* gpgkeys_finger.c: s/_WIN32/HAVE_W32_SYSTEM/.
|
||||
(init_sockets): Remove.
|
||||
(connect_server) [HAVE_W32_SYSTEM]: Call new function.
|
||||
(connect_server) [HAVE_W32_SYSTEM]: Call new function.
|
||||
|
||||
2008-04-14 David Shaw <dshaw@jabberwocky.com>
|
||||
|
||||
|
@ -99,7 +106,7 @@
|
|||
2008-04-07 Werner Koch <wk@g10code.com>
|
||||
|
||||
* gpgkeys_kdns.c: New.
|
||||
* Makefile.am: Support kdns.
|
||||
* Makefile.am: Support kdns.
|
||||
|
||||
* no-libgcrypt.c (gcry_strdup): Fix. It was not used.
|
||||
|
||||
|
@ -111,7 +118,7 @@
|
|||
2007-10-25 David Shaw <dshaw@jabberwocky.com> (wk)
|
||||
|
||||
From 1.4 (July):
|
||||
|
||||
|
||||
* gpgkeys_ldap.c (main): Fix bug in setting up whether to verify
|
||||
peer SSL cert. This used to work with older OpenLDAP, but is now
|
||||
more strictly handled.
|
||||
|
@ -223,7 +230,7 @@
|
|||
to OpenSSL. This is considered a bug fix and forgives all
|
||||
possible violations, pertaining to this issue, possibly occured in
|
||||
the past.
|
||||
|
||||
|
||||
* no-libgcrypt.c: Changed license to a simple all permissive one.
|
||||
|
||||
* Makefile.am (gpg2keys_ldap_LDADD): For license reasons do not
|
||||
|
@ -239,7 +246,7 @@
|
|||
mismatch.
|
||||
|
||||
2006-09-19 Werner Koch <wk@g10code.com>
|
||||
|
||||
|
||||
* no-libgcrypt.c: New. Taken from ../tools.
|
||||
* Makefile.am: Add no-libgcrypt to all sources.
|
||||
|
||||
|
@ -708,7 +715,7 @@
|
|||
|
||||
2004-10-28 Werner Koch <wk@g10code.com>
|
||||
|
||||
* Makefile.am (other_libs):
|
||||
* Makefile.am (other_libs):
|
||||
|
||||
2004-10-18 David Shaw <dshaw@jabberwocky.com>
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
# Makefile.am - Makefile for keyservers
|
||||
# Copyright (C) 2001, 2002, 2004, 2005, 2006,
|
||||
# Copyright (C) 2001, 2002, 2004, 2005, 2006,
|
||||
# 2009 Free Software Foundation, Inc.
|
||||
#
|
||||
# This file is part of GnuPG.
|
||||
|
@ -8,12 +8,12 @@
|
|||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
#
|
||||
# GnuPG 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, see <http://www.gnu.org/licenses/>.
|
||||
## Process this file with automake to produce Makefile.in
|
||||
|
@ -26,7 +26,9 @@ EXTRA_PROGRAMS = gpg2keys_ldap gpg2keys_hkp gpg2keys_finger gpg2keys_curl \
|
|||
gpg2keys_kdns
|
||||
EXTRA_SCRIPTS = gpg2keys_mailto
|
||||
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/gl -I$(top_srcdir)/common -I$(top_srcdir)/intl
|
||||
EXTRA_DIST = ChangeLog-2011
|
||||
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/gl -I$(top_srcdir)/common -I$(top_srcdir)/intl
|
||||
|
||||
AM_CFLAGS = $(LIBGCRYPT_CFLAGS) $(GPG_ERROR_CFLAGS)
|
||||
|
||||
|
@ -62,11 +64,11 @@ if FAKE_CURL
|
|||
gpg2keys_curl_SOURCES += curl-shim.c curl-shim.h
|
||||
gpg2keys_curl_CPPFLAGS = $(AM_CPPFLAGS)
|
||||
gpg2keys_curl_LDADD = $(common_libs) $(GPG_ERROR_LIBS) $(NETLIBS) $(DNSLIBS) \
|
||||
$(other_libs)
|
||||
$(other_libs)
|
||||
gpg2keys_hkp_SOURCES += curl-shim.c curl-shim.h
|
||||
gpg2keys_hkp_CPPFLAGS = $(AM_CPPFLAGS)
|
||||
gpg2keys_hkp_LDADD = $(common_libs) $(GPG_ERROR_LIBS) $(NETLIBS) $(DNSLIBS) \
|
||||
$(other_libs)
|
||||
$(other_libs)
|
||||
else
|
||||
# Note that we need to include all other libs here as well because
|
||||
# some compilers don't care about inline functions and insert
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue