Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] fuse3: update to 3.10.1.
@ 2020-12-12 12:40 ailiop-git
  2020-12-12 15:03 ` ericonr
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: ailiop-git @ 2020-12-12 12:40 UTC (permalink / raw)
  To: ml

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

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

https://github.com/ailiop-git/void-packages fuse3
https://github.com/void-linux/void-packages/pull/27107

fuse3: update to 3.10.1.


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

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

From 5cb86aa016f31bcfe3905094896c1c7dd76ac8df Mon Sep 17 00:00:00 2001
From: Anthony Iliopoulos <ailiop@altatus.com>
Date: Sat, 12 Dec 2020 13:39:41 +0100
Subject: [PATCH] fuse3: update to 3.10.1.

---
 srcpkgs/fuse3/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/fuse3/template b/srcpkgs/fuse3/template
index a17a6650b06..7a857d1d256 100644
--- a/srcpkgs/fuse3/template
+++ b/srcpkgs/fuse3/template
@@ -1,6 +1,6 @@
 # Template file for 'fuse3'
 pkgname=fuse3
-version=3.10.0
+version=3.10.1
 revision=1
 wrksrc="fuse-${version}"
 build_style=meson
@@ -12,7 +12,7 @@ maintainer="Anthony Iliopoulos <ailiop@altatus.com>"
 license="GPL-2.0-or-later, LGPL-2.1-or-later"
 homepage="https://github.com/libfuse/libfuse"
 distfiles="https://github.com/libfuse/libfuse/releases/download/fuse-${version}/fuse-${version}.tar.xz"
-checksum=26517954567f237a7dbcb532755ba0d2c77575c5d90db7566b6e40ec05b0a039
+checksum=d82d74d4c03e099f806e4bb31483955637c69226576bf0ca9bd142f1d50ae451
 conf_files="/etc/fuse.conf"
 
 post_install() {

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

* Re: fuse3: update to 3.10.1.
  2020-12-12 12:40 [PR PATCH] fuse3: update to 3.10.1 ailiop-git
@ 2020-12-12 15:03 ` ericonr
  2020-12-12 15:08 ` ericonr
  2020-12-17 18:06 ` [PR PATCH] [Closed]: " ahesford
  2 siblings, 0 replies; 4+ messages in thread
From: ericonr @ 2020-12-12 15:03 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/27107#issuecomment-743768697

Comment:
Might make sense to apply this, not sure

```diff
diff --git a/srcpkgs/fuse3/template b/srcpkgs/fuse3/template
index 7a857d1d25..296bc604d6 100644
--- a/srcpkgs/fuse3/template
+++ b/srcpkgs/fuse3/template
@@ -4,9 +4,10 @@ version=3.10.1
 revision=1
 wrksrc="fuse-${version}"
 build_style=meson
-configure_args="--sbindir=bin -Db_lto=false -Dexamples=false -Duseroot=false"
+configure_args="--sbindir=bin -Db_lto=false -Duseroot=false"
 hostmakedepends="pkg-config"
 makedepends="eudev-libudev-devel"
+checkdepends="python3-pytest which"
 short_desc="Filesystem in Userspace 3.x"
 maintainer="Anthony Iliopoulos <ailiop@altatus.com>"
 license="GPL-2.0-or-later, LGPL-2.1-or-later"
@@ -15,6 +16,16 @@ distfiles="https://github.com/libfuse/libfuse/releases/download/fuse-${version}/
 checksum=d82d74d4c03e099f806e4bb31483955637c69226576bf0ca9bd142f1d50ae451
 conf_files="/etc/fuse.conf"
 
+if [ "$XBPS_CHECK_PKGS" ]; then
+	configure_args+=" -Dexamples=true"
+else
+	configure_args+=" -Dexamples=false"
+fi
+
+do_check() {
+	: # XXX: tests fail due to permission issues
+}
+
 post_install() {
 	chmod u+s ${DESTDIR}/usr/bin/fusermount3
 	rm ${DESTDIR}/etc/init.d/fuse3
```

Otherwise, tested locally and the client seems to be working, at least.

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

* Re: fuse3: update to 3.10.1.
  2020-12-12 12:40 [PR PATCH] fuse3: update to 3.10.1 ailiop-git
  2020-12-12 15:03 ` ericonr
@ 2020-12-12 15:08 ` ericonr
  2020-12-17 18:06 ` [PR PATCH] [Closed]: " ahesford
  2 siblings, 0 replies; 4+ messages in thread
From: ericonr @ 2020-12-12 15:08 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/27107#issuecomment-743768697

Comment:
Might make sense to apply this, not sure

```diff
diff --git a/srcpkgs/fuse3/template b/srcpkgs/fuse3/template
index 7a857d1d25..296bc604d6 100644
--- a/srcpkgs/fuse3/template
+++ b/srcpkgs/fuse3/template
@@ -4,9 +4,10 @@ version=3.10.1
 revision=1
 wrksrc="fuse-${version}"
 build_style=meson
-configure_args="--sbindir=bin -Db_lto=false -Dexamples=false -Duseroot=false"
+configure_args="--sbindir=bin -Db_lto=false -Duseroot=false"
 hostmakedepends="pkg-config"
 makedepends="eudev-libudev-devel"
+checkdepends="python3-pytest which"
 short_desc="Filesystem in Userspace 3.x"
 maintainer="Anthony Iliopoulos <ailiop@altatus.com>"
 license="GPL-2.0-or-later, LGPL-2.1-or-later"
@@ -15,6 +16,16 @@ distfiles="https://github.com/libfuse/libfuse/releases/download/fuse-${version}/
 checksum=d82d74d4c03e099f806e4bb31483955637c69226576bf0ca9bd142f1d50ae451
 conf_files="/etc/fuse.conf"
 
+if [ "$XBPS_CHECK_PKGS" ]; then
+	configure_args+=" -Dexamples=true"
+else
+	configure_args+=" -Dexamples=false"
+fi
+
+do_check() {
+	: # XXX: tests fail due to permission issues
+}
+
 post_install() {
 	chmod u+s ${DESTDIR}/usr/bin/fusermount3
 	rm ${DESTDIR}/etc/init.d/fuse3
```

Otherwise, tested locally and seems to be working.

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

* Re: [PR PATCH] [Closed]: fuse3: update to 3.10.1.
  2020-12-12 12:40 [PR PATCH] fuse3: update to 3.10.1 ailiop-git
  2020-12-12 15:03 ` ericonr
  2020-12-12 15:08 ` ericonr
@ 2020-12-17 18:06 ` ahesford
  2 siblings, 0 replies; 4+ messages in thread
From: ahesford @ 2020-12-17 18:06 UTC (permalink / raw)
  To: ml

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

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

fuse3: update to 3.10.1.
https://github.com/void-linux/void-packages/pull/27107

Description:


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

end of thread, other threads:[~2020-12-17 18:06 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-12 12:40 [PR PATCH] fuse3: update to 3.10.1 ailiop-git
2020-12-12 15:03 ` ericonr
2020-12-12 15:08 ` ericonr
2020-12-17 18:06 ` [PR PATCH] [Closed]: " ahesford

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