Date: Sat, 20 Feb 2016 14:31:40 +0000 (UTC) From: Frederic Culot <culot@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r409243 - in head/ports-mgmt: . portal Message-ID: <201602201431.u1KEVeRc041383@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201602201431.u1KEVeRc041383>