svn commit: r497861 - in head/devel: . modules2tuple

Steve Wills swills at FreeBSD.org
Thu Apr 4 18:28:37 UTC 2019


Author: swills
Date: Thu Apr  4 18:28:35 2019
New Revision: 497861
URL: https://svnweb.freebsd.org/changeset/ports/497861

Log:
  devel/modules2tuple: create port
  
  modules2tuple is a helper tool for generating GH_TUPLE from vendor/modules.txt
  
  WWW: https://github.com/dmgk/modules2tuple

Added:
  head/devel/modules2tuple/
  head/devel/modules2tuple/Makefile   (contents, props changed)
  head/devel/modules2tuple/distinfo   (contents, props changed)
  head/devel/modules2tuple/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile   (contents, props changed)

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Thu Apr  4 18:18:06 2019	(r497860)
+++ head/devel/Makefile	Thu Apr  4 18:28:35 2019	(r497861)
@@ -1764,6 +1764,7 @@
     SUBDIR += mk-configure
     SUBDIR += mm
     SUBDIR += mm-common
+    SUBDIR += modules2tuple
     SUBDIR += mongo-c-driver
     SUBDIR += mongo-cxx-driver
     SUBDIR += mono-addins

Added: head/devel/modules2tuple/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/modules2tuple/Makefile	Thu Apr  4 18:28:35 2019	(r497861)
@@ -0,0 +1,27 @@
+# $FreeBSD$
+
+PORTNAME=	modules2tuple
+PORTVERSION=	1.0.0
+CATEGORIES=	devel
+
+MAINTAINER=	dg at syrec.org
+COMMENT=	Generate GH_TUPLE from modules.txt
+
+LICENSE=	BSD2CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+BUILD_DEPENDS=	go:lang/go
+
+USE_GITHUB=	yes
+
+GH_TUPLE=	dmgk:${PORTNAME}:v${PORTVERSION}:DEFAULT
+
+PLIST_FILES=	bin/${PORTNAME}
+
+do-build:
+	cd ${WRKSRC} ; go build
+
+do-install:
+	${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/
+
+.include <bsd.port.mk>

Added: head/devel/modules2tuple/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/modules2tuple/distinfo	Thu Apr  4 18:28:35 2019	(r497861)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1554402150
+SHA256 (dmgk-modules2tuple-1.0.0-v1.0.0_GH0.tar.gz) = 8f6f4e06abf4a2b0c27f06ac0255883173b971b45e7050848f0acf9997ee739f
+SIZE (dmgk-modules2tuple-1.0.0-v1.0.0_GH0.tar.gz) = 3712

Added: head/devel/modules2tuple/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/modules2tuple/pkg-descr	Thu Apr  4 18:28:35 2019	(r497861)
@@ -0,0 +1,3 @@
+modules2tuple is a helper tool for generating GH_TUPLE from vendor/modules.txt
+
+WWW: https://github.com/dmgk/modules2tuple


More information about the svn-ports-all mailing list