- Resurrect

- Add LICENSE
- Assign maintainer to submitter
- Update master site

PR:		ports/188586
Submitted by:	Matthew Rezny <matthew@reztek.cz>
This commit is contained in:
Steve Wills 2014-04-15 15:02:31 +00:00
parent 69686c2a22
commit 4c17179eef
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=351339
4 changed files with 34 additions and 0 deletions

View File

@ -754,6 +754,7 @@
SUBDIR += py-ecdsa
SUBDIR += py-ed25519ll
SUBDIR += py-fail2ban
SUBDIR += py-fchksum
SUBDIR += py-gnupg
SUBDIR += py-gnutls
SUBDIR += py-htpasswd

View File

@ -0,0 +1,21 @@
# Created by: ijliao
# $FreeBSD$
PORTNAME= fchksum
PORTVERSION= 1.7.1
CATEGORIES= security python
MASTER_SITES= http://code.fluffytapeworm.com/projects/
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DISTNAME= python-${PORTNAME}-${PORTVERSION}
MAINTAINER= matthew@reztek.cz
COMMENT= Python module to find the checksum of files
LICENSE= GPLv2
PLIST_FILES= %%PYTHON_SITELIBDIR%%/fchksum.so
USE_PYTHON= yes
USE_PYDISTUTILS= yes
PYDISTUTILS_PKGNAME= python-fchksum
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (python-fchksum-1.7.1.tar.gz) = 407625d2bf38be6fcbe8b01007d1803b5c5bd97249114c076edef4fd061405a7
SIZE (python-fchksum-1.7.1.tar.gz) = 26724

View File

@ -0,0 +1,10 @@
fchksum is a Python module to find the checksum of files. Currently it
supports crc32 and md5 checksums.
The advantage of using fchksum over the python md5 and zlib(.crc32) modules
is both ease of use and speed. You only need to tell it the filename and the
actual work is done by C code. Compared to the implementing a read loop in
python with the standard python modules, fchksum is approximatly 2.0x faster
in md5 and 1.1x faster in crc32.
WWW: http://users.dakotacom.net/~donut/programs/fchksum.html