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 8A92B158020 for ; Tue, 22 Nov 2022 07:20:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 901C9E0CA4; Tue, 22 Nov 2022 07:20:40 +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 7ADDAE0CA4 for ; Tue, 22 Nov 2022 07:20:40 +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 9BB6134129A for ; Tue, 22 Nov 2022 07:20:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0451D621 for ; Tue, 22 Nov 2022 07:20:38 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1669101537.2e28b6eac1142e10978da0b606049d849fc25cf8.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/dpkg/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/dpkg/dpkg-1.20.12.ebuild X-VCS-Directories: app-arch/dpkg/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: 2e28b6eac1142e10978da0b606049d849fc25cf8 X-VCS-Branch: master Date: Tue, 22 Nov 2022 07:20: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: da2ff4fa-b709-4faf-b5ba-add43f761eb0 X-Archives-Hash: cc9ad1cdf2f12753ba4098532dd03551 commit: 2e28b6eac1142e10978da0b606049d849fc25cf8 Author: Georgy Yakovlev gentoo org> AuthorDate: Tue Nov 22 07:18:28 2022 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Tue Nov 22 07:18:57 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e28b6ea app-arch/dpkg: remove USE=unicode in 1.20.12 Enable unconditionally. Signed-off-by: Georgy Yakovlev gentoo.org> app-arch/dpkg/dpkg-1.20.12.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app-arch/dpkg/dpkg-1.20.12.ebuild b/app-arch/dpkg/dpkg-1.20.12.ebuild index 52f5a6b4baf6..22a63943ecf0 100644 --- a/app-arch/dpkg/dpkg-1.20.12.ebuild +++ b/app-arch/dpkg/dpkg-1.20.12.ebuild @@ -11,11 +11,12 @@ SRC_URI="mirror://debian/pool/main/d/${PN}/${P/-/_}.tar.xz" LICENSE="GPL-2+" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" -IUSE="+bzip2 libmd +lzma nls selinux static-libs test unicode +update-alternatives +zlib" +IUSE="+bzip2 libmd +lzma nls selinux static-libs test +update-alternatives +zlib" RESTRICT="!test? ( test )" RDEPEND=" >=dev-lang/perl-5.14.2:= + sys-libs/ncurses:=[unicode(+)] bzip2? ( app-arch/bzip2 ) libmd? ( app-crypt/libmd ) lzma? ( app-arch/xz-utils ) @@ -65,13 +66,13 @@ src_configure() { econf \ $(use_enable nls) \ - $(use_enable unicode) \ $(use_enable update-alternatives) \ $(use_with bzip2 libbz2) \ $(use_with libmd) \ $(use_with lzma liblzma) \ $(use_with selinux libselinux) \ $(use_with zlib libz) \ + --enable-unicode \ --disable-compiler-warnings \ --disable-dselect \ --disable-start-stop-daemon \