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 02194138334 for ; Wed, 4 Dec 2019 00:44:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0CBC4E083D; Wed, 4 Dec 2019 00:44:25 +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 E6707E083E for ; Wed, 4 Dec 2019 00:44:24 +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 B673834D788 for ; Wed, 4 Dec 2019 00:44:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DC57B8D0 for ; Wed, 4 Dec 2019 00:44:21 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1575420237.34a75d01888a0c1115bdc134c120257b38ba6141.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/indilib/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/indilib/indilib-1.8.2.ebuild X-VCS-Directories: sci-libs/indilib/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 34a75d01888a0c1115bdc134c120257b38ba6141 X-VCS-Branch: master Date: Wed, 4 Dec 2019 00:44:21 +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: 3012dbec-5b3e-459c-96e2-19fe6b3dceb5 X-Archives-Hash: 5ee2b457f99c10b6530e60a85576c4f6 commit: 34a75d01888a0c1115bdc134c120257b38ba6141 Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed Dec 4 00:42:43 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Dec 4 00:43:57 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34a75d01 sci-libs/indilib: Drop 1.8.2 (r0) Package-Manager: Portage-2.3.80, Repoman-2.3.19 Signed-off-by: Andreas Sturmlechner gentoo.org> sci-libs/indilib/indilib-1.8.2.ebuild | 52 ----------------------------------- 1 file changed, 52 deletions(-) diff --git a/sci-libs/indilib/indilib-1.8.2.ebuild b/sci-libs/indilib/indilib-1.8.2.ebuild deleted file mode 100644 index 1598a17c3d0..00000000000 --- a/sci-libs/indilib/indilib-1.8.2.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake-utils udev - -DESCRIPTION="INDI Astronomical Control Protocol library" -HOMEPAGE="https://www.indilib.org/" -SRC_URI="https://github.com/${PN}/${PN/lib/}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="BSD GPL-2+ LGPL-2+ LGPL-2.1+" -SLOT="0/1" -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" -IUSE="ogg test" - -RDEPEND=" - net-misc/curl - sci-libs/cfitsio:= - sci-libs/gsl:= - sci-libs/libnova:= - sys-libs/zlib - virtual/jpeg:0 - virtual/libusb:0 - ogg? ( - media-libs/libogg - media-libs/libtheora - ) -" -DEPEND="${RDEPEND} - kernel_linux? ( sys-kernel/linux-headers ) - test? ( >=dev-cpp/gtest-1.8.0 ) -" - -RESTRICT="!test? ( test )" - -S="${WORKDIR}/${P/lib/}" - -src_configure() { - local mycmakeargs=( - -DINDI_BUILD_QT5_CLIENT=OFF - -DINDI_BUILD_UNITTESTS=$(usex test) - -DUDEVRULES_INSTALL_DIR="$(get_udevdir)" - $(cmake-utils_use_find_package ogg OggTheora) - ) - - cmake-utils_src_configure -} - -src_test() { - BUILD_DIR="${BUILD_DIR}"/test cmake-utils_src_test -}