Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
1.9.0.j.1_1 30 Jun 2023 10:26:42
    |
Alexey Dokuchaev (danfe)  |
security/john: backport upstream patch to fix the build against Clang 16
Reported by: pkg-fallout |
1.9.0.j.1_1 22 Feb 2023 20:51:40
    |
Piotr Kubaj (pkubaj)  |
security/john: merge upstream patch for powerpc64 build failure
Allows to drop -mvsx. |
1.9.0.j.1 12 Feb 2023 17:55:54
    |
Piotr Kubaj (pkubaj)  |
security/john: fix build on powerpc64
./pseudo_intrinsics.h:110:25: error: use of 'long long' with '__vector' requires
VSX support (available on POWER7 or later) to be enabled |
1.9.0.j.1 29 Oct 2022 03:44:46
    |
Alexey Dokuchaev (danfe)  |
security/john: allow to build JtR with OpenMPI support
PR: 254922 |
1.9.0.j.1 19 Oct 2022 07:48:36
    |
Alexey Dokuchaev (danfe)  |
security/john: try to fix the port's build on AArch64
In commit 1e6670382fbb, the observed failure on PowerPC had been
mended in a way that broke AArch64 build. Robert's investigation
had shown that <altivec.h> should've been included elsewhere, and
it actually is, but guarded by `#ifdef __linux__' for some reason.
Alexander explained that at the time the AltiVec support was just
for two platforms: macOS (first) and Linux (added later). If the
guard of `#include <altivec.h>' was needed, then we could probably
replace the `#ifdef __linux__' with `#ifndef __APPLE__' for the
same effect on old macOS versions which do not need the #include.
PR: 266732
Submitted by: Robert Clausecker
Discussed with: Solar Designer |
1.9.0.j.1 30 Sep 2022 18:11:46
    |
Alexey Dokuchaev (danfe)  |
security/john: attempt to fix the build on armv7
This is from upstream commit c9825e6 which improves
ARM pseudo-intrinsics portability.
PR: 266729
Submitted by: Robert Clausecker |
07 Sep 2022 21:58:51
    |
Stefan Eßer (se)  |
Remove WWW entries moved into port Makefiles
Commit b7f05445c00f has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner) |
1.9.0.j.1 07 Sep 2022 21:10:59
    |
Stefan Eßer (se)  |
Add WWW entries to port Makefiles
It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.
Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.
There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.
(Only the first 15 lines of the commit message are shown above ) |
1.9.0.j.1 20 Jul 2022 14:22:56
    |
Tobias C. Berner (tcberner)  |
security: remove 'Created by' lines
A big Thank You to the original contributors of these ports:
* <ports@c0decafe.net>
* Aaron Dalton <aaron@FreeBSD.org>
* Adam Weinberger <adamw@FreeBSD.org>
* Ade Lovett <ade@FreeBSD.org>
* Aldis Berjoza <aldis@bsdroot.lv>
* Alex Dupre <ale@FreeBSD.org>
* Alex Kapranoff <kappa@rambler-co.ru>
* Alex Samorukov <samm@freebsd.org>
* Alexander Botero-Lowry <alex@foxybanana.com>
* Alexander Kriventsov <avk@vl.ru>
* Alexander Leidinger <netchild@FreeBSD.org> (Only the first 15 lines of the commit message are shown above ) |
1.9.0.j.1 27 Apr 2022 13:18:55
    |
Piotr Kubaj (pkubaj)  |
security/john: enable simd on powerpc |
1.9.0.j.1 22 Jan 2022 13:33:26
    |
Piotr Kubaj (pkubaj)  |
security/john: fix build on powerpc
Disable simd code, it seems it's written specifically for 64-bits. |
1.9.0.j.1 12 Dec 2021 23:28:35
    |
Piotr Kubaj (pkubaj)  |
security/john: fix build on powerpc64*
cc -DAC_BUILT -maltivec -mvsx -mpower8-vector -DJOHN_ALTIVEC -c -m64 -O2 -pipe
-fstack-protector-strong -fno-strict-aliasing -I/usr/local/include
-I/usr/include -DARCH_LITTLE_ENDIAN=1 -DJOHN_SYSTEMWIDE
-DJOHN_SYSTEMWIDE_EXEC='"/usr/local/bin"'
-DJOHN_SYSTEMWIDE_HOME='"/usr/local/share/john"' -DJOHN_SYSTEMWIDE=1 -Wall
-Wno-tautological-constant-out-of-range-compare -fno-omit-frame-pointer
-Wno-deprecated-declarations -Wformat-extra-args -Qunused-arguments -std=gnu89
-Wdate-time -D__BSD_VISIBLE -I/usr/include -fopenmp -D_THREAD_SAFE -pthread
-I/usr/local/include -DCL_SILENCE_DEPRECATION -finline-functions
-fno-strict-aliasing -maltivec DES_bs_b.c
In file included from DES_bs_b.c:620:
./sboxes-s.c:59:2: warning: implicit declaration of function 'vec_sel'
[-Wimplicit-function-declaration]
vsel(x0F0F3333, a3, a2, a5);
^
DES_bs_b.c:117:10: note: expanded from macro 'vsel'
(dst) = vec_sel((a), (b), (vector bool int)(c))
^
In file included from DES_bs_b.c:620:
./sboxes-s.c:59:2: error: assigning to 'vtype' (vector of 4 'int' values) from
incompatible type 'int'
vsel(x0F0F3333, a3, a2, a5);
^~~~~~~~~~~~~~~~~~~~~~~~~~~
DES_bs_b.c:117:8: note: expanded from macro 'vsel'
(dst) = vec_sel((a), (b), (vector bool int)(c))
^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
1.9.0.j.1 26 Nov 2021 07:34:25
    |
Alexey Dokuchaev (danfe)  |
security/john: belatedly update JtR to version 1.9.0-jumbo-1
Despite what Solar Designer had said earlier, community enhancements
were not offered as separate patch, so the top comment about JUMBO
option still stands.
Because supported SIMD features are detected during configure, force
SSE2 for x86 packages as reasonable default which most modern CPUs
should support these days. Ideally we should probably do several build
rounds and produce binaries targeting different SIMD features (e.g.
like Arch Linux is doing this), but that's the task for another day.
Actualize the lists of binaries and symlinks (some programs had become
standalone, others had been converted to scripts offered as extras).
Drop BROKEN_mips64: it was added in r425682 five years ago for a
different version, since then similar breakage for aarch64 had been
fixed, and looking at the configure script, mips64 should be supported
(even if it's really not, that particular error message is no longer
accurate per grepping the sources).
Adjust LICENSE (GPLv2 or later) and fix the build with OpenCL support.
PR: 247229, 254922 |
1.8.0.j.1_6 06 Apr 2021 14:31:07
    |
Mathieu Arnold (mat)  |
Remove # $FreeBSD$ from Makefiles. |
1.8.0.j.1_6 26 Jul 2019 20:46:57
  |
gerald  |
Bump PORTREVISION for ports depending on the canonical version of GCC
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3
to GCC 9.1 under most circumstances now after revision 507371.
This includes ports
- with USE_GCC=yes or USE_GCC=any,
- with USES=fortran,
- using Mk/bsd.octave.mk which in turn features USES=fortran, and
- with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang,
c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib
plus, everything INDEX-11 shows with a dependency on lang/gcc9 now.
PR: 238330 |
1.8.0.j.1_5 03 May 2019 21:06:51
  |
linimon  |
These ports now build on aarch64.
Where necessary, pet portlint.
Approved by: portmgr
Obtained from: aarch64 TRYBROKEN run |
1.8.0.j.1_5 08 Mar 2019 12:12:57
  |
danfe  |
Do a little spring cleaning:
- Drop the note that we prefer -jumbo (community-enhanced) versions
instead of vanilla JtR releases and accompanying PORTSCOUT knob,
add a nota bene to handle this with next JtR version update
- Remove broken mirror (gd.tuwien.ac.at) from the MASTER_SITES
- Remove BROKEN_SSL knob, it should build fine after recent changes
- Shorten BROKEN_$arch messages and fix a minor typo there
- While Solar Designer recommends to pass JOHN_SYSTEMWIDE_HOME and
JOHN_SYSTEMWIDE_EXEC overrides via command line, in practice it
is easier and cleaner (avoids plenty of those ``warning: missing
terminating '"' character [-Winvalid-pp-token]'' messages during
configure stage) to patch `params.h' file in place, so do it
- For JOHN_SYSTEMWIDE=1, pass it via environment (as CFLAGS_EXTRA)
instead of appending to global CFLAGS value
- GC `pfx2john' symlink (should've been part of r494924) |
1.8.0.j.1_5 08 Mar 2019 08:59:21
  |
danfe  |
Drop the raw SHA-0 format, it's unlikely anyone will ever need it.
Obtained from: https://github.com/magnumripper/JohnTheRipper/commit/40f0aae |
1.8.0.j.1_5 07 Mar 2019 15:02:36
  |
danfe  |
Drop OpenSSL dependency from WPA-PSK format support code.
Obtained from: https://github.com/magnumripper/JohnTheRipper/commit/a286ca6 |
1.8.0.j.1_5 07 Mar 2019 14:21:41
  |
danfe  |
Stop using (old) OpenSSL EVP in RAR3 format support code.
Obtained from: https://github.com/magnumripper/JohnTheRipper/commit/6fcc147 |
1.8.0.j.1_5 07 Mar 2019 14:09:36
  |
danfe  |
Unbreak GPG format plugin against newer versions of OpenSSL.
Obtained from: https://github.com/magnumripper/JohnTheRipper/commit/c0557e7 |
1.8.0.j.1_5 07 Mar 2019 13:46:10
  |
danfe  |
- Replace OpenSSL HMAC-SHA1 code with JtR own code
- Remove use of EVP in favor of the low-level API
- Add generic check_pkcs_pad() function in jumbo.c
Obtained from: https://github.com/magnumripper/JohnTheRipper/commit/f837171
https://github.com/magnumripper/JohnTheRipper/commit/04d2b35 |
1.8.0.j.1_5 07 Mar 2019 12:03:20
  |
danfe  |
- Replace OpenSSL HMAC-SHA1 code with JtR code
- Fix the build against newer OpenSSL versions
Obtained from: https://github.com/magnumripper/JohnTheRipper/commit/9a5c84c
https://github.com/magnumripper/JohnTheRipper/commit/aaeff8b |
1.8.0.j.1_5 07 Mar 2019 11:37:55
  |
danfe  |
- Drop PFX support code: incompatible with newer OpenSSL versions
- Remove `ssh_fmt_plug.c' file (should've been part of r494696)
Obtained from: https://github.com/magnumripper/JohnTheRipper/commit/12e8d57 |
1.8.0.j.1_5 05 Mar 2019 13:44:23
  |
danfe  |
Drop OpenSSL EVP high-level crap in favor of their own AES implementation
in Bitcoin format converter.
Obtained from: https://github.com/magnumripper/JohnTheRipper/commit/0e2beec |
1.8.0.j.1_5 05 Mar 2019 12:33:01
  |
danfe  |
- Remove SSH private keys format converter which is dead upstream, users
should use `sshng2john.py' script instead
- Add a comment about how we should handle -jumbo versions in the future
Obtained from: https://github.com/magnumripper/JohnTheRipper/commit/7a71705 |
1.8.0.j.1_5 12 Dec 2018 01:35:36
  |
gerald  |
Bump PORTREVISION for ports depending on the canonical version of GCC
defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t
GCC 8.2 under most circumstances.
This includes ports
- with USE_GCC=yes or USE_GCC=any,
- with USES=fortran,
- using Mk/bsd.octave.mk which in turn features USES=fortran, and
- with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang,
c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib
plus, as a double check, everything INDEX-11 showed depending on lang/gcc7.
PR: 231590 |
1.8.0.j.1_4 10 Nov 2018 10:09:49
  |
mat  |
security/openssl-devel was removed, but there is a security/openssl111 now. |
1.8.0.j.1_4 29 Jul 2018 22:18:46
  |
gerald  |
Bump PORTREVISION for ports depending on the canonical version of GCC
in the ports tree (via Mk/bsd.default-versions.mk and lang/gcc) which
has now moved from GCC 6 to GCC 7 by default.
This includes ports
- featuring USE_GCC=yes or USE_GCC=any,
- featuring USES=fortran,
- using Mk/bsd.octave.mk which in turn features USES=fortran, and those
- with USES=compiler specifying one of openmp, nestedfct, c11, c++0x,
c++11-lib, c++11-lang, c++14-lang, c++17-lang, or gcc-c++11-lib.
PR: 222542 |
1.8.0.j.1_3 24 Mar 2018 14:15:56
  |
gerald  |
- Simplify reference to ibiblio.org MASTER_SITE.
- Fully sort pkg-plist.
Approved by: danfe (maintainer) |
1.8.0.j.1_3 17 Feb 2018 12:00:53
  |
sunpoet  |
Use BROKEN_SSL
Approved by: portmgr (blanket) |
1.8.0.j.1_3 10 Sep 2017 20:55:39
  |
gerald  |
Bump PORTREVISION for ports depending on the canonical version of GCC
(via Mk/bsd.default-versions.mk and lang/gcc) which has moved from
GCC 5.4 to GCC 6.4 under most circumstances.
This includes ports
- with USE_GCC=yes or USE_GCC=any,
- with USES=fortran,
- using Mk/bsd.octave.mk which in turn features USES=fortran, and
- with USES=compiler specifying openmp, nestedfct, c++11-lib, c++11-lang,
c++14-lang, c++0x, c11, or gcc-c++11-lib.
PR: 219275 |
1.8.0.j.1_2 01 Apr 2017 15:23:32
  |
gerald  |
Bump PORTREVISIONs for ports depending on the canonical version of GCC and
lang/gcc which have moved from GCC 4.9.4 to GCC 5.4 (at least under some
circumstances such as versions of FreeBSD or platforms).
This includes ports
- with USE_GCC=yes or USE_GCC=any,
- with USES=fortran,
- using using Mk/bsd.octave.mk which in turn has USES=fortran, and
- with USES=compiler specifying openmp, nestedfct, c++11-lib, c++14-lang,
c++11-lang, c++0x, c11, or gcc-c++11-lib.
PR: 216707 |
1.8.0.j.1_1 05 Jan 2017 11:00:50
  |
amdmi3  |
Remove always-true/false conditions after 9.x, 10.[12] EOL
While here, couple minor fixes
portmgr blanket |
1.8.0.j.1_1 29 Nov 2016 18:46:22
  |
mat  |
Mark some ports as not openssl-devel ready.
Sponsored by: Absolight |
1.8.0.j.1_1 20 Nov 2016 09:38:09
  |
gerald  |
Bump PORTREVISIONS for ports depending on the canonical version of GCC and
lang/gcc which have moved from GCC 4.8.5 to GCC 4.9.4 (at least under some
circumstances such as versions of FreeBSD or platforms).
In particular that is ports with USE_GCC=yes, USE_GCC=any, or one of
gcc-c++11-lib, openmp, nestedfct, c++11-lib as well as c++14-lang,
c++11-lang, c++0x, c11 requested via USES=compiler. |
1.8.0.j.1 14 Nov 2016 06:41:47
  |
danfe  |
- Fix the build against LibreSSL: put back safety belts added in r382632,
expanding them to cover newly added files, and augment OPENSSL_NO_SHA0
patch to avoid linking error
- Restore `-flax-vector-conversions' option required on pre-Clang systems
that was erroneously removed in r425958
PR: 214459 |
1.8.0.j.1 12 Nov 2016 15:16:56
  |
danfe  |
- Update `security/john' to 1.8.0-jumbo-1 (long overdue)
- Remove no longer needed build-related logic since they moved to GNU
autotools' based build
- Disable OPENMP option for the moment; it will be reintroduced with
others (e.g. OpenCL) in a separate commit
- Add upstream patch to fix the build on non-x86 architectures [2]
- Do not define _POSIX_SOURCE when compiling wordlist.c: this results
in broken JtR binary at least on i386
- Define JOHN_SYSTEMWIDE_EXEC for the future when we start to provide
fall-back binaries
- Stop moving john.conf to /etc. We're not doing it for other *.conf
files anyway (the include files); JtR is smart enough to locate its
configuration files properly when built in system-wide mode [1]
- Install full set of documentation files included with -jumbo
- Remove `xtract' symlink which hasn't been part of JtR for more than
a decade; install more useful symlinks (unafs, unique, other un* and
*2john) that were added in -jumbo instead
- Previously *.pl, *.rb, and *.py scripts were installed into DATADIR;
Alexander wanted to see them along with the documentation, but that
goes a bit too far; put them in ${DATADIR}/extra for the time being
PR: 197172 [1]
Obtained from: http://www.openwall.com/lists/john-dev/2014/12/18/21 [2] |
1.7.9.j.7_2 08 Nov 2016 19:29:57
  |
linimon  |
The 64-bit arm arch is actually spelled 'aarch64', not 'arm64'. |
1.7.9.j.7_2 08 Nov 2016 04:15:49
  |
linimon  |
Mark broken on arm64 and mips64.
Approved by: portmgr (tier-2 blanket) |
1.7.9.j.7_2 03 Nov 2016 16:34:22
  |
linimon  |
Now builds on sparc64.
Approved by: portmgr (tier-2 blanket) |
1.7.9.j.7_2 12 Sep 2016 05:05:33
  |
marino  |
security/john: Handle SLL libraries without SHA0 (e.g. LibreSSL)
Approved by: SSL blanket |
1.7.9.j.7_2 10 Apr 2016 09:41:20
  |
bapt  |
Convert to @sample |
1.7.9.j.7_2 16 Jan 2016 19:25:48
  |
pi  |
security/john: Fix OPENMP option having no effect
PR: 204903
Submitted by: John W. O'Brien <john@saltant.com>, w.schwarzenfeld@aon.at
Approved by: danfe (maintainer timeout) |
1.7.9.j.7_1 30 Mar 2015 03:04:25
  |
danfe  |
Replace methods and types that were marked deprecated by OpenSSL 0.9.7
and will be removed in OpenSSL 1.1.0.
PR: 198348, 198352
Submitted by: Bernard Spil |
1.7.9.j.7_1 15 Jan 2015 20:00:10
  |
ak  |
- Remove vestiges of alpha support
Approved by: portmgr (erwin) |
1.7.9.j.7_1 15 Jan 2015 09:05:38
  |
tijl  |
Add missing USE_OPENSSL=yes
PR: 195796 |
1.7.9.j.7 13 Nov 2014 09:02:57
  |
antoine  |
Cleanup plist |
1.7.9.j.7 29 Jul 2014 18:41:17
  |
adamw  |
Convert a bunch of USE_BZIP2 to USES=tar:bzip2
Approved by: portmgr (not really, but touches unstaged ports) |
1.7.9.j.7 05 May 2014 15:04:39
  |
marino  |
Replace "${OPSYS:tl}" with "freebsd" on 4 ports
The following 4 ports will not build correctly if certain variables
are not defined as "freebsd". Defining them as "${OPSYS:tl}" caused
breakage on DragonFly for various reasons. Harding the variables are
a no-op for FreeBSD but fixes the ports on DragonFly.
* games/ioquake3
* graphics/opendx
* science/cdf
* security/john
approved by: portmgr (bapt) |
1.7.9.j.7 05 May 2014 09:45:37
  |
bapt  |
Convert all :U to :tu and :L to :tl
Since FreeBSD 8.4 and FreeBSD 9.1 make(1) do support :tu and :tl as a
replacement for :U and :L (which has been marked as deprecated)
bmake which is the default on FreeBSD 10+ only support by default
:tu/:tl a hack has been added at the time to support :U and :L to ease
migration. This hack is now not necessary anymore
Note that this makes the ports tree incompatible with make(1) from
FreeBSD 8.3 or earlier
With hat: portmgr |
1.7.9.j.7 31 Dec 2013 10:45:48
  |
mat  |
- Update from 1.7.9-jumbo-5 to 1.7.9-jumbo-7 [1]
- Support staging
- Minor fixes
maintainer timeout [1]
PR: ports/180794, ports/185246 [1]
Submitted by: Hung-Yi Chen, Royce Williams [1] |
1.7.9.j.5 20 Sep 2013 22:55:26
  |
bapt  |
Add NO_STAGE all over the place in preparation for the staging support (cat:
security) |
1.7.9.j.5 29 Apr 2013 11:31:39
  |
bdrewery  |
Fix build |
1.7.9.j.5 28 Apr 2013 21:02:40
  |
bapt  |
Convert security to new options framework |
1.7.9.j.5 08 Jan 2012 11:21:17
 |
danfe  |
- Update to version 1.7.9-jumbo-5
- Add an OPTION to build with OpenMP support (disabled by default)
- Adjust `pre-build' target message to mention OpenMP support (with/without)
- Fix overly aggressive CFLAGS patching via REINPLACE_CMD
- Remove unneeded global modifiers from sed(1) expressions and kill one
superfluous empty line while I am here |
1.7.8.j.8 08 Jan 2012 11:16:08
 |
danfe  |
Expand 11 (number) into `eleven' (word) to make port description look better. |
1.7.8.j.8 17 Dec 2011 17:27:12
 |
danfe  |
Limit PORTSCOUT version check to -jumbo releases and explain why. |
1.7.8.j.8 10 Nov 2011 02:00:43
 |
danfe  |
Update to shiny new version 1.7.8-jumbo-8, most notably featuring optional
OpenMP to parallelize MD5-based crypt(3) and Apache $apr1$ when using SSE2,
as announced here: http://www.openwall.com/lists/john-users/2011/11/09/1
Submitted by: Royce Williams |
1.7.8.j.7 11 Oct 2011 14:52:07
 |
danfe  |
Mention number of extra hash and cipher types of community-enhanced version. |
1.7.8.j.7 11 Oct 2011 14:44:06
 |
danfe  |
- Update to version 1.7.8-jumbo-7. Unfortunately, GNU make is required now,
as the build fails with BSD make
- Install mailer script and auxiliary configuration files for the sake of
completeness |
1.7.7.j.6 22 Jun 2011 08:10:35
 |
danfe  |
Update to 1.7.7-jumbo-6 (community-enhanced version). |
1.7.6_3 13 Feb 2011 14:12:22
 |
danfe  |
- Update jumbo patch to version 11
- Add LICENSE (GPLv2) |
1.7.6_2 15 Dec 2010 14:41:40
 |
danfe  |
Update jumbo patch to version 9. |
1.7.6_1 06 Nov 2010 13:33:56
 |
danfe  |
- Update jumbo patch to version 7
- Drop MD5 hashes from distinfo
Reported by: sat |
1.7.6 22 Jun 2010 02:44:28
 |
danfe  |
- Update to version 1.7.6
- Use ${ECHO_CMD} instead of ${ECHO} directly
Feature safe: yes |
1.7.5 04 Jun 2010 02:23:30
 |
linimon  |
Does not compile on sparc64.
Hat: portmgr |
1.7.5 22 May 2010 11:08:09
 |
danfe  |
- Update to version 1.7.5 and the latest contributed patchset [*]
- Prefer HTTP mirrors as they are generally more accessible than FTP ones
- Install support scripts in addition to datafiles
- Simplify PORTDOCS handling, utilize BUILD_WRKSRC, and clean up things
PR: ports/146114 [*]
Submitted by: lme |
1.7.2_1 21 Jan 2008 06:11:13
 |
danfe  |
Add the contrib patchset which adds support for many more message digest
algorithms to john. New algorithms are: NT, PO, raw-MD5, IPB2, raw-sha1,
salt-sha1, md5a, KRB5, bfegg, nsldap, ssha, oracle, MYSQL, mysql-sha1,
mscash, lotus5, DOMINOSEC, NETLM, NETNTLM, mssql, mssql05.
PR: ports/119824
Submitted by: Daniel Roethlisberger |
1.7.2 30 Jun 2007 18:47:13
 |
danfe  |
- Take maintainership
- Automatically detect for SSE2/MMX features, remove OPTIONS
- Refine Makefile header
- Reformat pkg-descr, catch up with vendor text |
1.7.2 29 Jun 2007 19:33:25
 |
linimon  |
Reset rainer.alves@gmail.com by request due to current lack of time to
work on FreeBSD. |
1.7.2 19 Jun 2006 15:22:50
 |
erwin  |
Update to 1.7.2
PR: 99132
Submitted by: Rainer Alves <rainer.alves@gmail.com> (maintainer) |
1.7.1 13 May 2006 14:59:11
 |
mnag  |
- Fix amd64 build
PR: 97197
Submitted by: maintainer |
1.7.1 13 May 2006 04:28:02
 |
mnag  |
- Update to 1.7.1
- Add SSE2 OPTIONS
PR: 97162
Submitted by: maintainer |
1.7.0.2_1 09 May 2006 06:18:39
 |
vd  |
* Fix MMX detection logic
* Define custom paths using CFLAGS instead of patching the source [1]
PR: ports/96991
Submitted by: Rainer Alves <rainer.alves@gmail.com> (maintainer)
Requested by: solar@openwall.com (author) [1] |
1.7.0.2 04 May 2006 08:26:22
 |
vd  |
* Update from 1.7 to 1.7.0.2
* Fix the second master site
* Give maintainership to submitter
PR: ports/96722
Submitted by: Rainer Alves <rainer.alves@gmail.com> |
1.7_1 04 Apr 2006 12:34:07
 |
ehaupt  |
Drop maintainer-ship |
1.7_1 18 Feb 2006 18:16:16
 |
ehaupt  |
- Update pkg-descr
- Add CONTACT and CREDITS to $DOCSDIR
- Remove deprecated USE_REINPLACE
- Remove unnecessary patch operation
- Bump PORTREVISION |
1.7 10 Feb 2006 18:09:28
 |
ehaupt  |
Update to 1.7
PR: 93139
Submitted by: marck |
1.6.40 31 Dec 2005 04:28:08
 |
ehaupt  |
- Update to 1.6.40
- Be more picky about whats PORTDOCS and what not
- Moved john.conf from ${DATADIR} to ${PREFIX}/etc
- Preserve existing/changed config file on install/deinstall
- Remove files/patch-john.conf |
1.6.39 30 Nov 2005 14:01:14
 |
ehaupt  |
Add SHA256 hashes to my ports |
1.6.39 05 Oct 2005 23:13:02
 |
barner  |
- Update to 1.6.39
- Use DATADIR
- Pass maintainership to submitter
Submitted by: Emanuel Haupt <ehaupt@FreeBSD.org>
Approved by: Dominic Marks <dom@goodforbusiness.co.uk> (old maintainer) |
1.6.37_1 11 Aug 2004 22:10:50
 |
pav  |
- Install additional documentation
- Portlint
PR: ports/69627
Submitted by: Radim Kolar <hsn@netmag.cz>
Approved by: maintainer timeout (14 days) |
1.6.37 18 Apr 2004 17:21:06
 |
pav  |
- Update to 1.6.37
PR: ports/65623
Submitted by: Dominic Marks <dom@helenmarks.co.uk> (maintainer) |
1.6.34 13 Apr 2004 21:57:22
 |
erwin  |
Update maintainer email address
PR: 65504
Submitted by: maintainer |
1.6.34 31 Mar 2004 03:12:58
 |
trevor  |
SIZEify (maintainer timeout) |
1.6.34 29 Jul 2003 20:26:20
 |
krion  |
Update to 1.6.34
PR: 55023
Submitted by: maintainer
Approved by: fjoe (mentor) (implicit) |
1.6.33 24 Jun 2003 01:06:04
 |
leeym  |
update maintainer's email address.
PR: 53658
Submitted by: Dominic Marks <dom@cus.org.uk> |
1.6.33 09 Apr 2003 08:12:47
 |
kevlo  |
Update to 1.6.33
PR: 50740
Submitted by: Dominic Marks <dom@cus.org.uk> |
1.6.32 21 Feb 2003 13:26:58
 |
knu  |
De-pkg-comment. |
1.6.32 16 Jan 2003 02:31:42
 |
edwin  |
security/john 1.6 -> 1.6.32
PR: ports/47124
Submitted by: Dominic Marks <dom@cus.org.uk> |
1.6 06 Jan 2003 21:33:37
 |
arved  |
Fix build on !i386
PR: 46801
Submitted by: Dominic Marks <dom@cus.org.uk> |
1.6 04 Jan 2003 22:34:19
 |
anders  |
Install lanman.chr.
PR: 45803
Submitted by: Ulrich Spoerlein <q@uni.de> |
1.6 07 Nov 2002 18:08:49
 |
ijliao  |
1. fix messages
2. use DATADIR and DOCSDIR
3. show messages when install
PR: 31013 (1)
Submitted by: Joseph Mallett <jmallett@xMach.org>, maintainer (1) |
1.6 02 Nov 2002 04:33:43
 |
perky  |
Fix typoes on MAINTAINER address.
Submitted by: Dominic Marks <D.Marks@student.umist.ac.uk> |
1.6 08 Oct 2002 12:10:37
 |
perky  |
Update maintainer address
PR: 43820
Submitted by: Dominic Marks <d.marks@students.umist.ac.uk> |
1.6 05 Oct 2002 21:48:44
 |
kris  |
Switch over to using <bsd.cpu.mk> feature tests to enable asm
optimization.
Approved by: maintainer timeout |
1.6 16 Sep 2002 21:40:35
 |
anders  |
Add WWW. |
1.6 10 May 2002 04:36:53
 |
trevor  |
Assign maintainership to Dominic Marks.
PR: 37907
Submitted by: Dominic Marks |
1.6 08 May 2002 21:32:37
 |
obrien  |
To ports@freebsd.org. |