Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 26 Feb 2016 17:17:45 +0000 (UTC)
From:      Pawel Pekala <pawel@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r409625 - in head/devel: . qt-maybe
Message-ID:  <201602261717.u1QHHjrd044651@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pawel
Date: Fri Feb 26 17:17:44 2016
New Revision: 409625
URL: https://svnweb.freebsd.org/changeset/ports/409625

Log:
  A set of simple(ish) C++ templates which implement sum and option types.
  They serve a similar purpose to boost::variant and boost::optional but
  are implemented on top of Qt's QVariant container.

Added:
  head/devel/qt-maybe/
  head/devel/qt-maybe/Makefile   (contents, props changed)
  head/devel/qt-maybe/distinfo   (contents, props changed)
  head/devel/qt-maybe/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Fri Feb 26 17:07:59 2016	(r409624)
+++ head/devel/Makefile	Fri Feb 26 17:17:44 2016	(r409625)
@@ -4588,6 +4588,7 @@
     SUBDIR += qscintilla2-designerplugin
     SUBDIR += qscintilla2-designerplugin-qt5
     SUBDIR += qscintilla2-qt5
+    SUBDIR += qt-maybe
     SUBDIR += qt4
     SUBDIR += qt4-assistant
     SUBDIR += qt4-assistant-adp

Added: head/devel/qt-maybe/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/qt-maybe/Makefile	Fri Feb 26 17:17:44 2016	(r409625)
@@ -0,0 +1,27 @@
+# Created by: Pawel Pekala <pawel@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	qt-maybe
+PORTVERSION=	0.0.20151227
+CATEGORIES=	devel
+
+MAINTAINER=	pawel@FreeBSD.org
+COMMENT=	Implementation of sum/option types using QVariant
+
+LICENSE=	BSD3CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	robertknight
+GH_TAGNAME=	52b21af
+
+USE_QT5=	core
+NO_BUILD=	yes
+
+PLIST_FILES=	include/Either.h include/Maybe.h
+
+do-install:
+	(cd ${WRKSRC} && ${INSTALL_DATA} Either.h Maybe.h \
+		${STAGEDIR}${PREFIX}/include)
+
+.include <bsd.port.mk>

Added: head/devel/qt-maybe/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/qt-maybe/distinfo	Fri Feb 26 17:17:44 2016	(r409625)
@@ -0,0 +1,2 @@
+SHA256 (robertknight-qt-maybe-0.0.20151227-52b21af_GH0.tar.gz) = d7ede0224f16920c2892d26a59b47651c787f5adf6b618f50bf44b5e93227b69
+SIZE (robertknight-qt-maybe-0.0.20151227-52b21af_GH0.tar.gz) = 4688

Added: head/devel/qt-maybe/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/qt-maybe/pkg-descr	Fri Feb 26 17:17:44 2016	(r409625)
@@ -0,0 +1,5 @@
+A set of simple(ish) C++ templates which implement sum and option types.
+They serve a similar purpose to boost::variant and boost::optional but
+are implemented on top of Qt's QVariant container.
+
+WWW: https://github.com/robertknight/qt-maybe



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201602261717.u1QHHjrd044651>