From owner-svn-ports-all@freebsd.org Tue Dec 15 14:49:15 2015 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 B0A54A4408A; Tue, 15 Dec 2015 14:49:15 +0000 (UTC) (envelope-from miwi@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 680881BB7; Tue, 15 Dec 2015 14:49:15 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tBFEnEor065134; Tue, 15 Dec 2015 14:49:14 GMT (envelope-from miwi@FreeBSD.org) Received: (from miwi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tBFEnEL9065131; Tue, 15 Dec 2015 14:49:14 GMT (envelope-from miwi@FreeBSD.org) Message-Id: <201512151449.tBFEnEL9065131@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: miwi set sender to miwi@FreeBSD.org using -f From: Martin Wilke Date: Tue, 15 Dec 2015 14:49:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r403782 - head/textproc/jshon X-SVN-Group: ports-head 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.20 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: Tue, 15 Dec 2015 14:49:15 -0000 Author: miwi Date: Tue Dec 15 14:49:14 2015 New Revision: 403782 URL: https://svnweb.freebsd.org/changeset/ports/403782 Log: - Update to 20131105 PR: 205224 Submitted by: Ports Fury Approved by: mat (mentor) Differential Revision: D4583 Modified: head/textproc/jshon/Makefile head/textproc/jshon/distinfo head/textproc/jshon/pkg-descr Modified: head/textproc/jshon/Makefile ============================================================================== --- head/textproc/jshon/Makefile Tue Dec 15 14:47:21 2015 (r403781) +++ head/textproc/jshon/Makefile Tue Dec 15 14:49:14 2015 (r403782) @@ -1,29 +1,26 @@ # $FreeBSD$ PORTNAME= jshon -PORTVERSION= 20121210 -PORTREVISION= 3 +PORTVERSION= 20131105 CATEGORIES= textproc MAINTAINER= ports@FreeBSD.org -COMMENT= json parser for the shell +COMMENT= JSON parser for the shell LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libjansson.so:${PORTSDIR}/devel/jansson -USES= gmake USE_GITHUB= yes GH_ACCOUNT= keenerd -GH_TAGNAME= b21bc98 -CFLAGS+= -I${LOCALBASE}/include +USES= gmake -PLIST_FILES= bin/${PORTNAME} \ - man/man1/${PORTNAME}.1.gz +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib -post-patch: - @${REINPLACE_CMD} -e 's,-ljansson,-L${LOCALBASE}/lib -ljansson,g' ${WRKSRC}/Makefile +PLIST_FILES= bin/jshon man/man1/jshon.1.gz do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin Modified: head/textproc/jshon/distinfo ============================================================================== --- head/textproc/jshon/distinfo Tue Dec 15 14:47:21 2015 (r403781) +++ head/textproc/jshon/distinfo Tue Dec 15 14:49:14 2015 (r403782) @@ -1,2 +1,2 @@ -SHA256 (keenerd-jshon-20121210-b21bc98_GH0.tar.gz) = 38ff964a491937ca3060ea95af682fa3f5a4fd9a440154517afae4784fd3974b -SIZE (keenerd-jshon-20121210-b21bc98_GH0.tar.gz) = 10708 +SHA256 (keenerd-jshon-20131105_GH0.tar.gz) = 28420f6f02c6b762732898692cc0b0795cfe1a59fbfb24e67b80f332cf6d4fa2 +SIZE (keenerd-jshon-20131105_GH0.tar.gz) = 12870 Modified: head/textproc/jshon/pkg-descr ============================================================================== --- head/textproc/jshon/pkg-descr Tue Dec 15 14:47:21 2015 (r403781) +++ head/textproc/jshon/pkg-descr Tue Dec 15 14:49:14 2015 (r403782) @@ -1,5 +1,6 @@ -jshon parses, reads and creates JSON. It is designed to be as usable as possible -from within the shell and replaces fragile adhoc parsers made from grep/sed/awk -as well as heavyweight one-line parsers made from perl/python. +jshon parses, reads and creates JSON. It is designed to be as usable as +possible from within the shell and replaces fragile adhoc parsers made +from grep/sed/awk as well as heavyweight one-line parsers made from +perl/python. WWW: http://kmkeen.com/jshon/