From cdc43b3729903bbfd8ba95618f226acd7c078156 Mon Sep 17 00:00:00 2001 From: Martin Wilke Date: Mon, 6 Jan 2020 09:08:40 +0000 Subject: [PATCH] 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 --- databases/Makefile | 1 + databases/go-pgweb/Makefile | 20 ++++++++++++++++++++ databases/go-pgweb/distinfo | 3 +++ databases/go-pgweb/pkg-descr | 8 ++++++++ 4 files changed, 32 insertions(+) create mode 100644 databases/go-pgweb/Makefile create mode 100644 databases/go-pgweb/distinfo create mode 100644 databases/go-pgweb/pkg-descr diff --git a/databases/Makefile b/databases/Makefile index e330ea559ea8..d61768b44f32 100644 --- a/databases/Makefile +++ b/databases/Makefile @@ -99,6 +99,7 @@ SUBDIR += gnats4 SUBDIR += gnatsweb4 SUBDIR += go-carbon + SUBDIR += go-pgweb SUBDIR += gom SUBDIR += gqlplus SUBDIR += grass7 diff --git a/databases/go-pgweb/Makefile b/databases/go-pgweb/Makefile new file mode 100644 index 000000000000..26d6c049720f --- /dev/null +++ b/databases/go-pgweb/Makefile @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= pgweb +DISTVERSIONPREFIX= v +DISTVERSION= 0.11.5 +CATEGORIES= databases www +PKGNAMEPREFIX= go- + +MAINTAINER= miwi@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 diff --git a/databases/go-pgweb/distinfo b/databases/go-pgweb/distinfo new file mode 100644 index 000000000000..71892a952509 --- /dev/null +++ b/databases/go-pgweb/distinfo @@ -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 diff --git a/databases/go-pgweb/pkg-descr b/databases/go-pgweb/pkg-descr new file mode 100644 index 000000000000..0ae72d7fd038 --- /dev/null +++ b/databases/go-pgweb/pkg-descr @@ -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