From owner-svn-ports-head@freebsd.org Fri Feb 26 17:17:46 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 93D59AB5561; Fri, 26 Feb 2016 17:17:46 +0000 (UTC) (envelope-from pawel@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 575CD11AD; Fri, 26 Feb 2016 17:17:46 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u1QHHjJE044655; Fri, 26 Feb 2016 17:17:45 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u1QHHjrd044651; Fri, 26 Feb 2016 17:17:45 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201602261717.u1QHHjrd044651@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Fri, 26 Feb 2016 17:17:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r409625 - in head/devel: . qt-maybe 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: Fri, 26 Feb 2016 17:17:46 -0000 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 +# $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 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