svn commit: r409243 - in head/ports-mgmt: . portal

Frederic Culot culot at FreeBSD.org
Sat Feb 20 14:31:42 UTC 2016


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 at 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


More information about the svn-ports-all mailing list