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 93133138247 for ; Sat, 16 Nov 2013 12:50:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2FD5AE0AE4; Sat, 16 Nov 2013 12:50:48 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B5259E0AE4 for ; Sat, 16 Nov 2013 12:50:47 +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 A5F6E33DA53 for ; Sat, 16 Nov 2013 12:50:46 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 52B93E530A for ; Sat, 16 Nov 2013 12:50:45 +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: <1384604625.c6b8a9630301ba27eed8002a4950f0af05e6e084.ulm@gentoo> Subject: [gentoo-commits] proj/emacs-tools:emacs-common-gentoo 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: c6b8a9630301ba27eed8002a4950f0af05e6e084 X-VCS-Branch: emacs-common-gentoo Date: Sat, 16 Nov 2013 12:50:45 +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: 65a9125a-ab98-4637-a848-be51c55a4547 X-Archives-Hash: 587be57069fe0a75433c6f31d13eb21c commit: c6b8a9630301ba27eed8002a4950f0af05e6e084 Author: Ulrich Müller gentoo org> AuthorDate: Sat Nov 16 12:23:45 2013 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sat Nov 16 12:23:45 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/emacs-tools.git;a=commit;h=c6b8a963 Use xz for compression. * 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 69c720d..742c625 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2013-11-16 Ulrich Müller + + * Makefile (dist): Use xz for compression. + (clean): Remove *.xz. + 2013-11-15 Ulrich Müller * icons/gnome-emacs.png: File removed. The ebuild does not install diff --git a/Makefile b/Makefile index 5cb2e9b..ddffad5 100644 --- a/Makefile +++ b/Makefile @@ -20,11 +20,11 @@ DISTFILES = site-start.el site-gentoo.el subdirs.el $(DESKTOPFILES) \ all: dist: $(DISTFILES) - tar -czf $(P).tar.gz --transform='s%^%$(P)/%' $^ - tar -tzvf $(P).tar.gz + tar -cJf $(P).tar.xz --transform='s%^%$(P)/%' $^ + tar -tJvf $(P).tar.xz $(DESKTOPFILES): desktop-file-validate $@ clean: - -rm -f *~ *.tmp *.gz *.bz2 + -rm -f *~ *.tmp *.xz