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 498381580B9 for ; Thu, 26 Aug 2021 23:21:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 66FAFE0891; Thu, 26 Aug 2021 23:21:43 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 15CB7E0891 for ; Thu, 26 Aug 2021 23:21:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 D184E33BE6B for ; Thu, 26 Aug 2021 23:21:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4359E7AF for ; Thu, 26 Aug 2021 23:21:40 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1630018517.26f2cf3987cf7734164f97b7abb50fc91bc8052b.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/gdb/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/gdb/gdb-10.1.ebuild sys-devel/gdb/gdb-10.2-r1.ebuild sys-devel/gdb/gdb-10.2.ebuild sys-devel/gdb/gdb-9999.ebuild X-VCS-Directories: sys-devel/gdb/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 26f2cf3987cf7734164f97b7abb50fc91bc8052b X-VCS-Branch: master Date: Thu, 26 Aug 2021 23:21:40 +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: 7b1f86f4-792b-47e5-810b-d04216d5a565 X-Archives-Hash: 9d61f6e890dc7ad3387c2151522c2d2b commit: 26f2cf3987cf7734164f97b7abb50fc91bc8052b Author: David Martí Huescar fukurokuju dev> AuthorDate: Thu Aug 26 15:06:18 2021 +0000 Commit: Sam James gentoo org> CommitDate: Thu Aug 26 22:55:17 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26f2cf39 sys-devel/gdb: add guile USE flag Add a new guile optional USE flag for GDB's scripting support. Also adds the >=guile-2.0 optional dependency if such flag is active. GDB has been compiling with '--without-guile' since #562902 and the option seems to have been forgotten. Since GDB works with guile 2.0 to 3.0 it seems about time to bring it back. Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: David Martí Huescar fukurokuju.dev> Bug: https://bugs.gentoo.org/562902 Closes: https://github.com/gentoo/gentoo/pull/22115 Signed-off-by: Sam James gentoo.org> sys-devel/gdb/gdb-10.1.ebuild | 6 +++--- sys-devel/gdb/gdb-10.2-r1.ebuild | 6 +++--- sys-devel/gdb/gdb-10.2.ebuild | 6 +++--- sys-devel/gdb/gdb-9999.ebuild | 6 +++--- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/sys-devel/gdb/gdb-10.1.ebuild b/sys-devel/gdb/gdb-10.1.ebuild index 43bc2989930..c751cccea85 100644 --- a/sys-devel/gdb/gdb-10.1.ebuild +++ b/sys-devel/gdb/gdb-10.1.ebuild @@ -46,7 +46,7 @@ SLOT="0" if [[ ${PV} != 9999* ]] ; then KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" fi -IUSE="cet lzma multitarget nls +python +server source-highlight test vanilla xml xxhash" +IUSE="cet guile lzma multitarget nls +python +server source-highlight test vanilla xml xxhash" REQUIRED_USE=" python? ( ${PYTHON_REQUIRED_USE} ) " @@ -65,6 +65,7 @@ RDEPEND=" sys-libs/zlib lzma? ( app-arch/xz-utils ) python? ( ${PYTHON_DEPS} ) + guile? ( >=dev-scheme/guile-2.0 ) xml? ( dev-libs/expat ) source-highlight? ( dev-util/source-highlight @@ -157,8 +158,6 @@ src_configure() { --enable-64-bit-bfd --disable-install-libbfd --disable-install-libiberty - # Disable guile for now as it requires guile-2.x #562902 - --without-guile --enable-obsolete # This only disables building in the readline subdir. # For gdb itself, it'll use the system version. @@ -176,6 +175,7 @@ src_configure() { $(use multitarget && echo --enable-targets=all) $(use_with python python "${EPYTHON}") $(use_with xxhash) + $(use_with guile) ) if use sparc-solaris || use x86-solaris ; then # disable largefile support diff --git a/sys-devel/gdb/gdb-10.2-r1.ebuild b/sys-devel/gdb/gdb-10.2-r1.ebuild index b5d5204d045..7440aef64f5 100644 --- a/sys-devel/gdb/gdb-10.2-r1.ebuild +++ b/sys-devel/gdb/gdb-10.2-r1.ebuild @@ -46,7 +46,7 @@ SLOT="0" if [[ ${PV} != 9999* ]] ; then KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" fi -IUSE="cet lzma multitarget nls +python +server source-highlight test vanilla xml xxhash" +IUSE="cet guile lzma multitarget nls +python +server source-highlight test vanilla xml xxhash" REQUIRED_USE=" python? ( ${PYTHON_REQUIRED_USE} ) " @@ -65,6 +65,7 @@ RDEPEND=" sys-libs/zlib lzma? ( app-arch/xz-utils ) python? ( ${PYTHON_DEPS} ) + guile? ( >=dev-scheme/guile-2.0 ) xml? ( dev-libs/expat ) source-highlight? ( dev-util/source-highlight @@ -159,8 +160,6 @@ src_configure() { --enable-64-bit-bfd --disable-install-libbfd --disable-install-libiberty - # Disable guile for now as it requires guile-2.x #562902 - --without-guile --enable-obsolete # This only disables building in the readline subdir. # For gdb itself, it'll use the system version. @@ -178,6 +177,7 @@ src_configure() { $(use multitarget && echo --enable-targets=all) $(use_with python python "${EPYTHON}") $(use_with xxhash) + $(use_with guile) ) if use sparc-solaris || use x86-solaris ; then # disable largefile support diff --git a/sys-devel/gdb/gdb-10.2.ebuild b/sys-devel/gdb/gdb-10.2.ebuild index 9968e1b3e6a..bdb30edb1d9 100644 --- a/sys-devel/gdb/gdb-10.2.ebuild +++ b/sys-devel/gdb/gdb-10.2.ebuild @@ -46,7 +46,7 @@ SLOT="0" if [[ ${PV} != 9999* ]] ; then KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" fi -IUSE="cet lzma multitarget nls +python +server source-highlight test vanilla xml xxhash" +IUSE="cet guile lzma multitarget nls +python +server source-highlight test vanilla xml xxhash" REQUIRED_USE=" python? ( ${PYTHON_REQUIRED_USE} ) " @@ -65,6 +65,7 @@ RDEPEND=" sys-libs/zlib lzma? ( app-arch/xz-utils ) python? ( ${PYTHON_DEPS} ) + guile? ( >=dev-scheme/guile-2.0 ) xml? ( dev-libs/expat ) source-highlight? ( dev-util/source-highlight @@ -158,8 +159,6 @@ src_configure() { --enable-64-bit-bfd --disable-install-libbfd --disable-install-libiberty - # Disable guile for now as it requires guile-2.x #562902 - --without-guile --enable-obsolete # This only disables building in the readline subdir. # For gdb itself, it'll use the system version. @@ -177,6 +176,7 @@ src_configure() { $(use multitarget && echo --enable-targets=all) $(use_with python python "${EPYTHON}") $(use_with xxhash) + $(use_with guile) ) if use sparc-solaris || use x86-solaris ; then # disable largefile support diff --git a/sys-devel/gdb/gdb-9999.ebuild b/sys-devel/gdb/gdb-9999.ebuild index d45841148f9..fde1ad99243 100644 --- a/sys-devel/gdb/gdb-9999.ebuild +++ b/sys-devel/gdb/gdb-9999.ebuild @@ -46,7 +46,7 @@ SLOT="0" if [[ ${PV} != 9999* ]] ; then KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" fi -IUSE="cet lzma multitarget nls +python +server source-highlight test vanilla xml xxhash" +IUSE="cet guile lzma multitarget nls +python +server source-highlight test vanilla xml xxhash" REQUIRED_USE=" python? ( ${PYTHON_REQUIRED_USE} ) " @@ -65,6 +65,7 @@ RDEPEND=" sys-libs/zlib lzma? ( app-arch/xz-utils ) python? ( ${PYTHON_DEPS} ) + guile? ( >=dev-scheme/guile-2.0 ) xml? ( dev-libs/expat ) source-highlight? ( dev-util/source-highlight @@ -156,8 +157,6 @@ src_configure() { --enable-64-bit-bfd --disable-install-libbfd --disable-install-libiberty - # Disable guile for now as it requires guile-2.x #562902 - --without-guile --enable-obsolete # This only disables building in the readline subdir. # For gdb itself, it'll use the system version. @@ -175,6 +174,7 @@ src_configure() { $(use multitarget && echo --enable-targets=all) $(use_with python python "${EPYTHON}") $(use_with xxhash) + $(use_with guile) ) if use sparc-solaris || use x86-solaris ; then # disable largefile support