svn commit: r517147 - in head/x11: . mere-utils

Tobias C. Berner tcberner at FreeBSD.org
Sat Nov 9 21:13:00 UTC 2019


Author: tcberner
Date: Sat Nov  9 21:12:58 2019
New Revision: 517147
URL: https://svnweb.freebsd.org/changeset/ports/517147

Log:
  New port --  x11/mere-utils: Utility bundle for mere system interface
  
  Utility bundle for mere system interface
  
  Mere system interface utility contains all the helper functions required for
  applications of mere system interface.
  
  Currently it has following helpers and will grow over time:
  - AppUtils
  - FileUtils
  - i18nUtils
  - StringUtils
  - ProcessUtils
  - SignalUtils
  etc...
  
  Note:
  mere system interface is an interface to your system, it will work like your
  traditional desktop environment with easy to modify and configurable.
  
  WWW: http://utils.merelab.io/
  
  PR:		241668
  Submitted by:	Bhuiyan Mohammad Iklash <bhuiyan.mohammad.iklash at gmail.com>

Added:
  head/x11/mere-utils/
  head/x11/mere-utils/Makefile   (contents, props changed)
  head/x11/mere-utils/distinfo   (contents, props changed)
  head/x11/mere-utils/pkg-descr   (contents, props changed)
  head/x11/mere-utils/pkg-plist   (contents, props changed)
Modified:
  head/x11/Makefile

Modified: head/x11/Makefile
==============================================================================
--- head/x11/Makefile	Sat Nov  9 20:48:26 2019	(r517146)
+++ head/x11/Makefile	Sat Nov  9 21:12:58 2019	(r517147)
@@ -219,6 +219,7 @@
     SUBDIR += menu-cache
     SUBDIR += menulibre
     SUBDIR += metalock
+    SUBDIR += mere-utils
     SUBDIR += metisse
     SUBDIR += mkcomposecache
     SUBDIR += mlterm

Added: head/x11/mere-utils/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11/mere-utils/Makefile	Sat Nov  9 21:12:58 2019	(r517147)
@@ -0,0 +1,21 @@
+# $FreeBSD$
+
+PORTNAME=	mere-utils
+DISTVERSIONPREFIX=v
+DISTVERSION=	0.0.1b
+CATEGORIES=	x11
+
+MAINTAINER=	bhuiyan.mohammad.iklash at gmail.com
+COMMENT=	Utility bundle for mere system interface
+
+LICENSE=	BSD3CLAUSE
+LICENSE_FILE=	${WRKSRC}/COPYING
+
+USES=		compiler:c++11-lang qmake qt:5
+USE_QT=		core \
+		buildtools_build
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	merelab
+
+.include <bsd.port.mk>

Added: head/x11/mere-utils/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11/mere-utils/distinfo	Sat Nov  9 21:12:58 2019	(r517147)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1573329916
+SHA256 (merelab-mere-utils-v0.0.1b_GH0.tar.gz) = f1456852eb89bd08283d4725f95ddb8d988b66d65631a3f83856e85c1b84fd1c
+SIZE (merelab-mere-utils-v0.0.1b_GH0.tar.gz) = 5318

Added: head/x11/mere-utils/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11/mere-utils/pkg-descr	Sat Nov  9 21:12:58 2019	(r517147)
@@ -0,0 +1,19 @@
+Utility bundle for mere system interface
+
+Mere system interface utility contains all the helper functions required for
+applications of mere system interface.
+
+Currently it has following helpers and will grow over time:
+- AppUtils
+- FileUtils
+- i18nUtils
+- StringUtils
+- ProcessUtils
+- SignalUtils
+etc...
+
+Note:
+mere system interface is an interface to your system, it will work like your
+traditional desktop environment with easy to modify and configurable.
+
+WWW: http://utils.merelab.io/

Added: head/x11/mere-utils/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11/mere-utils/pkg-plist	Sat Nov  9 21:12:58 2019	(r517147)
@@ -0,0 +1,14 @@
+bin/mere-utils
+bin/mere-utils-tests
+lib/libmere-utils.so
+lib/libmere-utils.so.0
+lib/libmere-utils.so.0.0
+lib/libmere-utils.so.0.0.1b
+include/mere/utils/mereapputils.h
+include/mere/utils/merefileutils.h
+include/mere/utils/merei18nutils.h
+include/mere/utils/mereprocessutils.h
+include/mere/utils/meresignal.h
+include/mere/utils/merestringutils.h
+include/mere/utils/mereutils.h
+include/mere/utils/mereutilsglobal.h


More information about the svn-ports-all mailing list