This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 3.x development tree". The branch, master has been updated via c3996e92a5e83be288b291fc019c4467b598c8d6 (commit) via e80c4240051d37331a15e433e4170024044bd207 (commit) from 644af49375115e58823a8fc34c7618adbbe620b9 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit c3996e92a5e83be288b291fc019c4467b598c8d6 Author: Michael Tremer Date: Thu Mar 10 20:15:53 2016 +0000 cmake: Update to version 3.3.2 Signed-off-by: Michael Tremer commit e80c4240051d37331a15e433e4170024044bd207 Author: Michael Tremer Date: Thu Mar 10 05:11:29 2016 +0000 jsoncpp: New package Required by cmake Signed-off-by: Michael Tremer ----------------------------------------------------------------------- Summary of changes: cmake/cmake.nm | 9 +++++++-- jsoncpp/jsoncpp.nm | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 53 insertions(+), 2 deletions(-) create mode 100644 jsoncpp/jsoncpp.nm Difference in files: diff --git a/cmake/cmake.nm b/cmake/cmake.nm index c2e139c..161b9ff 100644 --- a/cmake/cmake.nm +++ b/cmake/cmake.nm @@ -4,7 +4,9 @@ ############################################################################### name = cmake -version = 3.0.2 +version = %{ver_maj}.%{ver_min} +ver_maj = 3.3 +ver_min = 2 release = 1 groups = Development/Tools @@ -25,16 +27,19 @@ description generation, code generation, and template instantiation. end -source_dl = http://www.cmake.org/files/v3.0/ +source_dl = http://www.cmake.org/files/v%{ver_maj}/ build requires + bzip2-devel expat-devel gcc-c++ + jsoncpp-devel libarchive-devel libcurl-devel ncurses-devel openssl-devel + xz-devel zlib-devel end diff --git a/jsoncpp/jsoncpp.nm b/jsoncpp/jsoncpp.nm new file mode 100644 index 0000000..c27ed69 --- /dev/null +++ b/jsoncpp/jsoncpp.nm @@ -0,0 +1,46 @@ +############################################################################### +# IPFire.org - An Open Source Firewall Solution # +# Copyright (C) - IPFire Development Team # +############################################################################### + +name = jsoncpp +version = 0.10.5 +release = 1 + +groups = System/Libraries +url = https://github.com/open-source-parsers/jsoncpp +license = Public Domain or MIT +summary = A JSON implementation in C++ + +description + %{name} is an implementation of a JSON (http://json.org) reader and + writer in C++. JSON (JavaScript Object Notation) is a lightweight + data-interchange format. + It is easy for humans to read and write. It is easy for machines to + parse and generate. +end + +source_dl = https://github.com/open-source-parsers/%{name}/archive/%{version}.tar.gz#/ + +build + requires + cmake + end + + build + CMAKE_CXX_FLAGS="-Wno-error" %{cmake} . + make %{PARALLELISMFLAGS} + end +end + +packages + package %{name} + + package %{name}-devel + template DEVEL + end + + package %{name}-debuginfo + template DEBUGINFO + end +end hooks/post-receive -- IPFire 3.x development tree