Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] nyxt: update to 3.2.0
@ 2023-06-20  7:26 oliverwiegers
  2023-06-20 19:44 ` [PR PATCH] [Updated] " oliverwiegers
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: oliverwiegers @ 2023-06-20  7:26 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 665 bytes --]

There is a new pull request by oliverwiegers against master on the void-packages repository

https://github.com/oliverwiegers/void-packages update/nyxt
https://github.com/void-linux/void-packages/pull/44532

nyxt: update to 3.2.0
- Updated 002-webkit2gtk.init.lisp patch. The patch itself is the same, but the structure of the source file to be patched changed.
- Included "pkg-config" into hostmakedepends.

#### Testing the changes
- I tested the changes in this PR: **YES**

#### Local build testing
- I built this PR locally for my native architecture, x86_64*


A patch file from https://github.com/void-linux/void-packages/pull/44532.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-update/nyxt-44532.patch --]
[-- Type: text/x-diff, Size: 2976 bytes --]

From 083b22dbf7c0fa68722fe8bf7fa8fc73186929b6 Mon Sep 17 00:00:00 2001
From: oliverwiegers <oliver.wiegers@gmail.com>
Date: Tue, 20 Jun 2023 08:09:53 +0200
Subject: [PATCH] nyxt: update to 3.2.0

- Updated 002-webkit2gtk.init.lisp patch. The patch itself is the same,
  but the structure of the source file to be patched changed.
- Included "pkg-config" into hostmakedepends.
---
 srcpkgs/nyxt/patches/002-webkit2gtk.patch | 20 ++++++++++----------
 srcpkgs/nyxt/template                     |  6 +++---
 2 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/srcpkgs/nyxt/patches/002-webkit2gtk.patch b/srcpkgs/nyxt/patches/002-webkit2gtk.patch
index 5a0fe2e923d3..dd4808382c1d 100644
--- a/srcpkgs/nyxt/patches/002-webkit2gtk.patch
+++ b/srcpkgs/nyxt/patches/002-webkit2gtk.patch
@@ -1,14 +1,14 @@
---- a/_build/cl-webkit/webkit2/webkit2.init.lisp	2022-01-14 03:22:05.000000000 -0700
-+++ b/_build/cl-webkit/webkit2/webkit2.init.lisp	2022-02-27 09:59:29.175938024 -0700
-@@ -18,9 +18,9 @@
-               "libwebkit2gtk-4.0.37.dylib"
+--- a/_build/cl-webkit/webkit2/webkit2.init.lisp    2023-06-19 18:14:54.899937994 +0200
++++ b/_build/cl-webkit/webkit2/webkit2.init.lisp    2023-06-19 18:15:45.707030674 +0200
+@@ -19,9 +19,9 @@
                "libwebkit2gtk-4.0.dylib"))
-     (:unix (:or "libwebkit2gtk-4.1.so"
--                "libwebkit2gtk-4.0.so"
-                 ;; Fedora only has this one?
--                "libwebkit2gtk-4.0.so.37")))
-+                "libwebkit2gtk-4.0.so.37"
-+                "libwebkit2gtk-4.0.so")))
+     (:unix (:or
+             "libwebkit2gtk-4.1.so"
+-            "libwebkit2gtk-4.0.so"
+             ;; Fedora only has this one?
+-            "libwebkit2gtk-4.0.so.37")))
++            "libwebkit2gtk-4.0.so.37"
++            "libwebkit2gtk-4.0.so")))
    (use-foreign-library libwebkit2))
  
  (defcfun "webkit_get_major_version" :int)
diff --git a/srcpkgs/nyxt/template b/srcpkgs/nyxt/template
index d3d1c20fe9cd..867cb3b2e37d 100644
--- a/srcpkgs/nyxt/template
+++ b/srcpkgs/nyxt/template
@@ -1,11 +1,11 @@
 # Template file for 'nyxt'
 pkgname=nyxt
-version=2.2.4
+version=3.2.0
 revision=3
 create_wrksrc=yes
 build_style=gnu-makefile
 make_build_target=all
-hostmakedepends="sbcl git"
+hostmakedepends="sbcl git pkg-config"
 makedepends="webkit2gtk libfixposix-devel libgirepository"
 depends="dbus xclip enchant2 webkit2gtk libfixposix libgirepository"
 short_desc="Keyboard-oriented, extensible web-browser"
@@ -13,7 +13,7 @@ maintainer="0x0f0f0f <sudo-woodo3@protonmail.com>"
 license="BSD-3-Clause"
 homepage="https://nyxt.atlas.engineer/"
 distfiles="https://github.com/atlas-engineer/nyxt/releases/download/${version}/${pkgname}-${version}-source-with-submodules.tar.xz"
-checksum=04f740f8405044cc89920d41d340d6d137e1d4f7be098d4813d1523f73d725a9
+checksum=3e7a2812563ea3f2fe0c039db0d693a4de99d22cef1b0dec09173d1b7fbaf691
 # Disable check because ASDF/USER::PROVE is not installed
 make_check=no
 nostrip=yes

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PR PATCH] [Updated] nyxt: update to 3.2.0
  2023-06-20  7:26 [PR PATCH] nyxt: update to 3.2.0 oliverwiegers
@ 2023-06-20 19:44 ` oliverwiegers
  2023-06-22 12:31 ` oliverwiegers
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: oliverwiegers @ 2023-06-20 19:44 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 670 bytes --]

There is an updated pull request by oliverwiegers against master on the void-packages repository

https://github.com/oliverwiegers/void-packages update/nyxt
https://github.com/void-linux/void-packages/pull/44532

nyxt: update to 3.2.0
- Updated 002-webkit2gtk.init.lisp patch. The patch itself is the same, but the structure of the source file to be patched changed.
- Included "pkg-config" into hostmakedepends.

#### Testing the changes
- I tested the changes in this PR: **YES**

#### Local build testing
- I built this PR locally for my native architecture, x86_64*


A patch file from https://github.com/void-linux/void-packages/pull/44532.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-update/nyxt-44532.patch --]
[-- Type: text/x-diff, Size: 3548 bytes --]

From c74069e59164e77f6efe423a089ed2b93ac8a8dd Mon Sep 17 00:00:00 2001
From: oliverwiegers <oliver.wiegers@gmail.com>
Date: Tue, 20 Jun 2023 08:09:53 +0200
Subject: [PATCH] nyxt: update to 3.2.0

- Updated 002-webkit2gtk.init.lisp patch. The patch itself is the same,
  but the structure of the source file to be patched changed.
- Included "pkg-config" into hostmakedepends.
---
 srcpkgs/nyxt/patches/002-webkit2gtk.patch | 20 ++++++++++----------
 srcpkgs/nyxt/template                     | 18 +++++++++---------
 2 files changed, 19 insertions(+), 19 deletions(-)

diff --git a/srcpkgs/nyxt/patches/002-webkit2gtk.patch b/srcpkgs/nyxt/patches/002-webkit2gtk.patch
index 5a0fe2e923d3..dd4808382c1d 100644
--- a/srcpkgs/nyxt/patches/002-webkit2gtk.patch
+++ b/srcpkgs/nyxt/patches/002-webkit2gtk.patch
@@ -1,14 +1,14 @@
---- a/_build/cl-webkit/webkit2/webkit2.init.lisp	2022-01-14 03:22:05.000000000 -0700
-+++ b/_build/cl-webkit/webkit2/webkit2.init.lisp	2022-02-27 09:59:29.175938024 -0700
-@@ -18,9 +18,9 @@
-               "libwebkit2gtk-4.0.37.dylib"
+--- a/_build/cl-webkit/webkit2/webkit2.init.lisp    2023-06-19 18:14:54.899937994 +0200
++++ b/_build/cl-webkit/webkit2/webkit2.init.lisp    2023-06-19 18:15:45.707030674 +0200
+@@ -19,9 +19,9 @@
                "libwebkit2gtk-4.0.dylib"))
-     (:unix (:or "libwebkit2gtk-4.1.so"
--                "libwebkit2gtk-4.0.so"
-                 ;; Fedora only has this one?
--                "libwebkit2gtk-4.0.so.37")))
-+                "libwebkit2gtk-4.0.so.37"
-+                "libwebkit2gtk-4.0.so")))
+     (:unix (:or
+             "libwebkit2gtk-4.1.so"
+-            "libwebkit2gtk-4.0.so"
+             ;; Fedora only has this one?
+-            "libwebkit2gtk-4.0.so.37")))
++            "libwebkit2gtk-4.0.so.37"
++            "libwebkit2gtk-4.0.so")))
    (use-foreign-library libwebkit2))
  
  (defcfun "webkit_get_major_version" :int)
diff --git a/srcpkgs/nyxt/template b/srcpkgs/nyxt/template
index d3d1c20fe9cd..49aada396dbf 100644
--- a/srcpkgs/nyxt/template
+++ b/srcpkgs/nyxt/template
@@ -1,11 +1,11 @@
 # Template file for 'nyxt'
 pkgname=nyxt
-version=2.2.4
-revision=3
+version=3.2.0
+revision=1
 create_wrksrc=yes
 build_style=gnu-makefile
 make_build_target=all
-hostmakedepends="sbcl git"
+hostmakedepends="sbcl git pkg-config"
 makedepends="webkit2gtk libfixposix-devel libgirepository"
 depends="dbus xclip enchant2 webkit2gtk libfixposix libgirepository"
 short_desc="Keyboard-oriented, extensible web-browser"
@@ -13,7 +13,7 @@ maintainer="0x0f0f0f <sudo-woodo3@protonmail.com>"
 license="BSD-3-Clause"
 homepage="https://nyxt.atlas.engineer/"
 distfiles="https://github.com/atlas-engineer/nyxt/releases/download/${version}/${pkgname}-${version}-source-with-submodules.tar.xz"
-checksum=04f740f8405044cc89920d41d340d6d137e1d4f7be098d4813d1523f73d725a9
+checksum=3e7a2812563ea3f2fe0c039db0d693a4de99d22cef1b0dec09173d1b7fbaf691
 # Disable check because ASDF/USER::PROVE is not installed
 make_check=no
 nostrip=yes
@@ -22,12 +22,12 @@ nocross="Cross-compilation fails due to package iolib/syscalls setting incorrect
 shlib_requires="libwebkit2gtk-4.0.so.37 libfixposix.so.3 libgirepository-1.0.so.1"
 
 post_install() {
-	vlicense licenses/ASSET-LICENSE
-	vlicense licenses/SOURCE-LICENSE
+    vlicense licenses/ASSET-LICENSE
+    vlicense licenses/SOURCE-LICENSE
 }
 
 next_package() {
-	depends="nyxt"
-	short_desc+=" (transitional dummy package)"
-	build_style=meta
+    depends="nyxt"
+    short_desc+=" (transitional dummy package)"
+    build_style=meta
 }

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PR PATCH] [Updated] nyxt: update to 3.2.0
  2023-06-20  7:26 [PR PATCH] nyxt: update to 3.2.0 oliverwiegers
  2023-06-20 19:44 ` [PR PATCH] [Updated] " oliverwiegers
@ 2023-06-22 12:31 ` oliverwiegers
  2023-06-22 12:32 ` oliverwiegers
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: oliverwiegers @ 2023-06-22 12:31 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 670 bytes --]

There is an updated pull request by oliverwiegers against master on the void-packages repository

https://github.com/oliverwiegers/void-packages update/nyxt
https://github.com/void-linux/void-packages/pull/44532

nyxt: update to 3.2.0
- Updated 002-webkit2gtk.init.lisp patch. The patch itself is the same, but the structure of the source file to be patched changed.
- Included "pkg-config" into hostmakedepends.

#### Testing the changes
- I tested the changes in this PR: **YES**

#### Local build testing
- I built this PR locally for my native architecture, x86_64*


A patch file from https://github.com/void-linux/void-packages/pull/44532.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-update/nyxt-44532.patch --]
[-- Type: text/x-diff, Size: 2990 bytes --]

From 66a8b009d8a6b4e642ab49f40fa58b03f389abd3 Mon Sep 17 00:00:00 2001
From: oliverwiegers <oliver.wiegers@gmail.com>
Date: Tue, 20 Jun 2023 08:09:53 +0200
Subject: [PATCH] nyxt: update to 3.2.0

- Updated 002-webkit2gtk.init.lisp patch. The patch itself is the same,
  but the structure of the source file to be patched changed.
- Included "pkg-config" into hostmakedepends.
---
 srcpkgs/nyxt/patches/002-webkit2gtk.patch | 20 ++++++++++----------
 srcpkgs/nyxt/template                     |  8 ++++----
 2 files changed, 14 insertions(+), 14 deletions(-)

diff --git a/srcpkgs/nyxt/patches/002-webkit2gtk.patch b/srcpkgs/nyxt/patches/002-webkit2gtk.patch
index 5a0fe2e923d3..dd4808382c1d 100644
--- a/srcpkgs/nyxt/patches/002-webkit2gtk.patch
+++ b/srcpkgs/nyxt/patches/002-webkit2gtk.patch
@@ -1,14 +1,14 @@
---- a/_build/cl-webkit/webkit2/webkit2.init.lisp	2022-01-14 03:22:05.000000000 -0700
-+++ b/_build/cl-webkit/webkit2/webkit2.init.lisp	2022-02-27 09:59:29.175938024 -0700
-@@ -18,9 +18,9 @@
-               "libwebkit2gtk-4.0.37.dylib"
+--- a/_build/cl-webkit/webkit2/webkit2.init.lisp    2023-06-19 18:14:54.899937994 +0200
++++ b/_build/cl-webkit/webkit2/webkit2.init.lisp    2023-06-19 18:15:45.707030674 +0200
+@@ -19,9 +19,9 @@
                "libwebkit2gtk-4.0.dylib"))
-     (:unix (:or "libwebkit2gtk-4.1.so"
--                "libwebkit2gtk-4.0.so"
-                 ;; Fedora only has this one?
--                "libwebkit2gtk-4.0.so.37")))
-+                "libwebkit2gtk-4.0.so.37"
-+                "libwebkit2gtk-4.0.so")))
+     (:unix (:or
+             "libwebkit2gtk-4.1.so"
+-            "libwebkit2gtk-4.0.so"
+             ;; Fedora only has this one?
+-            "libwebkit2gtk-4.0.so.37")))
++            "libwebkit2gtk-4.0.so.37"
++            "libwebkit2gtk-4.0.so")))
    (use-foreign-library libwebkit2))
  
  (defcfun "webkit_get_major_version" :int)
diff --git a/srcpkgs/nyxt/template b/srcpkgs/nyxt/template
index d3d1c20fe9cd..0cffe97b867e 100644
--- a/srcpkgs/nyxt/template
+++ b/srcpkgs/nyxt/template
@@ -1,11 +1,11 @@
 # Template file for 'nyxt'
 pkgname=nyxt
-version=2.2.4
-revision=3
+version=3.2.0
+revision=1
 create_wrksrc=yes
 build_style=gnu-makefile
 make_build_target=all
-hostmakedepends="sbcl git"
+hostmakedepends="sbcl git pkg-config"
 makedepends="webkit2gtk libfixposix-devel libgirepository"
 depends="dbus xclip enchant2 webkit2gtk libfixposix libgirepository"
 short_desc="Keyboard-oriented, extensible web-browser"
@@ -13,7 +13,7 @@ maintainer="0x0f0f0f <sudo-woodo3@protonmail.com>"
 license="BSD-3-Clause"
 homepage="https://nyxt.atlas.engineer/"
 distfiles="https://github.com/atlas-engineer/nyxt/releases/download/${version}/${pkgname}-${version}-source-with-submodules.tar.xz"
-checksum=04f740f8405044cc89920d41d340d6d137e1d4f7be098d4813d1523f73d725a9
+checksum=3e7a2812563ea3f2fe0c039db0d693a4de99d22cef1b0dec09173d1b7fbaf691
 # Disable check because ASDF/USER::PROVE is not installed
 make_check=no
 nostrip=yes

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: nyxt: update to 3.2.0
  2023-06-20  7:26 [PR PATCH] nyxt: update to 3.2.0 oliverwiegers
  2023-06-20 19:44 ` [PR PATCH] [Updated] " oliverwiegers
  2023-06-22 12:31 ` oliverwiegers
@ 2023-06-22 12:32 ` oliverwiegers
  2023-06-22 14:44 ` [PR REVIEW] " Duncaen
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: oliverwiegers @ 2023-06-22 12:32 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 229 bytes --]

New comment by oliverwiegers on void-packages repository

https://github.com/void-linux/void-packages/pull/44532#issuecomment-1602556404

Comment:
Oh man... Yeah I forgot to run `xlint`. Sorry for the inconvenience. I fixed that

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PR REVIEW] nyxt: update to 3.2.0
  2023-06-20  7:26 [PR PATCH] nyxt: update to 3.2.0 oliverwiegers
                   ` (2 preceding siblings ...)
  2023-06-22 12:32 ` oliverwiegers
@ 2023-06-22 14:44 ` Duncaen
  2023-06-22 14:54 ` [PR PATCH] [Updated] " oliverwiegers
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Duncaen @ 2023-06-22 14:44 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 289 bytes --]

New review comment by Duncaen on void-packages repository

https://github.com/void-linux/void-packages/pull/44532#discussion_r1238637371

Comment:
Could you also please change `maintainer` to `Orphaned <orphan@voidlinux.org>` since they haven't contributed/updated the package since 2019.

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PR PATCH] [Updated] nyxt: update to 3.2.0
  2023-06-20  7:26 [PR PATCH] nyxt: update to 3.2.0 oliverwiegers
                   ` (3 preceding siblings ...)
  2023-06-22 14:44 ` [PR REVIEW] " Duncaen
@ 2023-06-22 14:54 ` oliverwiegers
  2023-06-22 14:55 ` [PR REVIEW] " oliverwiegers
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: oliverwiegers @ 2023-06-22 14:54 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 670 bytes --]

There is an updated pull request by oliverwiegers against master on the void-packages repository

https://github.com/oliverwiegers/void-packages update/nyxt
https://github.com/void-linux/void-packages/pull/44532

nyxt: update to 3.2.0
- Updated 002-webkit2gtk.init.lisp patch. The patch itself is the same, but the structure of the source file to be patched changed.
- Included "pkg-config" into hostmakedepends.

#### Testing the changes
- I tested the changes in this PR: **YES**

#### Local build testing
- I built this PR locally for my native architecture, x86_64*


A patch file from https://github.com/void-linux/void-packages/pull/44532.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-update/nyxt-44532.patch --]
[-- Type: text/x-diff, Size: 3579 bytes --]

From 945f3de3d674020ec8edf0964bc07a093af069cc Mon Sep 17 00:00:00 2001
From: oliverwiegers <oliver.wiegers@gmail.com>
Date: Tue, 20 Jun 2023 08:09:53 +0200
Subject: [PATCH] nyxt: update to 3.2.0

- Updated 002-webkit2gtk.init.lisp patch. The patch itself is the same,
  but the structure of the source file to be patched changed.
- Included "pkg-config" into hostmakedepends.
---
 srcpkgs/nyxt/patches/002-webkit2gtk.patch | 20 ++++++++++----------
 srcpkgs/nyxt/template                     | 20 ++++++++++----------
 2 files changed, 20 insertions(+), 20 deletions(-)

diff --git a/srcpkgs/nyxt/patches/002-webkit2gtk.patch b/srcpkgs/nyxt/patches/002-webkit2gtk.patch
index 5a0fe2e923d3..dd4808382c1d 100644
--- a/srcpkgs/nyxt/patches/002-webkit2gtk.patch
+++ b/srcpkgs/nyxt/patches/002-webkit2gtk.patch
@@ -1,14 +1,14 @@
---- a/_build/cl-webkit/webkit2/webkit2.init.lisp	2022-01-14 03:22:05.000000000 -0700
-+++ b/_build/cl-webkit/webkit2/webkit2.init.lisp	2022-02-27 09:59:29.175938024 -0700
-@@ -18,9 +18,9 @@
-               "libwebkit2gtk-4.0.37.dylib"
+--- a/_build/cl-webkit/webkit2/webkit2.init.lisp    2023-06-19 18:14:54.899937994 +0200
++++ b/_build/cl-webkit/webkit2/webkit2.init.lisp    2023-06-19 18:15:45.707030674 +0200
+@@ -19,9 +19,9 @@
                "libwebkit2gtk-4.0.dylib"))
-     (:unix (:or "libwebkit2gtk-4.1.so"
--                "libwebkit2gtk-4.0.so"
-                 ;; Fedora only has this one?
--                "libwebkit2gtk-4.0.so.37")))
-+                "libwebkit2gtk-4.0.so.37"
-+                "libwebkit2gtk-4.0.so")))
+     (:unix (:or
+             "libwebkit2gtk-4.1.so"
+-            "libwebkit2gtk-4.0.so"
+             ;; Fedora only has this one?
+-            "libwebkit2gtk-4.0.so.37")))
++            "libwebkit2gtk-4.0.so.37"
++            "libwebkit2gtk-4.0.so")))
    (use-foreign-library libwebkit2))
  
  (defcfun "webkit_get_major_version" :int)
diff --git a/srcpkgs/nyxt/template b/srcpkgs/nyxt/template
index d3d1c20fe9cd..adae03ee6d07 100644
--- a/srcpkgs/nyxt/template
+++ b/srcpkgs/nyxt/template
@@ -1,19 +1,19 @@
 # Template file for 'nyxt'
 pkgname=nyxt
-version=2.2.4
-revision=3
+version=3.2.0
+revision=1
 create_wrksrc=yes
 build_style=gnu-makefile
 make_build_target=all
-hostmakedepends="sbcl git"
+hostmakedepends="sbcl git pkg-config"
 makedepends="webkit2gtk libfixposix-devel libgirepository"
 depends="dbus xclip enchant2 webkit2gtk libfixposix libgirepository"
 short_desc="Keyboard-oriented, extensible web-browser"
-maintainer="0x0f0f0f <sudo-woodo3@protonmail.com>"
+maintainer="Orphaned <orphan@voidlinux.org>"
 license="BSD-3-Clause"
 homepage="https://nyxt.atlas.engineer/"
 distfiles="https://github.com/atlas-engineer/nyxt/releases/download/${version}/${pkgname}-${version}-source-with-submodules.tar.xz"
-checksum=04f740f8405044cc89920d41d340d6d137e1d4f7be098d4813d1523f73d725a9
+checksum=3e7a2812563ea3f2fe0c039db0d693a4de99d22cef1b0dec09173d1b7fbaf691
 # Disable check because ASDF/USER::PROVE is not installed
 make_check=no
 nostrip=yes
@@ -22,12 +22,12 @@ nocross="Cross-compilation fails due to package iolib/syscalls setting incorrect
 shlib_requires="libwebkit2gtk-4.0.so.37 libfixposix.so.3 libgirepository-1.0.so.1"
 
 post_install() {
-	vlicense licenses/ASSET-LICENSE
-	vlicense licenses/SOURCE-LICENSE
+    vlicense licenses/ASSET-LICENSE
+    vlicense licenses/SOURCE-LICENSE
 }
 
 next_package() {
-	depends="nyxt"
-	short_desc+=" (transitional dummy package)"
-	build_style=meta
+    depends="nyxt"
+    short_desc+=" (transitional dummy package)"
+    build_style=meta
 }

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PR REVIEW] nyxt: update to 3.2.0
  2023-06-20  7:26 [PR PATCH] nyxt: update to 3.2.0 oliverwiegers
                   ` (4 preceding siblings ...)
  2023-06-22 14:54 ` [PR PATCH] [Updated] " oliverwiegers
@ 2023-06-22 14:55 ` oliverwiegers
  2023-06-22 15:53 ` [PR PATCH] [Updated] " oliverwiegers
  2023-06-22 19:01 ` [PR PATCH] [Merged]: " Duncaen
  7 siblings, 0 replies; 9+ messages in thread
From: oliverwiegers @ 2023-06-22 14:55 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 169 bytes --]

New review comment by oliverwiegers on void-packages repository

https://github.com/void-linux/void-packages/pull/44532#discussion_r1238654334

Comment:
Of course. Done

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PR PATCH] [Updated] nyxt: update to 3.2.0
  2023-06-20  7:26 [PR PATCH] nyxt: update to 3.2.0 oliverwiegers
                   ` (5 preceding siblings ...)
  2023-06-22 14:55 ` [PR REVIEW] " oliverwiegers
@ 2023-06-22 15:53 ` oliverwiegers
  2023-06-22 19:01 ` [PR PATCH] [Merged]: " Duncaen
  7 siblings, 0 replies; 9+ messages in thread
From: oliverwiegers @ 2023-06-22 15:53 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 670 bytes --]

There is an updated pull request by oliverwiegers against master on the void-packages repository

https://github.com/oliverwiegers/void-packages update/nyxt
https://github.com/void-linux/void-packages/pull/44532

nyxt: update to 3.2.0
- Updated 002-webkit2gtk.init.lisp patch. The patch itself is the same, but the structure of the source file to be patched changed.
- Included "pkg-config" into hostmakedepends.

#### Testing the changes
- I tested the changes in this PR: **YES**

#### Local build testing
- I built this PR locally for my native architecture, x86_64*


A patch file from https://github.com/void-linux/void-packages/pull/44532.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-update/nyxt-44532.patch --]
[-- Type: text/x-diff, Size: 3021 bytes --]

From e653993aa8d4ab5193ec28256771ce1e4ce56bfa Mon Sep 17 00:00:00 2001
From: oliverwiegers <oliver.wiegers@gmail.com>
Date: Tue, 20 Jun 2023 08:09:53 +0200
Subject: [PATCH] nyxt: update to 3.2.0

- Updated 002-webkit2gtk.init.lisp patch. The patch itself is the same,
  but the structure of the source file to be patched changed.
- Included "pkg-config" into hostmakedepends.
---
 srcpkgs/nyxt/patches/002-webkit2gtk.patch | 20 ++++++++++----------
 srcpkgs/nyxt/template                     | 10 +++++-----
 2 files changed, 15 insertions(+), 15 deletions(-)

diff --git a/srcpkgs/nyxt/patches/002-webkit2gtk.patch b/srcpkgs/nyxt/patches/002-webkit2gtk.patch
index 5a0fe2e923d3..dd4808382c1d 100644
--- a/srcpkgs/nyxt/patches/002-webkit2gtk.patch
+++ b/srcpkgs/nyxt/patches/002-webkit2gtk.patch
@@ -1,14 +1,14 @@
---- a/_build/cl-webkit/webkit2/webkit2.init.lisp	2022-01-14 03:22:05.000000000 -0700
-+++ b/_build/cl-webkit/webkit2/webkit2.init.lisp	2022-02-27 09:59:29.175938024 -0700
-@@ -18,9 +18,9 @@
-               "libwebkit2gtk-4.0.37.dylib"
+--- a/_build/cl-webkit/webkit2/webkit2.init.lisp    2023-06-19 18:14:54.899937994 +0200
++++ b/_build/cl-webkit/webkit2/webkit2.init.lisp    2023-06-19 18:15:45.707030674 +0200
+@@ -19,9 +19,9 @@
                "libwebkit2gtk-4.0.dylib"))
-     (:unix (:or "libwebkit2gtk-4.1.so"
--                "libwebkit2gtk-4.0.so"
-                 ;; Fedora only has this one?
--                "libwebkit2gtk-4.0.so.37")))
-+                "libwebkit2gtk-4.0.so.37"
-+                "libwebkit2gtk-4.0.so")))
+     (:unix (:or
+             "libwebkit2gtk-4.1.so"
+-            "libwebkit2gtk-4.0.so"
+             ;; Fedora only has this one?
+-            "libwebkit2gtk-4.0.so.37")))
++            "libwebkit2gtk-4.0.so.37"
++            "libwebkit2gtk-4.0.so")))
    (use-foreign-library libwebkit2))
  
  (defcfun "webkit_get_major_version" :int)
diff --git a/srcpkgs/nyxt/template b/srcpkgs/nyxt/template
index d3d1c20fe9cd..d0f7ddf489cd 100644
--- a/srcpkgs/nyxt/template
+++ b/srcpkgs/nyxt/template
@@ -1,19 +1,19 @@
 # Template file for 'nyxt'
 pkgname=nyxt
-version=2.2.4
-revision=3
+version=3.2.0
+revision=1
 create_wrksrc=yes
 build_style=gnu-makefile
 make_build_target=all
-hostmakedepends="sbcl git"
+hostmakedepends="sbcl git pkg-config"
 makedepends="webkit2gtk libfixposix-devel libgirepository"
 depends="dbus xclip enchant2 webkit2gtk libfixposix libgirepository"
 short_desc="Keyboard-oriented, extensible web-browser"
-maintainer="0x0f0f0f <sudo-woodo3@protonmail.com>"
+maintainer="Orphaned <orphan@voidlinux.org>"
 license="BSD-3-Clause"
 homepage="https://nyxt.atlas.engineer/"
 distfiles="https://github.com/atlas-engineer/nyxt/releases/download/${version}/${pkgname}-${version}-source-with-submodules.tar.xz"
-checksum=04f740f8405044cc89920d41d340d6d137e1d4f7be098d4813d1523f73d725a9
+checksum=3e7a2812563ea3f2fe0c039db0d693a4de99d22cef1b0dec09173d1b7fbaf691
 # Disable check because ASDF/USER::PROVE is not installed
 make_check=no
 nostrip=yes

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PR PATCH] [Merged]: nyxt: update to 3.2.0
  2023-06-20  7:26 [PR PATCH] nyxt: update to 3.2.0 oliverwiegers
                   ` (6 preceding siblings ...)
  2023-06-22 15:53 ` [PR PATCH] [Updated] " oliverwiegers
@ 2023-06-22 19:01 ` Duncaen
  7 siblings, 0 replies; 9+ messages in thread
From: Duncaen @ 2023-06-22 19:01 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 498 bytes --]

There's a merged pull request on the void-packages repository

nyxt: update to 3.2.0
https://github.com/void-linux/void-packages/pull/44532

Description:
- Updated 002-webkit2gtk.init.lisp patch. The patch itself is the same, but the structure of the source file to be patched changed.
- Included "pkg-config" into hostmakedepends.

#### Testing the changes
- I tested the changes in this PR: **YES**

#### Local build testing
- I built this PR locally for my native architecture, x86_64*


^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2023-06-22 19:01 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-06-20  7:26 [PR PATCH] nyxt: update to 3.2.0 oliverwiegers
2023-06-20 19:44 ` [PR PATCH] [Updated] " oliverwiegers
2023-06-22 12:31 ` oliverwiegers
2023-06-22 12:32 ` oliverwiegers
2023-06-22 14:44 ` [PR REVIEW] " Duncaen
2023-06-22 14:54 ` [PR PATCH] [Updated] " oliverwiegers
2023-06-22 14:55 ` [PR REVIEW] " oliverwiegers
2023-06-22 15:53 ` [PR PATCH] [Updated] " oliverwiegers
2023-06-22 19:01 ` [PR PATCH] [Merged]: " Duncaen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).