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 969CE1582EF for ; Wed, 12 Feb 2025 15:04:10 +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 server-signature RSA-PSS (4096 bits)) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 7EF7334317F for ; Wed, 12 Feb 2025 15:04:10 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 010FB110476; Wed, 12 Feb 2025 15:03:57 +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 bobolink.gentoo.org (Postfix) with ESMTPS id EC40F110476 for ; Wed, 12 Feb 2025 15:03:56 +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 A200B3430BB for ; Wed, 12 Feb 2025 15:03:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8DFE427FE for ; Wed, 12 Feb 2025 15:03:53 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1739372629.b58e34a967a74b093fdc8f003fb97fc38cdeaf4b.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/azuredatastudio/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/azuredatastudio/azuredatastudio-1.50.0-r1.ebuild dev-util/azuredatastudio/azuredatastudio-1.50.0.ebuild dev-util/azuredatastudio/azuredatastudio-1.51.1.ebuild X-VCS-Directories: dev-util/azuredatastudio/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: b58e34a967a74b093fdc8f003fb97fc38cdeaf4b X-VCS-Branch: master Date: Wed, 12 Feb 2025 15:03:53 +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: 43a47db4-2e1a-481e-8bc8-8dfc8fcf1125 X-Archives-Hash: 09fd2ba4c3ece66fe1c44e476dd63c27 commit: b58e34a967a74b093fdc8f003fb97fc38cdeaf4b Author: Maciej Barć gentoo org> AuthorDate: Wed Feb 12 14:45:03 2025 +0000 Commit: Maciej Barć gentoo org> CommitDate: Wed Feb 12 15:03:49 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b58e34a9 dev-util/azuredatastudio: add some tweaks from vscode pkg Signed-off-by: Maciej Barć gentoo.org> ...datastudio-1.50.0.ebuild => azuredatastudio-1.50.0-r1.ebuild} | 9 +++++++-- dev-util/azuredatastudio/azuredatastudio-1.51.1.ebuild | 7 ++++++- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/dev-util/azuredatastudio/azuredatastudio-1.50.0.ebuild b/dev-util/azuredatastudio/azuredatastudio-1.50.0-r1.ebuild similarity index 89% rename from dev-util/azuredatastudio/azuredatastudio-1.50.0.ebuild rename to dev-util/azuredatastudio/azuredatastudio-1.50.0-r1.ebuild index af042f7066aa..08c503670c03 100644 --- a/dev-util/azuredatastudio/azuredatastudio-1.50.0.ebuild +++ b/dev-util/azuredatastudio/azuredatastudio-1.50.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -16,7 +16,7 @@ SRC_URI=" " S="${WORKDIR}" -LICENSE="MIT" +LICENSE="Apache-2.0 BSD BSD-1 BSD-2 BSD-4 CC-BY-4.0 ISC LGPL-2.1+ MIT MPL-2.0 openssl PYTHON TextMate-bundle Unlicense UoI-NCSA W3C" SLOT="0" KEYWORDS="-* ~amd64" IUSE="kerberos" @@ -85,6 +85,11 @@ src_prepare() { cd "${PN}/resources/app" || die + rm -r ./ThirdPartyNotices.txt || die + + # Disable update server. + sed -e "/updateUrl/d" -i ./product.json || die + # Kerberos libs, same issue as VSCode/VSCodium. if ! use kerberos ; then rm -r node_modules.asar.unpacked/kerberos || die diff --git a/dev-util/azuredatastudio/azuredatastudio-1.51.1.ebuild b/dev-util/azuredatastudio/azuredatastudio-1.51.1.ebuild index 53d8dc5667e8..472ce1d714cb 100644 --- a/dev-util/azuredatastudio/azuredatastudio-1.51.1.ebuild +++ b/dev-util/azuredatastudio/azuredatastudio-1.51.1.ebuild @@ -16,7 +16,7 @@ SRC_URI=" " S="${WORKDIR}" -LICENSE="MIT" +LICENSE="Apache-2.0 BSD BSD-1 BSD-2 BSD-4 CC-BY-4.0 ISC LGPL-2.1+ MIT MPL-2.0 openssl PYTHON TextMate-bundle Unlicense UoI-NCSA W3C" SLOT="0" KEYWORDS="-* ~amd64" IUSE="kerberos" @@ -85,6 +85,11 @@ src_prepare() { cd "${PN}/resources/app" || die + rm -r ./ThirdPartyNotices.txt || die + + # Disable update server. + sed -e "/updateUrl/d" -i ./product.json || die + # Kerberos libs, same issue as VSCode/VSCodium. if ! use kerberos ; then rm -r node_modules.asar.unpacked/kerberos || die