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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CBE10158042 for ; Sat, 16 Nov 2024 13:43:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D0113E085B; Sat, 16 Nov 2024 13:43:44 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B401DE085B for ; Sat, 16 Nov 2024 13:43:44 +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 B5A8A335D0F for ; Sat, 16 Nov 2024 13:43:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EEA0DD81 for ; Sat, 16 Nov 2024 13:43:41 +0000 (UTC) From: "Andreas K. Hüttel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas K. Hüttel" Message-ID: <1731764600.9f6e8b884c567e676bdda30e3faaa79db068f3f4.dilfridge@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/pwcrypt/, app-admin/pwcrypt/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/pwcrypt/files/pwcrypt-eautoreconf.patch app-admin/pwcrypt/pwcrypt-1.2.2-r3.ebuild X-VCS-Directories: app-admin/pwcrypt/files/ app-admin/pwcrypt/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas K. Hüttel X-VCS-Revision: 9f6e8b884c567e676bdda30e3faaa79db068f3f4 X-VCS-Branch: master Date: Sat, 16 Nov 2024 13:43:41 +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: 97ae7b49-95ce-442d-b247-73ba8d212201 X-Archives-Hash: e40898166e4ebb19eb407614a98fe9e3 commit: 9f6e8b884c567e676bdda30e3faaa79db068f3f4 Author: Andreas K. Hüttel gentoo org> AuthorDate: Sat Nov 16 13:42:26 2024 +0000 Commit: Andreas K. Hüttel gentoo org> CommitDate: Sat Nov 16 13:43:20 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f6e8b88 app-admin/pwcrypt: add eautoreconf Also, doesnt use automake, so remove references to it from configure.in Closes: https://bugs.gentoo.org/905944 Signed-off-by: Andreas K. Hüttel gentoo.org> app-admin/pwcrypt/files/pwcrypt-eautoreconf.patch | 9 +++++++++ app-admin/pwcrypt/pwcrypt-1.2.2-r3.ebuild | 11 ++++++++--- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/app-admin/pwcrypt/files/pwcrypt-eautoreconf.patch b/app-admin/pwcrypt/files/pwcrypt-eautoreconf.patch new file mode 100644 index 000000000000..6b6733030077 --- /dev/null +++ b/app-admin/pwcrypt/files/pwcrypt-eautoreconf.patch @@ -0,0 +1,9 @@ +diff '--color=auto' -ruN pwcrypt-1.2.2.orig/configure.in pwcrypt-1.2.2/configure.in +--- pwcrypt-1.2.2.orig/configure.in 2003-10-07 23:18:49.000000000 +0200 ++++ pwcrypt-1.2.2/configure.in 2024-11-16 14:39:44.135876058 +0100 +@@ -1,5 +1,3 @@ +-AM_INIT_AUTOMAKE(cli-crypt,1.2.2) +-AM_PROG_CC_STDC + + dnl Process this file with autoconf to produce a configure script. + AC_INIT(src/main.c) diff --git a/app-admin/pwcrypt/pwcrypt-1.2.2-r3.ebuild b/app-admin/pwcrypt/pwcrypt-1.2.2-r3.ebuild index 8d3b90ef4689..836bf6934c10 100644 --- a/app-admin/pwcrypt/pwcrypt-1.2.2-r3.ebuild +++ b/app-admin/pwcrypt/pwcrypt-1.2.2-r3.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="8" -inherit toolchain-funcs +inherit toolchain-funcs autotools DESCRIPTION="An improved version of cli-crypt (encrypts data sent to it from the cli)" HOMEPAGE="http://xjack.org/pwcrypt/" @@ -16,7 +16,11 @@ KEYWORDS="amd64 ppc x86" RDEPEND="virtual/libcrypt:=" DEPEND="${RDEPEND}" -PATCHES=( "${FILESDIR}"/${PN}-gcc-10.patch ) +PATCHES=( + "${FILESDIR}"/${PN}-gcc-10.patch + "${FILESDIR}"/${PN}-eautoreconf.patch +) + DOCS=( CREDITS README ) src_prepare() { @@ -29,4 +33,5 @@ src_prepare() { src/Makefile.in || die tc-export CC + eautoreconf }