From owner-svn-ports-head@freebsd.org Sat Feb 20 14:31:42 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3856BAAEDD1; Sat, 20 Feb 2016 14:31:42 +0000 (UTC) (envelope-from culot@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 mx1.freebsd.org (Postfix) with ESMTPS id ED7D91DE1; Sat, 20 Feb 2016 14:31:41 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u1KEVe77041387; Sat, 20 Feb 2016 14:31:40 GMT (envelope-from culot@FreeBSD.org) Received: (from culot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u1KEVeRc041383; Sat, 20 Feb 2016 14:31:40 GMT (envelope-from culot@FreeBSD.org) Message-Id: <201602201431.u1KEVeRc041383@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: culot set sender to culot@FreeBSD.org using -f From: Frederic Culot Date: Sat, 20 Feb 2016 14:31:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r409243 - in head/ports-mgmt: . portal X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Feb 2016 14:31:42 -0000 Author: culot Date: Sat Feb 20 14:31:40 2016 New Revision: 409243 URL: https://svnweb.freebsd.org/changeset/ports/409243 Log: Portal is a front-end to FreeBSD's package manipulation tool pkg(8). Currently, the application is a MVP (Minimum Viable Product) which provides only the following features: packages listing and searching, installation and deinstallation of packages, and filtering based on the package state. WWW: https://github.com/culot/portal Added: head/ports-mgmt/portal/ head/ports-mgmt/portal/Makefile (contents, props changed) head/ports-mgmt/portal/distinfo (contents, props changed) head/ports-mgmt/portal/pkg-descr (contents, props changed) Modified: head/ports-mgmt/Makefile Modified: head/ports-mgmt/Makefile ============================================================================== --- head/ports-mgmt/Makefile Sat Feb 20 14:16:18 2016 (r409242) +++ head/ports-mgmt/Makefile Sat Feb 20 14:31:40 2016 (r409243) @@ -40,6 +40,7 @@ SUBDIR += pkgs_which SUBDIR += port-authoring-tools SUBDIR += port-maintenance-tools + SUBDIR += portal SUBDIR += portconf SUBDIR += portdowngrade SUBDIR += portell Added: head/ports-mgmt/portal/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/ports-mgmt/portal/Makefile Sat Feb 20 14:31:40 2016 (r409243) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= portal +PORTVERSION= 0.1 +CATEGORIES= ports-mgmt +MASTER_SITES= GH + +MAINTAINER= culot@FreeBSD.org +COMMENT= Front-end to pkg(8) + +LICENSE= BSD2CLAUSE + +PLIST_FILES= bin/${PORTNAME} \ + man/man1/${PORTNAME}.1.gz + +USE_GITHUB= yes +GH_ACCOUNT= culot +GH_TAGNAME= 0.1 + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/man/man1 + +.include Added: head/ports-mgmt/portal/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/ports-mgmt/portal/distinfo Sat Feb 20 14:31:40 2016 (r409243) @@ -0,0 +1,2 @@ +SHA256 (culot-portal-0.1_GH0.tar.gz) = 4242824317a1c7b97140e4b34b884df3ca88de8e53cc0217038b152e7f58f99e +SIZE (culot-portal-0.1_GH0.tar.gz) = 29623 Added: head/ports-mgmt/portal/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/ports-mgmt/portal/pkg-descr Sat Feb 20 14:31:40 2016 (r409243) @@ -0,0 +1,8 @@ +Portal is a front-end to FreeBSD's package manipulation tool pkg(8). + +Currently, the application is a MVP (Minimum Viable Product) which +provides only the following features: packages listing and searching, +installation and deinstallation of packages, and filtering based on +the package state. + +WWW: https://github.com/culot/portal