<feed xmlns='http://www.w3.org/2005/Atom'>
<title>pkgsrc/devel/cppunit/Makefile, branch pkgsrc_2012Q2</title>
<subtitle>[no description]</subtitle>
<id>https://git.osdyson.ru/mirror/pkgsrc/atom?h=pkgsrc_2012Q2</id>
<link rel='self' href='https://git.osdyson.ru/mirror/pkgsrc/atom?h=pkgsrc_2012Q2'/>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/'/>
<updated>2012-05-12T05:33:11Z</updated>
<entry>
<title>Made building docs an option; now tex and friends are not required for buildlink.</title>
<updated>2012-05-12T05:33:11Z</updated>
<author>
<name>adam</name>
<email>adam</email>
</author>
<published>2012-05-12T05:33:11Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=69512c96b936b3ff4374646930eed9ba77acdb37'/>
<id>urn:sha1:69512c96b936b3ff4374646930eed9ba77acdb37</id>
<content type='text'>
</content>
</entry>
<entry>
<title>devel/cppunit misses a destructor declaration for one of its classes.</title>
<updated>2011-06-28T09:28:24Z</updated>
<author>
<name>wiz</name>
<email>wiz</email>
</author>
<published>2011-06-28T09:28:24Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=e99cd0b123f784f12f4f8c43fa5a59f1c0cc3eaf'/>
<id>urn:sha1:e99cd0b123f784f12f4f8c43fa5a59f1c0cc3eaf</id>
<content type='text'>
The compiler generates an implicit destructor but in certain circonstances this leads to crashes.
More information is available in this bug report on Red Hat's tracker:
https://bugzilla.redhat.com/show_bug.cgi?id=641350

From Francois Tigeot in PR 45104.

Bump PKGREVISION.
</content>
</entry>
<entry>
<title>Reset maintainer for retired developers.</title>
<updated>2011-02-28T14:52:37Z</updated>
<author>
<name>wiz</name>
<email>wiz</email>
</author>
<published>2011-02-28T14:52:37Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=2941ecec8f01130a171dd0b31104359ecca3543a'/>
<id>urn:sha1:2941ecec8f01130a171dd0b31104359ecca3543a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Update to 1.12.1. Put rpath into config script.</title>
<updated>2010-10-16T15:25:09Z</updated>
<author>
<name>wiz</name>
<email>wiz</email>
</author>
<published>2010-10-16T15:25:09Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=d121c4cd814aab97cbe9c9608b8f274e3340a668'/>
<id>urn:sha1:d121c4cd814aab97cbe9c9608b8f274e3340a668</id>
<content type='text'>
  New in CppUnit 1.12.1:
  ----------------------

* Assertion:

  - CPPUNIT_ASSERT_DOUBLES_EQUAL() now properly handles non-finite
    values, specifically NaN, +Inf, and -Inf.

* Portability:

  - Fixed some compilation issue for QtTestRunner.
  - Code should build on Windows in UNICODE mode.

  New in CppUnit 1.12.0:
  ----------------------

* Portability:

  - autogen.sh can now be run on Mac OS X (patch #1449380
    contributed by Sander Temme).

* MFC Test runner:

  - fixed bug #1498175: double click on failure would sometime
    not goto failed assertion in visual studio.

* Documentation:

  - now generated with doxygen 1.4.7 new 'tabs' style.


  New in CppUnit 1.11.4:
  ----------------------


* Portability:

  - Support for Embedded Visual C++ 4 added. For this purpose, CppUnit now
    provides a very simple stream implementation if none is provided.
    This should also help porting on other platforms which have STL but
    no stream support. Just make sure that CPPUNIT_NO_STREAM is defined
    to 1 in your config header.

* Assertion:

  - Added missing _MESSAGE variants for the following assertions:

    CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE
    CPPUNIT_ASSERT_THROW_MESSAGE
    CPPUNIT_ASSERT_NO_THROW_MESSAGE
    CPPUNIT_ASSERT_ASSERTION_FAIL_MESSAGE
    CPPUNIT_ASSERT_ASSERTION_PASS_MESSAGE

    Notes: change made to CPPUNIT_ASSERT_THROW may cause compilation error
    if you're expecting std::exception as it would be caught twice. Contact us
    if it is an issue (we don't see much use for such a test).

    Some assertions failure message are now more detailed (exception,
    expression).
    Thanks to Neil Ferguson who contributed this patch.

  - Assertion on real number now output expected and actual value using the
    maximum available precision instead of the previous strategy of rounding
    to 6 digits.

    Thanks to Neil Ferguson who contributed this patch.

* Outputter:

  - XML Ouputter: patch #997006 contributed by Akos Maroy makes the
    'stand-alone' attribute of the XML header optional.
    See XmlOutputter::setStandalone() &amp; XmlDocument::setStandalone().

  - Better integration of compiler output for gcc on Mac OS X with Xcode
    (contributed by Claus Broch).

* MFC Test Runner

  - Integration with VC++ 7.0 &amp; 7.1. Double clicking on a failure will now
    to the failure location in the open IDE (no add-in necessary).
    This was contributed by Max Quatember and Andreas Pfaffenbichler.

  - Progress bar: now use system color to draw border
    (patch from bug #1165875 contributed by Pieter Van Dyck).

* QT Test Runner

  - Fixed display of multi-line messages (patch contributed by Karol Szkudlarek).

* Compilation:

  - The standard pkg-config file is now generated on unix (contributed by
    Robert Leight).

  - MinGW: patch #1024428 contributed by astar, fixed compilation issue in
    Win32DynamicLibraryManager.cpp.

  - MinGW, cygwin: enable build of shared library when using libtool.
    patch #1194394 contributed by St

  - autotool: applied patch #1076398 contributed by Henner Sudek. Quote:
		 "This patch allows AM_PATH_CPPUNIT to accept version
		numbers without minor and micro version.
		Now you can do:
		AM_PATH_CPPUNIT(1.9)
		instead of
		AM_PATH_CPPUNIT(1.9.0)"

  - Visual Studio 2005: removed deprecated warning.

* Documentation:

  - Corrected many typos in cookbook and money example. Thanks to all
    those who helped !

* Bug Fix:

  - cppunit.m4: patch #946302, AM_PATH_CPPUNIT doesn't report result
    if CppUnit is missing.

  - Message/SourceLine: copy constructor have been specifically implemented
    to ensure they are thread-safe even if std::string copy constructor
    is not (usually on reference count based implementation).

  - TestResultCollector: fixed memory leak occuring when calling reset().

* Contrib:

  - added XSLT for compatibility with Ant junit xml formatter.
    Patch #1112053 contributed by Norbert Barbosa.
    See xml-xsl/cppunit2junit.xsl and cppunit2junit.txt for details.

  - xml-xsl/report.xsl has been fixed to work with current xml output.

* (Possible) Compatiblity break:

  - All text output is now done on cout() instead of sometime cerr &amp;
    sometime cout depending on the component.

  - OStringStream definition has been removed from Portability.h. This
    means that &lt;sstream&gt; is no longer included, and that ostringstream and
    string might not be defined. In practice this should have no impact
    since those includes have been moved to other CppUnit headers.

* Notes:

  - CppUnit now uses the alias OStream when refering to std::ostream for
    portability.
</content>
</entry>
<entry>
<title>Depend on doxygen-1.6.3 and fix PLIST for it.</title>
<updated>2010-06-11T23:20:07Z</updated>
<author>
<name>wiz</name>
<email>wiz</email>
</author>
<published>2010-06-11T23:20:07Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=42b7f2d7a82a8e7712d7e1875f8b52ce244222c7'/>
<id>urn:sha1:42b7f2d7a82a8e7712d7e1875f8b52ce244222c7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Play the Doxygen game again.</title>
<updated>2010-01-28T14:37:21Z</updated>
<author>
<name>joerg</name>
<email>joerg</email>
</author>
<published>2010-01-28T14:37:21Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=7a0d3fe38a4ef04aa5615beaea3187441e36153d'/>
<id>urn:sha1:7a0d3fe38a4ef04aa5615beaea3187441e36153d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Doxygen bump.</title>
<updated>2009-08-24T05:59:24Z</updated>
<author>
<name>hasso</name>
<email>hasso</email>
</author>
<published>2009-08-24T05:59:24Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=4fbf137f9cf8380873630369e86d08dd485aa3c3'/>
<id>urn:sha1:4fbf137f9cf8380873630369e86d08dd485aa3c3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Doxygen bump.</title>
<updated>2009-08-20T03:56:53Z</updated>
<author>
<name>hasso</name>
<email>hasso</email>
</author>
<published>2009-08-20T03:56:53Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=407d274f88f4c3ce9677e0607d54b7bc59f702fe'/>
<id>urn:sha1:407d274f88f4c3ce9677e0607d54b7bc59f702fe</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Yet another doxygen catchup. Bump revision.</title>
<updated>2008-06-20T11:48:03Z</updated>
<author>
<name>joerg</name>
<email>joerg</email>
</author>
<published>2008-06-20T11:48:03Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=aa12637d18428defa47209df41eecc7f6b8b1ddb'/>
<id>urn:sha1:aa12637d18428defa47209df41eecc7f6b8b1ddb</id>
<content type='text'>
</content>
</entry>
<entry>
<title>DESTDIR is supported.</title>
<updated>2008-03-15T13:41:42Z</updated>
<author>
<name>joerg</name>
<email>joerg</email>
</author>
<published>2008-03-15T13:41:42Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=e3ccd7bf1f8b3077fbc22110ce1ae2f9dc147776'/>
<id>urn:sha1:e3ccd7bf1f8b3077fbc22110ce1ae2f9dc147776</id>
<content type='text'>
</content>
</entry>
</feed>
