Date: Fri, 8 Jul 2016 21:45:50 +0000 (UTC) From: Carlo Strub <cs@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418245 - in head/net: . go-httppath Message-ID: <201607082145.u68LjoXT080563@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: cs Date: Fri Jul 8 21:45:49 2016 New Revision: 418245 URL: https://svnweb.freebsd.org/changeset/ports/418245 Log: Utilities for HTTP Path manipulation. Currently, this just contains the CleanPath function, renamed to Clean, from Julien Schmidt's httprouter. WWW: https://github.com/dimfeld/httppath Added: head/net/go-httppath/ head/net/go-httppath/Makefile (contents, props changed) head/net/go-httppath/distinfo (contents, props changed) head/net/go-httppath/pkg-descr (contents, props changed) head/net/go-httppath/pkg-plist (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Fri Jul 8 21:25:46 2016 (r418244) +++ head/net/Makefile Fri Jul 8 21:45:49 2016 (r418245) @@ -169,6 +169,7 @@ SUBDIR += go-amqp SUBDIR += go-cs SUBDIR += go-geoip + SUBDIR += go-httppath SUBDIR += go.net SUBDIR += gofish SUBDIR += gogoc Added: head/net/go-httppath/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/go-httppath/Makefile Fri Jul 8 21:45:49 2016 (r418245) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= httppath +PORTVERSION= 20140515 +CATEGORIES= net +PKGNAMEPREFIX= go- + +MAINTAINER= cs@FreeBSD.org +COMMENT= Utilities for HTTP Path manipulation + +LICENSE= MIT + +USE_GITHUB= yes +GH_ACCOUNT= dimfeld +GH_TAGNAME= c8e499c3ef3c3e272ed8bdcc1ccf39f73c88debc +USES= go +GO_PKGNAME= github.com/${GH_ACCOUNT}/${PORTNAME} + +.include <bsd.port.mk> Added: head/net/go-httppath/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/go-httppath/distinfo Fri Jul 8 21:45:49 2016 (r418245) @@ -0,0 +1,3 @@ +TIMESTAMP = 1468014225 +SHA256 (dimfeld-httppath-20140515-c8e499c3ef3c3e272ed8bdcc1ccf39f73c88debc_GH0.tar.gz) = ff0e0e788a10c600ca6a327f827497ea2f72d6f70711dec44d04404e124fc4fa +SIZE (dimfeld-httppath-20140515-c8e499c3ef3c3e272ed8bdcc1ccf39f73c88debc_GH0.tar.gz) = 3128 Added: head/net/go-httppath/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/go-httppath/pkg-descr Fri Jul 8 21:45:49 2016 (r418245) @@ -0,0 +1,4 @@ +Utilities for HTTP Path manipulation. Currently, this just contains the +CleanPath function, renamed to Clean, from Julien Schmidt's httprouter. + +WWW: https://github.com/dimfeld/httppath Added: head/net/go-httppath/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/go-httppath/pkg-plist Fri Jul 8 21:45:49 2016 (r418245) @@ -0,0 +1,5 @@ +%%GO_LIBDIR%%/%%GO_PKGNAME%%.a +%%GO_SRCDIR%%/%%GO_PKGNAME%%/LICENSE +%%GO_SRCDIR%%/%%GO_PKGNAME%%/README.md +%%GO_SRCDIR%%/%%GO_PKGNAME%%/path.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/path_test.go
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201607082145.u68LjoXT080563>