From: "Ulrich Müller" <ulm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-doc/elisp-manual/
Date: Mon, 19 Apr 2021 19:50:41 +0000 (UTC) [thread overview]
Message-ID: <1618861823.376b2e2cdf52ca033043c0869f02729b11a58bc8.ulm@gentoo> (raw)
commit: 376b2e2cdf52ca033043c0869f02729b11a58bc8
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 19 19:50:05 2021 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Mon Apr 19 19:50:23 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=376b2e2c
app-doc/elisp-manual: EAPI 7
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
app-doc/elisp-manual/elisp-manual-18.1.03.ebuild | 13 ++++++-------
app-doc/elisp-manual/elisp-manual-19.2.4.2.ebuild | 13 ++++++-------
app-doc/elisp-manual/elisp-manual-20.2.5.ebuild | 13 ++++++-------
app-doc/elisp-manual/elisp-manual-21.2.8-r2.ebuild | 13 ++++++-------
app-doc/elisp-manual/elisp-manual-22.2.9.ebuild | 13 ++++---------
app-doc/elisp-manual/elisp-manual-23.4.ebuild | 13 ++++---------
app-doc/elisp-manual/elisp-manual-24.5.ebuild | 11 +++++------
app-doc/elisp-manual/elisp-manual-25.3.ebuild | 8 ++++----
app-doc/elisp-manual/elisp-manual-26.3.ebuild | 6 +++---
9 files changed, 44 insertions(+), 59 deletions(-)
diff --git a/app-doc/elisp-manual/elisp-manual-18.1.03.ebuild b/app-doc/elisp-manual/elisp-manual-18.1.03.ebuild
index 77e0c00c309..8beb5471da6 100644
--- a/app-doc/elisp-manual/elisp-manual-18.1.03.ebuild
+++ b/app-doc/elisp-manual/elisp-manual-18.1.03.ebuild
@@ -1,28 +1,27 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=5
-
-inherit epatch
+EAPI=7
MY_P=${PN}-${PV/./-}
DESCRIPTION="The GNU Emacs Lisp Reference Manual"
HOMEPAGE="https://www.gnu.org/software/emacs/manual/"
SRC_URI="ftp://ftp.gnu.org/old-gnu/emacs/${MY_P}.tar.gz
https://dev.gentoo.org/~ulm/emacs/${P}-patches.tar.gz"
+S="${WORKDIR}/elisp"
LICENSE="Texinfo-manual"
SLOT="18"
KEYWORDS="amd64 ~ppc x86"
-DEPEND="sys-apps/texinfo"
+BDEPEND="sys-apps/texinfo"
-S="${WORKDIR}/elisp"
+PATCHES=("${WORKDIR}/patch")
src_prepare() {
+ default
# remove pre-made info files
- rm -f elisp elisp-[0-9]*
- EPATCH_SUFFIX=patch epatch
+ rm -f elisp elisp-[0-9]* || die
}
src_compile() {
diff --git a/app-doc/elisp-manual/elisp-manual-19.2.4.2.ebuild b/app-doc/elisp-manual/elisp-manual-19.2.4.2.ebuild
index 19b816d5d80..98109080f59 100644
--- a/app-doc/elisp-manual/elisp-manual-19.2.4.2.ebuild
+++ b/app-doc/elisp-manual/elisp-manual-19.2.4.2.ebuild
@@ -1,28 +1,27 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=5
-
-inherit epatch
+EAPI=7
MY_P=${PN}-${PV/./-}
DESCRIPTION="The GNU Emacs Lisp Reference Manual"
HOMEPAGE="https://www.gnu.org/software/emacs/manual/"
SRC_URI="ftp://ftp.gnu.org/old-gnu/emacs/${MY_P}.tar.gz
https://dev.gentoo.org/~ulm/emacs/${P}-patches.tar.gz"
+S="${WORKDIR}/${MY_P}"
LICENSE="Texinfo-manual"
SLOT="19"
KEYWORDS="~amd64 ~ppc ~x86"
-DEPEND="sys-apps/texinfo"
+BDEPEND="sys-apps/texinfo"
-S="${WORKDIR}/${MY_P}"
+PATCHES=("${WORKDIR}/patch")
src_prepare() {
+ default
# remove pre-made info files
- rm -f elisp elisp-[0-9]*
- EPATCH_SUFFIX=patch epatch
+ rm -f elisp elisp-[0-9]* || die
}
src_compile() {
diff --git a/app-doc/elisp-manual/elisp-manual-20.2.5.ebuild b/app-doc/elisp-manual/elisp-manual-20.2.5.ebuild
index 8d1b60f332b..81c347525e3 100644
--- a/app-doc/elisp-manual/elisp-manual-20.2.5.ebuild
+++ b/app-doc/elisp-manual/elisp-manual-20.2.5.ebuild
@@ -1,28 +1,27 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=5
-
-inherit epatch
+EAPI=7
MY_P=${PN}-${PV/./-}
DESCRIPTION="The GNU Emacs Lisp Reference Manual"
HOMEPAGE="https://www.gnu.org/software/emacs/manual/"
SRC_URI="ftp://ftp.gnu.org/old-gnu/emacs/${MY_P}.tar.gz
https://dev.gentoo.org/~ulm/emacs/${P}-patches.tar.gz"
+S="${WORKDIR}/${MY_P}"
LICENSE="Texinfo-manual"
SLOT="20"
KEYWORDS="~amd64 ~ppc ~x86"
-DEPEND="sys-apps/texinfo"
+BDEPEND="sys-apps/texinfo"
-S="${WORKDIR}/${MY_P}"
+PATCHES=("${WORKDIR}/patch")
src_prepare() {
+ default
# remove pre-made info files
- rm -f elisp elisp-[0-9]*
- EPATCH_SUFFIX=patch epatch
+ rm -f elisp elisp-[0-9]* || die
}
src_compile() {
diff --git a/app-doc/elisp-manual/elisp-manual-21.2.8-r2.ebuild b/app-doc/elisp-manual/elisp-manual-21.2.8-r2.ebuild
index 094626bf153..e79aed0390f 100644
--- a/app-doc/elisp-manual/elisp-manual-21.2.8-r2.ebuild
+++ b/app-doc/elisp-manual/elisp-manual-21.2.8-r2.ebuild
@@ -1,28 +1,27 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=5
-
-inherit epatch
+EAPI=7
MY_P=${PN}-${PV/./-}
DESCRIPTION="The GNU Emacs Lisp Reference Manual"
HOMEPAGE="https://www.gnu.org/software/emacs/manual/"
SRC_URI="mirror://gnu/emacs/${MY_P}.tar.gz
https://dev.gentoo.org/~ulm/emacs/${P}-patches.tar.gz"
+S="${WORKDIR}/${MY_P}"
LICENSE="FDL-1.1+"
SLOT="21"
KEYWORDS="amd64 ppc x86"
-DEPEND="sys-apps/texinfo"
+BDEPEND="sys-apps/texinfo"
-S="${WORKDIR}/${MY_P}"
+PATCHES=("${WORKDIR}/patch")
src_prepare() {
+ default
# remove pre-made info files
- rm -f elisp elisp-[0-9]*
- EPATCH_SUFFIX=patch epatch
+ rm -f elisp elisp-[0-9]* || die
}
src_compile() {
diff --git a/app-doc/elisp-manual/elisp-manual-22.2.9.ebuild b/app-doc/elisp-manual/elisp-manual-22.2.9.ebuild
index 821eef0693d..31ea922291c 100644
--- a/app-doc/elisp-manual/elisp-manual-22.2.9.ebuild
+++ b/app-doc/elisp-manual/elisp-manual-22.2.9.ebuild
@@ -1,27 +1,22 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=5
-
-inherit epatch
+EAPI=7
MY_P=${PN}-${PV/./-}
DESCRIPTION="The GNU Emacs Lisp Reference Manual"
HOMEPAGE="https://www.gnu.org/software/emacs/manual/"
# Taken from lispref/ of emacs-22.3
SRC_URI="https://dev.gentoo.org/~ulm/emacs/${MY_P}.tar.bz2"
+S="${WORKDIR}/${MY_P}"
LICENSE="FDL-1.2+"
SLOT="22"
KEYWORDS="amd64 ppc x86"
-DEPEND="sys-apps/texinfo"
+BDEPEND="sys-apps/texinfo"
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
- epatch "${FILESDIR}/${P}-direntry.patch"
-}
+PATCHES=("${FILESDIR}/${P}-direntry.patch")
src_compile() {
makeinfo elisp.texi || die
diff --git a/app-doc/elisp-manual/elisp-manual-23.4.ebuild b/app-doc/elisp-manual/elisp-manual-23.4.ebuild
index ba51ff8feb2..312276729e8 100644
--- a/app-doc/elisp-manual/elisp-manual-23.4.ebuild
+++ b/app-doc/elisp-manual/elisp-manual-23.4.ebuild
@@ -1,27 +1,22 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=5
-
-inherit epatch
+EAPI=7
DESCRIPTION="The GNU Emacs Lisp Reference Manual"
HOMEPAGE="https://www.gnu.org/software/emacs/manual/"
# taken from doc/lispref/ of emacs-${PV}
SRC_URI="https://dev.gentoo.org/~ulm/emacs/${P}.tar.xz
https://dev.gentoo.org/~ulm/emacs/${P}-patches-1.tar.xz"
+S="${WORKDIR}/lispref"
LICENSE="FDL-1.3+"
SLOT="23"
KEYWORDS="amd64 ppc x86"
-DEPEND="sys-apps/texinfo"
+BDEPEND="sys-apps/texinfo"
-S="${WORKDIR}/lispref"
-
-src_prepare() {
- EPATCH_SUFFIX=patch epatch
-}
+PATCHES=("${WORKDIR}/patch")
src_compile() {
makeinfo elisp.texi || die
diff --git a/app-doc/elisp-manual/elisp-manual-24.5.ebuild b/app-doc/elisp-manual/elisp-manual-24.5.ebuild
index 0031da0c4b4..2808e22eab8 100644
--- a/app-doc/elisp-manual/elisp-manual-24.5.ebuild
+++ b/app-doc/elisp-manual/elisp-manual-24.5.ebuild
@@ -1,25 +1,24 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=5
-
-inherit epatch
+EAPI=7
DESCRIPTION="The GNU Emacs Lisp Reference Manual"
HOMEPAGE="https://www.gnu.org/software/emacs/manual/"
# taken from doc/lispref/ of emacs-${PV}
SRC_URI="https://dev.gentoo.org/~ulm/emacs/${P}.tar.xz"
+S="${WORKDIR}/lispref"
LICENSE="FDL-1.3+"
SLOT="24"
KEYWORDS="amd64 ppc x86"
-DEPEND="sys-apps/texinfo"
+BDEPEND="sys-apps/texinfo"
-S="${WORKDIR}/lispref"
+PATCHES=("${FILESDIR}/${P}-direntry.patch")
src_prepare() {
- epatch "${FILESDIR}/${P}-direntry.patch"
+ default
echo "@set EMACSVER ${PV}" >emacsver.texi || die
}
diff --git a/app-doc/elisp-manual/elisp-manual-25.3.ebuild b/app-doc/elisp-manual/elisp-manual-25.3.ebuild
index e0f8252ce50..5a4e275b704 100644
--- a/app-doc/elisp-manual/elisp-manual-25.3.ebuild
+++ b/app-doc/elisp-manual/elisp-manual-25.3.ebuild
@@ -1,20 +1,20 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=6
+EAPI=7
DESCRIPTION="The GNU Emacs Lisp Reference Manual"
HOMEPAGE="https://www.gnu.org/software/emacs/manual/"
# taken from doc/lispref/ (and some files from doc/emacs/) of emacs-${PV}
SRC_URI="https://dev.gentoo.org/~ulm/emacs/${P}.tar.xz"
+S="${WORKDIR}/lispref"
LICENSE="FDL-1.3+"
SLOT="25"
KEYWORDS="amd64 ppc x86"
-DEPEND="sys-apps/texinfo"
+BDEPEND="sys-apps/texinfo"
-S="${WORKDIR}/lispref"
PATCHES=("${FILESDIR}/${P}-direntry.patch")
src_compile() {
diff --git a/app-doc/elisp-manual/elisp-manual-26.3.ebuild b/app-doc/elisp-manual/elisp-manual-26.3.ebuild
index 3b811adc9a0..75052846989 100644
--- a/app-doc/elisp-manual/elisp-manual-26.3.ebuild
+++ b/app-doc/elisp-manual/elisp-manual-26.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -7,14 +7,14 @@ DESCRIPTION="The GNU Emacs Lisp Reference Manual"
HOMEPAGE="https://www.gnu.org/software/emacs/manual/"
# taken from doc/lispref/ (and some files from doc/emacs/) of emacs-${PV}
SRC_URI="https://dev.gentoo.org/~ulm/emacs/${P}.tar.xz"
+S="${WORKDIR}/lispref"
LICENSE="FDL-1.3+"
SLOT="26"
KEYWORDS="amd64 ppc x86"
-DEPEND="sys-apps/texinfo"
+BDEPEND="sys-apps/texinfo"
-S="${WORKDIR}/lispref"
PATCHES=("${FILESDIR}/${P}-direntry.patch")
src_compile() {
next reply other threads:[~2021-04-19 19:50 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-04-19 19:50 Ulrich Müller [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-03-02 15:34 [gentoo-commits] repo/gentoo:master commit in: app-doc/elisp-manual/ Ulrich Müller
2025-02-25 22:51 Sam James
2024-12-29 9:22 Ulrich Müller
2024-11-09 11:29 Ulrich Müller
2023-08-29 20:51 Sam James
2023-08-29 19:52 Ulrich Müller
2023-08-01 15:47 Ulrich Müller
2023-05-25 7:46 Arthur Zamarin
2022-05-07 10:56 Jakov Smolić
2021-12-12 14:23 Yixun Lan
2020-03-02 11:22 Sergei Trofimovich
2020-02-28 17:50 Agostino Sarubbo
2020-02-27 9:49 Agostino Sarubbo
2020-02-26 21:07 Ulrich Müller
2018-04-08 2:50 Aaron Bauman
2018-04-08 2:50 Aaron Bauman
2017-04-22 20:58 Ulrich Müller
2016-03-14 14:40 Agostino Sarubbo
2016-02-01 8:14 Agostino Sarubbo
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=1618861823.376b2e2cdf52ca033043c0869f02729b11a58bc8.ulm@gentoo \
--to=ulm@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