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 9C87F15801B for ; Wed, 23 Aug 2023 15:41:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BC5952BC125; Wed, 23 Aug 2023 15:41:49 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 pigeon.gentoo.org (Postfix) with ESMTPS id 5170B2BC125 for ; Wed, 23 Aug 2023 15:41:49 +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 84E443412AC for ; Wed, 23 Aug 2023 15:41:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B599B106F for ; Wed, 23 Aug 2023 15:41:46 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1692805243.e1d45f7d9489c3a7d5ca1cccebe2d2d2c91d23dd.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-wine/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-eselect/eselect-wine/eselect-wine-2.0.2-r1.ebuild app-eselect/eselect-wine/eselect-wine-2.0.2-r2.ebuild X-VCS-Directories: app-eselect/eselect-wine/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: e1d45f7d9489c3a7d5ca1cccebe2d2d2c91d23dd X-VCS-Branch: master Date: Wed, 23 Aug 2023 15:41:46 +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: 5c7e7a9f-45ba-45af-ac00-42300a24ae4a X-Archives-Hash: ef6e0da3033defc83755c728e23edf21 commit: e1d45f7d9489c3a7d5ca1cccebe2d2d2c91d23dd Author: Ionen Wolkens gentoo org> AuthorDate: Wed Aug 23 15:40:43 2023 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Wed Aug 23 15:40:43 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1d45f7d app-eselect/eselect-wine: fix /usr/include/wine symlink Had double wine/wine, and turns out wineasio still makes use of this, albeit usefulness of it is still questionable. Signed-off-by: Ionen Wolkens gentoo.org> .../{eselect-wine-2.0.2-r1.ebuild => eselect-wine-2.0.2-r2.ebuild} | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/app-eselect/eselect-wine/eselect-wine-2.0.2-r1.ebuild b/app-eselect/eselect-wine/eselect-wine-2.0.2-r2.ebuild similarity index 92% rename from app-eselect/eselect-wine/eselect-wine-2.0.2-r1.ebuild rename to app-eselect/eselect-wine/eselect-wine-2.0.2-r2.ebuild index e2fbb4428e06..da39532a82a4 100644 --- a/app-eselect/eselect-wine/eselect-wine-2.0.2-r1.ebuild +++ b/app-eselect/eselect-wine/eselect-wine-2.0.2-r2.ebuild @@ -30,11 +30,10 @@ src_install() { XDG_DATA_DIRS=\"${EPREFIX}/etc/eselect/wine/share\"") EOF - # links for building, e.g. wineasio (bug #657748), albeit this - # should be rarely used directly nowadays and could be removable - # (removing would also solve the one-time QA issue described below) + # links to help building, e.g. wineasio (bug #657748), + # albeit in general these are not particularly important dosym -r /etc/eselect/wine/wine /usr/lib/wine - dosym -r /etc/eselect/wine/include /usr/include/wine + dosym -r /etc/eselect/wine/include/wine /usr/include/wine einstalldocs }