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 D9ED4158095 for ; Wed, 10 Aug 2022 13:45:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CCF23E0E25; Wed, 10 Aug 2022 13:45:33 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A7DCCE0E25 for ; Wed, 10 Aug 2022 13:45:33 +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 6BA55340AB3 for ; Wed, 10 Aug 2022 13:45:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9F3FC56C for ; Wed, 10 Aug 2022 13:45:30 +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: <1660138632.ca763e6e2cbab2c07c14365b4fe61e3f185842f6.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/citar/, app-emacs/citar/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emacs/citar/Manifest app-emacs/citar/citar-1.0.ebuild app-emacs/citar/files/50citar-gentoo.el app-emacs/citar/metadata.xml X-VCS-Directories: app-emacs/citar/files/ app-emacs/citar/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: ca763e6e2cbab2c07c14365b4fe61e3f185842f6 X-VCS-Branch: master Date: Wed, 10 Aug 2022 13:45: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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a8dac314-8292-423a-964b-86fdd1c4e2ca X-Archives-Hash: dd106492901f369ba864a57909550ea3 commit: ca763e6e2cbab2c07c14365b4fe61e3f185842f6 Author: Maciej Barć gentoo org> AuthorDate: Wed Aug 10 13:30:28 2022 +0000 Commit: Maciej Barć gentoo org> CommitDate: Wed Aug 10 13:37:12 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca763e6e app-emacs/citar: new package; add version 1.0 Signed-off-by: Maciej Barć gentoo.org> app-emacs/citar/Manifest | 1 + app-emacs/citar/citar-1.0.ebuild | 43 +++++++++++++++++++++++++++++++++ app-emacs/citar/files/50citar-gentoo.el | 2 ++ app-emacs/citar/metadata.xml | 23 ++++++++++++++++++ 4 files changed, 69 insertions(+) diff --git a/app-emacs/citar/Manifest b/app-emacs/citar/Manifest new file mode 100644 index 000000000000..1eac9a440400 --- /dev/null +++ b/app-emacs/citar/Manifest @@ -0,0 +1 @@ +DIST citar-1.0.tar.gz 1339812 BLAKE2B 2093cc820199219ec70f99a746c630f2b8e6b4d464b1457d7b7db1c5c953138e7dd5ac55e21b13e7417dd0a764b6f1caaf400af353ecce9fb7e1bc578f570b0d SHA512 7f02a4e41a927c2c7c625189fa38caea8f0fc5616dd3487a93f71a373d1e4a124dd1cc520778a1ff2fa6dd7c3b619b539e3b0e47cb9caf7edd16e27e9d739585 diff --git a/app-emacs/citar/citar-1.0.ebuild b/app-emacs/citar/citar-1.0.ebuild new file mode 100644 index 000000000000..0f6a51de1eb0 --- /dev/null +++ b/app-emacs/citar/citar-1.0.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +NEED_EMACS=27.1 + +inherit elisp + +DESCRIPTION="Emacs package to quickly find and act on bibliographic references" +HOMEPAGE="https://github.com/emacs-citar/citar/" +SRC_URI="https://github.com/emacs-citar/${PN}/archive/v${PV}.tar.gz + -> ${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + app-emacs/citeproc-el + app-emacs/parsebib +" +BDEPEND="${RDEPEND}" + +# Embark integration has it's own package on MELPA, and it is probably better +# to split them. https://melpa.org/#/citar-embark +ELISP_REMOVE="citar-embark.el" + +DOCS=( CHANGELOG.org CONTRIBUTING.org README.org images ) +SITEFILE="50${PN}-gentoo.el" + +src_compile() { + elisp_src_compile + elisp-make-autoload-file +} + +src_test() { + ${EMACS} ${EMACSFLAGS} -L . -L test \ + -l test/citar-file-test.el \ + -l test/citar-format-test.el \ + -l test/citar-test.el \ + -f ert-run-tests-batch-and-exit || die +} diff --git a/app-emacs/citar/files/50citar-gentoo.el b/app-emacs/citar/files/50citar-gentoo.el new file mode 100644 index 000000000000..6243866c44c2 --- /dev/null +++ b/app-emacs/citar/files/50citar-gentoo.el @@ -0,0 +1,2 @@ +(add-to-list 'load-path "@SITELISP@") +(load "citar-autoloads" nil t) diff --git a/app-emacs/citar/metadata.xml b/app-emacs/citar/metadata.xml new file mode 100644 index 000000000000..2ba5ec6831b5 --- /dev/null +++ b/app-emacs/citar/metadata.xml @@ -0,0 +1,23 @@ + + + + + + gnu-emacs@gentoo.org + Gentoo GNU Emacs project + + + Emacs package to quickly find and act on bibliographic references, and edit + org, markdown, and latex academic documents. This package provides a + completing-read front-end to browse and act on BibTeX, BibLaTeX, and CSL + JSON bibliographic data, and LaTeX, markdown, and org-cite editing support. + When used with vertico, embark, and marginalia, it provides similar + functionality to helm-bibtex and ivy-bibtex: quick filtering and selecting + of bibliographic entries from the minibuffer, and the option to run + different commands against them. + + + https://github.com/emacs-citar/citar/issues/ + emacs-citar/citar + +