unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
blob 981ff1f276431bec210562cb37f7072faacc770b 38266 bytes (raw)
name: gnu/packages/linphone.scm 	 # note: path name is non-authoritative(*)

   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
 
;;; GNU Guix --- Functional package management for GNU
;;;
;;; Copyright © 2020 Raghav Gururajan <raghavgururajan@disroot.org>
;;; Copyright © 2020 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;; Copyright © 2020 Tobias Geerinckx-Rice <me@tobias.gr>
;;;
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

(define-module (gnu packages linphone)
  #:use-module (gnu packages)
  #:use-module (gnu packages admin)
  #:use-module (gnu packages audio)
  #:use-module (gnu packages avahi)
  #:use-module (gnu packages base)
  #:use-module (gnu packages codesynthesis)
  #:use-module (gnu packages compression)
  #:use-module (gnu packages crypto)
  #:use-module (gnu packages databases)
  #:use-module (gnu packages documentation)
  #:use-module (gnu packages gettext)
  #:use-module (gnu packages gl)
  #:use-module (gnu packages glib)
  #:use-module (gnu packages gnome)
  #:use-module (gnu packages gnome-xyz)
  #:use-module (gnu packages graphviz)
  #:use-module (gnu packages gtk)
  #:use-module (gnu packages image)
  #:use-module (gnu packages linux)
  #:use-module (gnu packages ncurses)
  #:use-module (gnu packages openldap)
  #:use-module (gnu packages perl)
  #:use-module (gnu packages pkg-config)
  #:use-module (gnu packages pulseaudio)
  #:use-module (gnu packages python)
  #:use-module (gnu packages python-xyz)
  #:use-module (gnu packages qt)
  #:use-module (gnu packages java)
  #:use-module (gnu packages sqlite)
  #:use-module (gnu packages telephony)
  #:use-module (gnu packages tls)
  #:use-module (gnu packages video)
  #:use-module (gnu packages xiph)
  #:use-module (gnu packages xml)
  #:use-module (gnu packages xorg)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix git-download)
  #:use-module (guix build-system cmake)
  #:use-module (guix build-system qt)
  #:use-module (guix build-system glib-or-gtk)
  #:use-module (guix build-system gnu))

(define-public bcunit
  (let ((commit "74021cc7cb20a4e177748dd2948173e1f9c270ae")
        (revision "13"))
    (package
      (name "bcunit")
      (version (git-version "3.0.2" revision commit))
      (source
       (origin
         (method git-fetch)
         (uri (git-reference
               (url "git://git.linphone.org/bcunit")
               (commit commit)))
         (file-name (git-file-name name version))
         (sha256
          (base32 "0npdwvanjkfg9vrqs5yi8vh6wliv50ycdli8pzavir84nb31nq1b"))))
      (build-system cmake-build-system)
      (outputs '("out" "doc" "example"))
      (arguments
       `(#:configure-flags
         (list
          "-DENABLE_STATIC=NO"
          "-DENABLE_CURSES=ON"
          "-DENABLE_DOC=ON"
          "-DENABLE_EXAMPLES=ON"
          "-DENABLE_TEST=ON"
          "-DENABLE_MEMTRACE=ON")
         #:phases
         (modify-phases %standard-phases
           (add-after 'unpack 'patch-source
             (lambda _
               ;; Include BCunit headers for examples.
               (substitute* "Examples/CMakeLists.txt"
                 (("\\$\\{CMAKE_CURRENT_SOURCE_DIR\\}")
                  (string-append "${CMAKE_CURRENT_SOURCE_DIR} "
                                 "${PROJECT_SOURCE_DIR}/BCUnit/Headers "
                                 "${CMAKE_BINARY_DIR}/BCUnit/Headers")))
               ;; Link bcunit and bcunit_tests libraries.
               (substitute* "BCUnit/Sources/CMakeLists.txt"
                 (("target_include_directories\\(bcunit_test PUBLIC Test\\)")
                  (string-append
                   "target_include_directories(bcunit_test PUBLIC Test)\n"
                   "target_link_libraries(bcunit_test bcunit)")))
               #t))
           (replace 'check
             (lambda _
               (with-directory-excursion "BCUnit/Sources/Test"
                 (invoke "./test_bcunit"))
               #t))
           (add-after 'install 'seperate-outputs
             (lambda* (#:key outputs #:allow-other-keys)
               (let* ((out (assoc-ref outputs "out"))
                      (doc (assoc-ref outputs "doc"))
                      (example (assoc-ref outputs "example")))
                 (for-each mkdir-p
                           `(,(string-append doc "/share/doc")
                             ,(string-append example "/share/BCUnit")))
                 (rename-file
                  (string-append out "/share/doc/BCUnit")
                  (string-append doc "/share/doc/BCUnit"))
                 (rename-file
                  (string-append out "/share/BCUnit/Examples")
                  (string-append example "/share/BCUnit/Examples")))
               #t)))))
      (native-inputs
       `(("perl" ,perl)))
      (inputs
       `(("ncurses" ,ncurses)))
      (synopsis "Belledonne Communications Unit Testing Framework")
      (description "BCUnit is a fork of the defunct project CUnit, with several
fixes and patches applied.  It is an unit testing framework for writing,
administering, and running unit tests in C.")
      (home-page "https://gitlab.linphone.org/BC/public/bcunit")
      (license license:lgpl2.0+))))

(define-public bctoolbox
  (package
    (name "bctoolbox")
    (version "4.4.34")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "git://git.linphone.org/bctoolbox")
             (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32 "0bfswwvvdshaahg4jd2j10f0sci8809s4khajd0m6b059zwc7y25"))))
    (build-system cmake-build-system)
    (arguments
     `(#:configure-flags '("-DENABLE_STATIC=OFF")
       #:phases
       (modify-phases %standard-phases
         (add-after 'unpack 'patch-source
           (lambda* (#:key inputs #:allow-other-keys)
             ;; Fix decaf dependency.
             (let* ((decaf (assoc-ref inputs "decaf")))
               (substitute* (find-files "." "CMakeLists.txt")
                 (("find_package\\(Decaf CONFIG\\)")
                  "set(DECAF_FOUND 1)")
                 (("\\$\\{DECAF_INCLUDE_DIRS\\}")
                  (string-append decaf "/include/decaf"))
                 (("\\$\\{DECAF_TARGETNAME\\}")
                  "decaf")))
             ;; Disable failing tests.
             (substitute* "tester/port.c"
               (("[ \t]*TEST_NO_TAG\\(\"Addrinfo sort\", bctbx_addrinfo_sort_test\\)")
                ""))
             #t))
         (replace 'check
           (lambda _
             (with-directory-excursion "tester"
               (invoke "./bctoolbox_tester"))
             #t)))))
    (inputs
     `(("bcunit" ,bcunit)
       ("decaf" ,libdecaf)
       ("mbedtls" ,mbedtls-apache)))
    (synopsis "Belledonne Communications Tool Box")
    (description "BcToolBox is an utilities library used by Belledonne
Communications software like belle-sip, mediastreamer2 and linphone.")
    (home-page "https://gitlab.linphone.org/BC/public/bctoolbox")
    (license license:gpl3+)))

(define-public belr
  (package
    (name "belr")
    (version "4.4.34")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "git://git.linphone.org/belr")
             (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32 "0w2canwwm0qb99whnangvaybvjzq8xg6vksqxykgr8fbx7clw03h"))))
    (build-system cmake-build-system)
    (outputs '("out" "test"))
    (arguments
     `(#:configure-flags '("-DENABLE_STATIC=OFF")
       #:phases
       (modify-phases %standard-phases
         (replace 'check
           (lambda _
             (copy-file "tester/belr_tester" "../source/tester/belr_tester")
             (with-directory-excursion "../source/tester"
               (invoke "./belr_tester"))
             #t))
         (add-after 'install 'seperate-outputs
           (lambda* (#:key outputs #:allow-other-keys)
             (let* ((out (assoc-ref outputs "out"))
                    (test (assoc-ref outputs "test"))
                    (test-name (string-append ,name "_tester")))
               (for-each mkdir-p
                         `(,(string-append test "/bin")
                           ,(string-append test "/share")))
               (rename-file
                (string-append out "/bin/" test-name)
                (string-append test "/bin/" test-name))
               (rename-file
                (string-append out "/share/belr-tester")
                (string-append test "/share/" test-name)))
             #t)))))
    (inputs
     `(("bctoolbox" ,bctoolbox)
       ("libudev" ,eudev)))
    (synopsis "Belledonne Communications Language Recognition Library")
    (description "Belr is Belledonne Communications' language recognition
library, written in C++11.  It parses text inputs formatted according to a
language defined by an ABNF grammar, such as the protocols standardized at
IETF.")
    (home-page "https://gitlab.linphone.org/BC/public/belr")
    (license license:gpl3+)))

(define-public belcard
  (package
    (name "belcard")
    (version "4.4.34")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "git://git.linphone.org/belcard")
             (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32 "16x2xp8d0a115132zhy1kpxkyj86ia7vrsnpjdg78fnbvmvysc8m"))))
    (build-system cmake-build-system)
    (outputs '("out" "test"))
    (arguments
     `(#:tests? #f ; FIX-ME
       #:configure-flags '("-DENABLE_STATIC=OFF")
       #:phases
       (modify-phases %standard-phases
         (add-after 'install 'seperate-outputs
           (lambda* (#:key outputs #:allow-other-keys)
             (let* ((out (assoc-ref outputs "out"))
                    (test (assoc-ref outputs "test"))
                    (test-name (string-append ,name "_tester")))
               (for-each mkdir-p
                         `(,(string-append test "/bin")
                           ,(string-append test "/share")))
               (rename-file
                (string-append out "/bin/" test-name)
                (string-append test "/bin/" test-name))
               (rename-file
                (string-append out "/share/" test-name)
                (string-append test "/share/" test-name)))
             #t)))))
    (native-inputs
     `(("python" ,python-wrapper)))
    (inputs
     `(("bctoolbox" ,bctoolbox)
       ("belr" ,belr)
       ("libudev" ,eudev)))
    (synopsis "Belledonne Communications VCard Library")
    (description "Belcard is a C++ library to manipulate VCard standard
format.")
    (home-page "https://gitlab.linphone.org/BC/public/belcard")
    (license license:gpl3+)))

(define-public bcmatroska2
  (package
    (name "bcmatroska2")
    (version "0.23")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "git://git.linphone.org/bcmatroska2")
             (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32 "1avl9w18kh4dxm3g8j0bkw39bksd7bz3nfxvyibqqnz63ds8vfi2"))))
    (build-system cmake-build-system)
    (arguments
     `(#:tests? #f                      ; No test target
       #:configure-flags
       (list
        "-DENABLE_STATIC=NO")))         ; Not required
    (synopsis "Belledonne Communications Media Container")
    (description "BcMatroska is a free and open standard multi-media container
format.  It can hold an unlimited number of video, audio, picture, or subtitle
tracks in one file. ")
    (home-page "https://gitlab.linphone.org/BC/public/bcmatroska2")
    (license
     (list
      ;; For Core C and LibEBML2.
      ;; https://www.matroska.org/node/47
      license:bsd-4
      ;; For LibMatroska2.
      ;; https://www.matroska.org/node/47
      license:lgpl2.1+))))

(define-public bcg729
  (package
    (name "bcg729")
    (version "1.1.1")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "git://git.linphone.org/bcg729")
             (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32 "1hal6b3w6f8y5r1wa0xzj8sj2jjndypaxyw62q50p63garp2h739"))))
    (build-system cmake-build-system)
    (arguments
     `(#:configure-flags
       (list
        "-DENABLE_STATIC=NO"
        "-DENABLE_TESTS=YES")
       #:phases
       (modify-phases %standard-phases
         (add-before 'check 'copy-inputs
           (lambda* (#:key inputs #:allow-other-keys)
             (let ((test-patterns (assoc-ref inputs "test-patterns"))
                   (dest (string-append "test/bcg729-patterns.zip")))
               (copy-recursively test-patterns dest))
             #t))
         (replace 'check
           (lambda _
             (with-directory-excursion "test"
               (invoke "unzip" "bcg729-patterns.zip")
               (for-each
                (lambda (test-name)
                  (invoke "./testCampaign" "-s" test-name))
                (list
                 "fixedCodebookSearch"
                 "postProcessing"
                 "adaptativeCodebookSearch"
                 "computeLP"
                 "computeAdaptativeCodebookGain"
                 "postFilter"
                 "decoder"
                 "LPSynthesisFilter"
                 "decodeLSP"
                 ;; "encoder"
                 ;; "LSPQuantization"
                 "preProcessing"
                 "decodeFixedCodeVector"
                 "CNGdecoder"
                 ;; "LP2LSPConversion"
                 "gainQuantization"
                 "findOpenLoopPitchDelay"
                 "decodeGains"
                 "computeWeightedSpeech"
                 "interpolateqLSPAndConvert2LP"
                 "decodeAdaptativeCodeVector")))
             #t)))))
    (native-inputs
     `(("perl" ,perl)
       ("test-patterns"
        ,(origin
           (method url-fetch)
           (uri (string-append "http://www.belledonne-communications.com/"
                               "bc-downloads/bcg729-patterns.zip"))
           (sha256
            (base32 "1kivarhh3izrl9sg0szs6x6pbq2ap0y6xsraw0gbgspi4gnfihrh"))))
       ("unzip" ,unzip)))
    (synopsis "Belledonne Communications G729 Codec")
    (description "BcG729 is an implementation of both encoder and decoder of
the ITU G729 speech codec.  The library written in C 99 is fully portable and
can be executed on many platforms including both ARM and x86 processors.  It
supports concurrent channels encoding and decoding for multi call application
such as conferencing.")
    (home-page "https://linphone.org/technical-corner/bcg729")
    (license license:gpl3+)))

(define-public ortp
  (package
    (name "ortp")
    (version "4.4.34")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "git://git.linphone.org/ortp")
             (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32 "1r1kvjzyfvkf66in4p51wi87balzg3sw3aq6r4xr609mz86spi5m"))))
    (build-system cmake-build-system)
    (outputs '("out" "doc" "test"))
    (arguments
     `(#:tests? #f                      ; Require networking
       #:configure-flags
       (list
        "-DENABLE_STATIC=NO"
        "-DENABLE_TESTS=YES")
       #:phases
       (modify-phases %standard-phases
         (add-after 'install 'seperate-outputs
           (lambda* (#:key outputs #:allow-other-keys)
             (let* ((out (assoc-ref outputs "out"))
                    (doc (assoc-ref outputs "doc"))
                    (doc-name (string-append ,name "-4.4.0"))
                    (test (assoc-ref outputs "test")))
               (for-each mkdir-p
                         `(,(string-append doc "/share/doc")
                           ,(string-append test "/bin")))
               (rename-file
                (string-append out "/share/doc/" doc-name)
                (string-append doc "/share/doc/" doc-name))
               (rename-file
                (string-append out "/bin")
                (string-append test "/bin")))
             #t)))))
    (native-inputs
     `(("dot" ,graphviz)
       ("doxygen" ,doxygen)))
    (inputs
     `(("bctoolbox" ,bctoolbox)))
    (synopsis "Belledonne Communications RTP Library")
    (description "oRTP is a C library implementing the RTP protocol.  It
implements the RFC 3550 standard.")
    (home-page "https://linphone.org/technical-corner/ortp")
    (license license:gpl3+)))

(define-public bzrtp
  (package
    (name "bzrtp")
    (version "4.4.34")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "git://git.linphone.org/bzrtp")
             (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32 "1yjmsbqmymzl4r7sba6w4a2yld8m6hzafr6jf7sj0syhwpnc3zv6"))))
    (build-system cmake-build-system)
    (arguments
     `(#:configure-flags
       (list
        "-DENABLE_STATIC=NO"
        "-DENABLE_TESTS=YES")))
    (inputs
     `(("bctoolbox" ,bctoolbox)
       ("sqlite3" ,sqlite)
       ("xml2" ,libxml2)))
    (synopsis "Belledonne Communications ZRTP Library")
    (description "BZRTP is an implementation of ZRTP keys exchange protocol,
written in C.  It is fully portable and can be executed on many platforms
including both ARM and x86.")
    (home-page "https://gitlab.linphone.org/BC/public/bzrtp")
    (license license:gpl3+)))

(define-public belle-sip
  (package
    (name "belle-sip")
    (version "4.4.34")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "git://git.linphone.org/belle-sip")
             (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32 "1kknnlczq7dpqaj1dwxvy092dzrqjy11ndkv90rqwmdryigkjk6z"))))
    (build-system cmake-build-system)
    (outputs '("out" "test"))
    (arguments
     `(#:configure-flags
       (list
        "-DENABLE_STATIC=NO"
        "-DENABLE_MDNS=ON")
       #:phases
       (modify-phases %standard-phases
         (add-after 'unpack 'patch
           (lambda* (#:key inputs #:allow-other-keys)
             ;; Fix mDNS dependency.
             (let* ((avahi (assoc-ref inputs "avahi")))
               (substitute* (find-files "." "CMakeLists.txt")
                 (("find_package\\(DNSSD REQUIRED\\)")
                  "set(DNSSD_FOUND 1)")
                 (("\\$\\{DNSSD_INCLUDE_DIRS\\}")
                  (string-append avahi "/include/avahi-compat-libdns_sd"))
                 (("\\$\\{DNSSD_LIBRARIES\\}")
                  "dns_sd")))
             (substitute* "src/CMakeLists.txt"
               ;; ANTLR would use multithreaded DFA generation otherwise,
               ;; which would not be reproducible.
               (("-Xmultithreaded ") ""))
             #t))
         (replace 'check
           (lambda _
             (copy-file
              "tester/belle_sip_tester"
              "../source/tester/belle_sip_tester")
             (with-directory-excursion "../source/tester"
               (for-each
                (lambda (suite-name)
                  (invoke "./belle_sip_tester" "--suite" suite-name))
                (list
                 "Object inheritance"
                 "SIP URI"
                 "FAST SIP URI"
                 "FAST SIP URI 2"
                 "Generic uri"
                 "Headers"
                 "Core"
                 "SDP"
                 ;; "Resolver"
                 "Message"
                 "Authentication helper"
                 ;; "Register"
                 ;; "Dialog"
                 "Refresher"
                 ;; "HTTP stack"
                 "Object")))
             #t))
         (add-after 'install 'seperate-outputs
           (lambda* (#:key outputs #:allow-other-keys)
             (let* ((out (assoc-ref outputs "out"))
                    (test (assoc-ref outputs "test"))
                    (test-name (string-append "belle_sip" "_tester")))
               (for-each mkdir-p
                         `(,(string-append test "/bin")
                           ,(string-append test "/share")))
               (rename-file
                (string-append out "/bin/" test-name)
                (string-append test "/bin/" test-name))
               (rename-file
                (string-append out "/share/" test-name)
                (string-append test "/share/" test-name)))
             #t)))))
    (native-inputs
     `(("python" ,python-wrapper)))
    (inputs
     `(("antlr3" ,antlr3-3.3)
       ("antlr3c" ,libantlr3c)
       ("avahi" ,avahi)
       ("bctoolbox" ,bctoolbox)
       ("java" ,icedtea)
       ("zlib" ,zlib)))
    (synopsis "Belledonne Communications SIP Library")
    (description "Belle-sip is a modern library implementing SIP transport,
transaction and dialog layers.  It is written in C, with an object-oriented
API.  It also comprises a simple HTTP/HTTPS client implementation.")
    (home-page "https://linphone.org/technical-corner/belle-sip")
    (license license:gpl3+)))

(define-public mediastreamer2
  (package
    (name "mediastreamer2")
    (version "4.4.34")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "git://git.linphone.org/mediastreamer2")
             (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32 "0989h3d0h7qrx4kjx8gg09j8c5hvvi3h8qi1iq1dqbppwbaxbz8c"))))
    (outputs '("out" "doc" "test"))
    (build-system cmake-build-system)
    (arguments
     `(#:configure-flags
       (list
        "-DENABLE_STATIC=NO"
        "-DENABLE_PCAP=YES"
        "-DENABLE_STRICT=NO"       ; To disable strict compile options
        "-DENABLE_PORTAUDIO=YES"
        "-DENABLE_G729B_CNG=YES")
       #:phases
       (modify-phases %standard-phases
         (add-after 'unpack 'patch-source
           (lambda _
             (substitute* "src/otherfilters/mspcapfileplayer.c"
               (("O_BINARY") "L_INCR"))
             #t))
         (add-before 'check 'pre-check
           (lambda _
             ;; Tests require a running X server.
             (system "Xvfb :1 +extension GLX &")
             (setenv "DISPLAY" ":1")
             ;; Tests write to $HOME.
             (setenv "HOME" (getenv "TEMP"))
             #t))
         (replace 'check
           (lambda _
             (copy-file
              "tester/mediastreamer2_tester"
              "../source/tester/mediastreamer2_tester")
             (with-directory-excursion "../source/tester"
               (for-each
                (lambda (suite-name)
                  (invoke "./mediastreamer2_tester" "--suite" suite-name))
                (list
                 "Basic Audio"
                 ;; "Sound Card"
                 ;; "AdaptiveAlgorithm"
                 ;; "AudioStream"
                 ;; "VideoStream"
                 "H26x Tools"
                 "Framework"
                 ;; "Player"
                 "TextStream")))
             #t))
         (add-after 'install 'separate-outputs
           (lambda* (#:key outputs #:allow-other-keys)
             (let* ((out (assoc-ref outputs "out"))
                    (test (assoc-ref outputs "test"))
                    (test-name (string-append ,name "_tester"))
                    (doc (assoc-ref outputs "doc"))
                    (doc-name (string-append ,name "-4.4.0")))
               (for-each mkdir-p
                         `(,(string-append test "/bin")
                           ,(string-append test "/share")
                           ,(string-append doc "/share/doc")))
               (rename-file
                (string-append out "/bin/" test-name)
                (string-append test "/bin/" test-name))
               (rename-file
                (string-append out "/share/" test-name)
                (string-append test "/share/" test-name))
               (rename-file
                (string-append out "/share/doc/" doc-name)
                (string-append doc "/share/doc/" doc-name)))
             #t)))))
    (native-inputs
     `(("dot" ,graphviz)
       ("doxygen" ,doxygen)
       ("python" ,python-wrapper)
       ("xorg-server" ,xorg-server-for-tests)))
    (inputs
     `(("alsa" ,alsa-lib)
       ("bcg729" ,bcg729)
       ("bcmatroska2" ,bcmatroska2)
       ("bctoolbox" ,bctoolbox)
       ("ffmpeg" ,ffmpeg)
       ("glew" ,glew)
       ("glu" ,glu)
       ("glx" ,mesa-utils)
       ("gsm" ,gsm)
       ("opengl" ,mesa)
       ("opus" ,opus)
       ("ortp" ,ortp)
       ("pcap" ,libpcap)
       ("portaudio" ,portaudio)
       ("pulseaudio" ,pulseaudio)
       ("spandsp" ,spandsp)
       ("speex" ,speex)
       ("speexdsp" ,speexdsp)
       ("srtp" ,libsrtp)
       ("theora" ,libtheora)
       ("turbojpeg" ,libjpeg-turbo)
       ("v4l" ,v4l-utils)
       ("vpx" ,libvpx)
       ("x11" ,libx11)
       ("xv" ,libxv)
       ("zrtp" ,bzrtp)))
    (synopsis "Belledonne Communications Streaming Engine")
    (description "Mediastreamer2 is a powerful and lightweight streaming engine
for telephony applications.  This media processing and streaming toolkit is
responsible for receiving and sending all multimedia streams in Linphone,
including media capture, encoding and decoding, and rendering.")
    (home-page "https://linphone.org/technical-corner/mediastreamer2")
    (license license:gpl3+)))

(define-public lime
  (package
    (name "lime")
    (version "4.4.34")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://gitlab.linphone.org/BC/public/lime")
             (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32 "14jg1zisjbzflw3scfqdbwy48wq3cp93l867vigb8l40lkc6n26z"))))
    (build-system cmake-build-system)
    (outputs '("out" "doc"))
    (arguments
     `(#:configure-flags
       (list
        "-DENABLE_STATIC=NO"
        "-DENABLE_C_INTERFACE=YES")
       #:phases
       (modify-phases %standard-phases
         (add-after 'unpack 'patch-source
           (lambda _
             ;; Disable tests that require networking.
             (substitute* "tester/CMakeLists.txt"
               (("add_test\\(?.*\"Hello World\"\\)") "")
               (("add_test\\(?.*\"lime\"\\)") "")
               (("add_test\\(?.*\"FFI\"\\)") ""))
             #t))
         (add-after 'build 'build-doc
           (lambda _
             (invoke "make" "doc")
             #t))
         (add-after 'install 'install-doc
           (lambda* (#:key outputs #:allow-other-keys)
             (let* ((doc (assoc-ref outputs "doc"))
                    (dir (string-append doc "/share/doc"))
                    (dest (string-append dir "/" ,name "-" ,version)))
               (mkdir-p dest)
               (copy-recursively "doc" dest))
             #t)))))
    (native-inputs
     `(("dot" ,graphviz)
       ("doxygen" ,doxygen)))
    (inputs
     `(("bctoolbox" ,bctoolbox)
       ("belle-sip" ,belle-sip)
       ("soci" ,soci)))
    (synopsis "Belledonne Communications Encryption Library")
    (description "LIME is an encryption library for one-to-one and group instant
messaging, allowing users to exchange messages privately and asynchronously.
It supports multiple devices per user and multiple users per device.")
    (home-page "https://linphone.org/technical-corner/lime")
    (license license:gpl3+)))

(define-public liblinphone
  (package
    (name "liblinphone")
    (version "4.4.34")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://gitlab.linphone.org/BC/public/liblinphone")
             (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32 "1lwabr93jw24y04pdqnw9dgg8jb3lzfplyx19f83jgp9dj8kmfq9"))))
    (outputs '("out" "test"))
    (build-system cmake-build-system)
    (arguments
     `(#:tests? #f                      ; Tests require networking
       #:configure-flags
       (list
        "-DENABLE_STATIC=NO"
        "-DENABLE_LDAP=YES")
       #:phases
       (modify-phases %standard-phases
         (add-after 'install 'separate-outputs
           (lambda* (#:key outputs #:allow-other-keys)
             (let* ((out (assoc-ref outputs "out"))
                    (test (assoc-ref outputs "test"))
                    (test-name (string-append ,name "_tester")))
               (for-each mkdir-p
                         `(,(string-append test "/bin")
                           ,(string-append test "/share")))
               (rename-file
                (string-append out "/bin/" test-name)
                (string-append test "/bin/" test-name))
               (rename-file
                (string-append out "/share/" test-name)
                (string-append test "/share/" test-name)))
             #t)))))
    (native-inputs
     `(("dot" ,graphviz)
       ("doxygen" ,doxygen)
       ("gettext" ,gettext-minimal)
       ("perl" ,perl)
       ("python" ,python-wrapper)
       ("pystache" ,python-pystache)
       ("six" ,python-six)
       ("udev" ,eudev)))
    (inputs
     `(("bctoolbox" ,bctoolbox)
       ("belcard" ,belcard)
       ("bellesip" ,belle-sip)
       ("belr" ,belr)
       ("bzrtp" ,bzrtp)
       ("iconv" ,libiconv)
       ("ldap" ,openldap)
       ("libxsd" ,xsd)
       ("lime" ,lime)
       ("mediastreamer2" ,mediastreamer2)
       ("notify" ,libnotify)
       ("ortp" ,ortp)
       ("soci" ,soci)
       ("sqlite" ,sqlite)
       ("xml2" ,libxml2)
       ("zlib" ,zlib)))
    (synopsis "Belledonne Communications Softphone Library")
    (description "Liblinphone is a high-level SIP library integrating
all calling and instant messaging features into an unified
easy-to-use API.  It is the cross-platform VoIP library on which the
Linphone application is based on, and that anyone can use to add audio
and video calls or instant messaging capabilities to an application.")
    (home-page "https://linphone.org/technical-corner/liblinphone")
    (license license:gpl3+)))

(define-public linphone-desktop
  (package
    (name "linphone-desktop")
    (version "4.2.5")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://gitlab.linphone.org/BC/public/linphone-desktop")
             (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32 "1gq4l9p21rbrcksa7fbkzn9fzbbynqmn6ni6lhnvzk359sb1xvbz"))
       (patches (search-patches "linphone-desktop-without-sdk.patch"))))
    (build-system qt-build-system)
    (arguments
     `(#:tests? #f                      ; No test target
       #:configure-flags
       (list
        "-DENABLE_UPDATE_CHECK=NO")
       #:phases
       (modify-phases %standard-phases
         (add-after 'unpack 'pre-configure
           (lambda _
             (for-each make-file-writable (find-files "."))
             (substitute* "linphone-app/linphoneqt_version.cmake"
               (("\\$\\{GUIX-SET-VERSION\\}") ,version))
             #t))
         (add-after 'install 'post-install
           (lambda* (#:key inputs outputs #:allow-other-keys)
             (let* ((out (assoc-ref outputs "out"))
                    (liblinphone (assoc-ref inputs "liblinphone"))
                    (belcard (assoc-ref inputs "belcard")))
               ;; Remove unnecessary Qt configuration file.
               (delete-file (string-append out "/bin/qt.conf"))
               ;; Not using the FHS exposes an issue where the client
               ;; refers to its own "share" directory, which lacks files
               ;; installed by the dependencies.
               (symlink
                (string-append liblinphone "/share/sounds")
                (string-append out "/share/sounds"))
               (symlink
                (string-append belcard "/share/belr")
                (string-append out "/share/belr"))
               #t))))))
    (native-inputs
     `(("pkg-config" ,pkg-config)
       ("qttools" ,qttools)))
    (inputs
     `(("bctoolbox" ,bctoolbox)
       ("belcard" ,belcard)
       ("bellesip" ,belle-sip)
       ("belr" ,belr)
       ("liblinphone" ,liblinphone)
       ("mediastreamer2" ,mediastreamer2)
       ("ortp" ,ortp)
       ("qtbase" ,qtbase)
       ("qtdeclarative" ,qtdeclarative)
       ("qtgraphicaleffects" ,qtgraphicaleffects)
       ("qtquickcontrols" ,qtquickcontrols)
       ("qtquickcontrols2" ,qtquickcontrols2)
       ("qtsvg" ,qtsvg)))
    (synopsis "Desktop client for the Linphone SIP softphone")
    (description "Linphone is a SIP softphone for voice and video over IP calling
(VoIP) and instant messaging.  Amongst its features are:
@itemize
@item High Definition (HD) audio and video calls
@item Multiple call management (pause and resume)
@item Call transfer
@item Audio conferencing (merge calls into a conference call)
@item Call recording and replay (audio only)
@item Instant Messaging with message delivery status (IMDN)
@item Picture and file sharing
@item Echo cancellation
@item Secure user authentication using TLS client certificates
@item SRTP, zRTP and SRTP-DTLS voice and video encryption
@item Telephone tone (DTMF) support using SIP INFO or RFC 4733
@item Audio codecs: opus, speex, g711, g729, gsm, iLBC, g722, SILK, etc.
@item Video codecs: VP8, H.264 and H.265 with resolutions up to 1080P, MPEG4
@end itemize")
    (home-page "https://gitlab.linphone.org/BC/public/linphone-desktop")
    (license license:gpl2+)))

(define-public msopenh264
  (package
    (name "msopenh264")
    (version "1.2.1")
    (source
     (origin
       (method url-fetch)
       (uri
        (string-append "https://www.linphone.org/releases/sources/plugins/"
                       name "/" name "-" version ".tar.gz"))
       (sha256
        (base32 "0rdxgazm52560g52pp6mp3mwx6j1z3h2zyizzfycp8y8zi92fqm8"))
       (patches
        (list
         ;; For support for OpenH264 version >= 2.
         (origin
           (method url-fetch)
           (uri
            (string-append "https://gitlab.linphone.org/BC/public/msopenh264/"
                           "commit/493d147d28c9a0f788ba4e50b47a1ce7b18bf326"
                           ".diff"))
           (file-name "msopenh264-openh264.patch")
           (sha256
            (base32
             "0mmd7nz5n9ian4rcwn200nldmy5j0dpdrna7r32rqnaw82bx3kdb")))))))
    (build-system cmake-build-system)
    (arguments
     `(#:tests? #f                      ; No test target
       #:configure-flags
       (list "-DENABLE_STATIC=NO")))    ; Not required
    (inputs
     `(("mediastreamer2" ,mediastreamer2)
       ("openh264" ,openh264)
       ("ortp" ,ortp)))
    (synopsis "Media Streamer H.264 Codec")
    (description "MsOpenH264 is an  H.264 encoder/decoder plugin for
mediastreamer2 based on the openh264 library.")
    (home-page "https://gitlab.linphone.org/BC/public/msopenh264")
    (license license:gpl2+)))

(define-public mssilk
  (package
    (name "mssilk")
    (version "1.1.1")
    (source
     (origin
       (method url-fetch)
       (uri
        (string-append "https://www.linphone.org/releases/sources/plugins/"
                       name "/" name "-" version ".tar.gz"))
       (sha256
        (base32 "07ip0vd29d1n98lnqs5wpimcsmpm65yl7g5vk4hbqghcbsjw94lj"))))
    (build-system cmake-build-system)
    (arguments
     `(#:tests? #f                      ; No test target
       #:configure-flags
       (list "-DENABLE_STATIC=NO")))    ; Not required
    (inputs
     `(("mediastreamer2" ,mediastreamer2)
       ("ortp" ,ortp)))
    (synopsis "Media Streamer SILK Codec")
    (description "MSSILK is a plugin of MediaStreamer, adding support for AMR
codec.  It is based on the Skype's SILK implementation.")
    (home-page "https://gitlab.linphone.org/BC/public/mssilk")
    (license license:gpl2+)))

(define-public mswebrtc
  (package
    (name "mswebrtc")
    (version "1.1.1")
    (source
     (origin
       (method url-fetch)
       (uri
        (string-append "https://www.linphone.org/releases/sources/plugins/"
                       name "/" name "-" version ".tar.gz"))
       (sha256
        (base32 "1wj28hl9myhshqmn64xg0jf07aw75gmnilb5rff6rcbdxim87mqr"))))
    (build-system cmake-build-system)
    (arguments
     `(#:tests? #f                      ; No test target
       #:configure-flags
       (list
        "-DENABLE_STATIC=NO")))         ; Not required
    (inputs
     `(("bctoolbox" ,bctoolbox)
       ("mediastreamer2" ,mediastreamer2)
       ("ortp" ,ortp)))
    (synopsis "Media Streamer WebRTC Codec")
    (description "MSWebRTC is a plugin of MediaStreamer, adding support for
WebRTC codec.  It includes features from WebRTC, such as, iSAC and AECM.")
    (home-page "https://gitlab.linphone.org/BC/public/mswebrtc")
    (license license:gpl2+)))

(define-public msamr
  (package
    (name "msamr")
    (version "1.1.3")
    (source
     (origin
       (method url-fetch)
       (uri
        (string-append "https://www.linphone.org/releases/sources/plugins/"
                       name "/" name "-" version ".tar.gz"))
       (sha256
        (base32 "16c9f3z4wnj73k7y8gb0fgpr4axsm7b5zrbjvy8vsgz9gyg3agm5"))))
    (build-system cmake-build-system)
    (arguments
     `(#:tests? #f                      ; No test target
       #:configure-flags
       (list "-DENABLE_STATIC=NO"       ; Not required
             "-DENABLE_WIDEBAND=YES")))
    (inputs
     `(("mediastreamer2" ,mediastreamer2)
       ("opencoreamr" ,opencore-amr)
       ("ortp" ,ortp)
       ("voamrwbenc" ,vo-amrwbenc)))
    (synopsis "Media Streamer AMR Codec")
    (description "MSAMR is a plugin of MediaStreamer, adding support for AMR
codec.  It is based on the opencore-amr implementation.")
    (home-page "https://gitlab.linphone.org/BC/public/msamr")
    (license license:gpl3+)))

debug log:

solving 981ff1f276 ...
found 981ff1f276 in https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/
found a7cf785f93 in https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/
found 0e9d1376bb in https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/
found 7158c093b3 in https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/
found 80349ac426 in https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/
found 79cb35fc07 in https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/
found 836ca7c079 in https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/
found 1a11cc5c46 in https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/
found adf2a357ea in https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/
found 661a9ea779 in https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/
found 025fd90c46 in https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/
found e573e71932 in https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/
found 9b04ec90ef in https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/
found e3d8febae9 in https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/
found cc2ab09db0 in https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/
found 7261dbe1d8 in https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/
found 596fb467a0 in https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/
found bba7cefb8a in https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/
found 28c9d3f599 in https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/
found 98209ee982 in https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/
found 3273df02c2 in https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/
found fbe9d81d58 in https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/
found f1bcae1208 in https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/
found 346ca30a77 in https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/
found 5bbf60e204 in https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/
found d42744d7af in https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/
found aee6ce4611 in https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/
found 25cfe6de94 in https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/
found 8767662050 in https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/
found 26b2b0cbba in https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/
found 1a83105334 in https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/
found 9d54b1b874 in https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/
found 90f5796c1f in https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/
found 09f4c24730 in https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/
found b7cf777401 in https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/
found 6b161d326f in https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/
found bbea6411f7 in https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/
found dc78636f5a in https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/
found 6d243d2073 in https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ ||
	https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/
found afa542412f in https://git.savannah.gnu.org/cgit/guix.git
preparing index
index prepared:
100644 afa542412f9becf6cf8295ef91e36cd1e05834de	gnu/packages/linphone.scm

applying [1/39] https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/
diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm
index afa542412f..6d243d2073 100644

Checking patch gnu/packages/linphone.scm...
Applied patch gnu/packages/linphone.scm cleanly.

skipping https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ for 6d243d2073
skipping https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ for 6d243d2073
skipping https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/ for 6d243d2073
index at:
100644 6d243d2073b41b4af98a5392a4431f3948f2313c	gnu/packages/linphone.scm

applying [2/39] https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/
diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm
index 6d243d2073..dc78636f5a 100644

Checking patch gnu/packages/linphone.scm...
Applied patch gnu/packages/linphone.scm cleanly.

skipping https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ for dc78636f5a
skipping https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ for dc78636f5a
skipping https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/ for dc78636f5a
index at:
100644 dc78636f5ade08bc0beb771b46846dc918281a7a	gnu/packages/linphone.scm

applying [3/39] https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/
diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm
index dc78636f5a..bbea6411f7 100644

Checking patch gnu/packages/linphone.scm...
Applied patch gnu/packages/linphone.scm cleanly.

skipping https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ for bbea6411f7
skipping https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ for bbea6411f7
skipping https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/ for bbea6411f7
index at:
100644 bbea6411f70ce34b9d53a01f9c2aca9677ac8e9b	gnu/packages/linphone.scm

applying [4/39] https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/
diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm
index bbea6411f7..6b161d326f 100644

Checking patch gnu/packages/linphone.scm...
Applied patch gnu/packages/linphone.scm cleanly.

skipping https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ for 6b161d326f
skipping https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ for 6b161d326f
skipping https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/ for 6b161d326f
index at:
100644 6b161d326fba85544746887fdf42ecbcb4833b65	gnu/packages/linphone.scm

applying [5/39] https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/
diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm
index 6b161d326f..b7cf777401 100644

Checking patch gnu/packages/linphone.scm...
Applied patch gnu/packages/linphone.scm cleanly.

skipping https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ for b7cf777401
skipping https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ for b7cf777401
skipping https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/ for b7cf777401
index at:
100644 b7cf777401744da836cde9cda7c8af91d1dbefe4	gnu/packages/linphone.scm

applying [6/39] https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/
diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm
index b7cf777401..09f4c24730 100644

Checking patch gnu/packages/linphone.scm...
Applied patch gnu/packages/linphone.scm cleanly.

skipping https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ for 09f4c24730
skipping https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ for 09f4c24730
skipping https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/ for 09f4c24730
index at:
100644 09f4c2473042fa251ec1261f65252a5775ca6ba0	gnu/packages/linphone.scm

applying [7/39] https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/
diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm
index 09f4c24730..90f5796c1f 100644

Checking patch gnu/packages/linphone.scm...
Applied patch gnu/packages/linphone.scm cleanly.

skipping https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ for 90f5796c1f
skipping https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ for 90f5796c1f
skipping https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/ for 90f5796c1f
index at:
100644 90f5796c1fd5179252d6316eb98abc0337312bae	gnu/packages/linphone.scm

applying [8/39] https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/
diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm
index 90f5796c1f..9d54b1b874 100644

Checking patch gnu/packages/linphone.scm...
Applied patch gnu/packages/linphone.scm cleanly.

skipping https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ for 9d54b1b874
skipping https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ for 9d54b1b874
skipping https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/ for 9d54b1b874
index at:
100644 9d54b1b8746a21352290715892a621786adad80e	gnu/packages/linphone.scm

applying [9/39] https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/
diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm
index 9d54b1b874..1a83105334 100644

Checking patch gnu/packages/linphone.scm...
Applied patch gnu/packages/linphone.scm cleanly.

skipping https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ for 1a83105334
skipping https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ for 1a83105334
skipping https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/ for 1a83105334
index at:
100644 1a831053347fd8cf421999594a5e1ca2135cfa57	gnu/packages/linphone.scm

applying [10/39] https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/
diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm
index 1a83105334..26b2b0cbba 100644

Checking patch gnu/packages/linphone.scm...
Applied patch gnu/packages/linphone.scm cleanly.

skipping https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ for 26b2b0cbba
skipping https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ for 26b2b0cbba
skipping https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/ for 26b2b0cbba
index at:
100644 26b2b0cbbabeb38e5d136a1ac5644f44a8c845c8	gnu/packages/linphone.scm

applying [11/39] https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/
diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm
index 26b2b0cbba..8767662050 100644

Checking patch gnu/packages/linphone.scm...
Applied patch gnu/packages/linphone.scm cleanly.

skipping https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ for 8767662050
skipping https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ for 8767662050
skipping https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/ for 8767662050
index at:
100644 8767662050a7312d3e09283214d0029bec85b514	gnu/packages/linphone.scm

applying [12/39] https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/
diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm
index 8767662050..25cfe6de94 100644

Checking patch gnu/packages/linphone.scm...
Applied patch gnu/packages/linphone.scm cleanly.

skipping https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ for 25cfe6de94
skipping https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ for 25cfe6de94
skipping https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/ for 25cfe6de94
index at:
100644 25cfe6de944dafc05958374acdf84f7cd887dae8	gnu/packages/linphone.scm

applying [13/39] https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/
diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm
index 25cfe6de94..aee6ce4611 100644

Checking patch gnu/packages/linphone.scm...
Applied patch gnu/packages/linphone.scm cleanly.

skipping https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ for aee6ce4611
skipping https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ for aee6ce4611
skipping https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/ for aee6ce4611
index at:
100644 aee6ce4611c4e4f4c301c3132a9493119280ae1a	gnu/packages/linphone.scm

applying [14/39] https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/
diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm
index aee6ce4611..d42744d7af 100644

Checking patch gnu/packages/linphone.scm...
Applied patch gnu/packages/linphone.scm cleanly.

skipping https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ for d42744d7af
skipping https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ for d42744d7af
skipping https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/ for d42744d7af
index at:
100644 d42744d7af2b6c0ea2bbfc09f06e81558bda36a9	gnu/packages/linphone.scm

applying [15/39] https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/
diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm
index d42744d7af..5bbf60e204 100644

Checking patch gnu/packages/linphone.scm...
Applied patch gnu/packages/linphone.scm cleanly.

skipping https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ for 5bbf60e204
skipping https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ for 5bbf60e204
skipping https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/ for 5bbf60e204
index at:
100644 5bbf60e2045e2239663edf0628564da0a4329c24	gnu/packages/linphone.scm

applying [16/39] https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/
diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm
index 5bbf60e204..346ca30a77 100644

Checking patch gnu/packages/linphone.scm...
Applied patch gnu/packages/linphone.scm cleanly.

skipping https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ for 346ca30a77
skipping https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ for 346ca30a77
skipping https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/ for 346ca30a77
index at:
100644 346ca30a77aa51397ffcf540b94df9f575bca133	gnu/packages/linphone.scm

applying [17/39] https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/
diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm
index 346ca30a77..f1bcae1208 100644

Checking patch gnu/packages/linphone.scm...
Applied patch gnu/packages/linphone.scm cleanly.

skipping https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ for f1bcae1208
skipping https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ for f1bcae1208
skipping https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/ for f1bcae1208
index at:
100644 f1bcae1208cb7af2cb8d4b6a658458ceabd10894	gnu/packages/linphone.scm

applying [18/39] https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/
diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm
index f1bcae1208..fbe9d81d58 100644

Checking patch gnu/packages/linphone.scm...
Applied patch gnu/packages/linphone.scm cleanly.

skipping https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ for fbe9d81d58
skipping https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ for fbe9d81d58
skipping https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/ for fbe9d81d58
index at:
100644 fbe9d81d58e43068fce35c59622a3debe921a9d6	gnu/packages/linphone.scm

applying [19/39] https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/
diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm
index fbe9d81d58..3273df02c2 100644

Checking patch gnu/packages/linphone.scm...
Applied patch gnu/packages/linphone.scm cleanly.

skipping https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ for 3273df02c2
skipping https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ for 3273df02c2
skipping https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/ for 3273df02c2
index at:
100644 3273df02c207d9fdec37e7d4889f232242d60772	gnu/packages/linphone.scm

applying [20/39] https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/
diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm
index 3273df02c2..98209ee982 100644

Checking patch gnu/packages/linphone.scm...
Applied patch gnu/packages/linphone.scm cleanly.

skipping https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ for 98209ee982
skipping https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ for 98209ee982
skipping https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/ for 98209ee982
index at:
100644 98209ee9823ba2f960f087d852f450b145cf6324	gnu/packages/linphone.scm

applying [21/39] https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/
diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm
index 98209ee982..28c9d3f599 100644

Checking patch gnu/packages/linphone.scm...
Applied patch gnu/packages/linphone.scm cleanly.

skipping https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ for 28c9d3f599
skipping https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ for 28c9d3f599
skipping https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/ for 28c9d3f599
index at:
100644 28c9d3f599ba1bdb8c9c225868e895d90ccb499a	gnu/packages/linphone.scm

applying [22/39] https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/
diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm
index 28c9d3f599..bba7cefb8a 100644

Checking patch gnu/packages/linphone.scm...
Applied patch gnu/packages/linphone.scm cleanly.

skipping https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ for bba7cefb8a
skipping https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ for bba7cefb8a
skipping https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/ for bba7cefb8a
index at:
100644 bba7cefb8a11ae4948a715a65dfbe1ef709c21df	gnu/packages/linphone.scm

applying [23/39] https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/
diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm
index bba7cefb8a..596fb467a0 100644

Checking patch gnu/packages/linphone.scm...
Applied patch gnu/packages/linphone.scm cleanly.

skipping https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ for 596fb467a0
skipping https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ for 596fb467a0
skipping https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/ for 596fb467a0
index at:
100644 596fb467a0534a326b7ff6a8a2c858c3dd75a0bb	gnu/packages/linphone.scm

applying [24/39] https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/
diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm
index 596fb467a0..7261dbe1d8 100644

Checking patch gnu/packages/linphone.scm...
Applied patch gnu/packages/linphone.scm cleanly.

skipping https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ for 7261dbe1d8
skipping https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ for 7261dbe1d8
skipping https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/ for 7261dbe1d8
index at:
100644 7261dbe1d8946af4176310566757bb8804497bf1	gnu/packages/linphone.scm

applying [25/39] https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/
diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm
index 7261dbe1d8..cc2ab09db0 100644

Checking patch gnu/packages/linphone.scm...
Applied patch gnu/packages/linphone.scm cleanly.

skipping https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ for cc2ab09db0
skipping https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ for cc2ab09db0
skipping https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/ for cc2ab09db0
index at:
100644 cc2ab09db0dec3e16fbde6073bd33a87744409b4	gnu/packages/linphone.scm

applying [26/39] https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/
diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm
index cc2ab09db0..e3d8febae9 100644

Checking patch gnu/packages/linphone.scm...
Applied patch gnu/packages/linphone.scm cleanly.

skipping https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ for e3d8febae9
skipping https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ for e3d8febae9
skipping https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/ for e3d8febae9
index at:
100644 e3d8febae964b3342e7ebc6e6c3e6005c5967f8d	gnu/packages/linphone.scm

applying [27/39] https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/
diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm
index e3d8febae9..9b04ec90ef 100644

Checking patch gnu/packages/linphone.scm...
Applied patch gnu/packages/linphone.scm cleanly.

skipping https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ for 9b04ec90ef
skipping https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ for 9b04ec90ef
skipping https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/ for 9b04ec90ef
index at:
100644 9b04ec90ef414a319da3e25f241465a63358a653	gnu/packages/linphone.scm

applying [28/39] https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/
diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm
index 9b04ec90ef..e573e71932 100644

Checking patch gnu/packages/linphone.scm...
Applied patch gnu/packages/linphone.scm cleanly.

skipping https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ for e573e71932
skipping https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ for e573e71932
skipping https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/ for e573e71932
index at:
100644 e573e719323ab6b2267bbbdabc81818bb4d476d2	gnu/packages/linphone.scm

applying [29/39] https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/
diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm
index e573e71932..025fd90c46 100644

Checking patch gnu/packages/linphone.scm...
Applied patch gnu/packages/linphone.scm cleanly.

skipping https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ for 025fd90c46
skipping https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ for 025fd90c46
skipping https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/ for 025fd90c46
index at:
100644 025fd90c46504366736a568ab219ed2d9c851122	gnu/packages/linphone.scm

applying [30/39] https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/
diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm
index 025fd90c46..661a9ea779 100644

Checking patch gnu/packages/linphone.scm...
Applied patch gnu/packages/linphone.scm cleanly.

skipping https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ for 661a9ea779
skipping https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ for 661a9ea779
skipping https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/ for 661a9ea779
index at:
100644 661a9ea7798580e5ab5249829bb276026a26cca4	gnu/packages/linphone.scm

applying [31/39] https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/
diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm
index 661a9ea779..adf2a357ea 100644

Checking patch gnu/packages/linphone.scm...
Applied patch gnu/packages/linphone.scm cleanly.

skipping https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ for adf2a357ea
skipping https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ for adf2a357ea
skipping https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/ for adf2a357ea
index at:
100644 adf2a357ea1f95f19a181732d7a9fa142c780f88	gnu/packages/linphone.scm

applying [32/39] https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/
diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm
index adf2a357ea..1a11cc5c46 100644

Checking patch gnu/packages/linphone.scm...
Applied patch gnu/packages/linphone.scm cleanly.

skipping https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ for 1a11cc5c46
skipping https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ for 1a11cc5c46
skipping https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/ for 1a11cc5c46
index at:
100644 1a11cc5c4634bc8c5a4c1940f6c0c58913de47eb	gnu/packages/linphone.scm

applying [33/39] https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/
diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm
index 1a11cc5c46..836ca7c079 100644

Checking patch gnu/packages/linphone.scm...
Applied patch gnu/packages/linphone.scm cleanly.

skipping https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ for 836ca7c079
skipping https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ for 836ca7c079
skipping https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/ for 836ca7c079
index at:
100644 836ca7c0796399a899f3bf33050e8098898dba5e	gnu/packages/linphone.scm

applying [34/39] https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/
diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm
index 836ca7c079..79cb35fc07 100644

Checking patch gnu/packages/linphone.scm...
Applied patch gnu/packages/linphone.scm cleanly.

skipping https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ for 79cb35fc07
skipping https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ for 79cb35fc07
skipping https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/ for 79cb35fc07
index at:
100644 79cb35fc07a3a3a24dc2b2210b2d14d969fb0c5f	gnu/packages/linphone.scm

applying [35/39] https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/
diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm
index 79cb35fc07..80349ac426 100644

Checking patch gnu/packages/linphone.scm...
Applied patch gnu/packages/linphone.scm cleanly.

skipping https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ for 80349ac426
skipping https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ for 80349ac426
skipping https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/ for 80349ac426
index at:
100644 80349ac42658b98608a6071200455222a16e6e60	gnu/packages/linphone.scm

applying [36/39] https://yhetil.org/guix-patches/2f3561d8-dfbd-992a-53c0-0856680a8552@raghavgururajan.name/
diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm
index 80349ac426..7158c093b3 100644

Checking patch gnu/packages/linphone.scm...
Applied patch gnu/packages/linphone.scm cleanly.

skipping https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/ for 7158c093b3
skipping https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ for 7158c093b3
skipping https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/ for 7158c093b3
index at:
100644 7158c093b3e24302f45ee9bbeb845c05beafcdce	gnu/packages/linphone.scm

applying [37/39] https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/
diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm
index 7158c093b3..0e9d1376bb 100644

Checking patch gnu/packages/linphone.scm...
Applied patch gnu/packages/linphone.scm cleanly.

skipping https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ for 0e9d1376bb
skipping https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/ for 0e9d1376bb
index at:
100644 0e9d1376bb5aa792f964358f1887320ad304b894	gnu/packages/linphone.scm

applying [38/39] https://yhetil.org/guix-patches/66991ebb-4074-efab-4331-1ed195d55d26@raghavgururajan.name/
diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm
index 0e9d1376bb..a7cf785f93 100644

Checking patch gnu/packages/linphone.scm...
Applied patch gnu/packages/linphone.scm cleanly.

skipping https://yhetil.org/guix-patches/947239fd-4a1f-d340-dc5b-05089b50aedd@raghavgururajan.name/ for a7cf785f93
skipping https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/ for a7cf785f93
index at:
100644 a7cf785f93e1719337d45b8c56a59aecd2807c62	gnu/packages/linphone.scm

applying [39/39] https://yhetil.org/guix-patches/cf75f6a8-fd76-cb05-0a46-903de3e882f6@raghavgururajan.name/
diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm
index a7cf785f93..981ff1f276 100644

Checking patch gnu/packages/linphone.scm...
Applied patch gnu/packages/linphone.scm cleanly.

index at:
100644 981ff1f276431bec210562cb37f7072faacc770b	gnu/packages/linphone.scm

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).