diff options
author | Rene Ladan <rene@FreeBSD.org> | 2022-12-31 01:29:50 +0000 |
---|---|---|
committer | Rene Ladan <rene@FreeBSD.org> | 2022-12-31 01:29:50 +0000 |
commit | c19abfc12dffa1bc6fb799c9ca464ae88ed1dbe5 (patch) | |
tree | 8f5287e9bb68292491ce1f26913e624f877873f5 | |
parent | fdb010a8d793a5356a58659206182490c8f0b80d (diff) | |
download | ports-c19abfc.tar.gz ports-c19abfc.zip |
cleanup: Remove expired ports:
2022-12-31 devel/unittest-cpp: Upstream have declared hiatus status since 2+ years back. Please consider using devel/googletest instead
-rw-r--r-- | MOVED | 1 | ||||
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/unittest-cpp/Makefile | 20 | ||||
-rw-r--r-- | devel/unittest-cpp/distinfo | 3 | ||||
-rw-r--r-- | devel/unittest-cpp/files/patch-CMakeLists.txt | 14 | ||||
-rw-r--r-- | devel/unittest-cpp/files/patch-tests_TestTest.cpp | 32 | ||||
-rw-r--r-- | devel/unittest-cpp/pkg-descr | 6 | ||||
-rw-r--r-- | devel/unittest-cpp/pkg-plist | 39 |
8 files changed, 1 insertions, 115 deletions
@@ -17719,3 +17719,4 @@ comms/hylafax||2022-12-31|Has expired: dead upstream, someone port hylafax+ from comms/tkhylafax||2022-12-31|Has expired: Depends on expired comms/hylafax lang/ponyc||2022-12-31|Has expired: Very outdated and unsupported upstream, depends on end of life devel/llvm70 www/varnish4|www/varnish6|2022-12-31|Has expired: End of life upstream, users are recommended to upgrade to 6.x or higher +devel/unittest-cpp||2022-12-31|Has expired: Upstream have declared hiatus status since 2+ years back. Please consider using devel/googletest instead diff --git a/devel/Makefile b/devel/Makefile index a57c144a979a..9188f94eebd5 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -7416,7 +7416,6 @@ SUBDIR += umbrello SUBDIR += umlgraph SUBDIR += unibilium - SUBDIR += unittest-cpp SUBDIR += universal-ctags SUBDIR += upnp SUBDIR += upp diff --git a/devel/unittest-cpp/Makefile b/devel/unittest-cpp/Makefile deleted file mode 100644 index c5c06247e4e0..000000000000 --- a/devel/unittest-cpp/Makefile +++ /dev/null @@ -1,20 +0,0 @@ -PORTNAME= unittest-cpp -PORTVERSION= 2.0.0 -DISTVERSIONPREFIX= v -CATEGORIES= devel - -MAINTAINER= iblis@hs.ntnu.edu.tw -COMMENT= Lightweight unit testing framework for C++ -WWW= https://github.com/unittest-cpp/unittest-cpp - -LICENSE= MIT -LICENSE_FILE= ${WRKSRC}/LICENSE - -DEPRECATED= Upstream have declared hiatus status since 2+ years back. Please consider using devel/googletest instead -EXPIRATION_DATE=2022-12-31 - -USE_GITHUB= yes - -USES= cmake - -.include <bsd.port.mk> diff --git a/devel/unittest-cpp/distinfo b/devel/unittest-cpp/distinfo deleted file mode 100644 index 1fd5ec813149..000000000000 --- a/devel/unittest-cpp/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -TIMESTAMP = 1484404298 -SHA256 (unittest-cpp-unittest-cpp-v2.0.0_GH0.tar.gz) = 74852198877dc2fdebdc4e5e9bd074018bf8ee03a13de139bfe41f4585b2f5b9 -SIZE (unittest-cpp-unittest-cpp-v2.0.0_GH0.tar.gz) = 54100 diff --git a/devel/unittest-cpp/files/patch-CMakeLists.txt b/devel/unittest-cpp/files/patch-CMakeLists.txt deleted file mode 100644 index 2582038e8003..000000000000 --- a/devel/unittest-cpp/files/patch-CMakeLists.txt +++ /dev/null @@ -1,14 +0,0 @@ ---- CMakeLists.txt.orig 2017-01-14 14:55:56 UTC -+++ CMakeLists.txt -@@ -106,5 +106,10 @@ set(exec_prefix ${CMAKE_INSTALL_PREFIX}/ - set(libdir ${CMAKE_INSTALL_PREFIX}/lib) - set(includedir ${CMAKE_INSTALL_PREFIX}/include/UnitTest++) - configure_file("UnitTest++.pc.in" "UnitTest++.pc" @ONLY) -+if(${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD") -+ set(pkgconfdir ${CMAKE_INSTALL_PREFIX}/libdata/pkgconfig) -+else() -+ set(pkgconfdir ${CMAKE_INSTALL_PREFIX}/lib/pkgconfig) -+endif() - install(FILES "${CMAKE_CURRENT_BINARY_DIR}/UnitTest++.pc" -- DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/pkgconfig") -+ DESTINATION "${pkgconfdir}") diff --git a/devel/unittest-cpp/files/patch-tests_TestTest.cpp b/devel/unittest-cpp/files/patch-tests_TestTest.cpp deleted file mode 100644 index ed09c84e203e..000000000000 --- a/devel/unittest-cpp/files/patch-tests_TestTest.cpp +++ /dev/null @@ -1,32 +0,0 @@ ---- tests/TestTest.cpp.orig 2022-10-05 11:53:09 UTC -+++ tests/TestTest.cpp -@@ -74,29 +74,6 @@ namespace { - - #if !defined(UNITTEST_MINGW) && !defined(UNITTEST_WIN32) - // Skip this test in debug because some debuggers don't like it. --#if defined(NDEBUG) -- TEST(CrashingTestsAreReportedAsFailures) -- { -- class CrashingTest : public Test -- { -- public: -- CrashingTest() : Test("crashing") {} -- virtual void RunImpl() const -- { -- -- reinterpret_cast< void (*)() >(0)(); -- } -- }; -- -- TestResults results; -- { -- ScopedCurrentTest scopedResult(results); -- CrashingTest().Run(); -- } -- -- CHECK_EQUAL(1, results.GetFailureCount()); -- } --#endif - #endif - #endif - diff --git a/devel/unittest-cpp/pkg-descr b/devel/unittest-cpp/pkg-descr deleted file mode 100644 index 77de6db77033..000000000000 --- a/devel/unittest-cpp/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -UnitTest++ is a lightweight unit testing framework for C++. -It was designed to do test-driven development on a wide variety of platforms. -Simplicity, portability, speed, and small footprint are all very important -aspects of UnitTest++. UnitTest++ is mostly standard C++ and makes minimal -use of advanced library and language features, which means it should be easily -portable to just about any platform. diff --git a/devel/unittest-cpp/pkg-plist b/devel/unittest-cpp/pkg-plist deleted file mode 100644 index ae504bc7ac9d..000000000000 --- a/devel/unittest-cpp/pkg-plist +++ /dev/null @@ -1,39 +0,0 @@ -include/UnitTest++/AssertException.h -include/UnitTest++/CheckMacros.h -include/UnitTest++/Checks.h -include/UnitTest++/CompositeTestReporter.h -include/UnitTest++/Config.h -include/UnitTest++/CurrentTest.h -include/UnitTest++/DeferredTestReporter.h -include/UnitTest++/DeferredTestResult.h -include/UnitTest++/ExceptionMacros.h -include/UnitTest++/ExecuteTest.h -include/UnitTest++/HelperMacros.h -include/UnitTest++/MemoryOutStream.h -include/UnitTest++/Posix/SignalTranslator.h -include/UnitTest++/Posix/TimeHelpers.h -include/UnitTest++/ReportAssert.h -include/UnitTest++/ReportAssertImpl.h -include/UnitTest++/RequireMacros.h -include/UnitTest++/RequiredCheckException.h -include/UnitTest++/RequiredCheckTestReporter.h -include/UnitTest++/Test.h -include/UnitTest++/TestDetails.h -include/UnitTest++/TestList.h -include/UnitTest++/TestMacros.h -include/UnitTest++/TestReporter.h -include/UnitTest++/TestReporterStdout.h -include/UnitTest++/TestResults.h -include/UnitTest++/TestRunner.h -include/UnitTest++/TestSuite.h -include/UnitTest++/ThrowingTestReporter.h -include/UnitTest++/TimeConstraint.h -include/UnitTest++/TimeHelpers.h -include/UnitTest++/UnitTest++.h -include/UnitTest++/UnitTestPP.h -include/UnitTest++/XmlTestReporter.h -lib/cmake/UnitTest++/UnitTest++Config.cmake -lib/cmake/UnitTest++/UnitTest++Targets-%%CMAKE_BUILD_TYPE%%.cmake -lib/cmake/UnitTest++/UnitTest++Targets.cmake -lib/libUnitTest++.a -libdata/pkgconfig/UnitTest++.pc |