]>
granicus.if.org Git - cracklib/log
Nathan Neulinger [Sat, 11 Apr 2015 17:20:53 +0000 (17:20 +0000)]
Expose more of the library functions
git-svn-id: file:///tmp/cracklib-svn/trunk@237
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Nathan Neulinger [Sat, 11 Apr 2015 17:20:39 +0000 (17:20 +0000)]
Expose more of the library functions
git-svn-id: file:///tmp/cracklib-svn/trunk@236
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Nathan Neulinger [Sun, 5 Oct 2014 16:00:45 +0000 (16:00 +0000)]
bump to 2.9.3 for future dev
git-svn-id: file:///tmp/cracklib-svn/trunk@235
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Nathan Neulinger [Sun, 5 Oct 2014 15:59:42 +0000 (15:59 +0000)]
drop back to 2.9.2, since that was never released
git-svn-id: file:///tmp/cracklib-svn/trunk@234
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Nathan Neulinger [Sun, 5 Oct 2014 15:59:18 +0000 (15:59 +0000)]
drop back to 2.9.2, since that was never released
git-svn-id: file:///tmp/cracklib-svn/trunk@233
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Nathan Neulinger [Sun, 5 Oct 2014 15:54:08 +0000 (15:54 +0000)]
bug 16 - prevblock checking is causing incorrect results, looks to be a perf optimization gone awry. Thanks to Russ Allbery for the report. Debian bug # 724570
git-svn-id: file:///tmp/cracklib-svn/trunk@232
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Nathan Neulinger [Sun, 5 Oct 2014 15:49:35 +0000 (15:49 +0000)]
bug 16 - prevblock checking is causing incorrect results, looks to be a perf optimization gone awry. Thanks to Russ Allbery for the report. Debian bug # 724570
git-svn-id: file:///tmp/cracklib-svn/trunk@231
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Jan Dittberner [Thu, 25 Sep 2014 16:48:36 +0000 (16:48 +0000)]
add fix for Python string distance calculation by Pascal Muetschard
git-svn-id: file:///tmp/cracklib-svn/trunk@230
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Nathan Neulinger [Fri, 30 May 2014 17:38:53 +0000 (17:38 +0000)]
bump version number
git-svn-id: file:///tmp/cracklib-svn/trunk@229
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Nathan Neulinger [Fri, 30 May 2014 17:35:32 +0000 (17:35 +0000)]
add patch from user for out of source tree building w/ python
git-svn-id: file:///tmp/cracklib-svn/trunk@228
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Nathan Neulinger [Fri, 6 Dec 2013 13:52:58 +0000 (13:52 +0000)]
fix NEWS
git-svn-id: file:///tmp/cracklib-svn/trunk@226
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Nathan Neulinger [Fri, 6 Dec 2013 13:51:48 +0000 (13:51 +0000)]
update for release
git-svn-id: file:///tmp/cracklib-svn/trunk@225
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Mike Frysinger [Thu, 20 Jun 2013 23:34:15 +0000 (23:34 +0000)]
deal with newer zlib and build time warnings
The cracklib packer does things like:
#ifdef HAVE_ZLIB_H
if (pdesc.flags & PFOR_USEZLIB)
gzclose(pdesc.dfp);
else
#endif
fclose(pdesc.dfp);
Where dfp and such are FILE* pointers. with newer zlib, we see warnings like:
packlib.c: In function 'PWOpen':
packlib.c:128:4: warning: passing argument 1 of 'gzclose' from incompatible
pointer type [enabled by default]
In file included from packlib.c:11:0:
/usr/include/zlib.h:1511:12: note: expected 'gzFile' but argument is of type
'struct FILE *'
packlib.c:165:4: warning: passing argument 1 of 'gzclose' from incompatible
pointer type [enabled by default]
This is because gzopen/gzclose use gzFile rather than FILE*.
Pne way to fix this would be to add (void*) casts to all zlib related funcs,
but that sucks. We could change these to unions like so:
typedef struct
{
union {
FILE *fp;
gzFile *gfp;
} dfp;
But that sucks because we'd have to update all the call points to use the
right union member. Another idea (which also sucks, but maybe less so) is to
change the pointer type to void*. This patch takes that route.
git-svn-id: file:///tmp/cracklib-svn/trunk@224
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Mike Frysinger [Sun, 2 Jun 2013 15:47:35 +0000 (15:47 +0000)]
move test helpers to check
this way a default `make` does not build these (as almost no one will be running them). for the few people who do, you can run `make check` to generate the binaries instead.
git-svn-id: file:///tmp/cracklib-svn/trunk@223
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Mike Frysinger [Sun, 2 Jun 2013 15:45:47 +0000 (15:45 +0000)]
use dist_ prefix rather than having to explicitly set EXTRA_DIST
git-svn-id: file:///tmp/cracklib-svn/trunk@222
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Mike Frysinger [Sun, 2 Jun 2013 15:44:58 +0000 (15:44 +0000)]
delete --with-x macro since we don't use X anywhere in this code base
git-svn-id: file:///tmp/cracklib-svn/trunk@221
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Mike Frysinger [Sun, 2 Jun 2013 15:32:30 +0000 (15:32 +0000)]
add a --with-zlib flag for people to control the optional zlib dep explicitly
git-svn-id: file:///tmp/cracklib-svn/trunk@220
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Mike Frysinger [Sun, 2 Jun 2013 01:53:38 +0000 (01:53 +0000)]
fix random whitespace damage
git-svn-id: file:///tmp/cracklib-svn/trunk@219
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Mike Frysinger [Sun, 2 Jun 2013 01:50:16 +0000 (01:50 +0000)]
more conversions to NULL
git-svn-id: file:///tmp/cracklib-svn/trunk@218
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Mike Frysinger [Sun, 2 Jun 2013 01:41:45 +0000 (01:41 +0000)]
use NULL in all places
we already use this in many places, and if your system does not support it, maybe it is time to upgrade
git-svn-id: file:///tmp/cracklib-svn/trunk@217
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Mike Frysinger [Sun, 2 Jun 2013 01:22:13 +0000 (01:22 +0000)]
move away from old AM_INIT_AUTOMAKE usage
configure.ac:3: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated.
git-svn-id: file:///tmp/cracklib-svn/trunk@216
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Mike Frysinger [Sun, 2 Jun 2013 01:12:09 +0000 (01:12 +0000)]
ignore generated config.cache file
git-svn-id: file:///tmp/cracklib-svn/trunk@215
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Mike Frysinger [Sun, 2 Jun 2013 01:08:09 +0000 (01:08 +0000)]
stop using old AM_CONFIG_HEADER macro
newer automake complains about this:
configure.in:4: error: AM_CONFIG_HEADER: this macro is obsolete.
You should use the AC_CONFIG_HEADERS macro instead.
git-svn-id: file:///tmp/cracklib-svn/trunk@214
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Mike Frysinger [Sun, 2 Jun 2013 01:04:25 +0000 (01:04 +0000)]
rename configure.ac file
newer automake complains when you use the old name configure.in
git-svn-id: file:///tmp/cracklib-svn/trunk@213
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Nathan Neulinger [Sat, 1 Jun 2013 14:58:32 +0000 (14:58 +0000)]
add patch from Enrico Scholz for FascistCheckUser, bump lib to 2.9.0
git-svn-id: file:///tmp/cracklib-svn/trunk@211
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Nathan Neulinger [Fri, 14 Dec 2012 22:13:35 +0000 (22:13 +0000)]
bump to 2.8.23
git-svn-id: file:///tmp/cracklib-svn/trunk@210
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Nathan Neulinger [Fri, 14 Dec 2012 22:10:00 +0000 (22:10 +0000)]
error return instead of exit - Nalin
git-svn-id: file:///tmp/cracklib-svn/trunk@208
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Nathan Neulinger [Thu, 13 Dec 2012 17:09:50 +0000 (17:09 +0000)]
bump to 2.8.22
git-svn-id: file:///tmp/cracklib-svn/trunk@207
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Nathan Neulinger [Thu, 13 Dec 2012 17:03:02 +0000 (17:03 +0000)]
export prototype for FascistLook function
git-svn-id: file:///tmp/cracklib-svn/trunk@205
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Nathan Neulinger [Sat, 8 Dec 2012 04:04:20 +0000 (04:04 +0000)]
regen and bump version
git-svn-id: file:///tmp/cracklib-svn/trunk@204
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Nathan Neulinger [Sat, 8 Dec 2012 03:57:46 +0000 (03:57 +0000)]
apply reccomendation of libtool
git-svn-id: file:///tmp/cracklib-svn/trunk@202
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Nathan Neulinger [Sat, 8 Dec 2012 03:56:31 +0000 (03:56 +0000)]
patch from Ivosh(iraisr) for small dictionary uninitialized buffer issue
git-svn-id: file:///tmp/cracklib-svn/trunk@201
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Jan Dittberner [Mon, 16 Jul 2012 11:46:10 +0000 (11:46 +0000)]
rename python/_cracklibmodule.c to python/_cracklib.c to support Python 3.3
git-svn-id: file:///tmp/cracklib-svn/trunk@200
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Mike Frysinger [Tue, 22 May 2012 20:30:51 +0000 (20:30 +0000)]
extract version from NEWS
Requires one less place to hardcode the version.
git-svn-id: file:///tmp/cracklib-svn/trunk@199
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Jan Dittberner [Sat, 19 May 2012 22:52:45 +0000 (22:52 +0000)]
add support for passing a dictionary path to Python test
git-svn-id: file:///tmp/cracklib-svn/trunk@198
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Jan Dittberner [Sat, 19 May 2012 21:03:50 +0000 (21:03 +0000)]
include python/test_cracklib.py in release tarball
git-svn-id: file:///tmp/cracklib-svn/trunk@197
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Mike Frysinger [Fri, 18 May 2012 18:40:28 +0000 (18:40 +0000)]
update gitignore
git-svn-id: file:///tmp/cracklib-svn/trunk@196
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Nathan Neulinger [Fri, 18 May 2012 16:29:14 +0000 (16:29 +0000)]
bump to 2.8.20
git-svn-id: file:///tmp/cracklib-svn/trunk@195
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Nathan Neulinger [Fri, 18 May 2012 16:21:33 +0000 (16:21 +0000)]
regenerated
git-svn-id: file:///tmp/cracklib-svn/trunk@193
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Jan Dittberner [Fri, 18 May 2012 13:55:17 +0000 (13:55 +0000)]
port Python binding to Python3
git-svn-id: file:///tmp/cracklib-svn/trunk@192
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Jan Dittberner [Fri, 18 May 2012 13:54:50 +0000 (13:54 +0000)]
add test suite for Python binding
- add unit test suite for Python binding
- make Python syntax 2to3 compatible to allow Python3 porting
- use @top_builddir@ to reference lib in python/setup.py.in
git-svn-id: file:///tmp/cracklib-svn/trunk@191
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Mike Frysinger [Thu, 16 Feb 2012 05:04:17 +0000 (05:04 +0000)]
include sys/stat.h in python code since we use "struct stat"
git-svn-id: file:///tmp/cracklib-svn/trunk@190
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Jan Dittberner [Fri, 27 Jan 2012 16:23:09 +0000 (16:23 +0000)]
add "The Top 500 Worst Passwords of All Time" to dicts/cracklib-small
git-svn-id: file:///tmp/cracklib-svn/trunk@189
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Jan Dittberner [Tue, 5 Oct 2010 14:21:12 +0000 (14:21 +0000)]
update NEWS to reflect Mike's changes
git-svn-id: file:///tmp/cracklib-svn/trunk@188
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Mike Frysinger [Sun, 3 Oct 2010 19:32:36 +0000 (19:32 +0000)]
drop AC_PROG_RANLIB as libtool takes care of it
git-svn-id: file:///tmp/cracklib-svn/trunk@187
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Mike Frysinger [Sun, 3 Oct 2010 19:31:15 +0000 (19:31 +0000)]
ignore more generated gettext files
git-svn-id: file:///tmp/cracklib-svn/trunk@186
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Mike Frysinger [Sun, 3 Oct 2010 19:29:39 +0000 (19:29 +0000)]
remove generated gettext files
git-svn-id: file:///tmp/cracklib-svn/trunk@185
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Mike Frysinger [Wed, 29 Sep 2010 22:30:24 +0000 (22:30 +0000)]
add some gitignores
git-svn-id: file:///tmp/cracklib-svn/trunk@184
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Nathan Neulinger [Wed, 29 Sep 2010 15:01:34 +0000 (15:01 +0000)]
bump to 2.8.19
git-svn-id: file:///tmp/cracklib-svn/trunk@183
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Nathan Neulinger [Wed, 29 Sep 2010 15:00:40 +0000 (15:00 +0000)]
change to match version number string
git-svn-id: file:///tmp/cracklib-svn/trunk@182
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Nathan Neulinger [Wed, 29 Sep 2010 15:00:16 +0000 (15:00 +0000)]
make pastable
git-svn-id: file:///tmp/cracklib-svn/trunk@181
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Nathan Neulinger [Tue, 28 Sep 2010 22:43:29 +0000 (22:43 +0000)]
apply patch for lib selection for python
git-svn-id: file:///tmp/cracklib-svn/trunk@179
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Nathan Neulinger [Tue, 28 Sep 2010 20:45:43 +0000 (20:45 +0000)]
also include stdlib.h
git-svn-id: file:///tmp/cracklib-svn/trunk@178
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Nathan Neulinger [Tue, 28 Sep 2010 16:16:21 +0000 (16:16 +0000)]
update to 2.8.18
git-svn-id: file:///tmp/cracklib-svn/trunk@177
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Nathan Neulinger [Tue, 28 Sep 2010 15:50:13 +0000 (15:50 +0000)]
wrap nls includes/calls in python module
git-svn-id: file:///tmp/cracklib-svn/trunk@175
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Jan Dittberner [Wed, 22 Sep 2010 07:58:23 +0000 (07:58 +0000)]
updated Wei Liu (zh_CN) translation (Leah Liu)
git-svn-id: file:///tmp/cracklib-svn/trunk@174
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Jan Dittberner [Fri, 10 Sep 2010 18:55:00 +0000 (18:55 +0000)]
add -Wall to AM_CFLAGS to discover possible programming errors
git-svn-id: file:///tmp/cracklib-svn/trunk@173
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Jan Dittberner [Fri, 10 Sep 2010 16:11:07 +0000 (16:11 +0000)]
Fix a segmentation fault in the Python extension by initializing *defaultdict
with NULL. Thanks for Peter Palfrader for the patch in the Debian BTS.
git-svn-id: file:///tmp/cracklib-svn/trunk@172
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Jan Dittberner [Thu, 13 May 2010 09:50:06 +0000 (09:50 +0000)]
updated Hindi translation (Rajesh Ranjan)
git-svn-id: file:///tmp/cracklib-svn/trunk@171
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Nathan Neulinger [Fri, 23 Apr 2010 19:05:06 +0000 (19:05 +0000)]
apply interix compilation fix
git-svn-id: file:///tmp/cracklib-svn/trunk@170
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Nathan Neulinger [Fri, 23 Apr 2010 19:04:27 +0000 (19:04 +0000)]
apply interix compilation fix
git-svn-id: file:///tmp/cracklib-svn/trunk@169
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Jan Dittberner [Fri, 16 Apr 2010 17:56:55 +0000 (17:56 +0000)]
add Ukrainian translation by Yuri Chornoivan
git-svn-id: file:///tmp/cracklib-svn/trunk@168
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Nathan Neulinger [Thu, 8 Apr 2010 14:56:13 +0000 (14:56 +0000)]
fix incorrect nls fix
git-svn-id: file:///tmp/cracklib-svn/trunk@167
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Nathan Neulinger [Thu, 8 Apr 2010 14:50:32 +0000 (14:50 +0000)]
add note bout nls fix
git-svn-id: file:///tmp/cracklib-svn/trunk@166
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Nathan Neulinger [Thu, 8 Apr 2010 14:48:04 +0000 (14:48 +0000)]
wrap NLS function calls
git-svn-id: file:///tmp/cracklib-svn/trunk@165
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Nathan Neulinger [Wed, 3 Mar 2010 03:06:54 +0000 (03:06 +0000)]
bump version
git-svn-id: file:///tmp/cracklib-svn/trunk@164
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Nathan Neulinger [Wed, 3 Mar 2010 03:02:00 +0000 (03:02 +0000)]
update after build, reflects new line numbers
git-svn-id: file:///tmp/cracklib-svn/trunk@162
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Nathan Neulinger [Tue, 2 Mar 2010 02:50:08 +0000 (02:50 +0000)]
patch from Ben Karsin for improved repetition/systematic checking
git-svn-id: file:///tmp/cracklib-svn/trunk@161
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Jan Dittberner [Sun, 14 Feb 2010 18:16:33 +0000 (18:16 +0000)]
packer: fix printf modifiers to match types used
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
git-svn-id: file:///tmp/cracklib-svn/trunk@160
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Jan Dittberner [Sun, 14 Feb 2010 18:02:04 +0000 (18:02 +0000)]
apply patch for #
2907104 by Nalin Dahyabhai
https://sourceforge.net/tracker/index.php?func=detail&aid=
2907104 &group_id=130213&atid=717300
git-svn-id: file:///tmp/cracklib-svn/trunk@159
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Jan Dittberner [Thu, 3 Dec 2009 21:47:21 +0000 (21:47 +0000)]
updated Russion translation
git-svn-id: file:///tmp/cracklib-svn/trunk@158
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Jan Dittberner [Mon, 23 Nov 2009 08:47:15 +0000 (08:47 +0000)]
add Korean translation by Eunju Kim
git-svn-id: file:///tmp/cracklib-svn/trunk@157
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Jan Dittberner [Sun, 22 Nov 2009 21:15:51 +0000 (21:15 +0000)]
add Hindi translation to configure.in, update NEWS
git-svn-id: file:///tmp/cracklib-svn/trunk@156
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Jan Dittberner [Sun, 22 Nov 2009 21:15:33 +0000 (21:15 +0000)]
translation to Hindi
Signed-off-by: Jan Dittberner <jan@dittberner.info>
git-svn-id: file:///tmp/cracklib-svn/trunk@155
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Jan Dittberner [Sun, 22 Nov 2009 15:14:57 +0000 (15:14 +0000)]
Python binding improvements
* include libintl.h to fix warning
* add a long description an an Operating System classifier
* add setup.cfg to allow development releases
* update NEWS
git-svn-id: file:///tmp/cracklib-svn/trunk@154
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Jan Dittberner [Sat, 21 Nov 2009 20:01:19 +0000 (20:01 +0000)]
improve svn:ignore metadata
git-svn-id: file:///tmp/cracklib-svn/trunk@153
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Jan Dittberner [Sat, 21 Nov 2009 19:45:44 +0000 (19:45 +0000)]
use translations in Python extension, replace tabs with spaces in NEWS
* python/_cracklibmodule.c:
- add calls to gettext functions to use cracklib's translations
* NEWS:
- note change to Python extension
- replace tabs with spaces
git-svn-id: file:///tmp/cracklib-svn/trunk@152
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Jan Dittberner [Thu, 19 Nov 2009 14:59:07 +0000 (14:59 +0000)]
update licensing and copyright information in Python extension
git-svn-id: file:///tmp/cracklib-svn/trunk@151
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Nathan Neulinger [Thu, 19 Nov 2009 00:15:21 +0000 (00:15 +0000)]
new vers
git-svn-id: file:///tmp/cracklib-svn/trunk@150
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Nathan Neulinger [Thu, 19 Nov 2009 00:13:49 +0000 (00:13 +0000)]
update notes
git-svn-id: file:///tmp/cracklib-svn/trunk@148
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Nathan Neulinger [Thu, 19 Nov 2009 00:07:41 +0000 (00:07 +0000)]
update to reflect licensing change and include discussion in the readme file
git-svn-id: file:///tmp/cracklib-svn/trunk@147
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Jan Dittberner [Wed, 18 Nov 2009 20:00:32 +0000 (20:00 +0000)]
fix typo in Python extension's trove classification
git-svn-id: file:///tmp/cracklib-svn/trunk@146
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Jan Dittberner [Wed, 18 Nov 2009 19:39:15 +0000 (19:39 +0000)]
make Python extension buildable outside source folder
git-svn-id: file:///tmp/cracklib-svn/trunk@145
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Nathan Neulinger [Wed, 18 Nov 2009 15:46:18 +0000 (15:46 +0000)]
bump to 2.8.15 and add notes about release process
git-svn-id: file:///tmp/cracklib-svn/trunk@144
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Jan Dittberner [Wed, 18 Nov 2009 15:32:22 +0000 (15:32 +0000)]
add support for Python setuptools
* add a function GetDefaultCracklibDict() to libcrack
* bump library version to 2.8.1
* add python/setup.py.in to allow building eggs
git-svn-id: file:///tmp/cracklib-svn/trunk@142
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Jan Dittberner [Wed, 18 Nov 2009 11:39:34 +0000 (11:39 +0000)]
add Bengali India translation by Runa Bhattacharjee
git-svn-id: file:///tmp/cracklib-svn/trunk@141
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Jan Dittberner [Tue, 17 Nov 2009 19:39:20 +0000 (19:39 +0000)]
update Panjabi translation (A S Alam)
git-svn-id: file:///tmp/cracklib-svn/trunk@140
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Jan Dittberner [Mon, 16 Nov 2009 20:20:57 +0000 (20:20 +0000)]
Added Assamese translation by Amitakhya Phukan
git-svn-id: file:///tmp/cracklib-svn/trunk@139
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Jan Dittberner [Mon, 16 Nov 2009 20:19:58 +0000 (20:19 +0000)]
Added Tamil translation by I. Felix
git-svn-id: file:///tmp/cracklib-svn/trunk@138
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Jan Dittberner [Mon, 16 Nov 2009 20:18:42 +0000 (20:18 +0000)]
Added Malayalam translation by Ani Peter
git-svn-id: file:///tmp/cracklib-svn/trunk@137
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Jan Dittberner [Mon, 16 Nov 2009 20:16:52 +0000 (20:16 +0000)]
Added Oriya translation (Manoj Giri)
git-svn-id: file:///tmp/cracklib-svn/trunk@136
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Jan Dittberner [Mon, 16 Nov 2009 20:15:52 +0000 (20:15 +0000)]
updated Panjabi translation by Jaswinder Singh
git-svn-id: file:///tmp/cracklib-svn/trunk@135
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Jan Dittberner [Sun, 15 Nov 2009 14:15:15 +0000 (14:15 +0000)]
remove generated po/stamp-po
git-svn-id: file:///tmp/cracklib-svn/trunk@134
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Jan Dittberner [Sun, 15 Nov 2009 14:10:20 +0000 (14:10 +0000)]
fix several CC warnings (taken from Debian)
git-svn-id: file:///tmp/cracklib-svn/trunk@133
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Jan Dittberner [Sun, 15 Nov 2009 14:09:54 +0000 (14:09 +0000)]
optimize order of commands in cracklib-format (taken from Debian)
git-svn-id: file:///tmp/cracklib-svn/trunk@132
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Jan Dittberner [Sat, 14 Nov 2009 22:50:55 +0000 (22:50 +0000)]
rename kn_IN.po to kn.po (Closes: #
2884486 )
git-svn-id: file:///tmp/cracklib-svn/trunk@131
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Jan Dittberner [Sat, 14 Nov 2009 11:43:47 +0000 (11:43 +0000)]
add Telugu translation
git-svn-id: file:///tmp/cracklib-svn/trunk@130
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Jan Dittberner [Thu, 12 Nov 2009 09:42:41 +0000 (09:42 +0000)]
mr translation with UTF-8 encoding
git-svn-id: file:///tmp/cracklib-svn/trunk@129
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Jan Dittberner [Wed, 11 Nov 2009 18:18:05 +0000 (18:18 +0000)]
add Marathi translation by Sandeep Shedmake <sshedmak@redhat.com>
git-svn-id: file:///tmp/cracklib-svn/trunk@128
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533
Jan Dittberner [Thu, 22 Oct 2009 16:43:46 +0000 (16:43 +0000)]
translation updates
- specify charset in russian translation to avoid losing translated
messages
- run msgmerge
- refresh plural forms in gu.po
- update line numbers in po/tr.po
- remove empty lines in po/kn_IN.po
git-svn-id: file:///tmp/cracklib-svn/trunk@127
4175fe1e -86d5-4fdc-8e6a-
506fab9d8533