all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Hilton Chain via Guix-patches via <guix-patches@gnu.org>
To: 57675@debbugs.gnu.org
Cc: Liliana Marie Prikler <liliana.prikler@gmail.com>
Subject: [bug#57675] [PATCH v3 5/7] gnu: telegram-desktop: Update to 4.1.1.
Date: Sun, 11 Sep 2022 18:12:36 +0800	[thread overview]
Message-ID: <y76bkrm8bjf.wl-hako@ultrarare.space> (raw)
In-Reply-To: <y76czc28bk0.wl-hako@ultrarare.space>


* gnu/packages/patches/telegram-desktop-fix-gcc12-cstdint.patch: New file.
* gnu/packages/telegram.scm (telegram-desktop): Update to 4.1.1.
[patches]: Add telegram-desktop-fix-gcc12-cstdint.patch.
[snippet]: Sync with source tree.
Add libtgvoip, rlottie and dispatch.
[arguments]: Use App ID from Telegram's official Snap builds.
Comment out to default configurations.
Drop unneeded phases.
[native-inputs]: Drop cmake-shared, extra-cmake-modules, glib:bin, gtk+:bin
and qttools-5.
[inputs]: Drop libexpected, fcitx-qt5, fcitx5-qt, glib, hime, gtk+, kwayland,
libx11, catch-framework2, materialdecoration, nimf, qt5ct, libdbusmenu-qt,
qtbase-5, libtgvoip-for-telegram-desktop and rlottie-for-telegram-desktop.
Add abseil-cpp-cxxstd17, qt5compat, qtbase, qtwayland, wayland, webkitgtk and
libvpx.
[propageted-inputs]: Drop dconf.
[license]: Sync with source tree.
* gnu/local.mk: Add patch.
---
 gnu/local.mk                                  |   1 +
 .../telegram-desktop-fix-gcc12-cstdint.patch  |  10 +
 gnu/packages/telegram.scm                     | 175 ++++++++++--------
 3 files changed, 105 insertions(+), 81 deletions(-)
 create mode 100644 gnu/packages/patches/telegram-desktop-fix-gcc12-cstdint.patch

diff --git a/gnu/local.mk b/gnu/local.mk
index 683f6bfe0d..1247a09a8e 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -1868,6 +1868,7 @@ dist_patch_DATA =						\
   %D%/packages/patches/teensy-loader-cli-help.patch		\
   %D%/packages/patches/tensorflow-c-api-fix.patch		\
   %D%/packages/patches/texinfo-5-perl-compat.patch		\
+  %D%/packages/patches/telegram-desktop-fix-gcc12-cstdint.patch \
   %D%/packages/patches/telegram-purple-adjust-test.patch	\
   %D%/packages/patches/texi2html-document-encoding.patch	\
   %D%/packages/patches/texi2html-i18n.patch			\
diff --git a/gnu/packages/patches/telegram-desktop-fix-gcc12-cstdint.patch b/gnu/packages/patches/telegram-desktop-fix-gcc12-cstdint.patch
new file mode 100644
index 0000000000..a3d67e0c9a
--- /dev/null
+++ b/gnu/packages/patches/telegram-desktop-fix-gcc12-cstdint.patch
@@ -0,0 +1,10 @@
+--- a/Telegram/ThirdParty/tgcalls/tgcalls/utils/gzip.h
++++ b/Telegram/ThirdParty/tgcalls/tgcalls/utils/gzip.h
+@@ -2,6 +2,7 @@
+ #define TGCALLS_UTILS_GZIP_H
+
+ #include <absl/types/optional.h>
++#include <cstdint>
+ #include <vector>
+
+ namespace tgcalls {
diff --git a/gnu/packages/telegram.scm b/gnu/packages/telegram.scm
index cdd3816082..b943b3c4a2 100644
--- a/gnu/packages/telegram.scm
+++ b/gnu/packages/telegram.scm
@@ -1,6 +1,6 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2021 Raghav Gururajan <rg@raghavgururajan.name>
-;;;
+;;; Copyright © 2022 Hilton Chain <hako@ultrarare.space>
 ;;; This file is part of GNU Guix.
 ;;;
 ;;; GNU Guix is free software; you can redistribute it and/or modify it
@@ -28,6 +28,7 @@ (define-module (gnu packages telegram)
   #:use-module (gnu packages compression)
   #:use-module (gnu packages cpp)
   #:use-module (gnu packages digest)
+  #:use-module (gnu packages enchant)
   #:use-module (gnu packages fcitx)
   #:use-module (gnu packages fcitx5)
   #:use-module (gnu packages freedesktop)
@@ -60,6 +61,7 @@ (define-module (gnu packages telegram)
   #:use-module (gnu packages tls)
   #:use-module (gnu packages video)
   #:use-module (gnu packages web)
+  #:use-module (gnu packages webkit)
   #:use-module (gnu packages xdisorg)
   #:use-module (gnu packages xiph)
   #:use-module (gnu packages xorg)
@@ -258,7 +260,7 @@ (define-public libtgvoip-for-telegram-desktop
 (define-public telegram-desktop
   (package
     (name "telegram-desktop")
-    (version "2.9.3")
+    (version "4.1.1")
     (source
      (origin
        (method git-fetch)
@@ -269,16 +271,25 @@ (define-public telegram-desktop
          (recursive? #t)))
        (file-name
         (git-file-name name version))
+       (patches
+        (search-patches
+         ;; Cherry-picked from upstream, remove when bumping.
+         "telegram-desktop-fix-gcc12-cstdint.patch"))
        (sha256
-        (base32 "07mw09gmxy2pcga856wbsqmbgl2l5a3ix0hr5p6hlvk7pq260s36"))
+        (base32 "0b8nwimks6hfnb3bqik8d4s9z689hhj4p9ykqgc36pmpr54nyma8"))
        (modules '((guix build utils)
                   (ice-9 ftw)
                   (srfi srfi-1)))
        (snippet
         `(begin
            (let ((keep
-                  '( ;; Not available in Guix.
-                    "SPMediaKeyTap" "statusnotifieritem" "tgcalls")))
+                  '(;; Own fork, legacy library only used for backward
+                    ;; compatibility.
+                    "libtgvoip"
+                    ;; Own fork with custom API.
+                    "rlottie"
+                    ;; Not available in Guix.
+                    "dispatch" "tgcalls")))
              (with-directory-excursion "Telegram/ThirdParty"
                (for-each delete-file-recursively
                          (lset-difference string=?
@@ -286,102 +297,104 @@ (define-public telegram-desktop
                                           (cons* "." ".." keep)))))))))
     (build-system qt-build-system)
     (arguments
-     `(#:tests? #f                      ; No target
-       #:imported-modules
-       (,@%qt-build-system-modules
-        (guix build glib-or-gtk-build-system))
-       #:modules
-       ((guix build qt-build-system)
-        ((guix build glib-or-gtk-build-system)
-         #:prefix glib-or-gtk:)
-        (guix build utils)
-        (ice-9 match))
-       #:configure-flags
-       (list
-        ;; Client applications must provide their own API-ID and API-HASH,
-        ;; see also <https://core.telegram.org/api/obtaining_api_id>.
-        ;; In case, that the credentials below fail to work, contact
-        ;;   Raghav Gururajan <rg@raghavgururajan.name>
-        "-DTDESKTOP_API_ID=2791056"
-        "-DTDESKTOP_API_HASH=582d6d0b44f7a2de949e99271fd8b3f2"
-        ;; Disable WebkitGTK support as it fails to link
-        "-DDESKTOP_APP_DISABLE_WEBKITGTK=ON"
-        ;; Use bundled fonts as fallback.
-        "-DDESKTOP_APP_USE_PACKAGED_FONTS=OFF")
-       #:phases
-       (modify-phases %standard-phases
-         (add-after 'unpack 'make-writable
-           (lambda _
-             (for-each make-file-writable (find-files "."))))
-         (add-before 'configure 'patch-cxx-flags
-           (lambda _
-             (substitute* "cmake/options_linux.cmake"
-               (("class-memaccess") "all"))))
-         (add-after 'install 'glib-or-gtk-compile-schemas
-           (assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-compile-schemas))
-         (add-after 'glib-or-gtk-compile-schemas 'glib-or-gtk-wrap
-           (assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-wrap)))))
-    (native-inputs
-     (list cmake-shared
-           extra-cmake-modules
-           `(,glib "bin")
-           `(,gtk+ "bin")
-           pkg-config
-           python-wrapper
-           qttools-5))
+     (list #:tests? #f                  ;No target
+           #:imported-modules
+           `(,@%qt-build-system-modules
+             (guix build glib-or-gtk-build-system))
+           #:modules
+           '((guix build qt-build-system)
+             ((guix build glib-or-gtk-build-system) #:prefix glib-or-gtk:)
+             (guix build utils)
+             (ice-9 match))
+           #:configure-flags
+           #~`(;; https://github.com/telegramdesktop/tdesktop/blob/dev/snap/snapcraft.yaml
+               ;; see also <https://core.telegram.org/api/obtaining_api_id>.
+               "-DTDESKTOP_API_ID=611335"
+               "-DTDESKTOP_API_HASH=d524b414d21f4d37f08684c1df41ac9c"
+               ,(string-append "-DTDESKTOP_LAUTCHER_BASENAME=" #$name)
+               "-DDESKTOP_APP_DISABLE_CRASH_REPORTS=ON"
+               "-DDESKTOP_APP_DISABLE_AUTOUPDATE=ON"
+               ;; NOTE: Options commented are default values.
+               ;; See also: comments in inputs.
+               ;; "-DDESKTOP_APP_LOTTIE_USE_CACHE=ON"
+               ;; "-DDESKTOP_APP_DISABLE_DBUS_INTEGRATION=OFF"
+               ;; "-DDESKTOP_APP_DISABLE_WAYLAND_INTEGRATION=OFF"
+               ;; "-DDESKTOP_APP_DISABLE_X11_INTEGRATION=OFF"
+               ;; "-DDESKTOP_APP_USE_ALLOCATION_TRACER=OFF"
+               ;; "-DDESKTOP_APP_USE_PACKAGED=ON"
+               ;; "-DDESKTOP_APP_USE_PACKAGED_FONTS=OFF"
+               ;; "-DDESKTOP_APP_USE_PACKAGED_RLOTTIE=OFF"
+               ;; "-DDESKTOP_APP_DISABLE_SPELLCHECK=OFF"
+               ;; "-DDESKTOP_APP_USE_HUNSPELL_ONLY=OFF"
+               ;; "-DDESKTOP_APP_USE_ENCHANT=OFF"
+               ;; "-DDESKTOP_APP_NO_PDB=OFF"
+               ;; "-DDESKTOP_APP_DISABLE_JEMALLOC=OFF"
+               )
+           #:phases
+           #~(modify-phases %standard-phases
+               (add-after 'install 'glib-or-gtk-compile-schemas
+                 (assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-compile-schemas))
+               (add-after 'glib-or-gtk-compile-schemas 'glib-or-gtk-wrap
+                 (assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-wrap)))))
+    (native-inputs (list pkg-config python-wrapper))
     (inputs
-     (list alsa-lib
+     (list abseil-cpp-cxxstd17
+           alsa-lib
            c++-gsl
-           catch-framework2
-           libexpected
-           fcitx-qt5
-           fcitx5-qt
            ffmpeg
-           glib
-           glibmm-2.64
-           gtk+
-           hime
-           hunspell
            jemalloc
-           kwayland
-           libdbusmenu-qt
+           libexpected
            libjpeg-turbo
-           libtgvoip-for-telegram-desktop
-           lz4
-           materialdecoration
+           libvpx
            minizip
-           nimf
            openal
            openssl
            opus
            pulseaudio
            qrcodegen-cpp
-           qtbase-5
-           qtsvg-5
-           qt5ct
+           qt5compat
+           qtbase
            qtimageformats
-           qtwayland
+           qtsvg-5
            range-v3
-           rlottie-for-telegram-desktop
            rnnoise
            webrtc-for-telegram-desktop
-           libx11
-           libxcb
-           xcb-util-keysyms
            xxhash
-           zlib))
-    (propagated-inputs
-     (list dconf))
+           zlib
+           ;; DESKTOP_APP_DISABLE_DBUS_INTEGRATION
+           glibmm-2.64
+           ;; DESKTOP_APP_USE_ENCHANT
+           ;; enchant
+           ;; DESKTOP_APP_DISABLE_SPELLCHECK
+           hunspell
+           ;; DESKTOP_APP_LOTTIE_USE_CACHE
+           lz4
+           ;; DESKTOP_APP_DISABLE_WAYLAND_INTEGRATION
+           qtwayland wayland
+           ;; DESKTOP_APP_DISABLE_X11_INTEGRATION
+           libxcb xcb-util-keysyms
+           ;; Optional
+           webkitgtk))
     (synopsis "Telegram Desktop")
     (description "Telegram desktop is the official desktop version of the
 Telegram instant messenger.")
     (home-page "https://desktop.telegram.org/")
-    (license
-     (list
-      ;; ThirdParty
-      license:lgpl2.1+
-      ;; Others
-      license:gpl3+))))
+    (license (list
+              ;; Telegram/ThirdParty/dispatch
+              license:asl2.0
+              ;; Telegram/ThirdParty/rlottie/src/vector/pixman
+              ;; Telegram/ThirdParty/rlottie/src/vector/stb
+              ;; Telegram/ThirdParty/rlottie/src/vector/rapidjson
+              license:expat
+              ;; Telegram/ThirdParty/rlottie/src/vector/freetype
+              license:freetype
+              ;; Telegram/ThirdParty/rlottie
+              ;; Telegram/ThirdParty/rlottie/src/vector
+              license:lgpl2.1+
+              ;; Telegram/ThirdParty/tgcalls
+              license:lgpl3
+              ;; Others
+              license:gpl3+))))

 (define-public tl-parser
   (let ((commit "1933e76f8f4fb74311be723b432e4c56e3a5ec06")
--
2.37.3




  reply	other threads:[~2022-09-11 10:14 UTC|newest]

Thread overview: 155+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-09-08 12:38 [bug#57675] [PATCH v2 0/5] gnu: telegram-desktop: Update to 4.1.1 Hilton Chain via Guix-patches via
2022-09-08 12:40 ` [bug#57675] [PATCH v2 1/5] gnu: Add abseil-cpp-for-webrtc-for-telegram-desktop Hilton Chain via Guix-patches via
2022-09-08 12:41   ` [bug#57675] [PATCH v2 2/5] gnu: webrtc-for-telegram-desktop: Update to a5fbc9 Hilton Chain via Guix-patches via
2022-09-08 12:42     ` [bug#57675] [PATCH v2 3/5] gnu: Remove rlottie-for-telegram-desktop Hilton Chain via Guix-patches via
2022-09-08 12:42       ` [bug#57675] [PATCH v2 4/5] gnu: Remove libtgvoip-for-telegram-desktop Hilton Chain via Guix-patches via
2022-09-08 12:42         ` [bug#57675] [PATCH v2 5/5] gnu: telegram-desktop: Update to 4.1.1 Hilton Chain via Guix-patches via
2022-09-11 10:10 ` [bug#57675] [PATCH v3 0/7] " Hilton Chain via Guix-patches via
2022-09-11 10:11   ` [bug#57675] [PATCH v3 1/7] gnu: webrtc-for-telegram-desktop: Simplify inputs Hilton Chain via Guix-patches via
2022-09-11 10:11     ` [bug#57675] [PATCH v3 2/7] gnu: telegram-desktop: " Hilton Chain via Guix-patches via
2022-09-11 10:11       ` [bug#57675] [PATCH v3 3/7] gnu: Add abseil-cpp-cxxstd17 Hilton Chain via Guix-patches via
2022-09-11 10:12         ` [bug#57675] [PATCH v3 4/7] gnu: webrtc-for-telegram-desktop: Update to a5fbc9 Hilton Chain via Guix-patches via
2022-09-11 10:12           ` Hilton Chain via Guix-patches via [this message]
2022-09-11 10:12             ` [bug#57675] [PATCH v3 6/7] gnu: Remove rlottie-for-telegram-desktop Hilton Chain via Guix-patches via
2022-09-11 10:13               ` [bug#57675] [PATCH v3 7/7] gnu: Remove libtgvoip-for-telegram-desktop Hilton Chain via Guix-patches via
2022-09-11 11:17             ` [bug#57675] [PATCH v3 5/7] gnu: telegram-desktop: Update to 4.1.1 Liliana Marie Prikler
2022-09-11 11:13         ` [bug#57675] [PATCH v3 3/7] gnu: Add abseil-cpp-cxxstd17 Liliana Marie Prikler
2022-09-11 11:10   ` [bug#57675] [PATCH v3 0/7] gnu: telegram-desktop: Update to 4.1.1 Liliana Marie Prikler
2022-09-11 13:41     ` Hilton Chain via Guix-patches via
2022-09-11 14:08       ` Liliana Marie Prikler
2022-09-19  6:09 ` [bug#57675] [PATCH v4 00/10] gnu: telegram-desktop: Update to 4.2.0 Hilton Chain via Guix-patches via
2022-09-19  6:10   ` [bug#57675] [PATCH v4 01/10] gnu: webrtc-for-telegram-desktop: Simplify inputs Hilton Chain via Guix-patches via
2022-09-19  6:11     ` [bug#57675] [PATCH v4 02/10] gnu: telegram-desktop: " Hilton Chain via Guix-patches via
2022-09-19  6:11       ` [bug#57675] [PATCH v4 03/10] gnu: telegram-desktop: Change API ID Hilton Chain via Guix-patches via
2022-09-19  6:12         ` [bug#57675] [PATCH v4 04/10] gnu: webrtc-for-telegram-desktop: Use gexp Hilton Chain via Guix-patches via
2022-09-19  6:12           ` [bug#57675] [PATCH v4 05/10] gnu: telegram-desktop: " Hilton Chain via Guix-patches via
2022-09-19  6:13             ` [bug#57675] [PATCH v4 06/10] gnu: Add abseil-cpp-cxxstd17 Hilton Chain via Guix-patches via
2022-09-19  6:13               ` [bug#57675] [PATCH v4 07/10] gnu: extra-cmake-modules: Update to 5.98.0 Hilton Chain via Guix-patches via
2022-09-19  6:13                 ` [bug#57675] [PATCH v4 08/10] gnu: kcoreaddons: " Hilton Chain via Guix-patches via
2022-09-19  6:13                   ` [bug#57675] [PATCH v4 09/10] gnu: webrtc-for-telegram-desktop: Update to 621f3d Hilton Chain via Guix-patches via
2022-09-19  6:14                     ` [bug#57675] [PATCH v4 10/10] gnu: telegram-desktop: Update to 4.2.0 Hilton Chain via Guix-patches via
2022-09-19 17:11                       ` Liliana Marie Prikler
2022-09-19 17:07                   ` [bug#57675] [PATCH v4 08/10] gnu: kcoreaddons: Update to 5.98.0 Liliana Marie Prikler
2022-09-19 23:32 ` [bug#57675] [PATCH v5 00/11] gnu: telegram-desktop: Update to 4.2.0 Hilton Chain via Guix-patches via
2022-09-19 23:33   ` [bug#57675] [PATCH v5 01/11] gnu: webrtc-for-telegram-desktop: Delete trailing #t Hilton Chain via Guix-patches via
2022-09-19 23:33     ` [bug#57675] [PATCH v5 02/11] gnu: telegram-desktop: " Hilton Chain via Guix-patches via
2022-09-19 23:34       ` [bug#57675] [PATCH v5 03/11] gnu: webrtc-for-telegram-desktop: Use modern package style Hilton Chain via Guix-patches via
2022-09-19 23:34         ` [bug#57675] [PATCH v5 04/11] gnu: telegram-desktop: " Hilton Chain via Guix-patches via
2022-09-19 23:35           ` [bug#57675] [PATCH v5 05/11] gnu: telegram-desktop: Change Api ID Hilton Chain via Guix-patches via
2022-09-19 23:35             ` [bug#57675] [PATCH v5 06/11] gnu: Add abseil-cpp-cxxstd17 Hilton Chain via Guix-patches via
2022-09-19 23:35               ` [bug#57675] [PATCH v5 07/11] gnu: extra-cmake-modules: Update to 5.98.0 Hilton Chain via Guix-patches via
2022-09-19 23:36                 ` [bug#57675] [PATCH v5 08/11] gnu: kcoreaddons: Remove trailing #t Hilton Chain via Guix-patches via
2022-09-19 23:36                   ` [bug#57675] [PATCH v5 09/11] gnu: kcoreaddons: Update to 5.98.0 Hilton Chain via Guix-patches via
2022-09-19 23:36                     ` [bug#57675] [PATCH v5 10/11] gnu: webrtc-for-telegram-desktop: Update to 621f3d Hilton Chain via Guix-patches via
2022-09-19 23:36                       ` [bug#57675] [PATCH v5 11/11] gnu: telegram-desktop: Update to 4.2.0 Hilton Chain via Guix-patches via
2022-09-20  5:02                         ` Liliana Marie Prikler
2022-09-20  7:27                           ` Hilton Chain via Guix-patches via
2022-09-20 16:54                             ` Liliana Marie Prikler
2022-09-20  4:58           ` [bug#57675] [PATCH v5 04/11] gnu: telegram-desktop: Use modern package style Liliana Marie Prikler
2022-09-20  4:55         ` [bug#57675] [PATCH v5 03/11] gnu: webrtc-for-telegram-desktop: " Liliana Marie Prikler
2022-09-20 15:32 ` [bug#57675] [PATCH v6 00/11] gnu: telegram-desktop: Update to 4.2.0 Hilton Chain via Guix-patches via
2022-09-20 15:34   ` [bug#57675] [PATCH v6 01/11] gnu: webrtc-for-telegram-desktop: Delete trailing #t Hilton Chain via Guix-patches via
2022-09-20 15:34     ` [bug#57675] [PATCH v6 02/11] gnu: telegram-desktop: " Hilton Chain via Guix-patches via
2022-09-20 15:35       ` [bug#57675] [PATCH v6 03/11] gnu: webrtc-for-telegram-desktop: Use modern package Hilton Chain via Guix-patches via
2022-09-20 15:35         ` [bug#57675] [PATCH v6 04/11] gnu: telegram-desktop: Use modern package style Hilton Chain via Guix-patches via
2022-09-20 15:35           ` [bug#57675] [PATCH v6 05/11] gnu: telegram-desktop: Change API ID Hilton Chain via Guix-patches via
2022-09-20 15:36             ` [bug#57675] [PATCH v6 06/11] gnu: Add abseil-cpp-cxxstd17 Hilton Chain via Guix-patches via
2022-09-20 15:36               ` [bug#57675] [PATCH v6 07/11] gnu: extra-cmake-modules: Update to 5.98.0 Hilton Chain via Guix-patches via
2022-09-20 15:36                 ` [bug#57675] [PATCH v6 08/11] gnu: kcoreaddons: Remove trailing #t Hilton Chain via Guix-patches via
2022-09-20 15:36                   ` [bug#57675] [PATCH v6 09/11] gnu: kcoreaddons: Update to 5.98.0 Hilton Chain via Guix-patches via
2022-09-20 15:37                     ` [bug#57675] [PATCH v6 10/11] gnu: webrtc-for-telegram-desktop: Update to 621f3da5 Hilton Chain via Guix-patches via
2022-09-20 15:37                       ` [bug#57675] [PATCH v6 11/11] gnu: telegram-desktop: Update to 4.2.0 Hilton Chain via Guix-patches via
2022-09-20 17:15                         ` Liliana Marie Prikler
2022-09-20 17:03                       ` [bug#57675] [PATCH v6 10/11] gnu: webrtc-for-telegram-desktop: Update to 621f3da5 Liliana Marie Prikler
2022-09-21  0:10 ` [bug#57675] [PATCH v7 00/11] gnu: telegram-desktop: Update to 4.2.0 Hilton Chain via Guix-patches via
2022-09-21  0:10   ` [bug#57675] [PATCH v7 01/11] gnu: webrtc-for-telegram-desktop: Delete trailing #t Hilton Chain via Guix-patches via
2022-09-21  0:11     ` [bug#57675] [PATCH v7 02/11] gnu: telegram-desktop: " Hilton Chain via Guix-patches via
2022-09-21  0:11       ` [bug#57675] [PATCH v7 03/11] gnu: webrtc-for-telegram-desktop: Use modern package style Hilton Chain via Guix-patches via
2022-09-21  0:11         ` [bug#57675] [PATCH v7 04/11] gnu: telegram-desktop: " Hilton Chain via Guix-patches via
2022-09-21  0:12           ` [bug#57675] [PATCH v7 05/11] gnu: telegram-desktop: Change API ID Hilton Chain via Guix-patches via
2022-09-21  0:12             ` [bug#57675] [PATCH v7 06/11] gnu: Add abseil-cpp-cxxstd17 Hilton Chain via Guix-patches via
2022-09-21  0:12               ` [bug#57675] [PATCH v7 07/11] gnu: extra-cmake-modules: Update to 5.98.0 Hilton Chain via Guix-patches via
2022-09-21  0:12                 ` [bug#57675] [PATCH v7 08/11] gnu: kcoreaddons: Remove trailing #t Hilton Chain via Guix-patches via
2022-09-21  0:13                   ` [bug#57675] [PATCH v7 09/11] gnu: kcoreaddons: Update to 5.98.0 Hilton Chain via Guix-patches via
2022-09-21  0:13                     ` [bug#57675] [PATCH v7 10/11] gnu: webrtc-for-telegram-desktop: Update to 621f3da5 Hilton Chain via Guix-patches via
2022-09-21  0:13                       ` [bug#57675] [PATCH v7 11/11] gnu: telegram-desktop: Update to 4.2.0 Hilton Chain via Guix-patches via
2022-09-21  4:46                         ` Hilton Chain via Guix-patches via
2022-09-21  8:23 ` [bug#57675] [PATCH 0/7] " Hilton Chain via Guix-patches via
2022-09-21  8:24 ` [bug#57675] [PATCH v8 " Hilton Chain via Guix-patches via
2022-09-21  8:24   ` [bug#57675] [PATCH v8 1/7] gnu: Add abseil-cpp-cxxstd17 Hilton Chain via Guix-patches via
2022-09-21  8:24     ` [bug#57675] [PATCH v8 2/7] gnu: webrtc-for-telegram-desktop: Update to 621f3da5 Hilton Chain via Guix-patches via
2022-09-21  8:25       ` [bug#57675] [PATCH v8 3/7] gnu: telegram-desktop: Update to 4.1.1 Hilton Chain via Guix-patches via
2022-09-21 14:15 ` [bug#57675] [PATCH v8 RESEND 0/7] gnu: telegram-desktop: Update to 4.2.0 Hilton Chain via Guix-patches via
2022-09-21 14:16   ` [bug#57675] [PATCH v8 RESEND 1/7] gnu: Add abseil-cpp-cxxstd17 Hilton Chain via Guix-patches via
2022-09-21 14:16     ` [bug#57675] [PATCH v8 RESEND 2/7] gnu: webrtc-for-telegram-desktop: Update to 621f3da5 Hilton Chain via Guix-patches via
2022-09-21 14:17       ` [bug#57675] [PATCH v8 RESEND 3/7] gnu: telegram-desktop: Update to 4.1.1 Hilton Chain via Guix-patches via
2022-09-21 14:17         ` [bug#57675] [PATCH v8 RESEND 4/7] gnu: extra-cmake-modules: Update to 5.98.0 Hilton Chain via Guix-patches via
2022-09-21 14:17           ` [bug#57675] [PATCH v8 RESEND 5/7] gnu: kcoreaddons: Remove trailing #t Hilton Chain via Guix-patches via
2022-09-21 14:18             ` [bug#57675] [PATCH v8 RESEND 6/7] gnu: kcoreaddons: Update to 5.98.0 Hilton Chain via Guix-patches via
2022-09-21 14:18               ` [bug#57675] [PATCH v8 RESEND 7/7] gnu: telegram-desktop: Update to 4.2.0 Hilton Chain via Guix-patches via
2022-09-21 16:58   ` [bug#57675] [PATCH v8 RESEND 0/7] " Liliana Marie Prikler
2022-09-21 23:42     ` Hilton Chain via Guix-patches via
2022-09-22  2:25 ` [bug#57675] [PATCH v9 0/8] " Hilton Chain via Guix-patches via
2022-09-22  2:25   ` [bug#57675] [PATCH v9 1/8] gnu: Add abseil-cpp-cxxstd17 Hilton Chain via Guix-patches via
2022-09-22  2:25     ` [bug#57675] [PATCH v9 2/8] gnu: extra-cmake-modules: Update to 5.98.0 Hilton Chain via Guix-patches via
2022-09-22  2:26       ` [bug#57675] [PATCH v9 3/8] gnu: kcoreaddons: Remove trailing #t Hilton Chain via Guix-patches via
2022-09-22  2:26         ` [bug#57675] [PATCH v9 4/8] gnu: kcoreaddons: Update to 5.98.0 Hilton Chain via Guix-patches via
2022-09-22  2:26           ` [bug#57675] [PATCH v9 5/8] gnu: webrtc-for-telegram-desktop: Update to 621f3da5 Hilton Chain via Guix-patches via
2022-09-22  2:26             ` [bug#57675] [PATCH v9 6/8] gnu: Remove libvpx-for-telegram-desktop Hilton Chain via Guix-patches via
2022-09-22  2:27               ` [bug#57675] [PATCH v9 7/8] gnu: telegram-desktop: Update to 4.2.0 Hilton Chain via Guix-patches via
2022-09-22  2:27                 ` [bug#57675] [PATCH v9 8/8] gnu: telegram: Remove unneeded variables Hilton Chain via Guix-patches via
2022-09-22 20:08                 ` [bug#57675] [PATCH v9 7/8] gnu: telegram-desktop: Update to 4.2.0 Liliana Marie Prikler
2022-09-22  2:30 ` [bug#57675] [PATCH v9 RECURSIVE CLONE 0/9] " Hilton Chain via Guix-patches via
2022-09-22  2:30   ` [bug#57675] [PATCH v9 RECURSIVE CLONE 1/9] gnu: telegram-desktop: Fetch submodules recursively Hilton Chain via Guix-patches via
2022-09-22  2:31     ` [bug#57675] [PATCH v9 RECURSIVE CLONE 2/9] gnu: Add abseil-cpp-cxxstd17 Hilton Chain via Guix-patches via
2022-09-22  2:31       ` [bug#57675] [PATCH v9 RECURSIVE CLONE 3/9] gnu: extra-cmake-modules: Update to 5.98.0 Hilton Chain via Guix-patches via
2022-09-22  2:31         ` [bug#57675] [PATCH v9 RECURSIVE CLONE 4/9] gnu: kcoreaddons: Remove trailing #t Hilton Chain via Guix-patches via
2022-09-22  2:31           ` [bug#57675] [PATCH v9 RECURSIVE CLONE 5/9] gnu: kcoreaddons: Update to 5.98.0 Hilton Chain via Guix-patches via
2022-09-22  2:32             ` [bug#57675] [PATCH v9 RECURSIVE CLONE 6/9] gnu: webrtc-for-telegram-desktop: Update to 621f3da5 Hilton Chain via Guix-patches via
2022-09-22  2:32               ` [bug#57675] [PATCH v9 RECURSIVE CLONE 7/9] gnu: Remove libvpx-for-telegram-desktop Hilton Chain via Guix-patches via
2022-09-22  2:32                 ` [bug#57675] [PATCH v9 RECURSIVE CLONE 8/9] gnu: telegram-desktop: Update to 4.2.0 Hilton Chain via Guix-patches via
2022-09-22  2:32                   ` [bug#57675] [PATCH v9 RECURSIVE CLONE 9/9] gnu: Remove libtgvoip-for-telegram-desktop Hilton Chain via Guix-patches via
2022-09-23  9:15 ` [bug#57675] [PATCH v10 0/9] gnu: telegram-desktop: Update to 4.2.0 Hilton Chain via Guix-patches via
2022-09-23  9:16   ` [bug#57675] [PATCH v10 1/9] gnu: telegram: Revision-based version for additional sources Hilton Chain via Guix-patches via
2022-09-23  9:16     ` [bug#57675] [PATCH v10 2/9] gnu: Add abseil-cpp-cxxstd17 Hilton Chain via Guix-patches via
2022-09-23  9:16       ` [bug#57675] [PATCH v10 3/9] gnu: extra-cmake-modules: Update to 5.98.0 Hilton Chain via Guix-patches via
2022-09-23  9:17         ` [bug#57675] [PATCH v10 4/9] gnu: kcoreaddons: Remove trailing #t Hilton Chain via Guix-patches via
2022-09-23  9:17           ` [bug#57675] [PATCH v10 5/9] gnu: kcoreaddons: Update to 5.98.0 Hilton Chain via Guix-patches via
2022-09-23  9:17             ` [bug#57675] [PATCH v10 6/9] gnu: webrtc-for-telegram-desktop: Update to 621f3da5 Hilton Chain via Guix-patches via
2022-09-23  9:17               ` [bug#57675] [PATCH v10 7/9] gnu: Remove libvpx-for-telegram-desktop Hilton Chain via Guix-patches via
2022-09-23  9:18                 ` [bug#57675] [PATCH v10 8/9] gnu: telegram-desktop: Update to 4.2.0 Hilton Chain via Guix-patches via
2022-09-23  9:18                   ` [bug#57675] [PATCH v10 9/9] gnu: telegram: Remove unused variables Hilton Chain via Guix-patches via
2022-09-23 14:54   ` [bug#57675] [PATCH v10 0/9] gnu: telegram-desktop: Update to 4.2.0 Liliana Marie Prikler
2022-09-24  7:07 ` [bug#57675] [PATCH v11 0/8] " Hilton Chain via Guix-patches via
2022-09-24  7:08   ` [bug#57675] [PATCH v11 1/8] gnu: Add abseil-cpp-cxxstd17 Hilton Chain via Guix-patches via
2022-09-24  7:09     ` [bug#57675] [PATCH v11 2/8] gnu: extra-cmake-modules: Update to 5.98.0 Hilton Chain via Guix-patches via
2022-09-24  7:09       ` [bug#57675] [PATCH v11 3/8] gnu: kcoreaddons: Remove trailing #t Hilton Chain via Guix-patches via
2022-09-24  7:10         ` [bug#57675] [PATCH v11 4/8] gnu: kcoreaddons: Update to 5.98.0 Hilton Chain via Guix-patches via
2022-09-24  7:10           ` [bug#57675] [PATCH v11 5/8] gnu: webrtc-for-telegram-desktop: Update to 621f3da5 Hilton Chain via Guix-patches via
2022-09-24  7:11             ` [bug#57675] [PATCH v11 6/8] gnu: Remove libvpx-for-telegram-desktop Hilton Chain via Guix-patches via
2022-09-24  7:11               ` [bug#57675] [PATCH v11 7/8] gnu: telegram-desktop: Update to 4.2.0 Hilton Chain via Guix-patches via
2022-09-24  7:12                 ` [bug#57675] [PATCH v11 8/8] gnu: telegram: Remove unused variables Hilton Chain via Guix-patches via
2022-09-24  7:58                 ` [bug#57675] [PATCH v11 7/8] gnu: telegram-desktop: Update to 4.2.0 Liliana Marie Prikler
2022-09-24 23:52                   ` Hilton Chain via Guix-patches via
2022-09-25  5:54                     ` Liliana Marie Prikler
2022-09-25  6:15                       ` Hilton Chain via Guix-patches via
2022-09-25  6:31                         ` Liliana Marie Prikler
2022-09-25  6:43                           ` Hilton Chain via Guix-patches via
2022-09-25 13:11                             ` Hilton Chain via Guix-patches via
2022-09-24  7:46             ` [bug#57675] [PATCH v11 5/8] gnu: webrtc-for-telegram-desktop: Update to 621f3da5 Liliana Marie Prikler
2022-09-26 13:28 ` [bug#57675] [PATCH 00/10] gnu: telegram-desktop: Update to 4.2.2 Hilton Chain via Guix-patches via
2022-09-26 13:29   ` [bug#57675] [PATCH 01/10] gnu: kcoreaddons: Update to 5.98.0 Hilton Chain via Guix-patches via
2022-09-26 13:30     ` [bug#57675] [PATCH 02/10] gnu: Add abseil-cpp-cxxstd17 Hilton Chain via Guix-patches via
2022-09-26 13:30       ` [bug#57675] [PATCH 03/10] gnu: Add crc32c Hilton Chain via Guix-patches via
2022-09-26 13:31         ` [bug#57675] [PATCH 04/10] gnu: webrtc-for-telegram-desktop: Update to 621f3da5 Hilton Chain via Guix-patches via
2022-09-26 13:32           ` [bug#57675] [PATCH 05/10] gnu: webrtc-for-telegram-desktop: Order inputs alphabetically Hilton Chain via Guix-patches via
2022-09-26 13:32             ` [bug#57675] [PATCH 06/10] gnu: Remove libvpx-for-telegram-desktop Hilton Chain via Guix-patches via
2022-09-26 13:32               ` [bug#57675] [PATCH 07/10] gnu: Add libdispatch Hilton Chain via Guix-patches via
2022-09-26 13:33                 ` [bug#57675] [PATCH 08/10] gnu: telegram-desktop: Update to 4.2.2 Hilton Chain via Guix-patches via
2022-09-26 13:33                   ` [bug#57675] [PATCH 09/10] gnu: telegram-desktop: Order inputs alphabetically Hilton Chain via Guix-patches via
2022-09-26 13:33                     ` [bug#57675] [PATCH 10/10] gnu: telegram: Remove unused variables Hilton Chain via Guix-patches via
2022-09-27 19:13                   ` [bug#57675] [PATCH 08/10] gnu: telegram-desktop: Update to 4.2.2 Liliana Marie Prikler
2022-09-28 19:00                     ` bug#57675: " Liliana Marie Prikler
2022-09-29  9:47                       ` [bug#57675] " Hilton Chain via Guix-patches via
2022-09-27 18:45                 ` [bug#57675] [PATCH 07/10] gnu: Add libdispatch Liliana Marie Prikler
2022-09-26 18:26     ` [bug#57675] [PATCH 01/10] gnu: kcoreaddons: Update to 5.98.0 Liliana Marie Prikler

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=y76bkrm8bjf.wl-hako@ultrarare.space \
    --to=guix-patches@gnu.org \
    --cc=57675@debbugs.gnu.org \
    --cc=hako@ultrarare.space \
    --cc=liliana.prikler@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.