svn commit: r522209 - in head/databases: . go-pgweb

Martin Wilke miwi at FreeBSD.org
Mon Jan 6 09:08:42 UTC 2020


Author: miwi
Date: Mon Jan  6 09:08:40 2020
New Revision: 522209
URL: https://svnweb.freebsd.org/changeset/ports/522209

Log:
  Pgweb is a web-based database browser for PostgreSQL, written in Go and works on
  OSX, Linux and Windows machines. Main idea behind using Go for backend
  development is to utilize ability of the compiler to produce zero-dependency
  binaries for multiple platforms. Pgweb was created as an attempt to build very
  simple and portable application to work with local or remote PostgreSQL
  databases.
  
  WWW: https://github.com/sosedoff/pgweb

Added:
  head/databases/go-pgweb/
  head/databases/go-pgweb/Makefile   (contents, props changed)
  head/databases/go-pgweb/distinfo   (contents, props changed)
  head/databases/go-pgweb/pkg-descr   (contents, props changed)
Modified:
  head/databases/Makefile

Modified: head/databases/Makefile
==============================================================================
--- head/databases/Makefile	Mon Jan  6 08:09:40 2020	(r522208)
+++ head/databases/Makefile	Mon Jan  6 09:08:40 2020	(r522209)
@@ -99,6 +99,7 @@
     SUBDIR += gnats4
     SUBDIR += gnatsweb4
     SUBDIR += go-carbon
+    SUBDIR += go-pgweb
     SUBDIR += gom
     SUBDIR += gqlplus
     SUBDIR += grass7

Added: head/databases/go-pgweb/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/go-pgweb/Makefile	Mon Jan  6 09:08:40 2020	(r522209)
@@ -0,0 +1,20 @@
+# $FreeBSD$
+
+PORTNAME=	pgweb
+DISTVERSIONPREFIX=	v
+DISTVERSION=	0.11.5
+CATEGORIES=	databases www
+PKGNAMEPREFIX=	go-
+
+MAINTAINER=	miwi at FreeBSD.org
+COMMENT=	Pgweb is a web-based database browser for PostgreSQL
+
+LICENSE=	MIT
+
+USES=		go
+USE_GITHUB=	yes
+GH_ACCOUNT=	sosedoff
+GO_PKGNAME=	github.com/sosedoff/pgweb
+PLIST_FILES=	bin/pgweb
+
+.include <bsd.port.mk>

Added: head/databases/go-pgweb/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/go-pgweb/distinfo	Mon Jan  6 09:08:40 2020	(r522209)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1578291312
+SHA256 (sosedoff-pgweb-v0.11.5_GH0.tar.gz) = d51450053e481e897b6bdf84b665ecb8a453843bc35e1057c3e51d89be19edba
+SIZE (sosedoff-pgweb-v0.11.5_GH0.tar.gz) = 3943042

Added: head/databases/go-pgweb/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/go-pgweb/pkg-descr	Mon Jan  6 09:08:40 2020	(r522209)
@@ -0,0 +1,8 @@
+Pgweb is a web-based database browser for PostgreSQL, written in Go and works on
+OSX, Linux and Windows machines. Main idea behind using Go for backend
+development is to utilize ability of the compiler to produce zero-dependency
+binaries for multiple platforms. Pgweb was created as an attempt to build very
+simple and portable application to work with local or remote PostgreSQL
+databases.
+
+WWW: https://github.com/sosedoff/pgweb


More information about the svn-ports-all mailing list