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 5B29E1382C5 for ; Mon, 5 Feb 2018 17:50:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7D648E092A; Mon, 5 Feb 2018 17:50:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 5EFF5E092A for ; Mon, 5 Feb 2018 17:50:22 +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 4B4B8335C39 for ; Mon, 5 Feb 2018 17:50:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D6E6119B for ; Mon, 5 Feb 2018 17:50:19 +0000 (UTC) From: "Amy Liffey" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Amy Liffey" Message-ID: <1517852987.40e8ca0d2be44a4aaa1947e945c38630f7cc9119.amynka@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/opencv/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/opencv/files/opencv-3.3.0-remove-tiny-dnn-autodownload.patch X-VCS-Directories: media-libs/opencv/files/ X-VCS-Committer: amynka X-VCS-Committer-Name: Amy Liffey X-VCS-Revision: 40e8ca0d2be44a4aaa1947e945c38630f7cc9119 X-VCS-Branch: master Date: Mon, 5 Feb 2018 17:50:19 +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-Archives-Salt: 9ee20bcc-032b-4d95-8b0d-a363edfb23c2 X-Archives-Hash: 33ff4670b24ee28c41800799d44e08fc commit: 40e8ca0d2be44a4aaa1947e945c38630f7cc9119 Author: Amy Liffey gentoo org> AuthorDate: Mon Feb 5 17:44:07 2018 +0000 Commit: Amy Liffey gentoo org> CommitDate: Mon Feb 5 17:49:47 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40e8ca0d media-libs/opencv: add missing patch Closes: https://bugs.gentoo.org/646582 Package-Manager: Portage-2.3.13, Repoman-2.3.3 ...opencv-3.3.0-remove-tiny-dnn-autodownload.patch | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/media-libs/opencv/files/opencv-3.3.0-remove-tiny-dnn-autodownload.patch b/media-libs/opencv/files/opencv-3.3.0-remove-tiny-dnn-autodownload.patch new file mode 100644 index 00000000000..6929a4c2ce4 --- /dev/null +++ b/media-libs/opencv/files/opencv-3.3.0-remove-tiny-dnn-autodownload.patch @@ -0,0 +1,27 @@ +diff -purN a/modules/dnn_modern/CMakeLists.txt b/modules/dnn_modern/CMakeLists.txt +--- a/modules/dnn_modern/CMakeLists.txt 2017-07-31 15:58:38.000000000 +0100 ++++ b/modules/dnn_modern/CMakeLists.txt 2018-01-15 17:15:15.202454388 +0000 +@@ -15,23 +15,6 @@ list(APPEND CMAKE_MODULE_PATH ${CMAKE_CU + # MODULE REQUIREMENTS + # ---------------------------------------------------------------------------- + +-set(TINY_DNN_CPP_PATH "${OpenCV_BINARY_DIR}/3rdparty/tinydnn") +-set(TINY_DNN_CPP_ROOT "${TINY_DNN_CPP_PATH}/tiny-dnn-1.0.0a3") +-ocv_download(FILENAME "v1.0.0a3.tar.gz" +- HASH "adb1c512e09ca2c7a6faef36f9c53e59" +- URL +- "${OPENCV_TINY_DNN_URL}" +- "$ENV{OPENCV_TINY_DNN_URL}" +- "https://github.com/tiny-dnn/tiny-dnn/archive/" +- DESTINATION_DIR "${TINY_DNN_CPP_PATH}" +- STATUS TINY_DNN_DOWNLOAD_SUCCESS +- ID "tiny-dnn" +- UNPACK RELATIVE_URL) +- +-if(NOT TINY_DNN_DOWNLOAD_SUCCESS) +- message(STATUS "Failed to download tiny-dnn sources") +-endif() +- + find_package(TinyDNN QUIET) + + include(CheckCXXCompilerFlag)