public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Ulrich Müller" <ulm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-doc/devmanual/
Date: Tue, 12 Nov 2024 18:57:24 +0000 (UTC)	[thread overview]
Message-ID: <1731437762.8e48ae399125ca5c3328399bcd1b55d8725426f2.ulm@gentoo> (raw)

commit:     8e48ae399125ca5c3328399bcd1b55d8725426f2
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 12 18:55:02 2024 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Tue Nov 12 18:56:02 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e48ae39

app-doc/devmanual: add 0_pre20241109

Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>

 app-doc/devmanual/Manifest                       |  1 +
 app-doc/devmanual/devmanual-0_pre20241109.ebuild | 58 ++++++++++++++++++++++++
 2 files changed, 59 insertions(+)

diff --git a/app-doc/devmanual/Manifest b/app-doc/devmanual/Manifest
index 7f91da457ed7..2a45283f4ab1 100644
--- a/app-doc/devmanual/Manifest
+++ b/app-doc/devmanual/Manifest
@@ -1,2 +1,3 @@
 DIST devmanual-0_pre20231106.tar.xz 187040 BLAKE2B 20992be79db2b581234a813740bd59c697af624d6edc86e29375078b63cdc13bed3eae116e21d2b82d568703983860cae7be00649f24eb90f2a6f6b7837525d7 SHA512 0434e0155876dff01105ac014528d8abaa19631c5b260d2c8c995c417053403ae652d4e082d0a08549994e3238024ed2592b145c6b0435ed84f87397fb7aeacc
 DIST devmanual-0_pre20241031.tar.xz 187940 BLAKE2B 48ee136dcad8cf2766ea00cd8440b30e8e5a0460480f242417935c4b43bc46df0b36166d6a65a11a875d0ab4399dd8825cd75be3f1d32905d1243ecef6f51717 SHA512 0a9ac7978f0415f5c7cf6cb9faeecb42d91939b69522b2693122da714c9917186d5eff0eb44af14ecf433c525288a0863fdacdfa4b2baa486a600c97987660d0
+DIST devmanual-0_pre20241109.tar.xz 187844 BLAKE2B 91e6d470e6a599d3437646ae884bf85a66482ca630ec2cf4f181ae2e9b785af57826dc4390b0c69525f23a68a664c8ea2d97ac3b74404b268d1fa1521ec12d81 SHA512 537a1a196efb3136c28bf8ff4edd48608bfb1ef01f92e5c8e0af7bb8f81fe58dcc2f971be22233b0d96a7a1906f1a9739f5583ccdd80e0fccbe58a21cc77e59d

diff --git a/app-doc/devmanual/devmanual-0_pre20241109.ebuild b/app-doc/devmanual/devmanual-0_pre20241109.ebuild
new file mode 100644
index 000000000000..eb6eb3a9d985
--- /dev/null
+++ b/app-doc/devmanual/devmanual-0_pre20241109.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..13} )
+PYTHON_REQ_USE="xml(+)"
+inherit python-any-r1 readme.gentoo-r1
+
+DESCRIPTION="The Gentoo Development Guide"
+HOMEPAGE="https://devmanual.gentoo.org/"
+
+if [[ ${PV} == *9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/devmanual.git"
+else
+	# "make dist" in devmanual repo
+	SRC_URI="https://dev.gentoo.org/~ulm/distfiles/${P}.tar.xz"
+	S="${WORKDIR}/${PN}"
+	KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos"
+fi
+
+LICENSE="CC-BY-SA-4.0"
+SLOT="0"
+IUSE="+offline test"
+RESTRICT="!test? ( test )"
+
+BDEPEND=">=dev-libs/libxml2-2.9.12
+	dev-libs/libxslt
+	gnome-base/librsvg
+	media-fonts/open-sans
+	${PYTHON_DEPS}
+	test? ( >=app-text/htmltidy-5.8.0 )"
+
+src_compile() {
+	emake OFFLINE=$(usex offline 1 0)
+}
+
+src_install() {
+	emake OFFLINE=$(usex offline 1 0) \
+		DESTDIR="${D}" \
+		htmldir="${EPREFIX}"/usr/share/doc/${PF}/html \
+		install
+
+	local DOC_CONTENTS="In order to browse the Gentoo Development Guide in
+		offline mode, point your browser to the following url:
+		file://${EPREFIX}/usr/share/doc/${PF}/html/index.html"
+	if ! has_version app-doc/eclass-manpages; then
+		DOC_CONTENTS+="\\n\\nThe offline version of the devmanual does not
+			include the documentation for the eclasses. If you need it,
+			then emerge app-doc/eclass-manpages."
+	fi
+	readme.gentoo_create_doc
+}
+
+pkg_postinst() {
+	readme.gentoo_print_elog
+}


             reply	other threads:[~2024-11-12 18:57 UTC|newest]

Thread overview: 47+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-11-12 18:57 Ulrich Müller [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-11-12 18:59 [gentoo-commits] repo/gentoo:master commit in: app-doc/devmanual/ Ulrich Müller
2024-11-01 17:36 Ulrich Müller
2024-11-01 11:24 Ulrich Müller
2024-10-29 11:49 Ulrich Müller
2023-12-30  9:02 Ulrich Müller
2023-11-06 18:19 Ulrich Müller
2023-05-01  5:01 Ulrich Müller
2023-05-01  0:16 Sam James
2023-05-01  0:12 Sam James
2023-02-25 16:09 Ulrich Müller
2022-07-25  7:13 Agostino Sarubbo
2022-07-25  7:07 Agostino Sarubbo
2022-07-25  4:19 Sam James
2022-07-23  2:50 Sam James
2022-07-23  2:50 Sam James
2022-07-22 17:58 Ulrich Müller
2022-07-22 17:57 Ulrich Müller
2022-07-22 17:57 Ulrich Müller
2022-05-25 16:59 Ulrich Müller
2022-03-27  7:53 Ulrich Müller
2022-03-27  7:53 Ulrich Müller
2022-01-19  6:15 Ulrich Müller
2022-01-09 16:07 James Le Cuirot
2021-12-22 19:05 Michał Górny
2021-10-25 17:20 Arthur Zamarin
2021-10-10 11:02 Ulrich Müller
2021-01-18 12:40 Ulrich Müller
2021-01-18 12:15 Ulrich Müller
2021-01-18 12:13 Ulrich Müller
2021-01-18 12:13 Ulrich Müller
2021-01-18  0:29 Ulrich Müller
2021-01-17 22:16 Ulrich Müller
2020-02-16 12:47 Ulrich Müller
2020-02-14 18:25 Ulrich Müller
2020-02-14 18:25 Ulrich Müller
2020-02-10 18:01 Ulrich Müller
2020-02-06  9:02 Sergei Trofimovich
2020-02-06  8:34 Sergei Trofimovich
2020-02-06  8:23 Sergei Trofimovich
2020-02-03 20:46 Ulrich Müller
2020-02-03 11:09 Ulrich Müller
2019-06-10 11:37 Ulrich Müller
2018-07-19 18:01 Ulrich Müller
2018-07-19  9:17 Johannes Huber
2017-12-25 14:43 David Seifert
2017-08-22 21:27 Michał Górny

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=1731437762.8e48ae399125ca5c3328399bcd1b55d8725426f2.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