summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2003-08-06 09:07:39 +0000
committerWerner Koch <wk@gnupg.org>2003-08-06 09:07:39 +0000
commit4a9f2da9803c1247eba97f1a40fd1d4c4116a8dc (patch)
tree5913b72fd9a34a4169657977a179e49f6a3a3283
parent17ff688ef135974d4d82c3f7a53431339adbe7f5 (diff)
downloadlibassuan-4a9f2da9803c1247eba97f1a40fd1d4c4116a8dc.tar.gz
* lgpl.texi: New.libassuan-0-6-0
* gpl.texi: Removed. * assuan.texi: Dropped requirement vor invariant sections, front- and back-cover texts. Include lgpg.texi.
-rw-r--r--AUTHORS31
-rw-r--r--ChangeLog4
-rw-r--r--NEWS15
-rw-r--r--README10
-rw-r--r--THANKS1
-rw-r--r--configure.ac20
-rw-r--r--doc/ChangeLog18
-rw-r--r--doc/Makefile.am2
-rw-r--r--doc/assuan.texi24
-rw-r--r--src/Makefile.am2
10 files changed, 94 insertions, 33 deletions
diff --git a/AUTHORS b/AUTHORS
index e69de29..4297430 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -0,0 +1,31 @@
+Package: libassuan
+Maintainer: Werner Koch <wk@gnupg.org>
+Bug reports: gnupg-devel@gnupg.org
+Security related bug reports: security@gnupg.org
+
+
+Werner Koch <wk@gnupg.org>
+ - Initial code.
+
+Neal H. Walfield <neal@g10code.de>
+ - Code cleanup, descriptor passing and bug fixes.
+
+Marcus Brinkmann <marcus@g10code.de>
+ - Bug fixes.
+
+
+
+Libassuan was orginally part of NewPG, a temporary fork of GnuPG, and
+later split of into a separate library.
+
+
+ Copyright 2003 Free Software Foundation, Inc.
+
+ This file is free software; as a special exception the author gives
+ unlimited permission to copy and/or distribute it, with or without
+ modifications, as long as this notice is preserved.
+
+ This file is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
+ implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+
diff --git a/ChangeLog b/ChangeLog
index 870a5d3..404a71a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2003-08-06 Werner Koch <wk@gnupg.org>
+
+ Released 0.6.0.
+
2003-07-29 Werner Koch <wk@gnupg.org>
* configure.ac: Cleanups for newer autoconf.
diff --git a/NEWS b/NEWS
index e69de29..787e2ad 100644
--- a/NEWS
+++ b/NEWS
@@ -0,0 +1,15 @@
+Noteworthy changes in version 0.6.0 (2003-08-06)
+------------------------------------------------
+
+ * Initial release as a standalone library.
+
+
+ Copyright 2003 Free Software Foundation, Inc.
+
+ This file is free software; as a special exception the author gives
+ unlimited permission to copy and/or distribute it, with or without
+ modifications, as long as this notice is preserved.
+
+ This file is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
+ implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
diff --git a/README b/README
index e69de29..2847078 100644
--- a/README
+++ b/README
@@ -0,0 +1,10 @@
+ Libassuan
+ ===========
+
+This is the IPC library used by GnuPG 1.9, gpgme and the old newpg
+package. It used to be included with the latter packages but we
+decided to make your life not too easy and separated it out to a
+standalone library.
+
+
+
diff --git a/THANKS b/THANKS
new file mode 100644
index 0000000..8b13789
--- /dev/null
+++ b/THANKS
@@ -0,0 +1 @@
+
diff --git a/configure.ac b/configure.ac
index e66af68..86b146d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -21,7 +21,8 @@
AC_PREREQ(2.57)
# Version number: Remember to change it immediately *after* a release.
# Add a "-cvs" prefix for non-released code.
-AC_INIT(libassuan, 0.0.1-cvs, gpa-dev@gnupg.org)
+AC_INIT(libassuan, 0.6.0, gnupg-devel@gnupg.org)
+# Note, that this is not yet available as a shared library.
PACKAGE=$PACKAGE_NAME
VERSION=$PACKAGE_VERSION
@@ -31,6 +32,8 @@ AM_MAINTAINER_MODE
AC_CONFIG_SRCDIR(src/assuan.h)
AM_CONFIG_HEADER(config.h)
+AC_GNU_SOURCE
+
AC_SUBST(PACKAGE)
AC_SUBST(VERSION)
@@ -41,13 +44,6 @@ AC_DEFINE_UNQUOTED(PACKAGE_BUGREPORT, "$PACKAGE_BUGREPORT",
-AH_TOP([
-/* We need this, because some autoconf tests rely on this (e.g. stpcpy)
- and it should be used for new programs anyway. */
-#define _GNU_SOURCE 1
-])
-
-
# Checks for programs.
missing_dir=`cd $ac_aux_dir && pwd`
AM_MISSING_PROG(ACLOCAL, aclocal, $missing_dir)
@@ -75,8 +71,6 @@ LIBASSUAN_CONFIG_CFLAGS=""
AC_SUBST(LIBASSUAN_CONFIG_LIBS)
AC_SUBST(LIBASSUAN_CONFIG_CFLAGS)
-AC_CONFIG_COMMANDS([assuan-defs],[chmod +x src/libassuan-config])
-
# Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS([string.h locale.h])
@@ -105,9 +99,11 @@ AC_REPLACE_FUNCS(isascii)
AC_REPLACE_FUNCS(putc_unlocked)
AC_REPLACE_FUNCS(memrchr)
-# Create the config file.
+# Create the config files.
AC_CONFIG_FILES([Makefile])
AC_CONFIG_FILES([m4/Makefile])
-AC_CONFIG_FILES([src/Makefile src/libassuan-config])
+AC_CONFIG_FILES([src/Makefile])
AC_CONFIG_FILES([doc/Makefile])
+AC_CONFIG_FILES([src/libassuan-config], [chmod +x src/libassuan-config])
+
AC_OUTPUT
diff --git a/doc/ChangeLog b/doc/ChangeLog
index 6083bca..d92b425 100644
--- a/doc/ChangeLog
+++ b/doc/ChangeLog
@@ -1,3 +1,10 @@
+2003-08-06 Werner Koch <wk@gnupg.org>
+
+ * lgpl.texi: New.
+ * gpl.texi: Removed.
+ * assuan.texi: Dropped requirement vor invariant sections,
+ front- and back-cover texts. Include lgpg.texi.
+
2003-02-18 Neal H. Walfield <neal@cs.uml.edu>
* Makefile.am: New file.
@@ -5,3 +12,14 @@
* gpl.texi: New file.
* assuan.texi: Imported from newpg.
+
+ Copyright 2003 Free Software Foundation, Inc.
+
+ This file is free software; as a special exception the author gives
+ unlimited permission to copy and/or distribute it, with or without
+ modifications, as long as this notice is preserved.
+
+ This file is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
+ implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+
diff --git a/doc/Makefile.am b/doc/Makefile.am
index 8894bf0..38a204a 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -21,5 +21,5 @@
info_TEXINFOS = assuan.texi
-assuan_TEXINFOS = gpl.texi fdl.texi
+assuan_TEXINFOS = lgpl.texi fdl.texi
diff --git a/doc/assuan.texi b/doc/assuan.texi
index c610462..8fd0212 100644
--- a/doc/assuan.texi
+++ b/doc/assuan.texi
@@ -8,21 +8,10 @@ Copyright @copyright{} 2002, 2003 Free Software Foundation, Inc.
@macro permissionnotice
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.1 or
-any later version published by the Free Software Foundation; with the
-Invariant Sections being ``GNU General Public License'', the Front-Cover
-texts being (a) (see below), and with the Back-Cover Texts being (b)
-(see below). A copy of the license is included in the section entitled
+any later version published by the Free Software Foundation; with no
+Invariant Sections, with no Front-Cover texts, and with no Back-Cover
+texts. A copy of the license is included in the section entitled
``GNU Free Documentation License''.
-
-(a) The FSF's Front-Cover Text is:
-
- A GNU Manual
-
-(b) The FSF's Back-Cover Text is:
-
- You have freedom to copy and modify this GNU Manual, like GNU
- software. Copies published by the Free Software Foundation raise
- funds for GNU development.
@end macro
@@ -117,7 +106,7 @@ interprocess communcation library.
Miscellaneous
-* Copying:: GNU Lesser General Public License says
+* Library Copying:: GNU Lesser General Public License says
how you can copy and share Assuan
* GNU Free Documentation License:: How you can copy and share this manual.
@@ -127,7 +116,7 @@ Indices
* Index:: Index of concepts and symbol names.
@end menu
-@include gpl.texi
+@include lgpl.texi
@include fdl.texi
@node Introduction
@@ -347,9 +336,6 @@ number, white space, a textual description of the error.
@item 100 Unknown Command
@item 101 Not Implemented
-@item 301 certificate has been revoked [DirMngr]
-@item 302 no CRL known for this certificate [DirMngr]
-@item 303 CRL is too old and a new one could not be retrieved [DirMngr]
@end table
diff --git a/src/Makefile.am b/src/Makefile.am
index 23ae54b..8e96660 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -19,7 +19,7 @@
## Process this file with automake to produce Makefile.in
-EXTRA_DIST = mkerrors libassuan.m4
+EXTRA_DIST = libassuan-config.in mkerrors libassuan.m4
INCLUDES = -I.. -I$(top_srcdir)/include
BUILT_SOURCES = assuan-errors.c
MOSTLYCLEANFILES = assuan-errors.c