pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/cppunit



Module Name:    pkgsrc
Committed By:   wiz
Date:           Wed Apr 19 12:20:09 UTC 2017

Modified Files:
        pkgsrc/devel/cppunit: Makefile PLIST distinfo
        pkgsrc/devel/cppunit/patches: patch-doc_Makefile.in
Removed Files:
        pkgsrc/devel/cppunit/patches: patch-configure

Log Message:
Updated cppunit to 1.14.0.

  New in CppUnit 1.14.0:
  ---------------------

  - TestCaller supports any callable that can be put into
    std::function<void()>.

  - CPPUNIT_TEST_PARAMETERIZED executes a test for any value in
    an iteratable.

  - Added new Assertion macros: ASSERT_LESS, ASSERT_GREATER,
                    ASSERT_LESSEQUAL, ASSERT_GREATEREQUAL

* Portability:
  - Always build with C++11.

  - Always require RTTI support.

  - Removed support for compilers that don't support
    default template arguments with standard containers.

  - Removed portability headers for wrapper around
    standard containers.

  - Support C++11 enum class in asserter.

* Test Plug-in Runner:
  - Fixed crash on Win64 in test runner (fdo#81433)

* Removed features

  - QT test runner

  - msvc6 test runners

  - msvc6 plugin

  - BeOS support


To generate a diff of this commit:
cvs rdiff -u -r1.25 -r1.26 pkgsrc/devel/cppunit/Makefile
cvs rdiff -u -r1.15 -r1.16 pkgsrc/devel/cppunit/PLIST
cvs rdiff -u -r1.11 -r1.12 pkgsrc/devel/cppunit/distinfo
cvs rdiff -u -r1.1 -r0 pkgsrc/devel/cppunit/patches/patch-configure
cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/cppunit/patches/patch-doc_Makefile.in

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/cppunit/Makefile
diff -u pkgsrc/devel/cppunit/Makefile:1.25 pkgsrc/devel/cppunit/Makefile:1.26
--- pkgsrc/devel/cppunit/Makefile:1.25  Fri Nov 29 16:52:12 2013
+++ pkgsrc/devel/cppunit/Makefile       Wed Apr 19 12:20:08 2017
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.25 2013/11/29 16:52:12 wiz Exp $
+# $NetBSD: Makefile,v 1.26 2017/04/19 12:20:08 wiz Exp $
 
-DISTNAME=      cppunit-1.13.2
+DISTNAME=      cppunit-1.14.0
 CATEGORIES=    devel
 MASTER_SITES=  http://dev-www.libreoffice.org/src/
 
@@ -16,12 +16,6 @@ GNU_CONFIGURE=               yes
 
 PKGCONFIG_OVERRIDE=    cppunit.pc.in
 
-SUBST_CLASSES+=                rpath
-SUBST_SED.rpath=       -e s';-L@libdir@;${COMPILER_RPATH_FLAG}@libdir@ -L@libdir@;g'
-SUBST_FILES.rpath=     cppunit-config.in
-SUBST_STAGE.rpath=     pre-configure
-SUBST_MESSAGE.rpath=   Adding rpath to cppunit-config.
-
 .include "options.mk"
 
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/devel/cppunit/PLIST
diff -u pkgsrc/devel/cppunit/PLIST:1.15 pkgsrc/devel/cppunit/PLIST:1.16
--- pkgsrc/devel/cppunit/PLIST:1.15     Thu Aug 15 10:26:32 2013
+++ pkgsrc/devel/cppunit/PLIST  Wed Apr 19 12:20:08 2017
@@ -1,6 +1,5 @@
-@comment $NetBSD: PLIST,v 1.15 2013/08/15 10:26:32 gsutre Exp $
+@comment $NetBSD: PLIST,v 1.16 2017/04/19 12:20:08 wiz Exp $
 bin/DllPlugInTester
-bin/cppunit-config
 include/cppunit/AdditionalMessage.h
 include/cppunit/Asserter.h
 include/cppunit/BriefTestProgressListener.h
@@ -62,28 +61,24 @@ include/cppunit/plugin/PlugInManager.h
 include/cppunit/plugin/PlugInParameters.h
 include/cppunit/plugin/TestPlugIn.h
 include/cppunit/plugin/TestPlugInDefaultImpl.h
-include/cppunit/portability/CppUnitDeque.h
-include/cppunit/portability/CppUnitMap.h
-include/cppunit/portability/CppUnitSet.h
-include/cppunit/portability/CppUnitStack.h
-include/cppunit/portability/CppUnitVector.h
 include/cppunit/portability/FloatingPoint.h
 include/cppunit/portability/Stream.h
 include/cppunit/tools/Algorithm.h
+include/cppunit/tools/StringHelper.h
 include/cppunit/tools/StringTools.h
 include/cppunit/tools/XmlDocument.h
 include/cppunit/tools/XmlElement.h
-include/cppunit/ui/mfc/MfcTestRunner.h
-include/cppunit/ui/mfc/TestRunner.h
-include/cppunit/ui/qt/Config.h
-include/cppunit/ui/qt/QtTestRunner.h
-include/cppunit/ui/qt/TestRunner.h
 include/cppunit/ui/text/TestRunner.h
 include/cppunit/ui/text/TextTestRunner.h
 lib/libcppunit.la
 lib/pkgconfig/cppunit.pc
-man/man1/cppunit-config.1
-share/aclocal/cppunit.m4
+share/doc/cppunit/AUTHORS
+share/doc/cppunit/BUGS
+share/doc/cppunit/CodingGuideLines.txt
+share/doc/cppunit/FAQ
+share/doc/cppunit/INSTALL
+share/doc/cppunit/INSTALL-WIN32.txt
+share/doc/cppunit/INSTALL-unix
 ${PLIST.doc}share/doc/cppunit/html/FAQ
 ${PLIST.doc}share/doc/cppunit/html/_additional_message_8cpp.html
 ${PLIST.doc}share/doc/cppunit/html/_additional_message_8cpp__incl.map

Index: pkgsrc/devel/cppunit/distinfo
diff -u pkgsrc/devel/cppunit/distinfo:1.11 pkgsrc/devel/cppunit/distinfo:1.12
--- pkgsrc/devel/cppunit/distinfo:1.11  Tue Dec  8 11:02:25 2015
+++ pkgsrc/devel/cppunit/distinfo       Wed Apr 19 12:20:08 2017
@@ -1,8 +1,7 @@
-$NetBSD: distinfo,v 1.11 2015/12/08 11:02:25 jperkin Exp $
+$NetBSD: distinfo,v 1.12 2017/04/19 12:20:08 wiz Exp $
 
-SHA1 (cppunit-1.13.2.tar.gz) = 0eaf8bb1dcf4d16b12bec30d0732370390d35e6f
-RMD160 (cppunit-1.13.2.tar.gz) = 2a86e06409b53b3477842354b21dd17fc4943b09
-SHA512 (cppunit-1.13.2.tar.gz) = 8f4be569f321d577cec31931f49f4df143bc94e283605509b6ea50c60690aa91a2aed940e7eebd4b2413a4218f9a6c3978d312d8e587eab040283c6563846ecd
-Size (cppunit-1.13.2.tar.gz) = 953596 bytes
-SHA1 (patch-configure) = 467518999a6bbf1f18ce8b11edd9922f5ccbd09f
-SHA1 (patch-doc_Makefile.in) = 2cbff40694ef13088f7deafcbc0d91078d4e4c88
+SHA1 (cppunit-1.14.0.tar.gz) = 3eba38567bad4e300f76c764f91a7301bacc716d
+RMD160 (cppunit-1.14.0.tar.gz) = 9d2bec93f3cee98b95430b60d801f5ed886688aa
+SHA512 (cppunit-1.14.0.tar.gz) = 4ea1da423c6f7ab37e4144689f593396829ce74d43872d6b10709c1ad5fbda4ee945842f7e9803592520ef81ac713e95a3fe130295bf048cd32a605d1959882e
+Size (cppunit-1.14.0.tar.gz) = 959716 bytes
+SHA1 (patch-doc_Makefile.in) = 6de58f4996211fb6d3fc44b22e0b743cd80c6944

Index: pkgsrc/devel/cppunit/patches/patch-doc_Makefile.in
diff -u pkgsrc/devel/cppunit/patches/patch-doc_Makefile.in:1.2 pkgsrc/devel/cppunit/patches/patch-doc_Makefile.in:1.3
--- pkgsrc/devel/cppunit/patches/patch-doc_Makefile.in:1.2      Tue Dec  8 11:02:25 2015
+++ pkgsrc/devel/cppunit/patches/patch-doc_Makefile.in  Wed Apr 19 12:20:08 2017
@@ -1,10 +1,10 @@
-$NetBSD: patch-doc_Makefile.in,v 1.2 2015/12/08 11:02:25 jperkin Exp $
+$NetBSD: patch-doc_Makefile.in,v 1.3 2017/04/19 12:20:08 wiz Exp $
 
 Install docs in $docdir.
 
---- doc/Makefile.in.orig       2013-11-11 04:41:52.000000000 +0000
+--- doc/Makefile.in.orig       2017-04-19 12:16:20.675089478 +0000
 +++ doc/Makefile.in
-@@ -50,7 +50,7 @@ PRE_UNINSTALL = :
+@@ -88,7 +88,7 @@ PRE_UNINSTALL = :
  POST_UNINSTALL = :
  build_triplet = @build@
  host_triplet = @host@
@@ -12,4 +12,4 @@ Install docs in $docdir.
 +@DOC_TRUE@am__append_1 = $(docdir)/html
  @DOC_TRUE@am__append_2 = $(static_pages) html/index.html
  subdir = doc
- DIST_COMMON = $(srcdir)/Doxyfile.in $(srcdir)/Makefile.am \
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4



Home | Main Index | Thread Index | Old Index