diff options
author | Maciej Barć <xgqt@gentoo.org> | 2024-07-31 01:06:20 +0200 |
---|---|---|
committer | Maciej Barć <xgqt@gentoo.org> | 2024-07-31 02:02:54 +0200 |
commit | e7c0c196f68c7679c1ca988a74bc9a9ad94e9f42 (patch) | |
tree | deba5dc0ec4c168fb7fe0a0dd921d228e561333d /app-emacs/with-editor | |
parent | app-emacs/with-editor: drop old 3.3.2 (diff) | |
download | gentoo-e7c0c196f68c7679c1ca988a74bc9a9ad94e9f42.tar.gz gentoo-e7c0c196f68c7679c1ca988a74bc9a9ad94e9f42.tar.bz2 gentoo-e7c0c196f68c7679c1ca988a74bc9a9ad94e9f42.zip |
app-emacs/with-editor: bump to 3.4.0
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'app-emacs/with-editor')
-rw-r--r-- | app-emacs/with-editor/Manifest | 1 | ||||
-rw-r--r-- | app-emacs/with-editor/with-editor-3.4.0.ebuild | 38 |
2 files changed, 39 insertions, 0 deletions
diff --git a/app-emacs/with-editor/Manifest b/app-emacs/with-editor/Manifest index c38de19d320c..407906144349 100644 --- a/app-emacs/with-editor/Manifest +++ b/app-emacs/with-editor/Manifest @@ -1,2 +1,3 @@ DIST with-editor-3.3.3.tar.gz 33282 BLAKE2B 3c2cbd4efeb4d4dc5f0a7372127d83d5c6d7781d6bf2743c03618fb88413f9771ae228431c94797b48e6962ff29096d29ee12b8f1cb99f382bb79594cacb156d SHA512 8a6bfbefe62437d44920c6a9d23d4e383a5f2b31bc79e2de8f94299836782fa3512c1c1d3c1813ae8408817ce7ea8b653ca86c5a812fcd06940f8d93fb815dd5 DIST with-editor-3.3.4.tar.gz 33288 BLAKE2B 59e2b1c94be967cafbe112aad34a51aef6355d2f734ee2ce6160d3de2357fef226ef7bb0666f3c419b9e1bdce0ab8e3468ab0ab9bc259152014ede7ed1b4b453 SHA512 700f6e5a884e4664b2450f7dd3ea879f45934abdbc09eb9569a58233d57ad7411a47d977341231b5c23a2ae5710ce490b2ee3960aee150e912a3ec0017665942 +DIST with-editor-3.4.0.tar.gz 33396 BLAKE2B bc5956e658e77fcc4bdc2099374299fe38696d200ad201f9be1a63039874f7e33b035b91cd54a7a7abbbf9855bc47d775db85713bea003fb4d780e0c2266129a SHA512 c1ad247d1cc90fe5f5ace0ca257f33751d1e8eee7cd7b11bdfba6ead7a82a47be59b1cc8f3bcb28b77b5a386ee1604ef27ca72d5ced3d8a2262b298f85a8b1ee diff --git a/app-emacs/with-editor/with-editor-3.4.0.ebuild b/app-emacs/with-editor/with-editor-3.4.0.ebuild new file mode 100644 index 000000000000..af93991140f7 --- /dev/null +++ b/app-emacs/with-editor/with-editor-3.4.0.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit elisp + +DESCRIPTION="Use the Emacsclient as the \$EDITOR of child processes" +HOMEPAGE="https://magit.vc/manual/with-editor/ + https://github.com/magit/with-editor/" + +if [[ "${PV}" == *9999* ]] ; then + inherit git-r3 + + EGIT_REPO_URI="https://github.com/magit/${PN}.git" +else + SRC_URI="https://github.com/magit/${PN}/archive/v${PV}.tar.gz + -> ${P}.tar.gz" + + KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux" +fi + +S="${WORKDIR}/${P}/lisp" + +LICENSE="GPL-3+" +SLOT="0" + +RDEPEND=" + >=app-emacs/compat-29.1.4.1 +" +BDEPEND=" + ${RDEPEND} + sys-apps/texinfo +" + +DOCS=( ../README.org ../docs/${PN}.org ) +ELISP_TEXINFO="../docs/*.texi" +SITEFILE="50${PN}-gentoo.el" |