From 16fbc38f13e435b4e3e1a37d706e64e05bad4691 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Tue, 10 Nov 2015 23:09:24 -0500 Subject: [PATCH] patch build to use setuptools --- setup.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c6d57a6..27bf260 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,12 @@ # http://opensource.org/licenses/BSD-3-Clause import os import sys -from distutils.core import setup + +try: + from setuptools import setup +except ImportError: + from distutils.core import setup + # a simple import wouldn't work if we moved towards a package with __init__ from _version import __version__ -- 2.6.2 mit();'> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/telegram.scm
AgeCommit message (Expand)Author
2023-09-01gnu: webrtc-for-telegram-desktop: Update to 0-389.0532942....* gnu/packages/patches/webrtc-for-telegram-desktop-unbundle-libsrtp.patch: New file. * gnu/local.mk (dist_patch_DATA): Register it. * gnu/packages/telegram.scm (webrtc-for-telegram-desktop): Update to 0-389.0532942, which fixes `telegram-desktop` calls that are not working with OpenSSL 3. [source]<patches>: Add the patch. <snippet>: Unbundle libsrtp. [inputs]: Add libsrtp. Signed-off-by: Hilton Chain <hako@ultrarare.space> Distopico
2023-09-01gnu: libyuv-for-telegram-desktop: Update to 0-2439.77c2121....* gnu/packages/telegram.scm (libyuv-for-telegram-desktop): Update to 0-2439.77c2121. Hilton Chain
2023-08-22gnu: qtimageformats: Rename variable to qtimageformats-5....* gnu/packages/qt.scm (qtimageformats): Rename to... (qtimageformats-5): ... this. * gnu/packages/telegram.scm (telegram-desktop): Adjust accordingly. * gnu/packages/image-viewers.scm (qview): Likewise. * gnu/packages/geo.scm (openorienteering-mapper): Likewise. Maxim Cournoyer
2023-08-07gnu: Add tgs2png....* gnu/packages/telegram.scm (tgs2png): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Lu Hui
2023-05-29gnu: telegram-desktop: Add missing copyright line....Follow-up for 6192acf8b77948384e75650ae79dfbaadb26bc37. * gnu/packages/telegram.scm: Add copyright line for Saku. Signed-off-by: Jonathan Brielmaier <jonathan.brielmaier@web.de> Jonathan Brielmaier
2023-05-28gnu: telegram-desktop: Update to 4.8.1...* gnu/packages/patches/webrtc-for-telegram-desktop-fix-gcc12-cstdint.patch: Delete file. * gnu/local.mk (dist_patch_DATA): Remove deleted patch. * gnu/packages/telegram.scm (libyuv-for-telegram-desktop, cmake-helpers-for-telegram-desktop, codegen-for-telegram-desktop, lib-base-for-telegram-desktop, lib-crl-for-telegram-desktop, lib-lottie-for-telegram-desktop, lib-rpl-for-telegram-desktop, lib-spellcheck-for-telegram-desktop, lib-ui-for-telegram-desktop, lib-webrtc-for-telegram-desktop, lib-webview-for-telegram-desktop, tgcalls-for-telegram-desktop): Bump to submodule checkout. (webrtc-for-telegram-desktop): Bump to submodule checkout. [patches]: Remove patch. [snippet]: Unbundle abseil-cpp and crc32c [inputs]: Add crc32c and glibmm-next. Replace glib with glib-next. (cld3-for-telegram-desktop): New variable. (telegram-desktop): Update to 4.8.1 [snippet]: Add cld3 as a submodule. [arguments]<phases>: Add cld3 as a submodule. [native-inputs]: Replace glib with glib-next [inputs]: Add crc32c, kimageformats, plasma-wayland-protocols, protobuf, qtdeclarative-5 and wayland-protocols. Replace glib with glib-next and glibmm-2.64 with glibmm-next. * gnu/packages/patches/telegram-desktop-allow-disable-libtgvoip.patch: Update patch. Signed-off-by: Jonathan Brielmaier <jonathan.brielmaier@web.de>