From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 430671581B9 for ; Wed, 01 Oct 2025 14:21:02 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 1E98D341090 for ; Wed, 01 Oct 2025 14:21:02 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id B0FD21104A0; Wed, 01 Oct 2025 14:20:58 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id A47941103E2 for ; Wed, 01 Oct 2025 14:20:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 55B36340FA3 for ; Wed, 01 Oct 2025 14:20:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B5B9334EF for ; Wed, 01 Oct 2025 14:20:56 +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: <1759328423.d22adb8109dae6a315227bb90d3f402c67972443.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/lasi/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/lasi/lasi-1.1.3.ebuild X-VCS-Directories: media-libs/lasi/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: d22adb8109dae6a315227bb90d3f402c67972443 X-VCS-Branch: master Date: Wed, 01 Oct 2025 14:20:56 +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: 8c495b86-8dce-429c-ae35-84b36269a2b4 X-Archives-Hash: 47ec595eb96827d88ad5ccd45d0284e6 commit: d22adb8109dae6a315227bb90d3f402c67972443 Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed Oct 1 14:17:58 2025 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Oct 1 14:20:23 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d22adb81 media-libs/lasi: drop 1.1.3 Closes: https://bugs.gentoo.org/963580 Signed-off-by: Andreas Sturmlechner gentoo.org> media-libs/lasi/lasi-1.1.3.ebuild | 61 --------------------------------------- 1 file changed, 61 deletions(-) diff --git a/media-libs/lasi/lasi-1.1.3.ebuild b/media-libs/lasi/lasi-1.1.3.ebuild deleted file mode 100644 index 7797bf0c8521..000000000000 --- a/media-libs/lasi/lasi-1.1.3.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake flag-o-matic - -MY_PN=libLASi -MY_P=${MY_PN}-${PV} - -DESCRIPTION="C++ library for postscript stream output" -HOMEPAGE="http://www.unifont.org/lasi" -SRC_URI="https://downloads.sourceforge.net/${PN}/${MY_P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0/2" -KEYWORDS="~alpha amd64 ~arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux" -IUSE="doc examples" - -RDEPEND=" - dev-libs/glib:2 - media-libs/freetype:2 - x11-libs/pango" -DEPEND="${RDEPEND}" -BDEPEND=" - virtual/pkgconfig - doc? ( app-text/doxygen )" - -S="${WORKDIR}/${MY_P}" - -PATCHES=( - "${FILESDIR}"/${P}-cmake.patch - "${FILESDIR}"/${P}-pkgconfig.patch -) - -src_prepare() { - cmake_src_prepare - sed -i \ - -e "s:\/lib$:\/$(get_libdir):" \ - -e "s/libLASi-\${VERSION}/${PF}/" \ - cmake/modules/instdirs.cmake || die - sed -i \ - -e "s:\${DATA_DIR}/examples:/usr/share/doc/${PF}/examples:" \ - examples/CMakeLists.txt || die - - if use !examples; then - sed -i -e '/add_subdirectory(examples)/d' CMakeLists.txt || die - fi -} - -src_configure() { - # 788766 - append-cxxflags -std=gnu++14 - # doesn't like CMAKE_BUILD_TYPE = Gentoo - CMAKE_BUILD_TYPE=None - local mycmakeargs=( - -DDOXYGEN_EXECUTABLE=$(usex doc "${BROOT}"/usr/bin/doxygen '') - -DUSE_RPATH=OFF - ) - cmake_src_configure -}