Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 29 Apr 2019 05:30:52 +0000 (UTC)
From:      Matthew Seaman <matthew@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r500379 - in head/devel: . protobuf-java
Message-ID:  <201904290530.x3T5Uq5m031171@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: matthew
Date: Mon Apr 29 05:30:52 2019
New Revision: 500379
URL: https://svnweb.freebsd.org/changeset/ports/500379

Log:
  Core Protocol Buffers library. Protocol Buffers are a way of encoding
  structured data in an efficient yet extensible format
  
  WWW: https://mvnrepository.com/artifact/com.google.protobuf/protobuf-java

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Mon Apr 29 05:26:33 2019	(r500378)
+++ head/devel/Makefile	Mon Apr 29 05:30:52 2019	(r500379)
@@ -4158,6 +4158,7 @@
     SUBDIR += projectcenter
     SUBDIR += protobuf
     SUBDIR += protobuf-c
+    SUBDIR += protobuf-java
     SUBDIR += protobuf25
     SUBDIR += protozero
     SUBDIR += pructl

Added: head/devel/protobuf-java/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/protobuf-java/Makefile	Mon Apr 29 05:30:52 2019	(r500379)
@@ -0,0 +1,29 @@
+# $FreeBSD$
+
+PORTNAME=	protobuf-java
+DISTVERSION=	3.7.1
+CATEGORIES=	devel java
+MASTER_SITES=	http://central.maven.org/maven2/com/google/protobuf/protobuf-java/${DISTVERSION}/
+EXTRACT_SUFX=	.jar
+
+MAINTAINER=	matthew@FreeBSD.org
+COMMENT=	Core Protocol Buffers library
+
+LICENSE=	BSD3CLAUSE
+
+USE_JAVA=	yes
+
+NO_WRKSUBDIR=	yes
+EXTRACT_CMD=	${CP}
+EXTRACT_BEFORE_ARGS=
+EXTRACT_AFTER_ARGS=	.
+
+NO_ARCH=	yes
+NO_BUILD=	yes
+
+PLIST_FILES=	${JAVAJARDIR}/${PORTNAME}.jar
+
+do-install:
+	${INSTALL_DATA} ${WRKSRC}/${DISTNAME}.jar ${STAGEDIR}${JAVAJARDIR}/${PORTNAME}.jar
+
+.include <bsd.port.mk>

Added: head/devel/protobuf-java/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/protobuf-java/distinfo	Mon Apr 29 05:30:52 2019	(r500379)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1556468826
+SHA256 (protobuf-java-3.7.1.jar) = 22779eacfe0f33b9e8ceffa3cdef5935cae4e53f736e027d912b707522fea645
+SIZE (protobuf-java-3.7.1.jar) = 1424223

Added: head/devel/protobuf-java/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/protobuf-java/pkg-descr	Mon Apr 29 05:30:52 2019	(r500379)
@@ -0,0 +1,4 @@
+Core Protocol Buffers library. Protocol Buffers are a way of encoding
+structured data in an efficient yet extensible format
+
+WWW: https://mvnrepository.com/artifact/com.google.protobuf/protobuf-java



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201904290530.x3T5Uq5m031171>