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 EA27D198006 for ; Sat, 23 Mar 2013 22:08:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3D9C6E07B6; Sat, 23 Mar 2013 22:08:59 +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 B5A9BE07B6 for ; Sat, 23 Mar 2013 22:08:58 +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 CDA0D33D806 for ; Sat, 23 Mar 2013 22:08:57 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 52785E408E for ; Sat, 23 Mar 2013 22:08:55 +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: <1364074798.b26bc78b855b9817ea14620c852d933c8cb2c199.ulm@gentoo> Subject: [gentoo-commits] proj/emacs-tools:emacs-daemon 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: b26bc78b855b9817ea14620c852d933c8cb2c199 X-VCS-Branch: emacs-daemon Date: Sat, 23 Mar 2013 22:08:55 +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: cea3186f-1510-4941-aa8f-34e7336a4608 X-Archives-Hash: 300f5fe9c8f42c9cabcb5bc21586ccb0 commit: b26bc78b855b9817ea14620c852d933c8cb2c199 Author: Ulrich Müller gentoo org> AuthorDate: Sat Mar 23 21:39:58 2013 +0000 Commit: Ulrich Mueller gentoo org> CommitDate: Sat Mar 23 21:39:58 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/emacs-tools.git;a=commit;h=b26bc78b Use xz for compression. * Makefile (dist): Use xz for compression. (clean): Remove *.xz. --- ChangeLog | 3 +++ Makefile | 6 +++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 80137ef..b284e70 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2013-03-23 Ulrich Müller + * Makefile (dist): Use xz for compression. + (clean): Remove *.xz. + * emacs.rc (stop): Specify retry schedule for start-stop-daemon: Send SIGTERM, wait for EMACS_TIMEOUT, then send SIGKILL. diff --git a/Makefile b/Makefile index b4c0459..0578d81 100644 --- a/Makefile +++ b/Makefile @@ -15,8 +15,8 @@ DISTFILES = README ChangeLog emacs.rc emacs.conf emacs-wrapper.sh \ 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 *.xz