public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Julien Roy" <julien@jroy.ca>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:dev commit in: www-client/nyxt/
Date: Tue, 12 Sep 2023 19:09:27 +0000 (UTC)	[thread overview]
Message-ID: <1694545651.bc23e535bfa71625d360e928c40d1350e881897c.julien@gentoo> (raw)

commit:     bc23e535bfa71625d360e928c40d1350e881897c
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Tue Sep 12 19:07:31 2023 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Tue Sep 12 19:07:31 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bc23e535

www-client/nyxt: add 3.7.0

Signed-off-by: Julien Roy <julien <AT> jroy.ca>

 www-client/nyxt/Manifest          |   1 +
 www-client/nyxt/nyxt-3.7.0.ebuild | 100 ++++++++++++++++++++++++++++++++++++++
 2 files changed, 101 insertions(+)

diff --git a/www-client/nyxt/Manifest b/www-client/nyxt/Manifest
index a95278c3d9..81db169399 100644
--- a/www-client/nyxt/Manifest
+++ b/www-client/nyxt/Manifest
@@ -1,2 +1,3 @@
 DIST nyxt-3.6.0.gh.tar.xz 17424780 BLAKE2B 8a42263ddd0d000587f934a7dde6074d728bedf267bbf363ab5ab75e0e773fb9c6d506e7218dfa8219e140a0c757125323d4448c720a933952f65d5b6128714f SHA512 f8bd0437a8afa275f1c885b35c9c88f55a1f1fe6299e9ecdd9496c09ace7673b80b92511a22b2cb1eef738696847319309883bb3df18e91980b071a16e1b7893
 DIST nyxt-3.6.1.gh.tar.xz 17421212 BLAKE2B 8be94ce06fccab569981582dbe72c99245b0f122d25d9466e57b02d5b531f7caa7558b2ba2cd1bf2d39cd99c9adf65902b0341161dd91d7507d69b032cd66ad1 SHA512 40861b903472904590e094e373347714f398b4e3e6929aa428ba2d10003935e33e96bdd4c43b1b3cf050b48762e5aafb5bc6fc8d55ffe32dd692c61276867c6d
+DIST nyxt-3.7.0.gh.tar.xz 17480148 BLAKE2B cbe9ad75ef78bce16a54247dd68c9da49008d941f56a188ead75454d1e45689b1d903e33f1dfeec9ef6a5a992c9312b25e6ec0e2802e2f5ba8624d3f4c9af328 SHA512 d41b464c1401ea040c27f9597acd5142e940408ba52e1414427e4a17ee73f9665a659bdbcd1435ba4ce4168e6dec125f13653dd5418c3b5b86c95fef07b1c837

diff --git a/www-client/nyxt/nyxt-3.7.0.ebuild b/www-client/nyxt/nyxt-3.7.0.ebuild
new file mode 100644
index 0000000000..ba6a328f5e
--- /dev/null
+++ b/www-client/nyxt/nyxt-3.7.0.ebuild
@@ -0,0 +1,100 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit desktop optfeature xdg-utils
+
+DESCRIPTION="Nyxt - the hacker's power-browser"
+HOMEPAGE="https://nyxt.atlas.engineer/"
+
+if [[ "${PV}" = *9999* ]]
+then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/atlas-engineer/${PN}.git"
+else
+	KEYWORDS="~amd64"
+	SRC_URI="https://github.com/atlas-engineer/${PN}/releases/download/${PV}/nyxt-${PV}-source-with-submodules.tar.xz -> ${PF}.gh.tar.xz"
+fi
+
+# Portage replaces the nyxt binary with scbl when stripping
+RESTRICT="mirror strip"
+
+LICENSE="BSD CC-BY-SA-3.0"
+SLOT="0"
+IUSE="doc"
+
+RDEPEND="
+	dev-libs/gobject-introspection
+	gnome-base/gsettings-desktop-schemas
+	media-libs/gst-plugins-bad
+	media-libs/gst-plugins-base
+	media-libs/gst-plugins-good
+	media-libs/gst-plugins-ugly
+	media-plugins/gst-plugins-libav
+	net-libs/glib-networking
+	net-libs/webkit-gtk:4.1
+	sys-libs/libfixposix
+"
+
+DEPEND="${RDEPEND}"
+BDEPEND="
+	>=dev-lisp/sbcl-2.0.0
+"
+QA_FLAGS_IGNORED="usr/bin/${PN}"
+
+src_unpack() {
+	default
+
+	# nyxt-3-source-with-submodules.tar.xz doesn't unpack in a subdirectory
+	# so we create it instead of working directly in ${WORKDIR}
+	if [[ "${PV}" != *9999* ]]
+	then
+		mkdir "${WORKDIR}/${P}" || die
+		mv "${WORKDIR}/assets" "${WORKDIR}/${P}/" || die
+		mv "${WORKDIR}/_build" "${WORKDIR}/${P}/" || die
+		mv "${WORKDIR}/build-scripts" "${WORKDIR}/${P}/" || die
+		mv "${WORKDIR}/documents" "${WORKDIR}/${P}/" || die
+		mv "${WORKDIR}/examples" "${WORKDIR}/${P}/" || die
+		mv "${WORKDIR}/INSTALL" "${WORKDIR}/${P}/" || die
+		mv "${WORKDIR}/libraries" "${WORKDIR}/${P}/" || die
+		mv "${WORKDIR}/licenses" "${WORKDIR}/${P}/" || die
+		mv "${WORKDIR}/makefile" "${WORKDIR}/${P}/" || die
+		mv "${WORKDIR}/nyxt.asd" "${WORKDIR}/${P}/" || die
+		mv "${WORKDIR}/README.org" "${WORKDIR}/${P}/" || die
+		mv "${WORKDIR}/source" "${WORKDIR}/${P}/" || die
+		mv "${WORKDIR}/tests" "${WORKDIR}/${P}/" || die
+	fi
+}
+
+src_compile() {
+	emake all
+	use doc && emake doc
+}
+
+src_install(){
+	dobin "${S}/nyxt"
+
+	if [ "$(use doc)" ]
+	then
+		docinto "/usr/share/doc/${P}"
+		dodoc "${S}/manual.html"
+	fi
+
+	newicon -s 512 "${S}/assets/nyxt_512x512.png" nyxt.png
+	domenu "${S}/assets/nyxt.desktop"
+}
+
+pkg_postinst() {
+	xdg_mimeinfo_database_update
+	xdg_desktop_database_update
+	xdg_icon_cache_update
+	optfeature "for X11 clipboard support" "x11-misc/xclip"
+	optfeature "for spellchecking" "app-text/enchant"
+}
+
+pkg_postrm() {
+	xdg_mimeinfo_database_update
+	xdg_desktop_database_update
+	xdg_icon_cache_update
+}


             reply	other threads:[~2023-09-12 19:09 UTC|newest]

Thread overview: 60+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-09-12 19:09 Julien Roy [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-10-20 18:30 [gentoo-commits] repo/proj/guru:dev commit in: www-client/nyxt/ Dale Showers
2024-10-20 18:27 Dale Showers
2024-08-30 19:41 Dale Showers
2024-08-30 19:38 Dale Showers
2024-08-18 14:24 Dale Showers
2024-08-01 23:01 Dale Showers
2024-05-31 23:25 Dale Showers
2024-05-31 23:13 Dale Showers
2024-05-31 22:59 Dale Showers
2024-05-31  8:55 [gentoo-commits] repo/proj/guru:master " Julien Roy
2024-05-31  8:45 ` [gentoo-commits] repo/proj/guru:dev " Julien Roy
2024-05-31  8:55 [gentoo-commits] repo/proj/guru:master " Julien Roy
2024-05-31  8:45 ` [gentoo-commits] repo/proj/guru:dev " Julien Roy
2024-05-30 19:55 Dale Showers
2024-04-29 16:26 Dale Showers
2024-04-14 16:43 Dale Showers
2024-03-19 23:50 [gentoo-commits] repo/proj/guru:master " Julien Roy
2024-03-19 23:50 ` [gentoo-commits] repo/proj/guru:dev " Julien Roy
2024-03-19 23:50 [gentoo-commits] repo/proj/guru:master " Julien Roy
2024-03-19 23:50 ` [gentoo-commits] repo/proj/guru:dev " Julien Roy
2024-03-19 23:09 Dale Showers
2024-03-04 14:43 Dale Showers
2024-02-20 15:32 Dale Showers
2024-02-06 18:10 Dale Showers
2024-02-06 18:06 Dale Showers
2023-10-14 19:33 Julien Roy
2023-10-14 19:33 Julien Roy
2023-10-14 19:33 Julien Roy
2023-09-28 19:37 Julien Roy
2023-09-12 19:09 Julien Roy
2023-09-12 19:09 Julien Roy
2023-09-12 19:09 Julien Roy
2023-08-30 21:49 Julien Roy
2023-08-30 21:49 Julien Roy
2023-08-17 16:49 Julien Roy
2023-08-17 16:49 Julien Roy
2023-07-10 23:46 Julien Roy
2023-07-10 23:46 Julien Roy
2023-07-01 21:39 Julien Roy
2023-07-01 21:39 Julien Roy
2023-06-19 16:51 Julien Roy
2023-06-19 16:51 Julien Roy
2023-06-12 16:23 Julien Roy
2023-06-12 16:23 Julien Roy
2023-05-29 13:09 Julien Roy
2023-05-29 13:09 Julien Roy
2023-05-24  1:49 Julien Roy
2023-04-20 16:31 Julien Roy
2023-04-20 16:30 Julien Roy
2023-04-20 16:30 Julien Roy
2023-03-28 23:47 Julien Roy
2023-03-26  4:48 Julien Roy
2023-03-26  4:48 Julien Roy
2023-03-07 15:06 Julien Roy
2023-02-07  1:10 Julien Roy
2023-02-07  1:10 Julien Roy
2023-01-31 15:21 Julien Roy
2023-01-29 23:28 Julien Roy
2023-01-29 23:28 Julien Roy
2023-01-14  4:34 Julien Roy
2022-05-19 20:59 Tony Olagbaiye
2022-05-18 19:35 Tony Olagbaiye
2022-05-18 16:40 Tony Olagbaiye

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=1694545651.bc23e535bfa71625d360e928c40d1350e881897c.julien@gentoo \
    --to=julien@jroy.ca \
    --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