From owner-svn-ports-all@freebsd.org Tue Oct 13 08:34:52 2020 Return-Path: Delivered-To: svn-ports-all@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 9626343A1FA; Tue, 13 Oct 2020 08:34:52 +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 "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4C9TPS3Vjsz4QNp; Tue, 13 Oct 2020 08:34:52 +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 5C36E1AAAD; Tue, 13 Oct 2020 08:34:52 +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 09D8YqaH086396; Tue, 13 Oct 2020 08:34:52 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 09D8YpdZ086391; Tue, 13 Oct 2020 08:34:51 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <202010130834.09D8YpdZ086391@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Tue, 13 Oct 2020 08:34:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r552220 - in head/devel: . libcreg X-SVN-Group: ports-head X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: in head/devel: . libcreg X-SVN-Commit-Revision: 552220 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.33 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, 13 Oct 2020 08:34:52 -0000 Author: antoine Date: Tue Oct 13 08:34:51 2020 New Revision: 552220 URL: https://svnweb.freebsd.org/changeset/ports/552220 Log: New port: devel/libcreg Library and tools to access the Windows 9x/Me Registry File (CREG) format. WWW: https://github.com/libyal/libcreg Added: head/devel/libcreg/ head/devel/libcreg/Makefile (contents, props changed) head/devel/libcreg/distinfo (contents, props changed) head/devel/libcreg/pkg-descr (contents, props changed) head/devel/libcreg/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Oct 13 08:28:19 2020 (r552219) +++ head/devel/Makefile Tue Oct 13 08:34:51 2020 (r552220) @@ -1106,6 +1106,7 @@ SUBDIR += libconcurrent SUBDIR += libconfig SUBDIR += libconfuse + SUBDIR += libcreg SUBDIR += libcrossguid SUBDIR += libcutl SUBDIR += libcwd Added: head/devel/libcreg/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libcreg/Makefile Tue Oct 13 08:34:51 2020 (r552220) @@ -0,0 +1,29 @@ +# $FreeBSD$ + +PORTNAME= libcreg +DISTVERSION= experimental-20200725 +CATEGORIES= devel +MASTER_SITES= https://github.com/libyal/libcreg/releases/download/${PORTVERSION:E}/ \ + LOCAL/antoine + +MAINTAINER= antoine@FreeBSD.org +COMMENT= Library and tools to access the Windows 9x/Me Registry File format + +LICENSE= LGPL3+ +LICENSE_FILE= ${WRKSRC}/COPYING + +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --enable-python +CONFIGURE_ENV= PYTHON_CONFIG=${PYTHON_CMD}-config +USES= fuse libtool pathfix pkgconfig python:3.5+ +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/libcreg/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libcreg/distinfo Tue Oct 13 08:34:51 2020 (r552220) @@ -0,0 +1,3 @@ +TIMESTAMP = 1601241029 +SHA256 (libcreg-experimental-20200725.tar.gz) = 79ec60a9b670868921688ff8b16a4db38316a975dab4b28db0a08fc96364dfef +SIZE (libcreg-experimental-20200725.tar.gz) = 1518033 Added: head/devel/libcreg/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libcreg/pkg-descr Tue Oct 13 08:34:51 2020 (r552220) @@ -0,0 +1,3 @@ +Library and tools to access the Windows 9x/Me Registry File (CREG) format. + +WWW: https://github.com/libyal/libcreg Added: head/devel/libcreg/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libcreg/pkg-plist Tue Oct 13 08:34:51 2020 (r552220) @@ -0,0 +1,19 @@ +bin/cregexport +bin/creginfo +bin/cregmount +include/libcreg.h +include/libcreg/codepage.h +include/libcreg/definitions.h +include/libcreg/error.h +include/libcreg/extern.h +include/libcreg/features.h +include/libcreg/types.h +lib/libcreg.a +lib/libcreg.so +lib/libcreg.so.1 +lib/libcreg.so.1.0.0 +%%PYTHON_SITELIBDIR%%/pycreg.a +%%PYTHON_SITELIBDIR%%/pycreg.so +libdata/pkgconfig/libcreg.pc +man/man1/creginfo.1.gz +man/man3/libcreg.3.gz