svn commit: r504380 - in head/devel: . mstch mstch/files
Yuri Victorovich
yuri at FreeBSD.org
Mon Jun 17 00:10:25 UTC 2019
Author: yuri
Date: Mon Jun 17 00:10:22 2019
New Revision: 504380
URL: https://svnweb.freebsd.org/changeset/ports/504380
Log:
New port: devel/mstch: Complete implementation of {{mustache}} templates using modern C++
Added:
head/devel/mstch/
head/devel/mstch/Makefile (contents, props changed)
head/devel/mstch/distinfo (contents, props changed)
head/devel/mstch/files/
head/devel/mstch/files/patch-src_CMakeLists.txt (contents, props changed)
head/devel/mstch/pkg-descr (contents, props changed)
head/devel/mstch/pkg-plist (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Sun Jun 16 22:58:16 2019 (r504379)
+++ head/devel/Makefile Mon Jun 17 00:10:22 2019 (r504380)
@@ -1560,6 +1560,7 @@
SUBDIR += msgpuck
SUBDIR += msp430-debug-stack
SUBDIR += mspdebug
+ SUBDIR += mstch
SUBDIR += mtbl
SUBDIR += mutagen
SUBDIR += myrepos
Added: head/devel/mstch/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/mstch/Makefile Mon Jun 17 00:10:22 2019 (r504380)
@@ -0,0 +1,23 @@
+# $FreeBSD$
+
+PORTNAME= mstch
+DISTVERSION= 1.0.2-1
+DISTVERSIONSUFFIX= -g0fde1cf
+CATEGORIES= devel
+
+MAINTAINER= yuri at FreeBSD.org
+COMMENT= Complete implementation of {{mustache}} templates using modern C++
+
+LICENSE= MIT
+LICENSE_FILE= ${WRKSRC}/LICENSE
+
+BUILD_DEPENDS= boost-libs>0:devel/boost-libs
+
+USES= cmake compiler:c++11-lang
+USE_GITHUB= yes
+GH_ACCOUNT= no1msd
+USE_LDCONFIG= yes
+
+CMAKE_ON= BUILD_SHARED_LIBS
+
+.include <bsd.port.mk>
Added: head/devel/mstch/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/mstch/distinfo Mon Jun 17 00:10:22 2019 (r504380)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1560729411
+SHA256 (no1msd-mstch-1.0.2-1-g0fde1cf_GH0.tar.gz) = 8b21ffe8c289fecd3dba6af3fc9c32d7544409c754d714f71d9f8bd15c2a56a6
+SIZE (no1msd-mstch-1.0.2-1-g0fde1cf_GH0.tar.gz) = 24413
Added: head/devel/mstch/files/patch-src_CMakeLists.txt
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/mstch/files/patch-src_CMakeLists.txt Mon Jun 17 00:10:22 2019 (r504380)
@@ -0,0 +1,11 @@
+--- src/CMakeLists.txt.orig 2019-06-16 23:58:00 UTC
++++ src/CMakeLists.txt
+@@ -22,7 +22,7 @@ set(SRC
+ token.cpp
+ utils.cpp)
+
+-add_library(mstch STATIC ${SRC})
++add_library(mstch ${SRC})
+
+ set_property(TARGET mstch PROPERTY VERSION ${mstch_VERSION})
+
Added: head/devel/mstch/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/mstch/pkg-descr Mon Jun 17 00:10:22 2019 (r504380)
@@ -0,0 +1,4 @@
+mstch is a complete implementation of {{mustache}} templates using modern C++.
+It's compliant with specifications v1.1.3, including the lambda module.
+
+WWW: https://github.com/no1msd/mstch
Added: head/devel/mstch/pkg-plist
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/mstch/pkg-plist Mon Jun 17 00:10:22 2019 (r504380)
@@ -0,0 +1,7 @@
+include/mstch/mstch.hpp
+lib/cmake/mstch/mstch-config-version.cmake
+lib/cmake/mstch/mstch-config.cmake
+lib/cmake/mstch/mstch-targets-%%CMAKE_BUILD_TYPE%%.cmake
+lib/cmake/mstch/mstch-targets.cmake
+lib/libmstch.so
+lib/libmstch.so.1.0.1
More information about the svn-ports-head
mailing list