Accepting request 886222 from GNOME:Factory
- Rebase SLE patches gvfs-nds.patch and gvfs-nvvfs.patch for version 1.48.0: + Use meson summary function instead of custom output(boo#1184104). (forwarded request 885822 from qkzhu) OBS-URL: https://build.opensuse.org/request/show/886222 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gvfs?expand=0&rev=171
This commit is contained in:
commit
9f460507e9
@ -849,10 +849,10 @@ index 0000000..1068344
|
|||||||
+AutoMount=false
|
+AutoMount=false
|
||||||
+Scheme=nds
|
+Scheme=nds
|
||||||
diff --git a/meson.build b/meson.build
|
diff --git a/meson.build b/meson.build
|
||||||
index 080637b..6525b79 100644
|
index d844335..34d754f 100644
|
||||||
--- a/meson.build
|
--- a/meson.build
|
||||||
+++ b/meson.build
|
+++ b/meson.build
|
||||||
@@ -449,6 +449,12 @@ config_h.set('HAVE_LIBMTP', enable_mtp)
|
@@ -448,6 +448,12 @@ config_h.set('HAVE_LIBMTP', enable_mtp)
|
||||||
# *** AFP backend ***
|
# *** AFP backend ***
|
||||||
enable_afp = get_option('afp')
|
enable_afp = get_option('afp')
|
||||||
|
|
||||||
@ -865,14 +865,14 @@ index 080637b..6525b79 100644
|
|||||||
# *** NFS backend ***
|
# *** NFS backend ***
|
||||||
enable_nfs = get_option('nfs')
|
enable_nfs = get_option('nfs')
|
||||||
if enable_nfs
|
if enable_nfs
|
||||||
@@ -507,6 +513,7 @@ output += ' google: ' + enable_google.to_string() + '\n'
|
@@ -507,6 +513,7 @@ summary({
|
||||||
output += ' gphoto2: ' + enable_gphoto2.to_string() + '\n'
|
'gphoto2': enable_gphoto2,
|
||||||
output += ' http: ' + enable_http.to_string() + '\n'
|
'http': enable_http,
|
||||||
output += ' mtp: ' + enable_mtp.to_string() + '\n'
|
'mtp': enable_mtp,
|
||||||
+output += ' nds: ' + enable_nds.to_string() + '\n'
|
+ 'nds': enable_nds,
|
||||||
output += ' nfs: ' + enable_nfs.to_string() + '\n'
|
'nfs': enable_nfs,
|
||||||
output += ' sftp: ' + enable_sftp.to_string() + '\n'
|
'sftp': enable_sftp,
|
||||||
output += ' smb: ' + enable_samba.to_string() + '\n'
|
'smb': enable_samba,
|
||||||
diff --git a/meson_options.txt b/meson_options.txt
|
diff --git a/meson_options.txt b/meson_options.txt
|
||||||
index 32f10d4..dced004 100644
|
index 32f10d4..dced004 100644
|
||||||
--- a/meson_options.txt
|
--- a/meson_options.txt
|
||||||
|
@ -652,7 +652,7 @@ index 0000000..eebf062
|
|||||||
+
|
+
|
||||||
+#endif /* __G_VFS_BACKEND_NVVFS_H__ */
|
+#endif /* __G_VFS_BACKEND_NVVFS_H__ */
|
||||||
diff --git a/daemon/meson.build b/daemon/meson.build
|
diff --git a/daemon/meson.build b/daemon/meson.build
|
||||||
index dabdcb2..81e219a 100644
|
index dabdcb2..bc90afd 100644
|
||||||
--- a/daemon/meson.build
|
--- a/daemon/meson.build
|
||||||
+++ b/daemon/meson.build
|
+++ b/daemon/meson.build
|
||||||
@@ -558,6 +558,20 @@ if enable_nfs
|
@@ -558,6 +558,20 @@ if enable_nfs
|
||||||
@ -688,10 +688,10 @@ index 0000000..c5d6f8e
|
|||||||
+AutoMount=false
|
+AutoMount=false
|
||||||
+Scheme=nvvfs
|
+Scheme=nvvfs
|
||||||
diff --git a/meson.build b/meson.build
|
diff --git a/meson.build b/meson.build
|
||||||
index 6525b79..016d4c7 100644
|
index 34d754f..98d5332 100644
|
||||||
--- a/meson.build
|
--- a/meson.build
|
||||||
+++ b/meson.build
|
+++ b/meson.build
|
||||||
@@ -461,6 +461,9 @@ if enable_nfs
|
@@ -460,6 +460,9 @@ if enable_nfs
|
||||||
libnfs_dep = dependency('libnfs', version: '>= 1.9.8')
|
libnfs_dep = dependency('libnfs', version: '>= 1.9.8')
|
||||||
endif
|
endif
|
||||||
|
|
||||||
@ -701,14 +701,14 @@ index 6525b79..016d4c7 100644
|
|||||||
# *** SFTP backend ***
|
# *** SFTP backend ***
|
||||||
enable_sftp = get_option('sftp')
|
enable_sftp = get_option('sftp')
|
||||||
if enable_sftp
|
if enable_sftp
|
||||||
@@ -514,6 +517,7 @@ output += ' gphoto2: ' + enable_gphoto2.to_string() + '\n'
|
@@ -514,6 +517,7 @@ summary({
|
||||||
output += ' http: ' + enable_http.to_string() + '\n'
|
'http': enable_http,
|
||||||
output += ' mtp: ' + enable_mtp.to_string() + '\n'
|
'mtp': enable_mtp,
|
||||||
output += ' nds: ' + enable_nds.to_string() + '\n'
|
'nds': enable_nds,
|
||||||
+output += ' nvvfs: ' + enable_nvvfs.to_string() + '\n'
|
+ 'nvvfs': enable_nvvfs,
|
||||||
output += ' nfs: ' + enable_nfs.to_string() + '\n'
|
'nfs': enable_nfs,
|
||||||
output += ' sftp: ' + enable_sftp.to_string() + '\n'
|
'sftp': enable_sftp,
|
||||||
output += ' smb: ' + enable_samba.to_string() + '\n'
|
'smb': enable_samba,
|
||||||
diff --git a/meson_options.txt b/meson_options.txt
|
diff --git a/meson_options.txt b/meson_options.txt
|
||||||
index dced004..e7a9398 100644
|
index dced004..e7a9398 100644
|
||||||
--- a/meson_options.txt
|
--- a/meson_options.txt
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Apr 16 04:51:53 UTC 2021 - QK ZHU <qkzhu@suse.com>
|
||||||
|
|
||||||
|
- Rebase SLE patches gvfs-nds.patch and gvfs-nvvfs.patch for version
|
||||||
|
1.48.0:
|
||||||
|
+ Use meson summary function instead of custom output(boo#1184104).
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Mar 20 07:08:17 UTC 2021 - Dominique Leuenberger <dimstar@opensuse.org>
|
Sat Mar 20 07:08:17 UTC 2021 - Dominique Leuenberger <dimstar@opensuse.org>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user