diff options
Diffstat (limited to '')
5 files changed, 30 insertions, 10 deletions
diff --git a/archivers/urbackup-client/files/patch-Makefile.am b/archivers/urbackup-client/files/patch-Makefile.am index 3f26c5dfff5c..8f24643dfa1d 100644 --- a/archivers/urbackup-client/files/patch-Makefile.am +++ b/archivers/urbackup-client/files/patch-Makefile.am @@ -2,9 +2,9 @@ Makefile.am uses ${INSTALL_PROGAM} to install scripts and configuation files, leading to an error from strip(1). This patch instead uses ${INSTALL} (for scripts) and ${INSTALL_DATA} (for configuration files). ---- Makefile.am.orig 2022-08-29 17:51:29 UTC +--- Makefile.am.orig 2025-09-03 18:53:44 UTC +++ Makefile.am -@@ -198,24 +198,24 @@ endif +@@ -209,24 +209,24 @@ endif $(MKDIR_P) "$(DESTDIR)$(datadir)/urbackup/scripts" $(MKDIR_P) "$(DESTDIR)$(sysconfdir)/urbackup" diff --git a/archivers/urbackup-client/files/patch-cryptoplugin_src_files.cpp b/archivers/urbackup-client/files/patch-cryptoplugin_src_files.cpp new file mode 100644 index 000000000000..e93de31593b2 --- /dev/null +++ b/archivers/urbackup-client/files/patch-cryptoplugin_src_files.cpp @@ -0,0 +1,11 @@ +--- cryptoplugin/src/files.cpp.orig 2025-09-03 18:55:57 UTC ++++ cryptoplugin/src/files.cpp +@@ -118,7 +118,7 @@ size_t FileStore::CopyRangeTo2(BufferedTransformation + if (begin == 0 && end == 1) + { + int result = m_stream->peek(); +- if (result == std::char_traits<char>::eof()) ++ if (result == std::vector<char>::eof()) + return 0; + else + { diff --git a/archivers/urbackup-client/files/patch-libfastcgi_fastcgi.hpp b/archivers/urbackup-client/files/patch-libfastcgi_fastcgi.hpp new file mode 100644 index 000000000000..da0afb985d33 --- /dev/null +++ b/archivers/urbackup-client/files/patch-libfastcgi_fastcgi.hpp @@ -0,0 +1,11 @@ +--- libfastcgi/fastcgi.hpp.orig 2025-09-03 18:54:33 UTC ++++ libfastcgi/fastcgi.hpp +@@ -155,7 +155,7 @@ class FCGIProtocolDriver (private) + reqmap_t reqmap; + std::queue<u_int16_t> new_request_queue; + +- std::basic_string<u_int8_t> InputBuffer; ++ std::vector<u_int8_t> InputBuffer; + u_int8_t tmp_buf[64]; + }; + diff --git a/archivers/urbackup-client/files/patch-urbackupclient_lin__tokens.cpp b/archivers/urbackup-client/files/patch-urbackupclient_lin__tokens.cpp index a1a624def5b4..f1ab7794f329 100644 --- a/archivers/urbackup-client/files/patch-urbackupclient_lin__tokens.cpp +++ b/archivers/urbackup-client/files/patch-urbackupclient_lin__tokens.cpp @@ -1,4 +1,4 @@ ---- urbackupclient/lin_tokens.cpp.orig 2025-08-11 17:13:03 UTC +--- urbackupclient/lin_tokens.cpp.orig 2022-08-21 08:45:31 UTC +++ urbackupclient/lin_tokens.cpp @@ -34,7 +34,7 @@ TokenCache::TokenCache() }; diff --git a/archivers/urbackup-client/files/pkg-message.in b/archivers/urbackup-client/files/pkg-message.in index b7cbfc458da2..73d0d081884e 100644 --- a/archivers/urbackup-client/files/pkg-message.in +++ b/archivers/urbackup-client/files/pkg-message.in @@ -16,15 +16,13 @@ The client daemon's configuration file is located at: Log rotation can be configured at: %%PREFIX%%/etc/newsyslog.conf.d/urbackupclient.conf -If the GTK2 GUI was built, it can be launched via: +If the GTK4 GUI was built, it can be launched via: %%PREFIX%%/bin/urbackupclientctl -NOTE: For client configuration or to view logs, the GTK2 GUI -needs to have one of the following in its PATH: - - kdesu (e.g., %%PREFIX%%/lib/kde4/libexec/) - (port: x11/kde-runtime) - - gksu (e.g., %%PREFIX%%/bin/) - (port: sysutils/gksu) +NOTE: For client configuration or to view logs, the GTK4 GUI +needs to have kdesu in its PATH: + e.g., %%PREFIX%%/lib/libexec/kf6/ + port: sysutils/plasma6-kde-cli-tools The client can also be configured via the UrBackup Server, or %%PREFIX%%/bin/urbackupclientctl |