From owner-svn-ports-head@freebsd.org Fri Mar 12 18:34:26 2021 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id BF3ED5A9641; Fri, 12 Mar 2021 18:34:26 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Dxvc24zrNz4hWy; Fri, 12 Mar 2021 18:34:26 +0000 (UTC) (envelope-from antoine@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 9A4271C918; Fri, 12 Mar 2021 18:34:26 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 12CIYQV7020830; Fri, 12 Mar 2021 18:34:26 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 12CIYPp5020822; Fri, 12 Mar 2021 18:34:25 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <202103121834.12CIYPp5020822@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Fri, 12 Mar 2021 18:34:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r568193 - in head/devel: . libvsgpt X-SVN-Group: ports-head X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: in head/devel: . libvsgpt X-SVN-Commit-Revision: 568193 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Mar 2021 18:34:26 -0000 Author: antoine Date: Fri Mar 12 18:34:25 2021 New Revision: 568193 URL: https://svnweb.freebsd.org/changeset/ports/568193 Log: New port: devel/libvsgpt libvsgpt is a library to access the GUID Partition Table (GPT) volume system format. WWW: https://github.com/libyal/libvsgpt Added: head/devel/libvsgpt/ head/devel/libvsgpt/Makefile (contents, props changed) head/devel/libvsgpt/distinfo (contents, props changed) head/devel/libvsgpt/pkg-descr (contents, props changed) head/devel/libvsgpt/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Mar 12 18:12:50 2021 (r568192) +++ head/devel/Makefile Fri Mar 12 18:34:25 2021 (r568193) @@ -1378,6 +1378,7 @@ SUBDIR += libvmdk SUBDIR += libvolume_id SUBDIR += libvshadow + SUBDIR += libvsgpt SUBDIR += libvslvm SUBDIR += libvterm SUBDIR += libwfut Added: head/devel/libvsgpt/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libvsgpt/Makefile Fri Mar 12 18:34:25 2021 (r568193) @@ -0,0 +1,31 @@ +# Created by: Antoine Brodin +# $FreeBSD$ + +PORTNAME= libvsgpt +# If/When moving from experimental to alpha, switch to DISTVERSIONPREFIX to prevent PORTEPOCH +DISTVERSION= experimental-20210207 +CATEGORIES= devel +MASTER_SITES= https://github.com/libyal/libvsgpt/releases/download/${PORTVERSION:E}/ \ + LOCAL/antoine + +MAINTAINER= antoine@FreeBSD.org +COMMENT= Library and tools to access the GPT volume system format + +LICENSE= LGPL3+ +LICENSE_FILE= ${WRKSRC}/COPYING + +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --enable-python +CONFIGURE_ENV= PYTHON_CONFIG=${PYTHON_CMD}-config +USES= libtool pathfix python:3.6+ +USE_LDCONFIG= yes +INSTALL_TARGET= install-strip +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:E} + +OPTIONS_DEFINE= NLS + +NLS_USES= gettext +NLS_CONFIGURE_ON= --with-libintl-prefix=${LOCALBASE} +NLS_CONFIGURE_OFF= --disable-nls + +.include Added: head/devel/libvsgpt/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libvsgpt/distinfo Fri Mar 12 18:34:25 2021 (r568193) @@ -0,0 +1,3 @@ +TIMESTAMP = 1612809574 +SHA256 (libvsgpt-experimental-20210207.tar.gz) = 74b62d05ca57e47c62dfbe1a4a942438691d248f8b56e3c6ab9748277c07eade +SIZE (libvsgpt-experimental-20210207.tar.gz) = 1490075 Added: head/devel/libvsgpt/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libvsgpt/pkg-descr Fri Mar 12 18:34:25 2021 (r568193) @@ -0,0 +1,4 @@ +libvsgpt is a library to access the GUID Partition Table (GPT) volume system +format. + +WWW: https://github.com/libyal/libvsgpt Added: head/devel/libvsgpt/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libvsgpt/pkg-plist Fri Mar 12 18:34:25 2021 (r568193) @@ -0,0 +1,17 @@ +bin/vsgptinfo +include/libvsgpt.h +include/libvsgpt/codepage.h +include/libvsgpt/definitions.h +include/libvsgpt/error.h +include/libvsgpt/extern.h +include/libvsgpt/features.h +include/libvsgpt/types.h +lib/libvsgpt.a +lib/libvsgpt.so +lib/libvsgpt.so.1 +lib/libvsgpt.so.1.0.0 +%%PYTHON_SITELIBDIR%%/pyvsgpt.a +%%PYTHON_SITELIBDIR%%/pyvsgpt.so +libdata/pkgconfig/libvsgpt.pc +man/man1/vsgptinfo.1.gz +man/man3/libvsgpt.3.gz