From owner-svn-ports-all@freebsd.org Sat Dec 23 02:51:51 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 67642E92D15; Sat, 23 Dec 2017 02:51:51 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3CFB970CCE; Sat, 23 Dec 2017 02:51:51 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vBN2poCb088072; Sat, 23 Dec 2017 02:51:50 GMT (envelope-from vanilla@FreeBSD.org) Received: (from vanilla@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBN2pnlP088067; Sat, 23 Dec 2017 02:51:49 GMT (envelope-from vanilla@FreeBSD.org) Message-Id: <201712230251.vBN2pnlP088067@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: vanilla set sender to vanilla@FreeBSD.org using -f From: "Vanilla I. Shu" Date: Sat, 23 Dec 2017 02:51:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r457017 - in head/net: . py-libstorj X-SVN-Group: ports-head X-SVN-Commit-Author: vanilla X-SVN-Commit-Paths: in head/net: . py-libstorj X-SVN-Commit-Revision: 457017 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Dec 2017 02:51:51 -0000 Author: vanilla Date: Sat Dec 23 02:51:49 2017 New Revision: 457017 URL: https://svnweb.freebsd.org/changeset/ports/457017 Log: Add py-libstorj 1.0.2, python bindings for libstorj. PR: 224524 Submitted by: jhixson@gmail.com Added: head/net/py-libstorj/ head/net/py-libstorj/Makefile (contents, props changed) head/net/py-libstorj/distinfo (contents, props changed) head/net/py-libstorj/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Sat Dec 23 02:16:57 2017 (r457016) +++ head/net/Makefile Sat Dec 23 02:51:49 2017 (r457017) @@ -1008,6 +1008,7 @@ SUBDIR += py-libcloud SUBDIR += py-libdnet SUBDIR += py-libnet + SUBDIR += py-libstorj SUBDIR += py-magic-wormhole SUBDIR += py-matrix-synapse-ldap3 SUBDIR += py-maxminddb Added: head/net/py-libstorj/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-libstorj/Makefile Sat Dec 23 02:51:49 2017 (r457017) @@ -0,0 +1,33 @@ +# $FreeBSD$ + +PORTNAME= libstoraj +PORTVERSION= 1.0.2 +DISTVERSIONPREFIX= v +CATEGORIES= net +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= jhixson@gmail.com +COMMENT= Python bindings for libstorj + +LICENSE= LGPL21+ + +BUILD_DEPENDS= swig3.0:devel/swig30 +LIB_DEPENDS= libstorj.so:net/libstorj + +USES= localbase python:2.7+ +USE_PYTHON= autoplist distutils +USE_GITHUB= yes +GH_ACCOUNT= Storj +GH_PROJECT= python-libstorj +GH_TAGNAME= b344699 +GH_TUPLE= Storj:libstorj:v1.0.2:libstorj + +pre-build: + @cd ${WRKSRC}; ${CP} -a ${WRKSRC_libstorj}/ ${WRKSRC}/ext/libstorj; \ + ${LOCALBASE}/bin/swig3.0 -c++ -python -outdir lib/ext lib/ext/python_libstorj.i + +post-install: + ${INSTALL_PROGRAM} ${WRKSRC}/lib/ext/_python_libstorj.so \ + ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/_python_libstorj.so + +.include Added: head/net/py-libstorj/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-libstorj/distinfo Sat Dec 23 02:51:49 2017 (r457017) @@ -0,0 +1,5 @@ +TIMESTAMP = 1513919359 +SHA256 (Storj-python-libstorj-v1.0.2-b344699_GH0.tar.gz) = d2c9af17b9012e5920aa38146497630c6bfb3c58f32770fecfe5d526a3029a95 +SIZE (Storj-python-libstorj-v1.0.2-b344699_GH0.tar.gz) = 8086 +SHA256 (Storj-libstorj-v1.0.2_GH0.tar.gz) = 1d355f2663fd7701c49a5d696e38e1e9bfb48829fca314c47f043d8e3fa8468e +SIZE (Storj-libstorj-v1.0.2_GH0.tar.gz) = 170883 Added: head/net/py-libstorj/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-libstorj/pkg-descr Sat Dec 23 02:51:49 2017 (r457017) @@ -0,0 +1,3 @@ +Python bindings for libstorj + +WWW: https://github.com/Storj/python-libstorj