From: Nathan Neulinger Date: Sun, 3 Mar 2019 17:29:15 +0000 (-0600) Subject: Notes about release process, clean up autogen X-Git-Tag: v2.9.7~7 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8c6afd93a7b1519acafd94a3e703e6a687a446bd;p=cracklib Notes about release process, clean up autogen --- diff --git a/README.release.md b/README.release.md index 093206b..e7f3678 100644 --- a/README.release.md +++ b/README.release.md @@ -11,4 +11,10 @@ for announcement, the moment to change the new version. At time of release, create ONE commit with all version numbers update in files and named for example "X.X.X". Create a tag of the name "vX.Y.Z" pointed to that commit and produce releases at that point -After the release, commit a change to put versions back to MAJOR.MINOR.(PATCH+1)-dev +To produce release binaries + 1) Start from a clean repo and run autogen.sh + 2) Configure and 'make dist' + 3) Make in cracklib words directory + 3) Upload the relevant binaries to a release on github attached to the tag that was already created above + +After the release, commit a change to put versions to MAJOR.MINOR.(PATCH+1)-dev diff --git a/src/Makefile.am b/src/Makefile.am index 8c176fe..97c82dd 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -7,6 +7,8 @@ EXTRA_DIST = \ README-LICENSE \ test-data +DIST_TARGETS=dist-gzip dist-bzip2 dist-zip + all-local: @echo @echo ======================================================= diff --git a/src/README-WORDS b/src/README-WORDS index 757cc92..a99bea6 100644 --- a/src/README-WORDS +++ b/src/README-WORDS @@ -21,3 +21,7 @@ For best results, supply cracklib with as large a wordlist as you have available to you - blackhats brute forcing passwords have those same lists, might as well use it to benefit your security. +There are HUGE (multi GB) wordlists available online with questionable +sources, but if you are looking for the most complete source, those +would be worth investigating. + diff --git a/src/autogen.sh b/src/autogen.sh index 12685b8..5c673b3 100755 --- a/src/autogen.sh +++ b/src/autogen.sh @@ -5,8 +5,8 @@ echo EXTRA_DIST = *.m4 > Makefile.am cd .. autoreconf -f -i -curl "http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD" > config.guess -curl "http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD" > config.sub +curl --silent "http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD" > config.guess +curl --silent "http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD" > config.sub #for f in "lt~obsolete.m4" "ltversion.m4" "ltsugar.m4" "ltoptions.m4" "libtool.m4"; do #curl "http://git.savannah.gnu.org/cgit/libtool.git/plain/m4/${f}?id=v2.4.2.418" > m4/${f}