NOTICE: This package has been removed from pkgsrc

./security/py-amkCrypto, Cryptographic and hash functions for Python

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ]


Branch: CURRENT, Version: 2.0.1nb6, Package name: py27-amkCrypto-2.0.1nb6, Maintainer: pkgsrc-users

Python extensions using OpenSSL which contains hashing algorithms,
chaffing/winnowing, random number generation, various utility modules,
and several block encryption and digital signature algorithms.


Required to run:
[lang/python27]

Master sites:

SHA1: c77cdefdfb06e4749690013a9a9e1600ab14e26f
RMD160: 5ce938a24f77f414e42680c17ef9b6dc8de94a2e
Filesize: 150.676 KB

Version history: (Expand)


CVS history: (Expand)


   2013-02-07 00:24:19 by Jonathan Perkin | Files touched by this commit (1351) | Package updated
Log message:
PKGREVISION bumps for the security/openssl 1.0.1d update.
   2012-10-23 20:17:02 by Aleksej Saushev | Files touched by this commit (368)
Log message:
Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.
   2012-04-08 22:22:01 by Thomas Klausner | Files touched by this commit (148)
Log message:
All supported python versions in pkgsrc support eggs, so remove
${PLIST.eggfile} from PLISTs and support code from lang/python.
   2011-10-30 12:46:48 by OBATA Akio | Files touched by this commit (2)
Log message:
Convert distutils package to register egg-info

Bump PKGREVISION.
   2011-01-18 13:06:58 by Matthias Drochner | Files touched by this commit (2)
Log message:
add/fix mutual CONFLICT
   2010-01-17 13:02:58 by Thomas Klausner | Files touched by this commit (724) | Package updated
Log message:
Recursive PKGREVISION bump for jpeg update to 8.
   2009-06-14 20:13:41 by Joerg Sonnenberger | Files touched by this commit (154)
Log message:
Remove @dirrm entries from PLISTs
   2009-03-20 20:25:55 by Joerg Sonnenberger | Files touched by this commit (1252)
Log message:
Simply and speed up buildlink3.mk files and processing.
This changes the buildlink3.mk files to use an include guard for the
recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS,
BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new
variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of
enter/exit marker, which can be used to reconstruct the tree and
to determine first level includes. Avoiding := for large variables
(BUILDLINK_ORDER) speeds up parse time as += has linear complexity.
The include guard reduces system time by avoiding reading files over and
over again. For complex packages this reduces both %user and %sys time to
half of the former time.