commit:     637b9e78ba884167eaba3211a49d7266555de924
Author:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Tue Nov  2 22:35:22 2021 +0000
Commit:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Tue Nov  2 22:36:06 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=637b9e78

x11-misc/barrier: Drop and old vulnerable 2.3.3

Bug: https://bugs.gentoo.org/821337
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>

 x11-misc/barrier/Manifest                        |   1 -
 x11-misc/barrier/barrier-2.3.3.ebuild            |  82 -------------
 x11-misc/barrier/files/barrier-2.3.3-gtest.patch | 116 ------------------
 x11-misc/barrier/files/barrier-2.3.3-tests.patch | 150 -----------------------
 4 files changed, 349 deletions(-)

diff --git a/x11-misc/barrier/Manifest b/x11-misc/barrier/Manifest
index 3fc454b5951..c3e1ba04644 100644
--- a/x11-misc/barrier/Manifest
+++ b/x11-misc/barrier/Manifest
@@ -1,2 +1 @@
-DIST barrier-2.3.3.tar.gz 5465909 BLAKE2B 
3f881526f53113e48f1ea2e1592ebf2e932a8296fcba331243678963945001e7700dddc3bf8957f85285aec02c3d3700d31786cef291862a9b21780ee9e96cd6
 SHA512 
1ac945ce090d5bbdae7bab7d4ca802cc2d54c1644a12088203b240e38078d32d3b30ae2f764ba27d66c9d709e430b0eb1b4576314d99dd6177d8b88d19b89777
 DIST barrier-2.4.0.tar.gz 5572043 BLAKE2B 
e3eee306324a661a655b31e3179b7daf3fb199553a581059c67113f9597fb41d6af00fa3090d20c7d0b1d7420764454a512e91d8180ea663c3f99b89c663417f
 SHA512 
dff8d95c358688952baee0bbbf56b818e40a6c0483d58f6cadd55558ab5d0cefc92a37b0751bfd70868686e1716c729871ae00a30ee9b0ba944f531dfb742449

diff --git a/x11-misc/barrier/barrier-2.3.3.ebuild 
b/x11-misc/barrier/barrier-2.3.3.ebuild
deleted file mode 100644
index 33d180e0a5d..00000000000
--- a/x11-misc/barrier/barrier-2.3.3.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit desktop virtualx xdg cmake
-
-DESCRIPTION="Share a mouse and keyboard between computers (fork of Synergy)"
-HOMEPAGE="https://github.com/debauchee/barrier";
-SRC_URI="https://github.com/debauchee/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="gui test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-       net-misc/curl
-       x11-libs/libICE
-       x11-libs/libSM
-       x11-libs/libX11
-       x11-libs/libXext
-       x11-libs/libXi
-       x11-libs/libXinerama
-       x11-libs/libXrandr
-       x11-libs/libXtst
-       gui? (
-               dev-qt/qtcore:5
-               dev-qt/qtgui:5
-               dev-qt/qtnetwork:5
-               dev-qt/qtwidgets:5
-               net-dns/avahi[mdnsresponder-compat]
-       )
-       dev-libs/openssl:0=
-"
-DEPEND="
-       ${RDEPEND}
-       dev-cpp/gtest
-       x11-base/xorg-proto
-"
-
-PATCHES=(
-       "${FILESDIR}"/${P}-tests.patch
-       "${FILESDIR}"/${P}-gtest.patch
-)
-
-DOCS=(
-       ChangeLog
-       README.md
-       doc/${PN}.conf.example{,-advanced,-basic}
-)
-
-src_configure() {
-       local mycmakeargs=(
-               -DBARRIER_BUILD_GUI=$(usex gui)
-               -DBARRIER_BUILD_INSTALLER=OFF
-               -DBARRIER_BUILD_TESTS=$(usex test)
-               -DBARRIER_REVISION=00000000
-               -DBARRIER_USE_EXTERNAL_GTEST=ON
-               -DBARRIER_VERSION_STAGE=gentoo
-       )
-
-       cmake_src_configure
-}
-
-src_test() {
-       "${BUILD_DIR}"/bin/unittests || die
-       virtx "${BUILD_DIR}"/bin/integtests || die
-}
-
-src_install() {
-       cmake_src_install
-       einstalldocs
-       doman doc/${PN}{c,s}.1
-
-       if use gui; then
-               doicon -s scalable res/${PN}.svg
-               doicon -s 256 res/${PN}.png
-               make_desktop_entry ${PN} Barrier ${PN} Utility
-       fi
-}

diff --git a/x11-misc/barrier/files/barrier-2.3.3-gtest.patch 
b/x11-misc/barrier/files/barrier-2.3.3-gtest.patch
deleted file mode 100644
index 363f8c2c02c..00000000000
--- a/x11-misc/barrier/files/barrier-2.3.3-gtest.patch
+++ /dev/null
@@ -1,116 +0,0 @@
-From bd1db368b333783697d686c82c42e48c4bec8b9e Mon Sep 17 00:00:00 2001
-From: James Le Cuirot <[email protected]>
-Date: Fri, 21 Aug 2020 23:13:58 +0100
-Subject: [PATCH] Add BARRIER_USE_EXTERNAL_GTEST CMake option to use external
- GTest
-
----
- CMakeLists.txt                     |  1 +
- src/test/CMakeLists.txt            | 38 ++++++++++++++++++++----------
- src/test/integtests/CMakeLists.txt |  4 +---
- src/test/unittests/CMakeLists.txt  |  4 +---
- 4 files changed, 29 insertions(+), 18 deletions(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 4947d20f..18b242db 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -21,6 +21,7 @@ project (barrier C CXX)
- option (BARRIER_BUILD_GUI "Build the GUI" ON)
- option (BARRIER_BUILD_INSTALLER "Build the installer" ON)
- option (BARRIER_BUILD_TESTS "Build the tests" ON)
-+option (BARRIER_USE_EXTERNAL_GTEST "Use external installation of Google Test 
framework" OFF)
- 
- set (CMAKE_EXPORT_COMPILE_COMMANDS ON)
- set (CMAKE_CXX_STANDARD 14)
-diff --git a/src/test/CMakeLists.txt b/src/test/CMakeLists.txt
-index daecb317..4a50e701 100644
---- a/src/test/CMakeLists.txt
-+++ b/src/test/CMakeLists.txt
-@@ -14,19 +14,33 @@
- # You should have received a copy of the GNU General Public License
- # along with this program.  If not, see <http://www.gnu.org/licenses/>.
- 
--include_directories(
--    ../../ext/gtest
--    ../../ext/gtest/include
--    ../../ext/gmock
--    ../../ext/gmock/include)
--    
--add_library(gtest STATIC ../../ext/gtest/src/gtest-all.cc)
--add_library(gmock STATIC ../../ext/gmock/src/gmock-all.cc)
-+if (BARRIER_USE_EXTERNAL_GTEST)
-+    include (FindPkgConfig)
-+    find_package(GTest REQUIRED)
-+    pkg_check_modules(GMOCK REQUIRED gmock)
-+    include_directories(
-+        ${GTEST_INCLUDE_DIRS}
-+        ${GMOCK_INCLUDE_DIRS}
-+    )
-+else()
-+    include_directories(
-+        ../../ext/gtest
-+        ../../ext/gtest/include
-+        ../../ext/gmock
-+        ../../ext/gmock/include
-+    )
- 
--if (UNIX)
--    # ignore warnings in gtest and gmock
--    set_target_properties(gtest PROPERTIES COMPILE_FLAGS "-w")
--    set_target_properties(gmock PROPERTIES COMPILE_FLAGS "-w")
-+    add_library(gtest STATIC ../../ext/gtest/src/gtest-all.cc)
-+    add_library(gmock STATIC ../../ext/gmock/src/gmock-all.cc)
-+
-+    set(GTEST_LIBRARIES gtest)
-+    set(GMOCK_LIBRARIES gmock)
-+
-+    if (UNIX)
-+        # ignore warnings in gtest and gmock
-+        set_target_properties(gtest PROPERTIES COMPILE_FLAGS "-w")
-+        set_target_properties(gmock PROPERTIES COMPILE_FLAGS "-w")
-+    endif()
- endif()
- 
- add_subdirectory(integtests)
-diff --git a/src/test/integtests/CMakeLists.txt 
b/src/test/integtests/CMakeLists.txt
-index 0460d8df..9ef875bd 100644
---- a/src/test/integtests/CMakeLists.txt
-+++ b/src/test/integtests/CMakeLists.txt
-@@ -68,8 +68,6 @@ endif()
- 
- include_directories(
-     ../../
--    ../../../ext/gtest/include
--    ../../../ext/gmock/include
- )
- 
- if (UNIX)
-@@ -80,4 +78,4 @@ endif()
- 
- add_executable(integtests ${sources})
- target_link_libraries(integtests
--    arch base client common io ipc mt net platform server synlib gtest gmock 
${libs} ${OPENSSL_LIBS})
-+    arch base client common io ipc mt net platform server synlib 
${GTEST_LIBRARIES} ${GMOCK_LIBRARIES} ${libs} ${OPENSSL_LIBS})
-diff --git a/src/test/unittests/CMakeLists.txt 
b/src/test/unittests/CMakeLists.txt
-index c46375ce..61a0d35f 100644
---- a/src/test/unittests/CMakeLists.txt
-+++ b/src/test/unittests/CMakeLists.txt
-@@ -50,8 +50,6 @@ list(APPEND headers ${platform_sources})
- 
- include_directories(
-     ../../
--    ../../../ext/gtest/include
--    ../../../ext/gmock/include
-     ../../../ext
- )
- 
-@@ -67,4 +65,4 @@ endif()
- 
- add_executable(unittests ${sources})
- target_link_libraries(unittests
--    arch base client server common io net platform server synlib mt ipc gtest 
gmock ${libs} ${OPENSSL_LIBS})
-+    arch base client server common io net platform server synlib mt ipc 
${GTEST_LIBRARIES} ${GMOCK_LIBRARIES} ${libs} ${OPENSSL_LIBS})
--- 
-2.26.2
-

diff --git a/x11-misc/barrier/files/barrier-2.3.3-tests.patch 
b/x11-misc/barrier/files/barrier-2.3.3-tests.patch
deleted file mode 100644
index a4cc0d665a0..00000000000
--- a/x11-misc/barrier/files/barrier-2.3.3-tests.patch
+++ /dev/null
@@ -1,150 +0,0 @@
-From 4a031b8ce538af0c15857c37c1964bf144d5bc38 Mon Sep 17 00:00:00 2001
-From: James Le Cuirot <[email protected]>
-Date: Fri, 21 Aug 2020 22:22:48 +0100
-Subject: [PATCH] Add BARRIER_BUILD_TESTS CMake option to make tests optional
-
----
- CMakeLists.txt                             | 2 +-
- src/CMakeLists.txt                         | 5 ++++-
- src/lib/barrier/KeyMap.h                   | 4 ++++
- src/test/unittests/barrier/KeyMapTests.cpp | 2 ++
- 4 files changed, 11 insertions(+), 2 deletions(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 6a377c04..4947d20f 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -20,6 +20,7 @@ project (barrier C CXX)
- 
- option (BARRIER_BUILD_GUI "Build the GUI" ON)
- option (BARRIER_BUILD_INSTALLER "Build the installer" ON)
-+option (BARRIER_BUILD_TESTS "Build the tests" ON)
- 
- set (CMAKE_EXPORT_COMPILE_COMMANDS ON)
- set (CMAKE_CXX_STANDARD 14)
-@@ -49,7 +50,6 @@ else()
- endif()
- 
- set (libs)
--include_directories (BEFORE SYSTEM ./ext/gtest/include)
- 
- if (UNIX)
-     if (NOT APPLE)
-diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
-index 55aad09d..c3dea51f 100644
---- a/src/CMakeLists.txt
-+++ b/src/CMakeLists.txt
-@@ -19,7 +19,10 @@ include_directories (${CMAKE_CURRENT_BINARY_DIR}/lib)
- 
- add_subdirectory(lib)
- add_subdirectory(cmd)
--add_subdirectory(test)
-+
-+if (BARRIER_BUILD_TESTS)
-+    add_subdirectory(test)
-+endif()
- 
- if (BARRIER_BUILD_GUI)
-     add_subdirectory(gui)
-diff --git a/src/lib/barrier/KeyMap.h b/src/lib/barrier/KeyMap.h
-index b6eb8658..812b4d26 100644
---- a/src/lib/barrier/KeyMap.h
-+++ b/src/lib/barrier/KeyMap.h
-@@ -24,7 +24,9 @@
- #include "common/stdset.h"
- #include "common/stdvector.h"
- 
-+#ifdef TEST_ENV
- #include <gtest/gtest_prod.h>
-+#endif
- 
- namespace barrier {
- 
-@@ -327,6 +329,7 @@ public:
-     //@}
- 
- private:
-+#ifdef TEST_ENV
-     FRIEND_TEST(KeyMapTests,
-                 findBestKey_requiredDown_matchExactFirstItem);
-     FRIEND_TEST(KeyMapTests,
-@@ -340,6 +343,7 @@ private:
-     FRIEND_TEST(KeyMapTests,
-                 findBestKey_onlyOneRequiredDown_matchTwoRequiredChangesItem);
-     FRIEND_TEST(KeyMapTests, findBestKey_noRequiredDown_cannotMatch);
-+#endif
- 
- private:
-     //! Ways to synthesize a key
-diff --git a/src/test/unittests/barrier/KeyMapTests.cpp 
b/src/test/unittests/barrier/KeyMapTests.cpp
-index 59806339..c0832199 100644
---- a/src/test/unittests/barrier/KeyMapTests.cpp
-+++ b/src/test/unittests/barrier/KeyMapTests.cpp
-@@ -15,6 +15,8 @@
-  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
-  */
- 
-+#define TEST_ENV
-+
- #include "barrier/KeyMap.h"
- 
- #include "test/global/gtest.h"
--- 
-2.26.2
-
-From 19e020080cb3f54befb504abc48cf304ab42f23e Mon Sep 17 00:00:00 2001
-From: James Le Cuirot <[email protected]>
-Date: Sat, 22 Aug 2020 11:46:25 +0100
-Subject: [PATCH] Respect DISPLAY environment variable in XWindows tests
-
-XWindowsScreenTests was failing under Gentoo's package manager. I have
-also addressed this in XWindowsScreenSaverTests, which is currently
-unused.
----
- src/test/integtests/platform/XWindowsScreenSaverTests.cpp | 7 ++++++-
- src/test/integtests/platform/XWindowsScreenTests.cpp      | 7 ++++++-
- 2 files changed, 12 insertions(+), 2 deletions(-)
-
-diff --git a/src/test/integtests/platform/XWindowsScreenSaverTests.cpp 
b/src/test/integtests/platform/XWindowsScreenSaverTests.cpp
-index c6a2710c..1ee273ed 100644
---- a/src/test/integtests/platform/XWindowsScreenSaverTests.cpp
-+++ b/src/test/integtests/platform/XWindowsScreenSaverTests.cpp
-@@ -30,7 +30,12 @@ using ::testing::_;
- // TODO: not working on build machine for some reason
- TEST(CXWindowsScreenSaverTests, activate_defaultScreen_todo)
- {
--    Display* display = XOpenDisplay(":0.0");
-+    const char* displayName = getenv("DISPLAY");
-+    if (displayName == NULL) {
-+        displayName = ":0.0";
-+    }
-+
-+    Display* display = XOpenDisplay(displayName);
-     Window window = DefaultRootWindow(display);
-     MockEventQueue eventQueue;
-     EXPECT_CALL(eventQueue, removeHandler(_, _)).Times(1);
-diff --git a/src/test/integtests/platform/XWindowsScreenTests.cpp 
b/src/test/integtests/platform/XWindowsScreenTests.cpp
-index d8f75e15..97358197 100644
---- a/src/test/integtests/platform/XWindowsScreenTests.cpp
-+++ b/src/test/integtests/platform/XWindowsScreenTests.cpp
-@@ -25,11 +25,16 @@ using ::testing::_;
- 
- TEST(CXWindowsScreenTests, fakeMouseMove_nonPrimary_getCursorPosValuesCorrect)
- {
-+    const char* displayName = getenv("DISPLAY");
-+    if (displayName == NULL) {
-+        displayName = ":0.0";
-+    }
-+
-     MockEventQueue eventQueue;
-     EXPECT_CALL(eventQueue, adoptHandler(_, _, _)).Times(2);
-     EXPECT_CALL(eventQueue, adoptBuffer(_)).Times(2);
-     EXPECT_CALL(eventQueue, removeHandler(_, _)).Times(2);
--    XWindowsScreen screen(new XWindowsImpl(), ":0.0", false, false, 0, 
&eventQueue);
-+    XWindowsScreen screen(new XWindowsImpl(), displayName, false, false, 0, 
&eventQueue);
- 
-     screen.fakeMouseMove(10, 20);
- 
--- 
-2.26.2
-

Reply via email to