aboutsummaryrefslogtreecommitdiff
path: root/security/pecl-crack
Commit message (Collapse)AuthorAgeFilesLines
* Remove the hunk replacing the original argument-parsing. Though theMikhail Teterin2015-04-141-44/+2
| | | | | | | old code is ugly, it is correct and replacement is thus not warranted. Notes: svn path=/head/; revision=384004
* Fix a copy/paste error in the patch.Mikhail Teterin2015-04-141-1/+1
| | | | Notes: svn path=/head/; revision=383972
* Unbreak and otherwise improve this port:Mikhail Teterin2015-04-145-10/+250
| | | | | | | | | | | | | | | | | | | * Use standard source of PECL-sources -- the old MASTER_SITE is gone, and good riddance too, because the difference between 0.4 and 0.4.1 was an irrelevant one-liner. * Patch to use modern PHP ZEND API * Patch to actually use cracklib as advertized -- since the port's inception it LIB_DEPENDed on security/cracklib and advertized its use in pkg-descr, lying on both accounts. * Throw in a couple of basic usage tests rejecting bad passwords and accepting good ones. Special thanks to Nathan Neulinger for making the necessary cracklib function accessible and to cy@ for promptly updating security/cracklib to use Nathan's latest release. Notes: svn path=/head/; revision=383970
* Maintainer's email address bounces.Mark Linimon2015-04-071-1/+1
| | | | Notes: svn path=/head/; revision=383549
* php53 and fallout: Deprecate, set removal for 15 APR 2015John Marino2015-03-211-2/+4
| | | | | | | | | | | | | | | | | | | | | | | The PHP developers stopped providing security patches for the 5.3 branch on 14 August 2014. They "strongly urge" to upgrade to current versions "as using older versions may expose you to security vulnerabilities and bugs that have been fixed in more recent versions" of PHP. The PHP53 branch was released from maintainership today, so it's being deprecated with removal set for 15 April 2015. There were only 8 ports limited to php53, six of which were pecl- ports. These ports must be upgraded to use a later version of php (5.6 is recommended) soon, or they will be removed with php53. Note that all 8 ports incorrectly set the PHP_DEFAULT_VERSION, so this was changed to use IGNORE_WITH_PHP instead while here. PR: 198150 Notes: svn path=/head/; revision=381813
* Cleanup plistAntoine Brodin2014-11-151-3/+0
| | | | Notes: svn path=/head/; revision=372619
* security/cracklib:Tijl Coosemans2014-09-051-1/+1
| | | | | | | | | | | - Add USES=libtool and bump dependent ports - Add INSTALL_TARGET=install-strip - Convert to USES=python - Use MAKE_CMD - Create manpage link in post-install instead of using @exec Notes: svn path=/head/; revision=367386
* Modernize LIB_DEPENDSBaptiste Daroussin2014-07-141-1/+1
| | | | | | | With hat: portmgr Notes: svn path=/head/; revision=361812
* - StageifyMartin Wilke2014-01-231-1/+0
| | | | | | | - Take maintainership of a few ports Notes: svn path=/head/; revision=340835
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | security) Notes: svn path=/head/; revision=327769
* - Bump PORTREVISION after cracklib updateSofian Brabez2013-06-121-7/+3
| | | | | | | - Don't specify ABI version number in LIB_DEPENDS Notes: svn path=/head/; revision=320682
* Mark IGNORE with php 5.4 and set 5.3 as default.Alex Dupre2012-05-201-0/+2
| | | | | | | | Reported by: pav Pointyhat to: me Notes: svn path=/head/; revision=297003
* - Pregenerate pw_dict since cracklib stopped distributing onePhilip M. Gollucci2012-02-121-2/+2
| | | | | | | | | | | which dependant ports require at build-time. - Convert dependant ports to LIB_DEPENDS - Bump PORTREVISIONs Reported by: pav via pointyhat Notes: svn path=/head/; revision=291092
* - Chase shlib bump for security/cracklib from .1 -> .10Philip M. Gollucci2012-02-101-1/+1
| | | | | | | | Forgotten by: myself (pgollucci) Reported by: pav via pointyhat Notes: svn path=/head/; revision=290876
* -remove MD5Olli Hauer2011-07-031-1/+0
| | | | Notes: svn path=/head/; revision=276991
* Correct pkg-plist, and add dependency for cracklib.Frank J. Laszlo2006-11-142-2/+4
| | | | | | | | | PR: ports/105299 Submitted by: Bill Moran <wmoran@collaborativefusion.com> (maintainer) Approved by: flz (mentor) Notes: svn path=/head/; revision=177245
* This package provides an interface to the cracklib (libcrack) libraries thatRenato Botelho2006-07-114-0/+54
come standard on most unix-like distributions. This allows you to check passwords against dictionaries of words to ensure some minimal level of password security. From the cracklib README CrackLib makes literally hundreds of tests to determine whether you've chosen a bad password. * It tries to generate words from your username and gecos entry to tries to match them against what you've chosen. * It checks for simplistic patterns. * It then tries to reverse-engineer your password into a dictionary word, and searches for it in your dictionary. - after all that, it's PROBABLY a safe(-ish) password. 8-) WWW: http://pecl.php.net/package/crack PR: ports/94244 Submitted by: Bill Moran <wmoran at collaborativefusion.com> Notes: svn path=/head/; revision=167492