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 E530C13835A for ; Thu, 14 Jan 2021 13:34:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D8C65E095E; Thu, 14 Jan 2021 13:34:08 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 C24CDE095E for ; Thu, 14 Jan 2021 13:34:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 6A1393402FE for ; Thu, 14 Jan 2021 13:34:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9B8BF496 for ; Thu, 14 Jan 2021 13:34:05 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1610631243.f858f9bb9fd77966edb93af7e84c39eb72ff85d1.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/gnuconfig/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/gnuconfig/gnuconfig-99999999.ebuild X-VCS-Directories: sys-devel/gnuconfig/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: f858f9bb9fd77966edb93af7e84c39eb72ff85d1 X-VCS-Branch: master Date: Thu, 14 Jan 2021 13:34:05 +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: d1799c26-7073-4e10-81a8-8bd3284e0392 X-Archives-Hash: 28e12168bbfad2af90a19b1b9adbb316 commit: f858f9bb9fd77966edb93af7e84c39eb72ff85d1 Author: Lars Wendler gentoo org> AuthorDate: Thu Jan 14 12:49:32 2021 +0000 Commit: Lars Wendler gentoo org> CommitDate: Thu Jan 14 13:34:03 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f858f9bb sys-devel/gnuconfig: Handle ChangeLog file in live ebuild create tar.xz archives instead of .tar.bz2 Package-Manager: Portage-3.0.13, Repoman-3.0.2 Signed-off-by: Lars Wendler gentoo.org> sys-devel/gnuconfig/gnuconfig-99999999.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/sys-devel/gnuconfig/gnuconfig-99999999.ebuild b/sys-devel/gnuconfig/gnuconfig-99999999.ebuild index 0e97c0cc521..1032fedf8e0 100644 --- a/sys-devel/gnuconfig/gnuconfig-99999999.ebuild +++ b/sys-devel/gnuconfig/gnuconfig-99999999.ebuild @@ -8,7 +8,7 @@ if [[ ${PV} == "99999999" ]] ; then inherit git-r3 else - SRC_URI="https://dev.gentoo.org/~whissi/dist/${PN}/${P}.tar.bz2" + SRC_URI="https://dev.gentoo.org/~whissi/dist/${PN}/${P}.tar.xz" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt" S="${WORKDIR}" fi @@ -23,13 +23,14 @@ IUSE="" maint_pkg_create() { cd "${S}" + make ChangeLog || die local ver=$(gawk '{ gsub(/-/, "", $1); print $1; exit }' ChangeLog) [[ ${#ver} != 8 ]] && die "invalid version '${ver}'" cp "${FILESDIR}"/${PV}/*.patch . || die - local tar="${T}/gnuconfig-${ver}.tar.bz2" - tar -jcf "${tar}" ./* || die "creating tar failed" + local tar="${T}/gnuconfig-${ver}.tar.xz" + tar -Jcf "${tar}" ./* || die "creating tar failed" einfo "Packaged tar now available:" einfo "$(du -b "${tar}")" }