diff options
author | antoine <antoine@FreeBSD.org> | 2014-06-07 16:43:31 +0800 |
---|---|---|
committer | antoine <antoine@FreeBSD.org> | 2014-06-07 16:43:31 +0800 |
commit | 66ea863ccc830e526acfc0f51f95e0b7a28b927f (patch) | |
tree | 495a5e94b2022fb4acc5c849538493f9e467d2b2 /converters | |
parent | e56248606a76d57f54b919607025145f72e208b5 (diff) | |
download | freebsd-ports-gnome-66ea863ccc830e526acfc0f51f95e0b7a28b927f.tar.gz freebsd-ports-gnome-66ea863ccc830e526acfc0f51f95e0b7a28b927f.tar.zst freebsd-ports-gnome-66ea863ccc830e526acfc0f51f95e0b7a28b927f.zip |
- Update plaso to 1.1.0
Announce: http://blog.kiddaland.net/2014/06/what-is-one-to-say-about-june-time-of.html
- Add converters/py-bencode, bencoding and bdecoding implementation
Diffstat (limited to 'converters')
-rw-r--r-- | converters/Makefile | 1 | ||||
-rw-r--r-- | converters/py-bencode/Makefile | 21 | ||||
-rw-r--r-- | converters/py-bencode/distinfo | 2 | ||||
-rw-r--r-- | converters/py-bencode/pkg-descr | 6 |
4 files changed, 30 insertions, 0 deletions
diff --git a/converters/Makefile b/converters/Makefile index 6e5dbdc5adc8..bcf5ddfd1c5a 100644 --- a/converters/Makefile +++ b/converters/Makefile @@ -137,6 +137,7 @@ SUBDIR += php55-mbstring SUBDIR += php55-recode SUBDIR += psiconv + SUBDIR += py-bencode SUBDIR += py-bsdconv SUBDIR += py-iconv SUBDIR += py-pisa diff --git a/converters/py-bencode/Makefile b/converters/py-bencode/Makefile new file mode 100644 index 000000000000..70772e239280 --- /dev/null +++ b/converters/py-bencode/Makefile @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= bencode +PORTVERSION= 1.0 +CATEGORIES= converters devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= antoine@FreeBSD.org +COMMENT= Bencoding and bdecoding implementation + +LICENSE= BTOSL +LICENSE_NAME= BitTorrent Open Source License +LICENSE_TEXT= See http://directory.fsf.org/wiki/License:BitTorrentOSL1.1 +LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept + +USE_PYTHON= 2 +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes + +.include <bsd.port.mk> diff --git a/converters/py-bencode/distinfo b/converters/py-bencode/distinfo new file mode 100644 index 000000000000..1fd325e8d468 --- /dev/null +++ b/converters/py-bencode/distinfo @@ -0,0 +1,2 @@ +SHA256 (bencode-1.0.tar.gz) = 0301c2202233a3f274c940702bac7bd02d5d053b8bf9502b085156270e30be9b +SIZE (bencode-1.0.tar.gz) = 2385 diff --git a/converters/py-bencode/pkg-descr b/converters/py-bencode/pkg-descr new file mode 100644 index 000000000000..3d37288d0a8b --- /dev/null +++ b/converters/py-bencode/pkg-descr @@ -0,0 +1,6 @@ +This package simply re-packages the existing bencoding and bdecoding +implementation from the 'official' BitTorrent client as a separate, +light-weight package for re-using them without having the entire BitTorrent +software as a dependency. + +WWW: https://pypi.python.org/pypi/bencode/ |