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 22B40138334 for ; Tue, 19 Nov 2019 12:43:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 57767E0923; Tue, 19 Nov 2019 12:43:46 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 33255E0923 for ; Tue, 19 Nov 2019 12:43:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 3B0D334D0E3 for ; Tue, 19 Nov 2019 12:43:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B91AC8B7 for ; Tue, 19 Nov 2019 12:43:43 +0000 (UTC) From: "Craig Andrews" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Craig Andrews" Message-ID: <1574167412.01318666dbe96fd0811e06655de02ebe4a6cfb40.candrews@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/vidstab/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/vidstab/vidstab-1.1.0-r1.ebuild media-libs/vidstab/vidstab-1.1.0.ebuild X-VCS-Directories: media-libs/vidstab/ X-VCS-Committer: candrews X-VCS-Committer-Name: Craig Andrews X-VCS-Revision: 01318666dbe96fd0811e06655de02ebe4a6cfb40 X-VCS-Branch: master Date: Tue, 19 Nov 2019 12:43:43 +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: fdd43bb2-7513-47a3-a6de-f866379b2f36 X-Archives-Hash: 4ae07e24a3ba25132f8dbd79ed1762f0 commit: 01318666dbe96fd0811e06655de02ebe4a6cfb40 Author: Kalin KOZHUHAROV gmail com> AuthorDate: Tue Nov 19 11:41:15 2019 +0000 Commit: Craig Andrews gentoo org> CommitDate: Tue Nov 19 12:43:32 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01318666 media-libs/vidstab: cleaning old ebuilds Closes: https://bugs.gentoo.org/700302 Signed-off-by: Kalin KOZHUHAROV thinrope.net> Signed-off-by: Craig Andrews gentoo.org> media-libs/vidstab/vidstab-1.1.0-r1.ebuild | 61 ------------------------------ media-libs/vidstab/vidstab-1.1.0.ebuild | 56 --------------------------- 2 files changed, 117 deletions(-) diff --git a/media-libs/vidstab/vidstab-1.1.0-r1.ebuild b/media-libs/vidstab/vidstab-1.1.0-r1.ebuild deleted file mode 100644 index 229007a4aa8..00000000000 --- a/media-libs/vidstab/vidstab-1.1.0-r1.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 2018-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -: ${CMAKE_MAKEFILE_GENERATOR:=ninja} - -inherit cmake-multilib toolchain-funcs - -DESCRIPTION="Video stabilization library" -HOMEPAGE="http://public.hronopik.de/vid.stab/" - -if [[ ${PV} == *9999 ]] ; then - EGIT_REPO_URI="https://github.com/georgmartius/vid.stab.git" - inherit git-r3 -else - SRC_URI="https://github.com/georgmartius/vid.stab/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~alpha amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 ~sparc x86" - S="${WORKDIR}/vid.stab-${PV}" -fi - -LICENSE="GPL-2+" -SLOT="0" -IUSE="openmp cpu_flags_x86_sse2" -PATCHES=( - "${FILESDIR}/vidstab-1.1.0-tests-should-exit-with-code-0-on-success.patch" - "${FILESDIR}/vidstab-1.1.0-tests-use-sse2-only-if-available.patch" - "${FILESDIR}/vidstab-1.1.0-tests-1.1.0-fix-test_motiondetect-without-openmp.patch" -) -src_prepare() { - # USE=cpu_flags_x86_sse2 instead - sed -E 's#include (FindSSE)##' -i CMakeLists.txt || die - sed -E 's#include (FindSSE)##' -i tests/CMakeLists.txt || die - # strip some CFLAGS - for FILE_TO_PATCH in {,transcode/,tests/}CMakeLists.txt; do - sed -E 's#(add_definitions.* )-g #\1#' -i ${FILE_TO_PATCH} || die - sed -E 's#(add_definitions.* )-O3 #\1#' -i ${FILE_TO_PATCH} || die - done - cmake-utils_src_prepare -} - -src_configure() { - use openmp && tc-check-openmp - local mycmakeargs=( - -DUSE_OMP="$(usex openmp)" - -DSSE2_FOUND="$(usex cpu_flags_x86_sse2)" - ) - cmake-multilib_src_configure -} - -multilib_src_test() { - local mycmakeargs=( - -DUSE_OMP="$(usex openmp)" - -DSSE2_FOUND="$(usex cpu_flags_x86_sse2)" - ) - local CMAKE_USE_DIR="${CMAKE_USE_DIR}/tests" - local BUILD_DIR="${BUILD_DIR}/tests" - cmake-utils_src_configure - cmake-utils_src_make - "${BUILD_DIR}"/tests || die -} diff --git a/media-libs/vidstab/vidstab-1.1.0.ebuild b/media-libs/vidstab/vidstab-1.1.0.ebuild deleted file mode 100644 index 71caeda1378..00000000000 --- a/media-libs/vidstab/vidstab-1.1.0.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 2018-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake-utils toolchain-funcs - -DESCRIPTION="Video stabilization library" -HOMEPAGE="http://public.hronopik.de/vid.stab/" - -if [[ ${PV} == *9999 ]] ; then - EGIT_REPO_URI="https://github.com/georgmartius/vid.stab.git" - inherit git-r3 -else - SRC_URI="https://github.com/georgmartius/vid.stab/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/vid.stab-${PV}" -fi - -LICENSE="GPL-2+" -SLOT="0" -IUSE="openmp cpu_flags_x86_sse2" -PATCHES=( - "${FILESDIR}/vidstab-1.1.0-tests-should-exit-with-code-0-on-success.patch" -) -src_prepare() { - # USE=cpu_flags_x86_sse2 instead - sed -E 's#include (FindSSE)##' -i CMakeLists.txt - # strip some CFLAGS - for FILE_TO_PATCH in {,transcode/,tests/}CMakeLists.txt; do - sed -E 's#(add_definitions.* )-g #\1#' -i ${FILE_TO_PATCH} - sed -E 's#(add_definitions.* )-O3 #\1#' -i ${FILE_TO_PATCH} - done - cmake-utils_src_prepare -} - -src_configure() { - use openmp && tc-check-openmp - local mycmakeargs=( - -DUSE_OMP="$(usex openmp)" - -DSSE2_FOUND="$(usex cpu_flags_x86_sse2)" - ) - cmake-utils_src_configure -} - -src_test() { - cd tests || die - local mycmakeargs=( - -DUSE_OMP="$(usex openmp)" - ) - local CMAKE_USE_DIR="${CMAKE_USE_DIR}/tests" - local BUILD_DIR="${BUILD_DIR}/tests" - cmake-utils_src_configure - cmake-utils_src_make - "${BUILD_DIR}"/tests || die -}