From owner-svn-ports-all@freebsd.org Mon Jan 6 09:08:42 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 128F61FDE36; Mon, 6 Jan 2020 09:08:42 +0000 (UTC) (envelope-from miwi@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) server-signature RSA-PSS (4096 bits) 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 47rqS96gxMz4QVR; Mon, 6 Jan 2020 09:08:41 +0000 (UTC) (envelope-from miwi@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 E093FC033; Mon, 6 Jan 2020 09:08:41 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 00698fdr095324; Mon, 6 Jan 2020 09:08:41 GMT (envelope-from miwi@FreeBSD.org) Received: (from miwi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 00698fdV095320; Mon, 6 Jan 2020 09:08:41 GMT (envelope-from miwi@FreeBSD.org) Message-Id: <202001060908.00698fdV095320@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: miwi set sender to miwi@FreeBSD.org using -f From: Martin Wilke Date: Mon, 6 Jan 2020 09:08:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r522209 - in head/databases: . go-pgweb X-SVN-Group: ports-head X-SVN-Commit-Author: miwi X-SVN-Commit-Paths: in head/databases: . go-pgweb X-SVN-Commit-Revision: 522209 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.29 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: Mon, 06 Jan 2020 09:08:42 -0000 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@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 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