Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] go-mtpfs: depend on fuse
@ 2023-01-19  3:32 kruceter
  2023-01-19  3:35 ` [PR PATCH] [Updated] " kruceter
  2023-01-19 19:34 ` [PR PATCH] [Merged]: " classabbyamp
  0 siblings, 2 replies; 3+ messages in thread
From: kruceter @ 2023-01-19  3:32 UTC (permalink / raw)
  To: ml

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

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

https://github.com/kruceter/void-packages go-mtpfs
https://github.com/void-linux/void-packages/pull/41735

go-mtpfs: depend on fuse
Uses fusermount from the 'fuse' package to mount MTP devices.

Closes #41731. 
<!-- Uncomment relevant sections and delete options which are not applicable -->

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

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

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

From e384d7de81ee2245f2d06131d432110362d1715a Mon Sep 17 00:00:00 2001
From: Krul Ceter <kruceter@proton.me>
Date: Thu, 19 Jan 2023 06:25:52 +0300
Subject: [PATCH] go-mtpfs: depend on fuse

Uses fusermount from the 'fuse' package to mount MTP devices.
---
 srcpkgs/go-mtpfs/template | 1 +
 1 file changed, 1 insertion(+)

diff --git a/srcpkgs/go-mtpfs/template b/srcpkgs/go-mtpfs/template
index aa07ad5e1e36..1843ec34f8ec 100644
--- a/srcpkgs/go-mtpfs/template
+++ b/srcpkgs/go-mtpfs/template
@@ -6,6 +6,7 @@ build_style=go
 go_import_path=github.com/hanwen/go-mtpfs
 hostmakedepends="pkg-config"
 makedepends="libusb-devel"
+depends="fuse"
 short_desc="Mount MTP devices over FUSE"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="BSD-3-Clause"

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

* Re: [PR PATCH] [Updated] go-mtpfs: depend on fuse
  2023-01-19  3:32 [PR PATCH] go-mtpfs: depend on fuse kruceter
@ 2023-01-19  3:35 ` kruceter
  2023-01-19 19:34 ` [PR PATCH] [Merged]: " classabbyamp
  1 sibling, 0 replies; 3+ messages in thread
From: kruceter @ 2023-01-19  3:35 UTC (permalink / raw)
  To: ml

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

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

https://github.com/kruceter/void-packages go-mtpfs
https://github.com/void-linux/void-packages/pull/41735

go-mtpfs: depend on fuse
Uses fusermount from the 'fuse' package to mount MTP devices.

Closes #41731. 
<!-- Uncomment relevant sections and delete options which are not applicable -->

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

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

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

From 4dfce9ecb3b8bbb9f6cd7b83f04ba80a0ab15983 Mon Sep 17 00:00:00 2001
From: Krul Ceter <kruceter@proton.me>
Date: Thu, 19 Jan 2023 06:25:52 +0300
Subject: [PATCH] go-mtpfs: depend on fuse

Uses fusermount from the 'fuse' package to mount MTP devices.
---
 srcpkgs/go-mtpfs/template | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/go-mtpfs/template b/srcpkgs/go-mtpfs/template
index aa07ad5e1e36..546029323b58 100644
--- a/srcpkgs/go-mtpfs/template
+++ b/srcpkgs/go-mtpfs/template
@@ -1,11 +1,12 @@
 # Template file for 'go-mtpfs'
 pkgname=go-mtpfs
 version=1.0.0
-revision=1
+revision=2
 build_style=go
 go_import_path=github.com/hanwen/go-mtpfs
 hostmakedepends="pkg-config"
 makedepends="libusb-devel"
+depends="fuse"
 short_desc="Mount MTP devices over FUSE"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="BSD-3-Clause"

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

* Re: [PR PATCH] [Merged]: go-mtpfs: depend on fuse
  2023-01-19  3:32 [PR PATCH] go-mtpfs: depend on fuse kruceter
  2023-01-19  3:35 ` [PR PATCH] [Updated] " kruceter
@ 2023-01-19 19:34 ` classabbyamp
  1 sibling, 0 replies; 3+ messages in thread
From: classabbyamp @ 2023-01-19 19:34 UTC (permalink / raw)
  To: ml

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

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

go-mtpfs: depend on fuse
https://github.com/void-linux/void-packages/pull/41735

Description:
Uses fusermount from the 'fuse' package to mount MTP devices.

Closes #41731. 
<!-- Uncomment relevant sections and delete options which are not applicable -->

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

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

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

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-19  3:32 [PR PATCH] go-mtpfs: depend on fuse kruceter
2023-01-19  3:35 ` [PR PATCH] [Updated] " kruceter
2023-01-19 19:34 ` [PR PATCH] [Merged]: " classabbyamp

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