From owner-svn-ports-all@freebsd.org Thu Aug 2 15:04:41 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7A07B1069C3B; Thu, 2 Aug 2018 15:04:41 +0000 (UTC) (envelope-from mm@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2465D8C37A; Thu, 2 Aug 2018 15:04:41 +0000 (UTC) (envelope-from mm@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 057D413470; Thu, 2 Aug 2018 15:04:41 +0000 (UTC) (envelope-from mm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w72F4eYJ051796; Thu, 2 Aug 2018 15:04:40 GMT (envelope-from mm@FreeBSD.org) Received: (from mm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w72F4eXY051791; Thu, 2 Aug 2018 15:04:40 GMT (envelope-from mm@FreeBSD.org) Message-Id: <201808021504.w72F4eXY051791@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mm set sender to mm@FreeBSD.org using -f From: Martin Matuska Date: Thu, 2 Aug 2018 15:04:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r476236 - in head/devel: . libubox X-SVN-Group: ports-head X-SVN-Commit-Author: mm X-SVN-Commit-Paths: in head/devel: . libubox X-SVN-Commit-Revision: 476236 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.27 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: Thu, 02 Aug 2018 15:04:41 -0000 Author: mm Date: Thu Aug 2 15:04:39 2018 New Revision: 476236 URL: https://svnweb.freebsd.org/changeset/ports/476236 Log: New port: devel/libubox libubox is a set of utilities, mostly wrappers, that are present usually in programs and that have been coded in a flexible and reusable way to avoid wasting time. libubox is part of the OpenWrt project WWW: https://openwrt.org/docs/techref/libubox Added: head/devel/libubox/ head/devel/libubox/Makefile (contents, props changed) head/devel/libubox/distinfo (contents, props changed) head/devel/libubox/pkg-descr (contents, props changed) head/devel/libubox/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Aug 2 12:18:01 2018 (r476235) +++ head/devel/Makefile Thu Aug 2 15:04:39 2018 (r476236) @@ -1609,6 +1609,7 @@ SUBDIR += libtsm SUBDIR += libtuntap SUBDIR += libublio + SUBDIR += libubox SUBDIR += libudev-devd SUBDIR += libukcprog SUBDIR += libunicode Added: head/devel/libubox/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libubox/Makefile Thu Aug 2 15:04:39 2018 (r476236) @@ -0,0 +1,32 @@ +# Created by: Martin Matuska +# $FreeBSD$ + +PORTNAME= libubox +DISTVERSION= 20180802 +DISTVERSIONSUFFIX= -c83a84af +CATEGORIES= devel +MASTER_SITES= LOCAL/mm/openwrt + +MAINTAINER= mm@FreeBSD.org +COMMENT= C utility functions for OpenWrt + +LICENSE= GPLv2 + +USES= cmake lua:51 tar:xz +LIBUBOX_GITURL= https://git.openwrt.org/project/libubox.git + +.include + +CMAKE_ARGS+= -DLUAPATH="${LUA_MODLIBDIR}" + +maintainer-fetch: + @${MAKE} clean + @${MKDIR} ${WRKSRC} + @git clone ${LIBUBOX_GITURL} ${WRKSRC} + @cd ${WRKSRC} && git reset --hard ${DISTVERSIONSUFFIX:S|^-||} + @${TAR} -c -J -f ${_DISTDIR:S|/$||}/${DISTFILES:M${PORTNAME}-*} \ + -C ${WRKDIR} --exclude .git ${WRKSRC:S|${WRKDIR}/||} + @${MAKE} makesum + @${MAKE} clean + +.include Added: head/devel/libubox/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libubox/distinfo Thu Aug 2 15:04:39 2018 (r476236) @@ -0,0 +1,3 @@ +TIMESTAMP = 1533209269 +SHA256 (libubox-20180802-c83a84af.tar.xz) = 0ad4d98f21572cc5b46ecdee6b7888664c1ca624d14f5b69b6f8719eb2ff287f +SIZE (libubox-20180802-c83a84af.tar.xz) = 54332 Added: head/devel/libubox/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libubox/pkg-descr Thu Aug 2 15:04:39 2018 (r476236) @@ -0,0 +1,7 @@ +libubox is a set of utilities, mostly wrappers, that are present +usually in programs and that have been coded in a flexible and +reusable way to avoid wasting time. + +libubox is part of the OpenWrt project + +WWW: https://openwrt.org/docs/techref/libubox Added: head/devel/libubox/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libubox/pkg-plist Thu Aug 2 15:04:39 2018 (r476236) @@ -0,0 +1,26 @@ +bin/jshn +include/libubox/avl-cmp.h +include/libubox/avl.h +include/libubox/blob.h +include/libubox/blobmsg.h +include/libubox/blobmsg_json.h +include/libubox/json_script.h +include/libubox/kvlist.h +include/libubox/list.h +include/libubox/md5.h +include/libubox/runqueue.h +include/libubox/safe_list.h +include/libubox/ulog.h +include/libubox/uloop.h +include/libubox/usock.h +include/libubox/ustream.h +include/libubox/utils.h +include/libubox/vlist.h +lib/libblobmsg_json.a +lib/libblobmsg_json.so +lib/libjson_script.so +lib/libubox.a +lib/libubox.so +%%LUA_MODLIBDIR%%/uloop.so +%%DATADIR%%/jshn.sh +