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 E2DBF13835A for ; Mon, 28 Dec 2020 15:17:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 27F5FE0C19; Mon, 28 Dec 2020 15:17:50 +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 13223E0C19 for ; Mon, 28 Dec 2020 15:17:49 +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 8B21034165C for ; Mon, 28 Dec 2020 15:17:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BE5DE476 for ; Mon, 28 Dec 2020 15:17:45 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1609168625.cce4f7dd97738aa11023f07b8279b86112b1fb63.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-embedded/libftdi/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-embedded/libftdi/libftdi-1.5.ebuild dev-embedded/libftdi/libftdi-9999.ebuild X-VCS-Directories: dev-embedded/libftdi/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: cce4f7dd97738aa11023f07b8279b86112b1fb63 X-VCS-Branch: master Date: Mon, 28 Dec 2020 15:17:45 +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: dd083f15-950e-48c8-a81a-81b4e3b85786 X-Archives-Hash: a2bfd63bded4685e314246398764377f commit: cce4f7dd97738aa11023f07b8279b86112b1fb63 Author: Jakov Smolic sartura hr> AuthorDate: Mon Dec 28 15:17:05 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Mon Dec 28 15:17:05 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cce4f7dd dev-embedded/libftdi: Disable static libs in 1.5 and 9999 Signed-off-by: Jakov Smolic sartura.hr> Signed-off-by: David Seifert gentoo.org> dev-embedded/libftdi/libftdi-1.5.ebuild | 16 +++++++--------- dev-embedded/libftdi/libftdi-9999.ebuild | 12 ++++++------ 2 files changed, 13 insertions(+), 15 deletions(-) diff --git a/dev-embedded/libftdi/libftdi-1.5.ebuild b/dev-embedded/libftdi/libftdi-1.5.ebuild index d5d1fe18543..cd5cc4c3539 100644 --- a/dev-embedded/libftdi/libftdi-1.5.ebuild +++ b/dev-embedded/libftdi/libftdi-1.5.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{6,7,8,9} ) +PYTHON_COMPAT=( python3_{6..9} ) inherit cmake python-single-r1 MY_P="${PN}1-${PV}" @@ -21,15 +21,15 @@ S="${WORKDIR}/${MY_P}" LICENSE="LGPL-2" SLOT="1" -IUSE="cxx doc examples python static-libs test tools" +IUSE="cxx doc examples python test tools" RESTRICT="!test? ( test )" REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" BDEPEND=" doc? ( app-doc/doxygen ) - python? ( dev-lang/swig ) -" -RDEPEND="virtual/libusb:1 + python? ( dev-lang/swig )" +RDEPEND=" + virtual/libusb:1 cxx? ( dev-libs/boost ) python? ( ${PYTHON_DEPS} ) tools? ( @@ -40,9 +40,7 @@ DEPEND="${RDEPEND} test? ( dev-libs/boost ) " -PATCHES=( - "${FILESDIR}/${P}-tests-no-cxx.patch" -) +PATCHES=( "${FILESDIR}"/${P}-tests-no-cxx.patch ) pkg_setup() { use python && python-single-r1_pkg_setup @@ -54,10 +52,10 @@ src_configure() { -DDOCUMENTATION=$(usex doc) -DEXAMPLES=$(usex examples) -DPYTHON_BINDINGS=$(usex python) - -DSTATICLIBS=$(usex static-libs) -DBUILD_TESTS=$(usex test) -DFTDI_EEPROM=$(usex tools) -DCMAKE_SKIP_BUILD_RPATH=ON + -DSTATICLIBS=OFF ) cmake_src_configure } diff --git a/dev-embedded/libftdi/libftdi-9999.ebuild b/dev-embedded/libftdi/libftdi-9999.ebuild index ac06a98e918..984ebde256d 100644 --- a/dev-embedded/libftdi/libftdi-9999.ebuild +++ b/dev-embedded/libftdi/libftdi-9999.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{6,7,8,9} ) +PYTHON_COMPAT=( python3_{6..9} ) inherit cmake python-single-r1 MY_P="${PN}1-${PV}" @@ -21,15 +21,15 @@ S="${WORKDIR}/${MY_P}" LICENSE="LGPL-2" SLOT="1" -IUSE="cxx doc examples python static-libs test tools" +IUSE="cxx doc examples python test tools" RESTRICT="!test? ( test )" REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" BDEPEND=" doc? ( app-doc/doxygen ) - python? ( dev-lang/swig ) -" -RDEPEND="virtual/libusb:1 + python? ( dev-lang/swig )" +RDEPEND=" + virtual/libusb:1 cxx? ( dev-libs/boost ) python? ( ${PYTHON_DEPS} ) tools? ( @@ -50,10 +50,10 @@ src_configure() { -DDOCUMENTATION=$(usex doc) -DEXAMPLES=$(usex examples) -DPYTHON_BINDINGS=$(usex python) - -DSTATICLIBS=$(usex static-libs) -DBUILD_TESTS=$(usex test) -DFTDI_EEPROM=$(usex tools) -DCMAKE_SKIP_BUILD_RPATH=ON + -DSTATICLIBS=OFF ) cmake_src_configure }