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 CFC94138BF3 for ; Mon, 17 Feb 2014 21:38:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 37C9BE0B01; Mon, 17 Feb 2014 21:38:34 +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 2DF5FE0AA9 for ; Mon, 17 Feb 2014 21:38:33 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4C61033F9BE for ; Mon, 17 Feb 2014 21:38:32 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id DD4EF1872B for ; Mon, 17 Feb 2014 21:38:30 +0000 (UTC) From: "Ulrich Müller" 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 Müller" Message-ID: <1392662605.ce1acf67ee9e29b6da7f846ea7dd124a215007f0.ulm@gentoo> Subject: [gentoo-commits] proj/emacs-tools:eselect-emacs 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 Müller X-VCS-Revision: ce1acf67ee9e29b6da7f846ea7dd124a215007f0 X-VCS-Branch: eselect-emacs Date: Mon, 17 Feb 2014 21:38:30 +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: 25c474aa-9c3f-4d16-b870-fc22d82fcc64 X-Archives-Hash: a0c75797c7a728872bcb903af7714604 commit: ce1acf67ee9e29b6da7f846ea7dd124a215007f0 Author: Ulrich Müller gentoo org> AuthorDate: Mon Feb 17 18:43:25 2014 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Mon Feb 17 18:43:25 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/emacs-tools.git;a=commit;h=ce1acf67 Use xz for compression of tarball. * Makefile (dist): Use xz for compression. (clean): Remove *.xz. --- ChangeLog | 5 +++++ Makefile | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 8062a16..8e00232 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2014-02-17 Ulrich Müller + + * Makefile (dist): Use xz for compression. + (clean): Remove *.xz. + 2012-06-22 Ulrich Müller * Version 1.14 released. diff --git a/Makefile b/Makefile index 8022fb0..984a1e0 100644 --- a/Makefile +++ b/Makefile @@ -23,8 +23,8 @@ etags.eselect.5: ctags.eselect.5 cp $< $@ 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