From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2E782138359 for ; Fri, 13 Nov 2020 21:16:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5FBACE0809; Fri, 13 Nov 2020 21:16:52 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 47C33E0809 for ; Fri, 13 Nov 2020 21:16:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B3DEF341159 for ; Fri, 13 Nov 2020 21:16:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 00A9F386 for ; Fri, 13 Nov 2020 21:16:48 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1605302197.b4cbba24c0056cc899254fd69b6ecfa1a962b086.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libcec/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libcec/files/libcec-4.0.2-no-tinfo.patch X-VCS-Directories: dev-libs/libcec/files/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: b4cbba24c0056cc899254fd69b6ecfa1a962b086 X-VCS-Branch: master Date: Fri, 13 Nov 2020 21:16:48 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0ae2fe50-00c8-4c95-ba3f-720dfd81c1be X-Archives-Hash: 4ad0b0e520f7f7ef63ba24235448ecd4 commit: b4cbba24c0056cc899254fd69b6ecfa1a962b086 Author: Michael Mair-Keimberger gmail com> AuthorDate: Sun Nov 8 19:04:44 2020 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Fri Nov 13 21:16:37 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4cbba24 dev-libs/libcec: remove unused patch Package-Manager: Portage-3.0.9, Repoman-3.0.2 Signed-off-by: Michael Mair-Keimberger gmail.com> Closes: https://github.com/gentoo/gentoo/pull/18188 Signed-off-by: Aaron Bauman gentoo.org> dev-libs/libcec/files/libcec-4.0.2-no-tinfo.patch | 25 ----------------------- 1 file changed, 25 deletions(-) diff --git a/dev-libs/libcec/files/libcec-4.0.2-no-tinfo.patch b/dev-libs/libcec/files/libcec-4.0.2-no-tinfo.patch deleted file mode 100644 index 673c6f86c97..00000000000 --- a/dev-libs/libcec/files/libcec-4.0.2-no-tinfo.patch +++ /dev/null @@ -1,25 +0,0 @@ ---- libcec-libcec-4.0.2/src/cec-client/CMakeLists.txt -+++ libcec-libcec-4.0.2/src/cec-client/CMakeLists.txt -@@ -27,8 +27,12 @@ set(cecclient_SOURCES cec-client.cpp) - check_library_exists(curses initscr "" HAVE_CURSES_API) - if (HAVE_CURSES_API) - list(APPEND cecclient_SOURCES curses/CursesControl.cpp) -+ -+ # tinfo -+ find_library(HAVE_CURSES_TINFO tinfo) - endif() - -+ - add_executable(cec-client ${cecclient_SOURCES}) - set_target_properties(cec-client PROPERTIES VERSION ${LIBCEC_VERSION_MAJOR}.${LIBCEC_VERSION_MINOR}.${LIBCEC_VERSION_PATCH}) - target_link_libraries(cec-client ${p8-platform_LIBRARIES}) -@@ -44,6 +48,9 @@ if (NOT WIN32) - # curses - if (HAVE_CURSES_API) - target_link_libraries(cec-client curses) -+ if (HAVE_CURSES_TINFO) -+ target_link_libraries(cec-client tinfo) -+ endif() - endif() - - # rt