From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 035581384B2 for ; Thu, 30 Jul 2015 20:56:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1678914068; Thu, 30 Jul 2015 20:56:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B546714068 for ; Thu, 30 Jul 2015 20:56:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E201D34096F for ; Thu, 30 Jul 2015 20:56:07 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 78573BF for ; Thu, 30 Jul 2015 20:56:05 +0000 (UTC) From: "Richard Farina" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Richard Farina" Message-ID: <1438268899.847f7060bd05b172a191faf2cdc446605f75abcb.zerochaos@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: / X-VCS-Repository: proj/genkernel X-VCS-Files: Makefile X-VCS-Directories: / X-VCS-Committer: zerochaos X-VCS-Committer-Name: Richard Farina X-VCS-Revision: 847f7060bd05b172a191faf2cdc446605f75abcb X-VCS-Branch: master Date: Thu, 30 Jul 2015 20:56: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-Archives-Salt: d280905b-0c4f-4457-85ce-90fcdf616f56 X-Archives-Hash: 8af4606dcf322d7526b50ecdae68f402 commit: 847f7060bd05b172a191faf2cdc446605f75abcb Author: Rick Farina (Zero_Chaos) gentoo org> AuthorDate: Thu Jul 30 15:08:19 2015 +0000 Commit: Richard Farina gentoo org> CommitDate: Thu Jul 30 15:08:19 2015 +0000 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=847f7060 switch to xz because why not -rw-r--r-- 1 zero zero 280K Jul 30 10:55 genkernel-3.4.51.tar.bz2 -rw-r--r-- 1 zero zero 245K Jul 30 10:52 genkernel-3.4.51.tar.xz Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 8e31a06..76c9492 100644 --- a/Makefile +++ b/Makefile @@ -19,12 +19,12 @@ check-git-repository: git diff --cached --quiet || { echo 'STOP, you have uncommitted changes in the index' ; false ; } dist: check-git-repository $(EXTRA_DIST) - rm -Rf "$(distdir)" "$(distdir)".tar "$(distdir)".tar.bz2 + rm -Rf "$(distdir)" "$(distdir)".tar "$(distdir)".tar.xz mkdir "$(distdir)" git ls-files -z | xargs -0 cp --no-dereference --parents --target-directory="$(distdir)" \ $(EXTRA_DIST) tar cf "$(distdir)".tar "$(distdir)" - bzip2 -9v "$(distdir)".tar + xz -v "$(distdir)".tar rm -Rf "$(distdir)" .PHONY: clean check-git-repository dist