From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 367C41382C5 for ; Sat, 3 Mar 2018 09:33:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 06F22E09BC; Sat, 3 Mar 2018 09:33:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DC100E09BC for ; Sat, 3 Mar 2018 09:33:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 34A90335C0C for ; Sat, 3 Mar 2018 09:33:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5E7E81F1 for ; Sat, 3 Mar 2018 09:33:14 +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: <1520069561.3f07697db700af3e30e3eb5624c507b3f54aaef1.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/rust-mode/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emacs/rust-mode/Manifest app-emacs/rust-mode/rust-mode-0.3.0_p20180221.ebuild X-VCS-Directories: app-emacs/rust-mode/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 3f07697db700af3e30e3eb5624c507b3f54aaef1 X-VCS-Branch: master Date: Sat, 3 Mar 2018 09:33:14 +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: 317c4962-8f3f-4ab6-9de0-f963f08db6d5 X-Archives-Hash: 8d93a866b37ad6e9ef4fdc6bdbaf30d3 commit: 3f07697db700af3e30e3eb5624c507b3f54aaef1 Author: Ulrich Müller gentoo org> AuthorDate: Sat Mar 3 09:31:06 2018 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sat Mar 3 09:32:41 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f07697d app-emacs/rust-mode: New snapshot. Fixes byte-compile failure with Emacs 26. Closes: https://bugs.gentoo.org/649430 Package-Manager: Portage-2.3.24, Repoman-2.3.6 app-emacs/rust-mode/Manifest | 1 + .../rust-mode/rust-mode-0.3.0_p20180221.ebuild | 28 ++++++++++++++++++++++ 2 files changed, 29 insertions(+) diff --git a/app-emacs/rust-mode/Manifest b/app-emacs/rust-mode/Manifest index 693efa22deb..425464d3b57 100644 --- a/app-emacs/rust-mode/Manifest +++ b/app-emacs/rust-mode/Manifest @@ -1 +1,2 @@ +DIST rust-mode-0.3.0_p20180221.tar.xz 37392 BLAKE2B 185511a2096400254e141f213f2e9a84861c2aaf5f2259cab724aa929e07b2691ae6f36c5568de5d978809588271486377a194a77a066413df6ee995e9bbe54a SHA512 004bd1536ab2e1e708193509a307ed47e22bf1f3dc5d84816958588e312c8bf6e75ee178cc99439ec0bd427ba02030c133bb21f96c5116b175d1d7cde89e9e6c DIST rust-mode-1_beta20150411.tar.gz 18155 BLAKE2B 140cad8709f742216822b3933cac64dc7d136fe9fbf0ddec523b395cb148cd8935587a590be41187c4cdfce43b64a72ede9a67a2e77fa7b11b9562e20ae729da SHA512 fc9fe74ba4924cf54664f37c5a88d86b38e17e4ad5e0d4d924afd7f3c8428764dece81cfbe40397460685859f34c3eb841b2c83aef8f34526f4ed3f065cc504e diff --git a/app-emacs/rust-mode/rust-mode-0.3.0_p20180221.ebuild b/app-emacs/rust-mode/rust-mode-0.3.0_p20180221.ebuild new file mode 100644 index 00000000000..a061b8c6033 --- /dev/null +++ b/app-emacs/rust-mode/rust-mode-0.3.0_p20180221.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +NEED_EMACS=24 + +inherit elisp + +DESCRIPTION="A major emacs mode for editing Rust source code" +HOMEPAGE="https://github.com/rust-lang/rust-mode" +SRC_URI="https://dev.gentoo.org/~ulm/distfiles/${P}.tar.xz" + +LICENSE="|| ( MIT Apache-2.0 )" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +SITEFILE="50${PN}-gentoo.el" + +src_test() { + ${EMACS} ${EMACSFLAGS} ${BYTECOMPFLAGS} \ + -l rust-mode.el -l rust-mode-tests.el \ + -f ert-run-tests-batch-and-exit || die "tests failed" +} + +src_install() { + elisp-install ${PN} rust-mode.{el,elc} + elisp-site-file-install "${FILESDIR}/${SITEFILE}" +}