Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: geopard-1.4.0
@ 2024-04-05  9:35 iFoundSilentHouse
  2024-04-05  9:39 ` [PR PATCH] [Updated] " iFoundSilentHouse
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: iFoundSilentHouse @ 2024-04-05  9:35 UTC (permalink / raw)
  To: ml

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

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

https://github.com/iFoundSilentHouse/void-packages geopard-1.4.0
https://github.com/void-linux/void-packages/pull/49717

New package: geopard-1.4.0
#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **system, compiled**

#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc)
- I built this PR locally for these architectures:
  - x86_64-musl
  - i686
  - aarch64(**cross**)
  - armv7l(**cross**)

Closes https://github.com/void-linux/void-packages/issues/48903

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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-geopard-1.4.0-49717.patch --]
[-- Type: text/x-diff, Size: 3201 bytes --]

From e940b7634ffcf72763d9536490a466503fe45589 Mon Sep 17 00:00:00 2001
From: IFoundSilentHouse <adeptslab@gmail.com>
Date: Fri, 5 Apr 2024 15:27:24 +0600
Subject: [PATCH] New package: geopard-1.4.0

---
 srcpkgs/geopard/patches/000-appstream.patch | 21 +++++++++++++++
 srcpkgs/geopard/template                    | 29 +++++++++++++++++++++
 2 files changed, 50 insertions(+)
 create mode 100644 srcpkgs/geopard/patches/000-appstream.patch
 create mode 100644 srcpkgs/geopard/template

diff --git a/srcpkgs/geopard/patches/000-appstream.patch b/srcpkgs/geopard/patches/000-appstream.patch
new file mode 100644
index 00000000000000..ce911af7a3812e
--- /dev/null
+++ b/srcpkgs/geopard/patches/000-appstream.patch
@@ -0,0 +1,21 @@
+diff --git a/data/com.ranfdev.Geopard.metainfo.xml.in.in b/data/com.ranfdev.Geopard.metainfo.xml.in.in
+index 4bb34c2..a76a28c 100644
+--- a/data/com.ranfdev.Geopard.metainfo.xml.in.in
++++ b/data/com.ranfdev.Geopard.metainfo.xml.in.in
+@@ -88,12 +88,10 @@
+     </release>
+     <release version="1.1.0" date="2022-05-19">
+       <description>
+-        <ul>
+-          <li>Improved design, with completely new pages for downloads, input requests, external links, errors</li>
+-          <li>Added more spacing between links to make them easier to click on small screens</li>
+-          <li>Added zoom functionality, via shortcuts or directly from the popover menu</li>
+-          <li>Streaming button (alpha) for some audio/video file types</li>
+-        </ul>
++        <p>Improved design, with completely new pages for downloads, input requests, external links, errors</p>
++        <p>Added more spacing between links to make them easier to click on small screens</p>
++        <p>Added zoom functionality, via shortcuts or directly from the popover menu</p>
++        <p>Streaming button (alpha) for some audio/video file types</p>
+       </description>
+     </release>
+     <release version="1.0.1" date="2022-05-07">
diff --git a/srcpkgs/geopard/template b/srcpkgs/geopard/template
new file mode 100644
index 00000000000000..1ea2badfd7888a
--- /dev/null
+++ b/srcpkgs/geopard/template
@@ -0,0 +1,29 @@
+# Template file for 'geopard'
+pkgname=geopard
+version=1.4.0
+revision=1
+build_style=meson
+build_helper=rust
+hostmakedepends="cargo gettext blueprint-compiler gtk4-update-icon-cache 
+ pkg-config glib-devel appstream-glib desktop-file-utils"
+makedepends="gdk-pixbuf-devel pango-devel gtk4-devel libadwaita-devel rust-std"
+short_desc="Colorful, adaptive gemini browser"
+maintainer="iFoundSilentHouse <adeptslab@gmail.com>"
+license="GPL-3.0-or-later"
+homepage="https://ranfdev.com/projects/Geopard"
+distfiles="https://github.com/ranfdev/Geopard/archive/refs/tags/v${version}.tar.gz"
+checksum=b48224c3a610811e1f861d5478bab7c84cba1caa25e48d7b66e71c863c5bdd3f
+
+if [ "$CROSS_BUILD" ]; then 
+	makedepends+=" libgirepository-devel gobject-introspection"
+fi
+
+pre_build() {
+	rm -rf ${wrksrc}/subprojects/blueprint-compiler.wrap
+	
+	if [ "$CROSS_BUILD" ]; then
+		export GI_TYPELIB_PATH="${XBPS_CROSS_BASE}/usr/lib/girepository-1.0"
+		vsed -i build/build.ninja \
+			-e "s;cp src/release/geopard;cp src/${RUST_TARGET}/release/geopard;"
+	fi
+}

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

* Re: [PR PATCH] [Updated] New package: geopard-1.4.0
  2024-04-05  9:35 [PR PATCH] New package: geopard-1.4.0 iFoundSilentHouse
@ 2024-04-05  9:39 ` iFoundSilentHouse
  2024-04-07  4:59 ` iFoundSilentHouse
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: iFoundSilentHouse @ 2024-04-05  9:39 UTC (permalink / raw)
  To: ml

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

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

https://github.com/iFoundSilentHouse/void-packages geopard-1.4.0
https://github.com/void-linux/void-packages/pull/49717

New package: geopard-1.4.0
#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **system, compiled**

#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc)
- I built this PR locally for these architectures:
  - x86_64-musl
  - i686
  - aarch64(**cross**)
  - armv7l(**cross**)

Closes https://github.com/void-linux/void-packages/issues/48903

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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-geopard-1.4.0-49717.patch --]
[-- Type: text/x-diff, Size: 3198 bytes --]

From fca5c6cf1f3fa86076a38aaf098e0e1f39c99b1a Mon Sep 17 00:00:00 2001
From: IFoundSilentHouse <adeptslab@gmail.com>
Date: Fri, 5 Apr 2024 15:27:24 +0600
Subject: [PATCH] New package: geopard-1.4.0

---
 srcpkgs/geopard/patches/000-appstream.patch | 21 +++++++++++++++
 srcpkgs/geopard/template                    | 29 +++++++++++++++++++++
 2 files changed, 50 insertions(+)
 create mode 100644 srcpkgs/geopard/patches/000-appstream.patch
 create mode 100644 srcpkgs/geopard/template

diff --git a/srcpkgs/geopard/patches/000-appstream.patch b/srcpkgs/geopard/patches/000-appstream.patch
new file mode 100644
index 00000000000000..ce911af7a3812e
--- /dev/null
+++ b/srcpkgs/geopard/patches/000-appstream.patch
@@ -0,0 +1,21 @@
+diff --git a/data/com.ranfdev.Geopard.metainfo.xml.in.in b/data/com.ranfdev.Geopard.metainfo.xml.in.in
+index 4bb34c2..a76a28c 100644
+--- a/data/com.ranfdev.Geopard.metainfo.xml.in.in
++++ b/data/com.ranfdev.Geopard.metainfo.xml.in.in
+@@ -88,12 +88,10 @@
+     </release>
+     <release version="1.1.0" date="2022-05-19">
+       <description>
+-        <ul>
+-          <li>Improved design, with completely new pages for downloads, input requests, external links, errors</li>
+-          <li>Added more spacing between links to make them easier to click on small screens</li>
+-          <li>Added zoom functionality, via shortcuts or directly from the popover menu</li>
+-          <li>Streaming button (alpha) for some audio/video file types</li>
+-        </ul>
++        <p>Improved design, with completely new pages for downloads, input requests, external links, errors</p>
++        <p>Added more spacing between links to make them easier to click on small screens</p>
++        <p>Added zoom functionality, via shortcuts or directly from the popover menu</p>
++        <p>Streaming button (alpha) for some audio/video file types</p>
+       </description>
+     </release>
+     <release version="1.0.1" date="2022-05-07">
diff --git a/srcpkgs/geopard/template b/srcpkgs/geopard/template
new file mode 100644
index 00000000000000..3eda62a851dc6d
--- /dev/null
+++ b/srcpkgs/geopard/template
@@ -0,0 +1,29 @@
+# Template file for 'geopard'
+pkgname=geopard
+version=1.4.0
+revision=1
+build_style=meson
+build_helper=rust
+hostmakedepends="cargo gettext blueprint-compiler gtk4-update-icon-cache
+ pkg-config glib-devel appstream-glib desktop-file-utils"
+makedepends="gdk-pixbuf-devel pango-devel gtk4-devel libadwaita-devel rust-std"
+short_desc="Colorful, adaptive gemini browser"
+maintainer="iFoundSilentHouse <adeptslab@gmail.com>"
+license="GPL-3.0-or-later"
+homepage="https://ranfdev.com/projects/Geopard"
+distfiles="https://github.com/ranfdev/Geopard/archive/refs/tags/v${version}.tar.gz"
+checksum=b48224c3a610811e1f861d5478bab7c84cba1caa25e48d7b66e71c863c5bdd3f
+
+if [ "$CROSS_BUILD" ]; then
+	makedepends+=" libgirepository-devel gobject-introspection"
+fi
+
+pre_build() {
+	rm -rf ${wrksrc}/subprojects/blueprint-compiler.wrap
+
+	if [ "$CROSS_BUILD" ]; then
+		export GI_TYPELIB_PATH="${XBPS_CROSS_BASE}/usr/lib/girepository-1.0"
+		vsed -i build/build.ninja \
+			-e "s;cp src/release/geopard;cp src/${RUST_TARGET}/release/geopard;"
+	fi
+}

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

* Re: New package: geopard-1.4.0
  2024-04-05  9:35 [PR PATCH] New package: geopard-1.4.0 iFoundSilentHouse
  2024-04-05  9:39 ` [PR PATCH] [Updated] " iFoundSilentHouse
@ 2024-04-07  4:59 ` iFoundSilentHouse
  2024-04-07 17:09 ` [PR PATCH] [Updated] " iFoundSilentHouse
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: iFoundSilentHouse @ 2024-04-07  4:59 UTC (permalink / raw)
  To: ml

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

New comment by iFoundSilentHouse on void-packages repository

https://github.com/void-linux/void-packages/pull/49717#issuecomment-2041311351

Comment:
More about patch: https://github.com/ranfdev/Geopard/pull/101

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

* Re: [PR PATCH] [Updated] New package: geopard-1.4.0
  2024-04-05  9:35 [PR PATCH] New package: geopard-1.4.0 iFoundSilentHouse
  2024-04-05  9:39 ` [PR PATCH] [Updated] " iFoundSilentHouse
  2024-04-07  4:59 ` iFoundSilentHouse
@ 2024-04-07 17:09 ` iFoundSilentHouse
  2024-04-07 17:11 ` iFoundSilentHouse
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: iFoundSilentHouse @ 2024-04-07 17:09 UTC (permalink / raw)
  To: ml

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

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

https://github.com/iFoundSilentHouse/void-packages geopard-1.4.0
https://github.com/void-linux/void-packages/pull/49717

New package: geopard-1.4.0
#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **system, compiled**

#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc)
- I built this PR locally for these architectures:
  - x86_64-musl
  - i686
  - aarch64(**cross**)
  - armv7l(**cross**)

Closes https://github.com/void-linux/void-packages/issues/48903

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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-geopard-1.4.0-49717.patch --]
[-- Type: text/x-diff, Size: 2360 bytes --]

From f86ca65d4777e8402984ef3b936af0b02d3faa5a Mon Sep 17 00:00:00 2001
From: IFoundSilentHouse <adeptslab@gmail.com>
Date: Fri, 5 Apr 2024 15:27:24 +0600
Subject: [PATCH] New package: geopard-1.4.0

---
 srcpkgs/geopard/patches/000-appstream.patch | 13 +++++++++
 srcpkgs/geopard/template                    | 29 +++++++++++++++++++++
 2 files changed, 42 insertions(+)
 create mode 100644 srcpkgs/geopard/patches/000-appstream.patch
 create mode 100644 srcpkgs/geopard/template

diff --git a/srcpkgs/geopard/patches/000-appstream.patch b/srcpkgs/geopard/patches/000-appstream.patch
new file mode 100644
index 00000000000000..2b518964cf1892
--- /dev/null
+++ b/srcpkgs/geopard/patches/000-appstream.patch
@@ -0,0 +1,13 @@
+diff --git a/data/meson.build b/data/meson.build
+index 5e0bfd5..603b055 100644
+--- a/data/meson.build
++++ b/data/meson.build
+@@ -47,7 +47,7 @@ if appstream_util.found()
+   test(
+     'validate-appdata', appstream_util,
+     args: [
+-      'validate', '--nonet', appdata_file.full_path()
++      'validate-relax', '--nonet', appdata_file.full_path()
+     ],
+     depends: appdata_file,
+   )
diff --git a/srcpkgs/geopard/template b/srcpkgs/geopard/template
new file mode 100644
index 00000000000000..3eda62a851dc6d
--- /dev/null
+++ b/srcpkgs/geopard/template
@@ -0,0 +1,29 @@
+# Template file for 'geopard'
+pkgname=geopard
+version=1.4.0
+revision=1
+build_style=meson
+build_helper=rust
+hostmakedepends="cargo gettext blueprint-compiler gtk4-update-icon-cache
+ pkg-config glib-devel appstream-glib desktop-file-utils"
+makedepends="gdk-pixbuf-devel pango-devel gtk4-devel libadwaita-devel rust-std"
+short_desc="Colorful, adaptive gemini browser"
+maintainer="iFoundSilentHouse <adeptslab@gmail.com>"
+license="GPL-3.0-or-later"
+homepage="https://ranfdev.com/projects/Geopard"
+distfiles="https://github.com/ranfdev/Geopard/archive/refs/tags/v${version}.tar.gz"
+checksum=b48224c3a610811e1f861d5478bab7c84cba1caa25e48d7b66e71c863c5bdd3f
+
+if [ "$CROSS_BUILD" ]; then
+	makedepends+=" libgirepository-devel gobject-introspection"
+fi
+
+pre_build() {
+	rm -rf ${wrksrc}/subprojects/blueprint-compiler.wrap
+
+	if [ "$CROSS_BUILD" ]; then
+		export GI_TYPELIB_PATH="${XBPS_CROSS_BASE}/usr/lib/girepository-1.0"
+		vsed -i build/build.ninja \
+			-e "s;cp src/release/geopard;cp src/${RUST_TARGET}/release/geopard;"
+	fi
+}

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

* Re: New package: geopard-1.4.0
  2024-04-05  9:35 [PR PATCH] New package: geopard-1.4.0 iFoundSilentHouse
                   ` (2 preceding siblings ...)
  2024-04-07 17:09 ` [PR PATCH] [Updated] " iFoundSilentHouse
@ 2024-04-07 17:11 ` iFoundSilentHouse
  2024-04-10 17:34 ` [PR PATCH] [Updated] " iFoundSilentHouse
  2024-04-10 17:35 ` New package: geopard-1.5.0 iFoundSilentHouse
  5 siblings, 0 replies; 7+ messages in thread
From: iFoundSilentHouse @ 2024-04-07 17:11 UTC (permalink / raw)
  To: ml

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

New comment by iFoundSilentHouse on void-packages repository

https://github.com/void-linux/void-packages/pull/49717#issuecomment-2041533932

Comment:
Changed patch file as contributor advised

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

* Re: [PR PATCH] [Updated] New package: geopard-1.4.0
  2024-04-05  9:35 [PR PATCH] New package: geopard-1.4.0 iFoundSilentHouse
                   ` (3 preceding siblings ...)
  2024-04-07 17:11 ` iFoundSilentHouse
@ 2024-04-10 17:34 ` iFoundSilentHouse
  2024-04-10 17:35 ` New package: geopard-1.5.0 iFoundSilentHouse
  5 siblings, 0 replies; 7+ messages in thread
From: iFoundSilentHouse @ 2024-04-10 17:34 UTC (permalink / raw)
  To: ml

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

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

https://github.com/iFoundSilentHouse/void-packages geopard-1.4.0
https://github.com/void-linux/void-packages/pull/49717

New package: geopard-1.4.0
#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **system, compiled**

#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc)
- I built this PR locally for these architectures:
  - x86_64-musl
  - i686
  - aarch64(**cross**)
  - armv7l(**cross**)

Closes https://github.com/void-linux/void-packages/issues/48903

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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-geopard-1.4.0-49717.patch --]
[-- Type: text/x-diff, Size: 1575 bytes --]

From 5a6062e3c317e4d77c97f0ee858f9a7a0b7f4073 Mon Sep 17 00:00:00 2001
From: IFoundSilentHouse <adeptslab@gmail.com>
Date: Fri, 5 Apr 2024 15:27:24 +0600
Subject: [PATCH] New package: geopard-1.5.0

---
 srcpkgs/geopard/template | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)
 create mode 100644 srcpkgs/geopard/template

diff --git a/srcpkgs/geopard/template b/srcpkgs/geopard/template
new file mode 100644
index 00000000000000..37f9fff03d691e
--- /dev/null
+++ b/srcpkgs/geopard/template
@@ -0,0 +1,29 @@
+# Template file for 'geopard'
+pkgname=geopard
+version=1.5.0
+revision=1
+build_style=meson
+build_helper=rust
+hostmakedepends="cargo gettext blueprint-compiler gtk4-update-icon-cache
+ pkg-config glib-devel AppStream desktop-file-utils"
+makedepends="gdk-pixbuf-devel pango-devel gtk4-devel libadwaita-devel rust-std"
+short_desc="Colorful, adaptive gemini browser"
+maintainer="iFoundSilentHouse <adeptslab@gmail.com>"
+license="GPL-3.0-or-later"
+homepage="https://ranfdev.com/projects/Geopard"
+distfiles="https://github.com/ranfdev/Geopard/archive/refs/tags/v${version}.tar.gz"
+checksum=04f317d5586344dc9e3964a0e999aeac231cb5a9ff63071ea051926f54d18577
+
+if [ "$CROSS_BUILD" ]; then
+	makedepends+=" libgirepository-devel gobject-introspection"
+fi
+
+pre_build() {
+	rm -rf ${wrksrc}/subprojects/blueprint-compiler.wrap
+
+	if [ "$CROSS_BUILD" ]; then
+		export GI_TYPELIB_PATH="${XBPS_CROSS_BASE}/usr/lib/girepository-1.0"
+		vsed -i build/build.ninja \
+			-e "s;cp src/release/geopard;cp src/${RUST_TARGET}/release/geopard;"
+	fi
+}

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

* Re: New package: geopard-1.5.0
  2024-04-05  9:35 [PR PATCH] New package: geopard-1.4.0 iFoundSilentHouse
                   ` (4 preceding siblings ...)
  2024-04-10 17:34 ` [PR PATCH] [Updated] " iFoundSilentHouse
@ 2024-04-10 17:35 ` iFoundSilentHouse
  5 siblings, 0 replies; 7+ messages in thread
From: iFoundSilentHouse @ 2024-04-10 17:35 UTC (permalink / raw)
  To: ml

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

New comment by iFoundSilentHouse on void-packages repository

https://github.com/void-linux/void-packages/pull/49717#issuecomment-2048116290

Comment:
Updated to v1.5.0. Patch no longer needed

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

end of thread, other threads:[~2024-04-10 17:35 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-04-05  9:35 [PR PATCH] New package: geopard-1.4.0 iFoundSilentHouse
2024-04-05  9:39 ` [PR PATCH] [Updated] " iFoundSilentHouse
2024-04-07  4:59 ` iFoundSilentHouse
2024-04-07 17:09 ` [PR PATCH] [Updated] " iFoundSilentHouse
2024-04-07 17:11 ` iFoundSilentHouse
2024-04-10 17:34 ` [PR PATCH] [Updated] " iFoundSilentHouse
2024-04-10 17:35 ` New package: geopard-1.5.0 iFoundSilentHouse

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).