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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 647D315808D for ; Thu, 21 Apr 2022 01:54:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 77F80E08A8; Thu, 21 Apr 2022 01:54:16 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A7289E08A2 for ; Thu, 21 Apr 2022 01:54:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 602AA34176D for ; Thu, 21 Apr 2022 01:54:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A15AF3B0 for ; Thu, 21 Apr 2022 01:54:12 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1650505489.2dd3b162344dc151518f776d91e80a84c09051c4.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/bind-key/files/, app-emacs/bind-key/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emacs/bind-key/Manifest app-emacs/bind-key/bind-key-2.4.1.ebuild app-emacs/bind-key/files/50bind-key-gentoo.el app-emacs/bind-key/metadata.xml X-VCS-Directories: app-emacs/bind-key/ app-emacs/bind-key/files/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: 2dd3b162344dc151518f776d91e80a84c09051c4 X-VCS-Branch: master Date: Thu, 21 Apr 2022 01:54:12 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 637d0d98-0d95-4459-967c-5d01edc2e4b0 X-Archives-Hash: 719c280a7fee9804fe49217af07d6599 commit: 2dd3b162344dc151518f776d91e80a84c09051c4 Author: Maciej Barć gentoo org> AuthorDate: Thu Apr 21 00:47:00 2022 +0000 Commit: Maciej Barć gentoo org> CommitDate: Thu Apr 21 01:44:49 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2dd3b162 app-emacs/bind-key: new package; add version 2.4.1 Signed-off-by: Maciej Barć gentoo.org> app-emacs/bind-key/Manifest | 1 + app-emacs/bind-key/bind-key-2.4.1.ebuild | 27 +++++++++++++++++++++++++++ app-emacs/bind-key/files/50bind-key-gentoo.el | 1 + app-emacs/bind-key/metadata.xml | 13 +++++++++++++ 4 files changed, 42 insertions(+) diff --git a/app-emacs/bind-key/Manifest b/app-emacs/bind-key/Manifest new file mode 100644 index 000000000000..9aad8f0492a8 --- /dev/null +++ b/app-emacs/bind-key/Manifest @@ -0,0 +1 @@ +DIST use-package-2.4.1.tar.gz 124368 BLAKE2B 5eaa6f500234d86651e155fa5360362c5e2696a8b258d5785a02b94f4ccacc6a9815e0b53f663684cef1cc9aa6c6812a5f59e04de3a3d7c5ac36e9dfb6ea09ea SHA512 7248243dbddd939eb1ef9e76f9410265ed1cc48398745f593b57122261a6bb3bf4ab40392b6f29476ca33922f7087a52596a87968cf4914e5ed82db6c513bbbf diff --git a/app-emacs/bind-key/bind-key-2.4.1.ebuild b/app-emacs/bind-key/bind-key-2.4.1.ebuild new file mode 100644 index 000000000000..eca71e9ca659 --- /dev/null +++ b/app-emacs/bind-key/bind-key-2.4.1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit elisp + +DESCRIPTION="Simple way to manage personal keybindings" +HOMEPAGE="https://github.com/jwiegley/use-package/" +SRC_URI="https://github.com/jwiegley/use-package/archive/${PV}.tar.gz + -> use-package-${PV}.tar.gz" +S="${WORKDIR}"/use-package-${PV} + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +SITEFILE="50${PN}-gentoo.el" + +src_compile() { + elisp-compile ${PN}.el +} + +src_install() { + elisp-site-file-install "${FILESDIR}/${SITEFILE}" + elisp-install ${PN}.el{,c} +} diff --git a/app-emacs/bind-key/files/50bind-key-gentoo.el b/app-emacs/bind-key/files/50bind-key-gentoo.el new file mode 100644 index 000000000000..431f7e90ae73 --- /dev/null +++ b/app-emacs/bind-key/files/50bind-key-gentoo.el @@ -0,0 +1 @@ +(add-to-list 'load-path "@SITELISP@") diff --git a/app-emacs/bind-key/metadata.xml b/app-emacs/bind-key/metadata.xml new file mode 100644 index 000000000000..3f12e84d7508 --- /dev/null +++ b/app-emacs/bind-key/metadata.xml @@ -0,0 +1,13 @@ + + + + + + gnu-emacs@gentoo.org + Gentoo GNU Emacs project + + + https://github.com/jwiegley/use-package/issues/ + jwiegley/use-package + +