public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Maciej Barć" <xgqt@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/auctex/
Date: Wed, 21 Jun 2023 21:38:40 +0000 (UTC)	[thread overview]
Message-ID: <1687383515.bdad253d853117baf11974fc7de3a2974e512107.xgqt@gentoo> (raw)

commit:     bdad253d853117baf11974fc7de3a2974e512107
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 21 20:35:14 2023 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Wed Jun 21 21:38:35 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bdad253d

app-emacs/auctex: bump to 13.2

Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 app-emacs/auctex/Manifest           |  1 +
 app-emacs/auctex/auctex-13.2.ebuild | 60 +++++++++++++++++++++++++++++++++++++
 2 files changed, 61 insertions(+)

diff --git a/app-emacs/auctex/Manifest b/app-emacs/auctex/Manifest
index cf4d176ad865..564f93f33ace 100644
--- a/app-emacs/auctex/Manifest
+++ b/app-emacs/auctex/Manifest
@@ -1,2 +1,3 @@
 DIST auctex-12.3.tar.gz 1534283 BLAKE2B b70db839cd82805ed0410f8b92c5f19a78e92ee8f23d18962f0da77bdfdbac4264272805135c7f16ba35c461017aac74030071c85d2ff413f8eff542cad670d2 SHA512 29c411a7f18e0dd2d84edaf935e278cdf694644e01f40c26c26da403efa0a823fc3110c291d218bf930cad208dc249ca665dc20ccad5e2b44bd3caae828079ca
 DIST auctex-13.1.tar.gz 1600209 BLAKE2B e6ab7d19e60b19f54f8af61c0038a0aa656bebfb56f8a1bcea3ad26a249b2c176570fcd1eaceffbc99d4a824b9191eb301a1ead16dc382f31a09729cd99415e9 SHA512 562f106627d244113669654bc683818c7145c2f74d0ce50824765989e894dfe01e34bf96fe11123ebfb76c7053647697c99ae15e80fcd5e3e022683054a962ae
+DIST auctex-13.2.tar.gz 1667548 BLAKE2B 51daf18185a01c7349a49cfb3484d0271dc30271c69a028dc70ec9dae998b0664ffa574160dd384c35e66d38da95af5af0c4bf73e5ea969a6166685f8e3a0b80 SHA512 98d3d0061a807e62045b648a699e23819a0288ea17f2247b18c6725c503dfd6c791384c47504376de098b5a4e62bf350227497be6bf7a007fd94df232a069129

diff --git a/app-emacs/auctex/auctex-13.2.ebuild b/app-emacs/auctex/auctex-13.2.ebuild
new file mode 100644
index 000000000000..be422b9e8a49
--- /dev/null
+++ b/app-emacs/auctex/auctex-13.2.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit elisp
+
+DESCRIPTION="Extensible package for writing and formatting TeX files in Emacs"
+HOMEPAGE="https://www.gnu.org/software/auctex/"
+SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3+ FDL-1.3+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
+IUSE="preview-latex"
+
+RDEPEND="virtual/latex-base
+	preview-latex? (
+		app-text/dvipng
+		app-text/ghostscript-gpl
+	)"
+BDEPEND="${RDEPEND}"
+
+TEXMF="/usr/share/texmf-site"
+
+src_configure() {
+	econf \
+		--with-emacs \
+		--with-auto-dir="${EPREFIX}/var/lib/auctex" \
+		--with-lispdir="${EPREFIX}${SITELISP}/${PN}" \
+		--with-packagelispdir="${EPREFIX}${SITELISP}/${PN}" \
+		--with-packagedatadir="${EPREFIX}${SITEETC}/${PN}" \
+		--with-texmf-dir="${EPREFIX}${TEXMF}" \
+		--disable-build-dir-test \
+		$(use_enable preview-latex preview)
+}
+
+src_compile() {
+	export VARTEXFONTS="${T}"/fonts
+	emake
+}
+
+src_install() {
+	emake -j1 DESTDIR="${D}" install
+	elisp-site-file-install "${FILESDIR}/50${PN}-gentoo.el"
+	if use preview-latex; then
+		elisp-site-file-install "${FILESDIR}/60${PN}-gentoo.el"
+	fi
+	dodoc ChangeLog* CHANGES FAQ INSTALL PROBLEMS.preview README RELEASE TODO
+}
+
+pkg_postinst() {
+	use preview-latex && texmf-update
+	elisp-site-regen
+}
+
+pkg_postrm() {
+	use preview-latex && texmf-update
+	elisp-site-regen
+}


             reply	other threads:[~2023-06-21 21:38 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-06-21 21:38 Maciej Barć [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-09-01 20:56 [gentoo-commits] repo/gentoo:master commit in: app-emacs/auctex/ Michael Orlitzky
2024-08-30 12:59 Ulrich Müller
2024-06-25 12:55 Arthur Zamarin
2024-05-21 19:04 Maciej Barć
2024-05-21  1:08 Maciej Barć
2024-05-06 18:00 Maciej Barć
2024-03-13 10:11 Jakov Smolić
2024-02-07 22:21 Maciej Barć
2023-11-13 12:38 Maciej Barć
2023-07-23 15:58 Arthur Zamarin
2023-06-21 21:38 Maciej Barć
2022-06-16 10:23 Ulrich Müller
2022-06-16 10:16 Jakov Smolić
2022-05-09 12:41 Maciej Barć
2021-02-06 16:50 Ulrich Müller
2021-01-06 13:07 Fabian Groffen
2020-06-03 15:12 Agostino Sarubbo
2020-05-29  7:39 Agostino Sarubbo
2020-05-28 15:42 Agostino Sarubbo
2020-05-28 15:40 Agostino Sarubbo
2019-12-13 19:32 Mikle Kolyada
2019-11-01 19:36 Ulrich Müller
2019-11-01 10:43 Mikle Kolyada
2019-10-07  9:53 Agostino Sarubbo
2019-10-07  8:59 Agostino Sarubbo
2019-10-07  8:42 Agostino Sarubbo
2018-10-28 17:40 Ulrich Müller
2018-10-27 19:09 Mikle Kolyada
2018-03-19 13:26 Mikle Kolyada
2018-02-15 20:47 Ulrich Müller
2018-02-15 20:47 Ulrich Müller
2017-02-18  8:32 Ulrich Müller
2017-02-17 20:18 David Seifert
2017-01-11 17:59 Ulrich Müller
2016-03-14 14:48 Agostino Sarubbo
2016-03-06 12:58 Agostino Sarubbo
2016-01-24 23:48 Ulrich Müller

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1687383515.bdad253d853117baf11974fc7de3a2974e512107.xgqt@gentoo \
    --to=xgqt@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox