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 5E1DB138010 for ; Thu, 11 Oct 2012 08:20:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 08E25E011A; Thu, 11 Oct 2012 08:20:49 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 7F184E011A for ; Thu, 11 Oct 2012 08:20:49 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DD09033D5EB for ; Thu, 11 Oct 2012 08:20:48 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 4F734E5436 for ; Thu, 11 Oct 2012 08:20:47 +0000 (UTC) From: "Ulrich Mueller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Mueller" Message-ID: <1349943802.f85ae041ef8d87944c2550db7ea25ceb9086d36e.ulm@gentoo> Subject: [gentoo-commits] proj/emacs-tools:emacs-updater commit in: / X-VCS-Repository: proj/emacs-tools X-VCS-Files: ChangeLog Makefile X-VCS-Directories: / X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Mueller X-VCS-Revision: f85ae041ef8d87944c2550db7ea25ceb9086d36e X-VCS-Branch: emacs-updater Date: Thu, 11 Oct 2012 08:20:47 +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: 7b2d1f7a-0522-47fb-98af-5cfd306a9848 X-Archives-Hash: 1e5f911733c0cd94360c08dbb090e6d8 commit: f85ae041ef8d87944c2550db7ea25ceb9086d36e Author: Ulrich Müller gentoo org> AuthorDate: Thu Oct 11 08:22:30 2012 +0000 Commit: Ulrich Mueller gentoo org> CommitDate: Thu Oct 11 08:23:22 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/emacs-tools.git;a=commit;h=f85ae041 Use xz for compression of distfile. --- ChangeLog | 4 ++++ Makefile | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index f06a375..9000cd1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2012-10-11 Ulrich Müller + + * Makefile (dist): Use xz for compression. + 2012-10-08 Ulrich Müller * emacs-updater: Honour slots of installed packages, bug 436350. diff --git a/Makefile b/Makefile index 27e4473..8b5d91f 100644 --- a/Makefile +++ b/Makefile @@ -13,8 +13,8 @@ DISTFILES = emacs-updater emacs-updater.8 ChangeLog all: dist: $(DISTFILES) - tar -cjf $(P).tar.bz2 --transform='s%^%$(P)/%' $^ - tar -tjvf $(P).tar.bz2 + tar -cJf $(P).tar.xz --transform='s%^%$(P)/%' $^ + tar -tJvf $(P).tar.xz clean: - -rm -f *~ *.tmp *.gz *.bz2 + -rm -f *~ *.tmp *.gz *.bz2 *.xz