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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 69EE1158013 for ; Wed, 6 Dec 2023 12:29:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B2B342BC03F; Wed, 6 Dec 2023 12:29:42 +0000 (UTC) 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 pigeon.gentoo.org (Postfix) with ESMTPS id 984C32BC03F for ; Wed, 6 Dec 2023 12:29:42 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AD87434067D for ; Wed, 6 Dec 2023 12:29:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A43E51440 for ; Wed, 6 Dec 2023 12:29:38 +0000 (UTC) From: "Pascal Jäger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pascal Jäger" Message-ID: <1701865738.b3c14cf227c0a1d3c397fe5b306de5699c222133.pascal.jaeger@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-editors/lapce/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-editors/lapce/lapce-0.3.0.ebuild X-VCS-Directories: app-editors/lapce/ X-VCS-Committer: pascal.jaeger X-VCS-Committer-Name: Pascal Jäger X-VCS-Revision: b3c14cf227c0a1d3c397fe5b306de5699c222133 X-VCS-Branch: dev Date: Wed, 6 Dec 2023 12:29:38 +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: 8632f330-f185-4c54-b30c-05686d2a509f X-Archives-Hash: e8a5d9e0df1dd894a32d68e5038f5fec commit: b3c14cf227c0a1d3c397fe5b306de5699c222133 Author: Pascal Jäger leimstift de> AuthorDate: Wed Dec 6 12:28:58 2023 +0000 Commit: Pascal Jäger leimstift de> CommitDate: Wed Dec 6 12:28:58 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b3c14cf2 app-editors/lapce: drop 0.3.0 Signed-off-by: Pascal Jäger leimstift.de> app-editors/lapce/lapce-0.3.0.ebuild | 60 ------------------------------------ 1 file changed, 60 deletions(-) diff --git a/app-editors/lapce/lapce-0.3.0.ebuild b/app-editors/lapce/lapce-0.3.0.ebuild deleted file mode 100644 index 5b694aa0bd..0000000000 --- a/app-editors/lapce/lapce-0.3.0.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 2022-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 -EAPI=8 - -CRATES=" " - -inherit cargo desktop xdg-utils - -DESCRIPTION="Lightning-fast and Powerful Code Editor written in Rust " -HOMEPAGE="https://lapce.dev/" -SRC_URI=" - https://github.com/lapce/lapce/archive/v${PV}.tar.gz -> ${P}.tar.gz - https://github.com/lapce/lapce/releases/download/v${PV}/vendor.tar.gz -> ${P}-vendor.tar.gz -" - -LICENSE="0BSD Apache-2.0 Apache-2.0-with-LLVM-exceptions Artistic-2 BSD BSD-2 Boost-1.0 CC0-1.0 CeCILL-2.1 GPL-2 ISC MIT MPL-2.0 Unicode-DFS-2016 Unlicense ZLIB" -SLOT="0" -KEYWORDS="~amd64" - -DEPEND=" - x11-libs/gtk+:3 - media-libs/fontconfig - sys-libs/zlib - x11-libs/libxcb:= -" -RDEPEND="${DEPEND}" -BDEPEND=" - dev-util/cmake - sys-devel/gcc - virtual/pkgconfig - >=virtual/rust-1.64 -" - -# rust does not use *FLAGS from make.conf, silence portage warning -QA_FLAGS_IGNORED="usr/bin/.*" - -src_unpack() { - default - cargo_gen_config - ln -s "${WORKDIR}/vendor/" "${WORKDIR}/lapce-${PV}/vendor" || die - sed -i "${ECARGO_HOME}/config" -e '/source.crates-io/d' || die - sed -i "${ECARGO_HOME}/config" -e '/replace-with = "gentoo"/d' || die - sed -i "${ECARGO_HOME}/config" -e '/local-registry = "\/nonexistent"/d' || die - cat "${WORKDIR}/vendor/vendor-config.toml" >> "${ECARGO_HOME}/config" || die -} - -src_install() { - dobin target/release/lapce - dobin target/release/lapce-proxy - domenu extra/linux/dev.lapce.lapce.desktop - newicon extra/images/logo.png dev.lapce.lapce.png -} - -pkg_postinst() { - xdg_desktop_database_update -} - -pkg_postrm() { - xdg_desktop_database_update -}