diff options
| author | Maxim Cournoyer <maxim@guixotic.coop> | 2026-02-09 09:11:35 +0900 |
|---|---|---|
| committer | Maxim Cournoyer <maxim@guixotic.coop> | 2026-02-10 18:07:49 +0900 |
| commit | 8bd1cc5908ba6384d3518bf5a7f2dedb853a8bc0 (patch) | |
| tree | 4cfb6a7b441122d8497ba091f491064a1b45df86 | |
| parent | 4064682685f7f5408be1374b9783de151aeea2fa (diff) | |
gnu: opendht: Update to 3.7.0rc8.
* gnu/packages/patches/opendht-meson-install-headers.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/networking.scm (opendht): Update to 3.7.0rc8.
[source] <patches>: Delete.
Change-Id: Id1d8b4a095edcaabc92ecb17f7a203e29df21d27
| -rw-r--r-- | gnu/local.mk | 1 | ||||
| -rw-r--r-- | gnu/packages/networking.scm | 6 | ||||
| -rw-r--r-- | gnu/packages/patches/opendht-meson-install-headers.patch | 32 |
3 files changed, 2 insertions, 37 deletions
diff --git a/gnu/local.mk b/gnu/local.mk index eee60193533..2d914a7f5e6 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -1996,7 +1996,6 @@ dist_patch_DATA = \ %D%/packages/patches/openboardview-use-system-mpc.patch \ %D%/packages/patches/openbox-add-fix-for-glib2-exposed-segfault.patch \ %D%/packages/patches/openbox-python3.patch \ - %D%/packages/patches/opendht-meson-install-headers.patch \ %D%/packages/patches/openexr-2-gcc-14.patch \ %D%/packages/patches/openfst-for-vosk-fix-unique-ptr.patch \ %D%/packages/patches/openjdk-currency-time-bomb.patch \ diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index f6119bfe036..a8a238771c0 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -4239,7 +4239,7 @@ and targeted primarily for asynchronous processing of HTTP-requests.") (define-public opendht (package (name "opendht") - (version "3.6.2.3") + (version "3.7.0rc8") ;jami depends on this RC (source (origin (method git-fetch) (uri (git-reference @@ -4248,9 +4248,7 @@ and targeted primarily for asynchronous processing of HTTP-requests.") (file-name (git-file-name name version)) (sha256 (base32 - "1v8miwsslqlqlpp7p210jhxwkblqyc69cgxaq680qhg7h1sf3y2i")) - (patches - (search-patches "opendht-meson-install-headers.patch")))) + "0ysfwrqjh6mpy6zycmd3ljsd63ap8i4psgnr25vp0xqbjrfz6rf6")))) (outputs '("out" "python" "tools" "debug")) (build-system meson-build-system) (arguments diff --git a/gnu/packages/patches/opendht-meson-install-headers.patch b/gnu/packages/patches/opendht-meson-install-headers.patch deleted file mode 100644 index 8090e383a42..00000000000 --- a/gnu/packages/patches/opendht-meson-install-headers.patch +++ /dev/null @@ -1,32 +0,0 @@ -Upstream-status: <https://github.com/savoirfairelinux/opendht/pull/821> - -diff --git a/meson.build b/meson.build -index d3c4a500..8d1ed563 100644 ---- a/meson.build -+++ b/meson.build -@@ -116,6 +116,13 @@ opendht = library( - install: true, - ) - -+# Install library headers. -+install_subdir( -+ 'include', -+ install_dir: get_option('includedir'), -+ strip_directory: true -+) -+ - conf_data.set('VERSION', meson.project_version()) - conf_data.set('prefix', get_option('prefix')) - conf_data.set('exec_prefix', get_option('prefix')) -@@ -145,6 +152,11 @@ if get_option('c').enabled() - install: true, - ) - -+ install_headers( -+ 'c/opendht_c.h', -+ subdir: 'opendht' -+ ) -+ - configure_file( - input: 'opendht-c.pc.in', - output: 'opendht-c.pc', |
