aboutsummaryrefslogtreecommitdiff
path: root/converters/py-zfec
diff options
context:
space:
mode:
authorSunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>2018-08-22 21:45:59 +0000
committerSunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>2018-08-22 21:45:59 +0000
commit5d7ffd0580b2bf7092937e55390ba627a5e9f7fc (patch)
tree3ee83f8b3352828f0d05d8d35c055269a2bede4a /converters/py-zfec
parent42465b2b48d37ff17f3c71d23dfe751f82ed867f (diff)
downloadports-5d7ffd0580b2bf7092937e55390ba627a5e9f7fc.tar.gz
ports-5d7ffd0580b2bf7092937e55390ba627a5e9f7fc.zip
Update pkg-descr and WWW
Notes
Notes: svn path=/head/; revision=477841
Diffstat (limited to 'converters/py-zfec')
-rw-r--r--converters/py-zfec/pkg-descr24
1 files changed, 16 insertions, 8 deletions
diff --git a/converters/py-zfec/pkg-descr b/converters/py-zfec/pkg-descr
index 6797762d9305..934aad42fa83 100644
--- a/converters/py-zfec/pkg-descr
+++ b/converters/py-zfec/pkg-descr
@@ -1,10 +1,18 @@
-A fast erasure codec which can be used with the command-line, C,
-Python, or Haskell.
+The zfec package implements an "erasure code", or "forward error correction
+code".
-Fast, portable, programmable erasure coding a.k.a. "forward error
-correction": the generation of redundant blocks of information such
-that if some blocks are lost then the original data can be recovered
-from the remaining blocks. The zfec package includes command-line
-tools, C API, Python API, and Haskell API.
+The most widely known example of an erasure code is the RAID-5 algorithm which
+makes it so that in the event of the loss of any one hard drive, the stored data
+can be completely recovered. The algorithm in the zfec package has a similar
+effect, but instead of recovering from the loss of only a single element, it can
+be parameterized to choose in advance the number of elements whose loss it can
+tolerate.
-WWW: https://pypi.org/project/zfec/
+This package is largely based on the old "fec" library by Luigi Rizzo et al.,
+which is a mature and optimized implementation of erasure coding. The zfec
+package makes several changes from the original "fec" package, including
+addition of the Python API, refactoring of the C API to support zero-copy
+operation, a few clean-ups and optimizations of the core code itself, and the
+addition of a command-line tool named "zfec".
+
+WWW: https://github.com/tahoe-lafs/zfec