summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomas Mraz <tmraz@redhat.com>2014-08-06 14:48:57 +0200
committerTomas Mraz <tmraz@redhat.com>2014-08-06 14:48:57 +0200
commit396c9d6c0628d5927b2ca697134b25e6e5012ce1 (patch)
treedb7d74175f2201624f544167a14e76e114d41991
parent3b6757fca003dbd3d1587f569db90f86223eecfb (diff)
downloadlibpwquality-396c9d6c0628d5927b2ca697134b25e6e5012ce1.tar.gz
Preparing release 1.2.4.
-rw-r--r--AUTHORS4
-rw-r--r--ChangeLog12
-rw-r--r--configure.ac (renamed from configure.in)7
-rw-r--r--po/ChangeLog5
-rw-r--r--python/pwquality.c4
-rwxr-xr-xpython/setup.py.in (renamed from python/setup.py)2
6 files changed, 28 insertions, 6 deletions
diff --git a/AUTHORS b/AUTHORS
index 9a4c51e..bf0585c 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -8,3 +8,7 @@ Philip W. Dalrymple
Authors of the pwquality library:
Tomáš Mráz <tm@t8m.info>
+
+Python3 port of the python module:
+
+Bohuslav Kabrda <bkabrda@redhat.com>
diff --git a/ChangeLog b/ChangeLog
index 3ab8e49..76a3e10 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,15 @@
+2014-08-06 gettextize <bug-gnu-gettext@gnu.org>
+
+ * m4/gettext.m4: Upgrade to gettext-0.18.2.
+ * m4/iconv.m4: Upgrade to gettext-0.18.2.
+ * m4/lib-ld.m4: Upgrade to gettext-0.18.2.
+ * m4/lib-link.m4: Upgrade to gettext-0.18.2.
+ * m4/lib-prefix.m4: Upgrade to gettext-0.18.2.
+ * m4/nls.m4: Upgrade to gettext-0.18.2.
+ * m4/po.m4: Upgrade to gettext-0.18.2.
+ * m4/progtest.m4: Upgrade to gettext-0.18.2.
+ * configure.ac (AM_GNU_GETTEXT_VERSION): Bump to 0.18.2.
+
2011-09-16 gettextize <bug-gnu-gettext@gnu.org>
* m4/gettext.m4: New file, from gettext-0.18.1.
diff --git a/configure.in b/configure.ac
index f0b99cf..d5b3fb3 100644
--- a/configure.in
+++ b/configure.ac
@@ -1,5 +1,5 @@
dnl Process this file with autoconf to produce a configure script.
-AC_INIT([libpwquality], [1.2.3])
+AC_INIT([libpwquality], [1.2.4])
AC_CONFIG_HEADERS([config.h])
AM_INIT_AUTOMAKE([dist-bzip2 no-dist-gzip -Wall])
AC_PREREQ(2.61)
@@ -26,6 +26,7 @@ AC_SUBST(PWQUALITY_LT_REVISION)
dnl Checks for programs.
AC_USE_SYSTEM_EXTENSIONS
+AM_PROG_AR
AC_PROG_CC
AC_PROG_INSTALL
AC_PROG_LN_S
@@ -48,7 +49,7 @@ dnl If we use /usr as prefix, use /usr/share/man for manual pages
fi
dnl Localization support
-AM_GNU_GETTEXT_VERSION([0.15])
+AM_GNU_GETTEXT_VERSION([0.18.2])
AM_GNU_GETTEXT([external])
AH_BOTTOM([#ifdef ENABLE_NLS
#include <libintl.h>
@@ -159,5 +160,5 @@ AC_C_BIGENDIAN
dnl Files to be created from when we run configure
AC_CONFIG_FILES([Makefile libpwquality.spec src/Makefile src/pwquality.pc po/Makefile.in python/Makefile
- doc/Makefile doc/man/Makefile])
+ doc/Makefile doc/man/Makefile python/setup.py])
AC_OUTPUT
diff --git a/po/ChangeLog b/po/ChangeLog
index 972a0a6..35d39d5 100644
--- a/po/ChangeLog
+++ b/po/ChangeLog
@@ -1,3 +1,8 @@
+2014-08-06 gettextize <bug-gnu-gettext@gnu.org>
+
+ * Makefile.in.in: Upgrade to gettext-0.18.2.
+ * Rules-quot: Upgrade to gettext-0.18.2.
+
2011-09-16 gettextize <bug-gnu-gettext@gnu.org>
* Makefile.in.in: Upgrade to gettext-0.18.1.
diff --git a/python/pwquality.c b/python/pwquality.c
index 55ee22d..fdf24f8 100644
--- a/python/pwquality.c
+++ b/python/pwquality.c
@@ -1,8 +1,8 @@
/*
* libpwquality Python bindings
*
- * Copyright (c) Red Hat, Inc, 2011
- * Copyright (c) Tomas Mraz <tm@t8m.info>, 2011
+ * Copyright (c) Red Hat, Inc, 2011,2014
+ * Copyright (c) Tomas Mraz <tm@t8m.info>, 2011,2014
*
* See the end of the file for the License Information
*/
diff --git a/python/setup.py b/python/setup.py.in
index 8174f32..6457595 100755
--- a/python/setup.py
+++ b/python/setup.py.in
@@ -29,7 +29,7 @@ pwqmodule = Extension('pwquality',
setup(
name = 'pwquality',
- version = '0.9.1',
+ version = '@VERSION@',
description = 'Python bindings for the libpwquality library for password quality checking',
author = 'Tomáš Mráz',
author_email = 'tm@t8m.info',