unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
blob fbed3ca88b42e630fcc55f6560472cd9e7cb1d6e 45760 bytes (raw)
name: guix/import/go.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
 
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2020 Katherine Cox-Buday <cox.katherine.e@gmail.com>
;;; Copyright © 2020 Helio Machado <0x2b3bfa0+guix@googlemail.com>
;;; Copyright © 2021 François Joulaud <francois.joulaud@radiofrance.com>
;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;; Copyright © 2021-2022 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2021 Xinglu Chen <public@yoctocell.xyz>
;;; Copyright © 2021 Sarah Morgensen <iskarian@mgsn.dev>
;;; Copyright © 2021 Simon Tournier <zimon.toutoune@gmail.com>
;;;
;;; 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/>.

;;; goproxy protocol:
;;;   https://golang.org/ref/mod#module-proxy
;;;   https://docs.gomods.io/intro/protocol/
;;;   https://roberto.selbach.ca/go-proxies/

(define-module (guix import go)
  #:use-module (git)
  #:use-module (git structs)
  #:use-module (git errors)
  #:use-module (guix build-system go)
  #:use-module (guix git)
  #:use-module (guix hash)
  #:use-module (guix i18n)
  #:use-module (guix diagnostics)
  #:use-module (guix import utils)
  #:use-module (guix import json)
  #:use-module (guix packages)
  #:use-module ((guix utils) #:select (string-replace-substring))
  ;; FIXME? We use a local copy of http-fetch.
  ;; See https://issues.guix.gnu.org/54836
  #:use-module ((guix http-client) #:hide (http-fetch))
  #:use-module (guix base64)
  #:use-module (rnrs bytevectors)
  #:use-module ((guix build download)
                #:select (open-socket-for-uri
                          (open-connection-for-uri
                           . guix:open-connection-for-uri)
                          resolve-uri-reference))
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix memoization)
  #:autoload   (htmlprag) (html->sxml)            ;from Guile-Lib
  #:autoload   (guix serialization) (write-file)
  #:autoload   (guix base32) (bytevector->nix-base32-string)
  #:autoload   (guix build utils) (mkdir-p dump-port)
  #:autoload   (gcrypt hash) (hash-algorithm sha256)
  #:use-module (ice-9 format)
  #:use-module (ice-9 control)
  #:use-module (ice-9 exceptions)
  #:use-module (ice-9 match)
  #:use-module (ice-9 peg)
  #:use-module (ice-9 rdelim)
  #:use-module (ice-9 receive)
  #:use-module (ice-9 regex)
  #:use-module (ice-9 textual-ports)
  #:use-module ((rnrs io ports) #:select (call-with-port))
  #:use-module (srfi srfi-1)
  #:use-module (srfi srfi-2)
  #:use-module (srfi srfi-9)
  #:use-module (srfi srfi-11)
  #:use-module (srfi srfi-26)
  #:use-module (srfi srfi-34)
  #:use-module (srfi srfi-35)
  #:use-module (srfi srfi-71) ; let*
  #:use-module (sxml match)
  #:use-module ((sxml xpath) #:renamer (lambda (s)
                                         (if (eq? 'filter s)
                                             'xfilter
                                             s)))
  #:use-module (web client)
  #:use-module (web response)
  #:use-module (web uri)

  #:export (go-module->guix-package
            go-module->guix-package*
            go-module-recursive-import))

;; This is a duplicate from (guix http-client) with the addition of a
;; #:accept-all-response-codes? param. See https://issues.guix.gnu.org/54836
(define* (http-fetch uri #:key port (text? #f) (buffered? #t)
                     (open-connection guix:open-connection-for-uri)
                     (keep-alive? #f)
                     (verify-certificate? #t)
                     (headers '((user-agent . "GNU Guile")))
                     (log-port (current-error-port))
                     timeout
                     (accept-all-response-codes? #f))
  "Return an input port containing the data at URI, and the expected number of
bytes available or #f.  If TEXT? is true, the data at URI is considered to be
textual.  Follow any HTTP redirection.  When BUFFERED? is #f, return an
unbuffered port, suitable for use in `filtered-port'.  HEADERS is an alist of
extra HTTP headers.

When KEEP-ALIVE? is true, the connection is marked as 'keep-alive' and PORT is
not closed upon completion.

When VERIFY-CERTIFICATE? is true, verify HTTPS server certificates.

TIMEOUT specifies the timeout in seconds for connection establishment; when
TIMEOUT is #f, connection establishment never times out.

Write information about redirects to LOG-PORT.

When ACCEPT-ALL-RESPONSE-CODES? is false then raise an '&http-get-error'
condition if downloading fails, otherwise return the response regardless
of the reponse code."
  (define parsed-initial-uri
    (if (string? uri) (string->uri uri) uri))

  (define (open-connection* uri)
    (open-connection uri
                     #:verify-certificate? verify-certificate?
                     #:timeout timeout))

  (let loop ((current-uri parsed-initial-uri)
             (current-port (or port (open-connection parsed-initial-uri))))
    (let ((headers (match (uri-userinfo current-uri)
                     ((? string? str)
                      (cons (cons 'Authorization
                                  (string-append "Basic "
                                                 (base64-encode
                                                  (string->utf8 str))))
                            headers))
                     (_ headers))))
      (unless (or buffered? (not (file-port? current-port)))
        (setvbuf current-port 'none))
      (let*-values (((resp data)
                     (http-get current-uri #:streaming? #t #:port current-port
                               #:keep-alive? keep-alive?
                               #:headers headers))
                    ((code)
                     (response-code resp)))
        (case code
          ((200)
           (values data (response-content-length resp)))
          ((301                         ; moved permanently
            302                         ; found (redirection)
            303                         ; see other
            307                         ; temporary redirection
            308)                        ; permanent redirection
           (let ((host (uri-host current-uri))
                 (new-uri (resolve-uri-reference (response-location resp)
                                                 current-uri)))
             (if keep-alive?
                 (dump-port data (%make-void-port "w0")
                            (response-content-length resp))
                 (close-port current-port))
             (format log-port (G_ "following redirection to `~a'...~%")
                     (uri->string new-uri))
             (loop new-uri
                   (or (and keep-alive?
                            (or (not (uri-host new-uri))
                                (string=? host (uri-host new-uri)))
                            current-port)
                       (open-connection* new-uri)))))
          (else
           (if accept-all-response-codes?
               (values data (response-content-length resp))
               (raise (condition (&http-get-error
                                  (uri current-uri)
                                  (code code)
                                  (reason (response-reason-phrase resp))
                                  (headers (response-headers resp)))
                                 (&message
                                  (message
                                   (format
                                    #f
                                    (G_ "~a: HTTP download failed: ~a (~s)")
                                    (uri->string current-uri) code
                                    (response-reason-phrase resp)))))))))))))

;;; Commentary:
;;;
;;; (guix import go) attempts to make it easier to create Guix package
;;; declarations for Go modules.
;;;
;;; Modules in Go are a "collection of related Go packages" which are "the
;;; unit of source code interchange and versioning".  Modules are generally
;;; hosted in a repository.
;;;
;;; At this point it should handle correctly modules which have only Go
;;; dependencies and are accessible from proxy.golang.org (or configured via
;;; GOPROXY).
;;;
;;; We want it to work more or less this way:
;;; - get latest version for the module from GOPROXY
;;; - infer VCS root repo from which we will check-out source by
;;;   + recognising known patterns (like github.com)
;;;   + or recognizing .vcs suffix
;;;   + or parsing meta tag in HTML served at the URL
;;;   + or (TODO) if nothing else works by using zip file served by GOPROXY
;;; - get go.mod from GOPROXY (which is able to synthetize one if needed)
;;; - extract list of dependencies from this go.mod
;;;
;;; The Go module paths are translated to a Guix package name under the
;;; assumption that there will be no collision.

;;; TODO list
;;; - get correct hash in vcs->origin for Mercurial and Subversion

;;; Code:

;; FIXME set up logging for the entire project, and replace this poor man's
;; logger with the proper one.
(define-syntax-rule (log.info format-string ...)
  (let ((port (current-warning-port)))
    (format port format-string ...)
    (newline port)))

(define-syntax-rule (log.debug format-string ...)
  ;;(log.info format-string ...)
  '())

(define http-fetch*
  ;; Like http-fetch, but memoized and returning the body as a string.
  (memoize (lambda args
             (call-with-port (apply http-fetch args) get-string-all))))

(define json-fetch*
  (memoize json-fetch))

(define (go-path-escape path)
  "Escape a module path by replacing every uppercase letter with an
exclamation mark followed with its lowercase equivalent, as per the module
Escaped Paths specification (see:
https://godoc.org/golang.org/x/mod/module#hdr-Escaped_Paths)."
  (define (escape occurrence)
    (string-append "!" (string-downcase (match:substring occurrence))))
  (regexp-substitute/global #f "[A-Z]" path 'pre escape 'post))

;; Prevent inlining of this procedure, which is accessed by unit tests.
(set! go-path-escape go-path-escape)

(define (pkg.go.dev-info module-path)
  ;; FIXME if MODULE-PATH is a fork on github, then it will try to get the
  ;; info of the fork (instead of the upstream), which most probably does not
  ;; exist in pkg.go.dev.  Example: https://github.com/bonitoo-io/oapi-codegen
  (http-fetch* (string-append "https://pkg.go.dev/" module-path)))

(define* (go-module-version-string goproxy name #:key version)
  "Fetch the version string of the latest version for NAME from the given
GOPROXY server, or for VERSION when specified."
  (let ((file (if version
                  (string-append "@v/" version ".info")
                  "@latest")))
    (assoc-ref (json-fetch* (format #f "~a/~a/~a"
                                    goproxy (go-path-escape name) file))
               "Version")))

(define* (go-module-available-versions goproxy name)
  "Retrieve the available versions for a given module from the module proxy.
Versions are being returned **unordered** and may contain different versioning
styles for the same package."
  (let* ((url (string-append goproxy "/" (go-path-escape name) "/@v/list"))
         (body (http-fetch* url))
         (versions (remove string-null? (string-split body #\newline))))
    (if (null? versions)
        (list (go-module-version-string goproxy name)) ;latest version
        versions)))

(define (go-package-licenses name)
  "Retrieve the list of licenses that apply to NAME, a Go package or module
name (e.g. \"github.com/golang/protobuf/proto\")."
  (let* ((body (pkg.go.dev-info (string-append name "?tab=licenses")))
         ;; Extract the text contained in a h2 child node of any
         ;; element marked with a "License" class attribute.
         (select (sxpath `(// (* (@ (equal? (class "License"))))
                              h2 // div // *text*))))
    (select (html->sxml body #:strict? #t))))

(define (sxml->texi sxml-node)
  "A very basic SXML to Texinfo converter which attempts to preserve HTML
formatting and links as text."
  (sxml-match sxml-node
    ((strong ,text)
     (format #f "@strong{~a}" text))
    ((a (@ (href ,url)) ,body)
     ;; Examples: image in the url: github.com/go-openapi/jsonpointer
     ;; (code ...) in the URL body: github.com/mwitkow/go-conntrack
     (if (string? body)
         (format #f "@url{~a,~a}" url body)
         (sxml-match body
                     ((code ,text)
                      (format #f "@url{~a,~a}" url (sxml->texi body)))
                     (,_
                      (format #f "@url{~a}" url)))))
    ((code ,text)
     (format #f "@code{~a}" text))
    (,something-else
     ;; Example: @ in the description: github.com/ethersphere/langos
     (if (string? something-else)
         (string-replace-substring something-else
                                   "@" "@@")
         something-else))))

(define (go-package-description name)
  "Retrieve a short description for NAME, a Go package name,
e.g. \"google.golang.org/protobuf/proto\"."
  (let* ((body (pkg.go.dev-info name))
         (sxml (html->sxml body #:strict? #t))
         (overview ((sxpath
                     `(//
                       (* (@ (equal? (class "Documentation-overview"))))
                       (p 1))) sxml))
         ;; Sometimes, the first paragraph just contains images/links that
         ;; has only "\n" for text.  The following filter is designed to
         ;; omit it.
         (contains-text? (lambda (node)
                           (remove string-null?
                                   (map string-trim-both
                                        (filter (node-typeof? '*text*)
                                                (cdr node))))))
         (select-content (sxpath
                          `(//
                            (* (@ (equal? (class "UnitReadme-content"))))
                            div // p ,(xfilter contains-text?))))
         ;; Fall-back to use content; this is less desirable as it is more
         ;; verbose, but not every page has an overview.
         (description (if (not (null? overview))
                          overview
                          (select-content sxml)))
         (description* (if (not (null? description))
                           (first description)
                           description)))
    (match description*
      (() #f)                           ;nothing selected
      ((p elements ...)
       (apply string-append (filter string? (map sxml->texi elements)))))))

(define (go-package-synopsis module-path)
  "Retrieve a short synopsis for a Go module named MODULE-PATH,
e.g. \"google.golang.org/protobuf\".  The data is scraped from
the https://pkg.go.dev/ web site."
  ;; Note: Only the *module* (rather than package) page has the README title
  ;; used as a synopsis on the https://pkg.go.dev web site.
  (log.debug "Getting synopsis for ~S" module-path)
  (let* ((body (pkg.go.dev-info module-path))
         ;; Extract the text contained in a h2 child node of any
         ;; element marked with a "License" class attribute.
         (select-title (sxpath
                        `(// (div (@ (equal? (class "UnitReadme-content"))))
                             // h3 *text*))))
    (match (select-title (html->sxml body #:strict? #t))
      (() #f)                           ;nothing selected
      ((title more ...)                 ;title is the first string of the list
       (string-trim-both title)))))

(define (list->licenses licenses)
  "Given a list of LICENSES mostly following the SPDX conventions, return the
corresponding Guix license or 'unknown-license!"
  (filter-map (lambda (license)
                (and (not (string-null? license))
                     (not (any (cut string=? <> license)
                               '("AND" "OR" "WITH")))
                     ;; Adjust the license names scraped from
                     ;; https://pkg.go.dev to an equivalent SPDX identifier,
                     ;; if they differ (see: https://github.com/golang/pkgsite
                     ;; /internal/licenses/licenses.go#L174).
                     (or (spdx-string->license
                          (match license
                            ("BlueOak-1.0" "BlueOak-1.0.0")
                            ("BSD-0-Clause" "0BSD")
                            ("BSD-2-Clause" "BSD-2-Clause-FreeBSD")
                            ("GPL2" "GPL-2.0")
                            ("GPL3" "GPL-3.0")
                            ("NIST" "NIST-PD")
                            (_ license)))
                         (begin
                           (warning (G_ "Failed to identify license ~S.~%")
                                    license)
                           ;; This will put the license there as a string that
                           ;; will error at compilation.
                           license))))
              licenses))

(define (fetch-go.mod goproxy module-path version)
  "Fetch go.mod from the given GOPROXY server for the given MODULE-PATH
and VERSION and return an input port."
  (let ((url (format #f "~a/~a/@v/~a.mod" goproxy
                     (go-path-escape module-path)
                     (go-path-escape version))))
    (http-fetch* url)))


(define (parse-go.mod content)
  "Parse the go.mod file CONTENT, returning a list of directives, comments,
and unknown lines.  Each sublist begins with a symbol (go, module, require,
replace, exclude, retract, comment, or unknown) and is followed by one or more
sublists.  Each sublist begins with a symbol (module-path, version, file-path,
comment, or unknown) and is followed by the indicated data."
  ;; https://golang.org/ref/mod#go-mod-file-grammar
  (define-peg-pattern NL none "\n")
  (define-peg-pattern WS none (or " " "\t" "\r"))
  (define-peg-pattern => none (and (* WS) "=>"))
  (define-peg-pattern punctuation none (or "," "=>" "[" "]" "(" ")"))
  (define-peg-pattern comment all
    (and (ignore "//") (* WS) (* (and (not-followed-by NL) peg-any))))
  (define-peg-pattern EOL body (and (* WS) (? comment) NL))
  (define-peg-pattern block-start none (and (* WS) "(" EOL))
  (define-peg-pattern block-end none (and (* WS) ")" EOL))
  (define-peg-pattern any-line body
    (and (* WS) (* (and (not-followed-by NL) peg-any)) EOL))

  ;; Strings and identifiers
  (define-peg-pattern identifier body
    (+ (and (not-followed-by (or NL WS punctuation)) peg-any)))
  (define-peg-pattern string-raw body
    (and (ignore "`") (+ (and (not-followed-by "`") peg-any)) (ignore "`")))
  (define-peg-pattern string-quoted body
    (and (ignore "\"")
         (+ (or (and (ignore "\\") peg-any)
                (and (not-followed-by "\"") peg-any)))
         (ignore "\"")))
  (define-peg-pattern string-or-ident body
    (and (* WS) (or string-raw string-quoted identifier)))

  (define-peg-pattern version all string-or-ident)
  (define-peg-pattern module-path all string-or-ident)
  (define-peg-pattern file-path all string-or-ident)

  ;; Non-directive lines
  (define-peg-pattern unknown all any-line)
  (define-peg-pattern block-line body
    (or EOL (and (not-followed-by block-end) unknown)))

  ;; GoDirective = "go" GoVersion newline .
  (define-peg-pattern go all (and (ignore "go") version EOL))

  ;; ModuleDirective = "module" ( ModulePath | "(" newline ModulePath newline ")" ) newline .
  (define-peg-pattern module all
    (and (ignore "module") (or (and block-start module-path EOL block-end)
                               (and module-path EOL))))

  ;; The following directives may all be used solo or in a block
  ;; RequireSpec = ModulePath Version newline .
  (define-peg-pattern require all (and module-path version EOL))
  (define-peg-pattern require-top body
    (and (ignore "require")
         (or (and block-start (* (or require block-line)) block-end) require)))

  ;; ExcludeSpec = ModulePath Version newline .
  (define-peg-pattern exclude all (and module-path version EOL))
  (define-peg-pattern exclude-top body
    (and (ignore "exclude")
         (or (and block-start (* (or exclude block-line)) block-end) exclude)))

  ;; ReplaceSpec = ModulePath [ Version ] "=>" FilePath newline
  ;;             | ModulePath [ Version ] "=>" ModulePath Version newline .
  (define-peg-pattern original all (or (and module-path version) module-path))
  (define-peg-pattern with all (or (and module-path version) file-path))
  (define-peg-pattern replace all (and original => with EOL))
  (define-peg-pattern replace-top body
    (and (ignore "replace")
         (or (and block-start (* (or replace block-line)) block-end) replace)))

  ;; RetractSpec = ( Version | "[" Version "," Version "]" ) newline .
  (define-peg-pattern range all
    (and (* WS) (ignore "[") version
         (* WS) (ignore ",") version (* WS) (ignore "]")))
  (define-peg-pattern retract all (and (or range version) EOL))
  (define-peg-pattern retract-top body
    (and (ignore "retract")
         (or (and block-start (* (or retract block-line)) block-end) retract)))

  (define-peg-pattern go-mod body
    (* (and (* WS) (or go module require-top exclude-top replace-top
                       retract-top EOL unknown))))

  (let ((tree (peg:tree (match-pattern go-mod content)))
        (keywords '(go module require replace exclude retract comment unknown)))
    (keyword-flatten keywords tree)))

;; Prevent inlining of this procedure, which is accessed by unit tests.
(set! parse-go.mod parse-go.mod)

(define (go.mod-directives go.mod directive)
  "Return the list of top-level directive bodies in GO.MOD matching the symbol
DIRECTIVE."
  (filter-map (match-lambda
                (((? (cut eq? <> directive) head) . rest) rest)
                (_ #f))
              go.mod))

(define (go.mod-requirements go.mod)
  "Compute and return the list of requirements specified by GO.MOD."
  (define (replace directive requirements)
    ;; Specification: https://golang.org/ref/mod#go-mod-file-replace
    ;; Interesting test cases:
    ;;   github.com/influxdata/influxdb-client-go/v2@v2.4.0
    (log.debug "inside replace, directive ~S, requirements ~S" directive requirements)
    (define (maybe-replace old-module-path old-version new-module-path new-version)
      (let ((matched-entry (assoc-ref requirements old-module-path)))
        (log.debug "inside maybe-replace, ~S ~S => ~S ~S, matched-entry ~S"
                   old-module-path old-version new-module-path new-version matched-entry)
        (cond ((and (equal? old-module-path new-module-path)
                    (not matched-entry))
               ;; "A replace directive has no effect if the module version on the left
               ;; side is not required."
               ;; Do not allow version updates for indirect dependencies.
               requirements)
              ((and matched-entry
                    (or (not old-version)
                        (equal? old-version new-version)))
               (cons (list new-module-path new-version)
                     (alist-delete old-module-path requirements)))
              (else
               requirements))))
    (log.debug "toplevel directive is ~S" directive)
    (match directive
      ((('original ('module-path old-module-path) ('version old-version) ...) with)
       (unless (null? old-version)
         (set! old-version (first old-version)))
       (match with
         (('with ('file-path _))
          ;; Superseded by a module in a local path, so let's delete it.
          (alist-delete old-module-path requirements))
         (('with ('module-path new-module-path) ('version new-version))
          (maybe-replace old-module-path old-version
                         new-module-path new-version))))))

  (define (require directive requirements)
    (match directive
      ((('module-path module-path) ('version version) . _)
       (cons (list module-path version) requirements))))

  (let* ((requires (go.mod-directives go.mod 'require))
         (replaces (go.mod-directives go.mod 'replace))
         (requirements (fold require '() requires))
         (result (fold replace requirements replaces)))
    (log.debug "requires:~% ~S~%replaces:~% ~S~%result:~% ~S" requires replaces result)
    result))

;; Prevent inlining of this procedure, which is accessed by unit tests.
(set! go.mod-requirements go.mod-requirements)

(define-record-type <vcs>
  (%make-vcs url-prefix root-regex type)
  vcs?
  (url-prefix vcs-url-prefix)
  (root-regex vcs-root-regex)
  (type vcs-type))

(define (make-vcs prefix regexp type)
  (%make-vcs prefix (make-regexp regexp) type))

;; TODO use define-constant
(define +known-vcs+
  ;; See the following URL for the official Go equivalent:
  ;; https://github.com/golang/go/blob/846dce9d05f19a1f53465e62a304dea21b99f910/src/cmd/go/internal/vcs/vcs.go#L1026-L1087
  (list
   (make-vcs
    "github.com"
    "^(github\\.com/[A-Za-z0-9_.\\-]+/[A-Za-z0-9_.\\-]+)(/[A-Za-z0-9_.\\-]+)*$"
    'git)
   (make-vcs
    "bitbucket.org"
    "^(bitbucket\\.org/([A-Za-z0-9_.\\-]+/[A-Za-z0-9_.\\-]+))(/[A-Za-z0-9_.\\-]+)*$"
    'unknown)
   (make-vcs
    "hub.jazz.net/git/"
    "^(hub\\.jazz\\.net/git/[a-z0-9]+/[A-Za-z0-9_.\\-]+)(/[A-Za-z0-9_.\\-]+)*$"
    'git)
   (make-vcs
    "git.apache.org"
    "^(git\\.apache\\.org/[a-z0-9_.\\-]+\\.git)(/[A-Za-z0-9_.\\-]+)*$"
    'git)
   (make-vcs
    "git.openstack.org"
    "^(git\\.openstack\\.org/[A-Za-z0-9_.\\-]+/[A-Za-z0-9_.\\-]+)(\\.git)?\
(/[A-Za-z0-9_.\\-]+)*$"
    'git)))

(define (module-path->repository-root module-path)
  "Infer the repository root from a module path.  Go modules can be
defined at any level of a repository tree, but querying for the meta tag
usually can only be done from the web page at the root of the repository,
hence the need to derive this information."

  ;; For reference, see: https://golang.org/ref/mod#vcs-find.
  (define vcs-qualifiers '(".bzr" ".fossil" ".git" ".hg" ".svn"))

  (define (vcs-qualified-module-path->root-repo-url module-path)
    (let* ((vcs-qualifiers-group (string-join vcs-qualifiers "|"))
           (pattern (format #f "^(.*(~a))(/|$)" vcs-qualifiers-group)))
      (and=> (string-match pattern module-path)
             (cut match:substring <> 1))))

  (or (and=> (find (lambda (vcs)
                     (string-prefix? (vcs-url-prefix vcs) module-path))
                   +known-vcs+)
             (lambda (vcs)
               (match:substring (regexp-exec (vcs-root-regex vcs)
                                             module-path)
                                1)))
      (vcs-qualified-module-path->root-repo-url module-path)
      module-path))

(define* (go-module->guix-package-name module-path)
  "Converts a module's path to the canonical Guix format for Go packages."
  ;; Map dot, slash, underscore and tilde characters to hyphens.
  (let ((module-path* (string-map (lambda (c)
                                    (if (member c '(#\. #\/ #\_ #\~))
                                        #\-
                                        c))
                                  module-path)))
    (string-downcase (string-append "go-" module-path*))))

(define (strip-.git-suffix/maybe repo-url)
  "Strip a repository URL '.git' suffix from REPO-URL if hosted at GitHub."
  (match repo-url
    ((and (? (cut string-prefix? "https://github.com" <>))
          (? (cut string-suffix? ".git" <>)))
     (string-drop-right repo-url 4))
    (_ repo-url)))

(define-record-type <module-meta>
  (make-module-meta import-prefix vcs repo-root)
  module-meta?
  (import-prefix module-meta-import-prefix)
  (vcs module-meta-vcs)                 ;a symbol
  (repo-root module-meta-repo-root))

(define (fetch-module-meta-data module-path)
  "Retrieve the module meta-data from its landing page.  This is necessary
because goproxy servers don't currently provide all the information needed to
build a package."
  (define (go-import->module-meta content-text)
    (match (string-tokenize content-text char-set:graphic)
      ((root-path vcs repo-url)
       (make-module-meta root-path (string->symbol vcs)
                         (strip-.git-suffix/maybe repo-url)))))
  ;; <meta name="go-import" content="import-prefix vcs repo-root">
  (let* ((url (format #f "https://~a?go-get=1" module-path))
         (meta-data (http-fetch* url #:accept-all-response-codes? #true))
         (select (sxpath `(// (meta (@ (equal? (name "go-import"))))
                              // content)))
         (sxml (html->sxml meta-data #:strict? #t))
         (selected (select sxml)))
    (log.debug "The fetched meta-data from ~A is:~%~S" url selected)
    (match selected
      (() #f)                           ;nothing selected
      ((('content content-text) ..1)
       (or
        (find (lambda (meta)
                (string-prefix? (module-meta-import-prefix meta) module-path))
              (map go-import->module-meta content-text))
        ;; Fallback to the first meta if no import prefixes match.
        (go-import->module-meta (first content-text)))))))

(define (module-meta-data-repo-url meta-data goproxy)
  "Return the URL where the fetcher which will be used can download the
source."
  (if (member (module-meta-vcs meta-data) '(fossil mod))
      goproxy
      (module-meta-repo-root meta-data)))

(define* (git-checkout-hash url reference algorithm)
  "Return the ALGORITHM hash of the checkout of URL at REFERENCE, a commit or
tag."
  (log.info "Fetching git repo at ~S, reference ~S" url reference)
  (define cache
    (string-append (or (getenv "TMPDIR") "/tmp")
                   "/guix-import-go-"
                   (passwd:name (getpwuid (getuid)))))

  ;; Use a custom cache to avoid cluttering the default one under
  ;; ~/.cache/guix, but choose one under /tmp so that it's persistent across
  ;; subsequent "guix import" invocations.
  (mkdir-p cache)
  (chmod cache #o700)
  (let-values (((checkout commit _)
                (parameterize ((%repository-cache-directory cache))
                  (update-cached-checkout url
                                          #:ref
                                          `(tag-or-commit . ,reference)))))
    (log.debug " hashing at checkout ~S, commit ~S, reference ~S" checkout commit reference)
    (file-hash* checkout #:algorithm algorithm #:recursive? #true)))

(define (vcs->origin vcs-type vcs-repo-url version)
  "Generate the `origin' block of a package depending on what type of source
control system is being used."
  (case vcs-type
    ((git)
     (let* ((git-ref        (go-version->git-ref version))
            (plain-version? (string=? version git-ref))
            (v-prefixed?    (string-prefix? "v" version)))
       (log.debug "Version ~S converted to git reference ~S" version git-ref)
       `(origin
          (method git-fetch)
          (uri (git-reference
                (url ,vcs-repo-url)
                ;; This is done because the version field of the package,
                ;; which the generated quoted expression refers to, has been
                ;; stripped of any 'v' prefixed.
                (commit ,(if (and plain-version? v-prefixed?)
                             '(string-append "v" version)
                             git-ref))))
          (file-name (git-file-name name version))
          (sha256
           (base32
            ,(bytevector->nix-base32-string
              (git-checkout-hash vcs-repo-url git-ref (hash-algorithm sha256))))))))
    ((hg)
     `(origin
        (method hg-fetch)
        (uri (hg-reference
              (url ,vcs-repo-url)
              (changeset ,version)))
        (file-name (string-append name "-" version "-checkout"))
        (sha256
         (base32
          ;; FIXME: populate hash for hg repo checkout
          "0000000000000000000000000000000000000000000000000000"))))
    ((svn)
     `(origin
        (method svn-fetch)
        (uri (svn-reference
              (url ,vcs-repo-url)
              (revision (string->number version))))
        (file-name (string-append name "-" version "-checkout"))
        (sha256
         (base32
          ;; FIXME: populate hash for svn repo checkout
          "0000000000000000000000000000000000000000000000000000"))))
    (else
     (raise
      (formatted-message (G_ "unsupported vcs type '~a' for package '~a'")
                         vcs-type vcs-repo-url)))))

(define (strip-v-prefix version)
  "Strip from VERSION the \"v\" prefix that Go uses."
  (string-trim version #\v))

(define (ensure-v-prefix version)
  "Add a \"v\" prefix to VERSION if it does not already have one."
  (if (string-prefix? "v" version)
      version
      (string-append "v" version)))

(define (validate-version version available-versions module-path)
  "Raise an error if VERSION is not among AVAILABLE-VERSIONS, unless VERSION
is a pseudo-version.  Return VERSION."
  ;; Pseudo-versions do not appear in the versions list; skip the
  ;; following check.
  (if (or (go-pseudo-version? version)
          (member version available-versions))
      version
      (raise
       (make-compound-condition
        (formatted-message (G_ "version ~a of ~a is not available~%")
                           version module-path available-versions)
        (condition (&fix-hint
                    (hint (format #f (G_ "Pick one of the following \
available versions:~{ ~a~}.")
                                  (map strip-v-prefix
                                       available-versions)))))))))
(define *module-path->import-path*
  ;; There's no other way to derive this information, at least that I know of.
  '(("github.com/google/go-cmp" . "github.com/google/go-cmp/cmp")
    ("github.com/sergi/go-diff" . "github.com/sergi/go-diff/diffmatchpatch")
    ("github.com/davecgh/go-spew" . "github.com/davecgh/go-spew/spew")
    ("github.com/beorn7/perks" . "github.com/beorn7/perks/quantile")
    ("github.com/census-instrumentation/opencensus-proto" .
     "github.com/census-instrumentation/opencensus-proto/gen-go")))

(define* (go-module->guix-package module-path #:key
                                  (goproxy "https://proxy.golang.org")
                                  version
                                  pin-versions?)
  "Return the package S-expression corresponding to MODULE-PATH at VERSION, a Go package.
The meta-data is fetched from the GOPROXY server and https://pkg.go.dev/.
When VERSION is unspecified, the latest version available is used."
  (log.info "~%Processing go module ~A@~A" module-path version)
  (let* ((available-versions (go-module-available-versions goproxy module-path))
         (version* (validate-version
                    (or (and version (ensure-v-prefix version))
                        (go-module-version-string goproxy module-path)) ;latest
                    available-versions
                    module-path))
         (go.mod (fetch-go.mod goproxy module-path version*))
         (dependencies+versions (go.mod-requirements (parse-go.mod go.mod)))
         (dependencies (if pin-versions?
                           dependencies+versions
                           (map car dependencies+versions)))
         (guix-name (go-module->guix-package-name module-path))
         (repo-root (module-path->repository-root module-path))
         ;; The VCS type and URL are not included in goproxy information. For
         ;; this we need to fetch it from the official module page.
         (meta-data (fetch-module-meta-data repo-root))
         (module-root-path (module-meta-import-prefix meta-data))
         (vcs-type (module-meta-vcs meta-data))
         (vcs-repo-url (module-meta-data-repo-url meta-data goproxy))
         (raw-subdir (if (< (string-length module-root-path)
                            (string-length module-path))
                         (substring module-path
                                    (+ 1 (string-length module-root-path)))
                         #false))
         (module-subdirectory raw-subdir)
         (major-version (and=>
                         (and raw-subdir
                              (string-match ".*v([0-9]+)$" raw-subdir))
                         (lambda (m)
                           (let* ((v-postfix (match:substring m 1))
                                  (ver (string->number v-postfix)))
                             (log.debug " ~A matched as having a version-postfix: ~A"
                                        raw-subdir v-postfix)
                             (set! module-subdirectory
                                   (substring raw-subdir 0
                                              ;; Don't go negative when
                                              ;; raw-subdir is a simple "v2".
                                              (max 0
                                                   (- (string-length raw-subdir)
                                                      (string-length v-postfix)
                                                      ;; Drop two slashes.
                                                      2))))
                             (when (string-null? module-subdirectory)
                               (set! module-subdirectory #false))
                             (unless (integer? ver)
                               (raise
                                (formatted-message (G_ "failed to parse version postfix from '~a' for package '~a'")
                                                   raw-subdir module-path)))
                             ;; TODO assert that major-version matches the first number in version
                             ;; TODO assert that only version 1.x.y is allowed without a /v[major-version] postfix
                             ver))))
         (vcs-tag (if module-subdirectory
                      (string-append module-subdirectory "/" version*)
                      version*))
         (synopsis (or (false-if-exception
                        (go-package-synopsis module-path))
                       (begin
                         (warning (G_ "Failed to fetch synopsis for ~S.~%")
                                  module-path)
                         "TODO FIXME")))
         (description (or (false-if-exception
                           (go-package-description module-path))
                          (begin
                            (warning (G_ "Failed to fetch description for ~S.~%")
                                     module-path)
                            "TODO FIXME")))
         (licenses (or (false-if-exception
                        (go-package-licenses module-path))
                       (begin
                         (warning (G_ "Failed to fetch license for ~S.~%")
                                  module-path)
                         '("unknown-license!")))))
    ;; Maybe split comma separated list of licenses in a single string
    (when (and (= 1 (length licenses))
               (string? (first licenses)))
      (let ((pieces (map string-trim-both
                         (remove! string-null?
                                  (string-split (first licenses) #\,)))))
        (when (< 1 (length pieces))
          (set! licenses pieces))))
    (log.debug " meta-data: ~S~% raw-subdir: ~S, module-subdirectory: ~S, \
major-version: ~S"
               meta-data raw-subdir module-subdirectory major-version)
    (log.debug " dependencies:~%~S" dependencies+versions)
    (let* ((import-path unpack-path
            (if module-subdirectory
                (values module-path module-root-path)
                (let ((import-path (assoc-ref *module-path->import-path*
                                              module-path)))
                  (if import-path
                      (begin
                        (log.debug "matched as an import-path exception: ~S" import-path)
                        (values import-path module-path))
                      (values module-path #f))))))
      (values
       `(package
          (name ,guix-name)
          (version ,(strip-v-prefix version*))
          (source
           ,(vcs->origin vcs-type vcs-repo-url vcs-tag))
          (build-system go-build-system)
          (arguments
           '(#:import-path ,import-path
             ,@(if unpack-path
                   `(#:unpack-path ,unpack-path)
                   '())))
          ,@(maybe-propagated-inputs
             (map (match-lambda
                    ((name version)
                     (list (go-module->guix-package-name name)
                           (strip-v-prefix version)))
                    (name
                     (go-module->guix-package-name name)))
                  dependencies))
          (home-page ,(format #f "https://~a" module-root-path))
          (synopsis ,synopsis)
          (description ,(and=> description beautify-description))
          (license ,(match (list->licenses licenses)
                      (() #f)                       ;unknown license
                      ((license)                    ;a single license
                       license)
                      ((license ...)                ;a list of licenses
                       `(list ,@license)))))
       (if pin-versions?
           dependencies+versions
           dependencies)))))

(define (go-module->guix-package* . args)
  ;; Disable output buffering so that the following warning gets printed
  ;; consistently.
  (setvbuf (current-error-port) 'none)
  (setvbuf (current-warning-port) 'none)
  (let* ((package-name (match args ((name _ ...) name)))
         ;; Use report-all-errors? for debugging purposes only, because
         ;; e.g. getaddrinfo is not reentrant and therefore we must unwind
         ;; before retrying.
         (report-all-errors? #false)
         (report-network-error
          (lambda (reason)
            (warning (G_ "Failing to import package ~S.
reason: ~A.~%")
                     package-name reason))))
    (let loop ((attempts 0))
      (when (> attempts 0)
        (sleep 3)
        (log.info "~%Retrying, attempt ~s." attempts))
      (cond
       ((> attempts 60)
        (warning (G_ "Giving up on importing package ~s.
This package and its dependencies won't be imported.~%")
                 package-name)
        (values #f '()))
       (else
        (guard (c ((http-get-error? c)
                   (report-network-error
                    (format #f "~s could not be fetched: HTTP error ~a (~s)"
                            (uri->string (http-get-error-uri c))
                            (http-get-error-code c)
                            (http-get-error-reason c)))
                   (loop (+ 1 attempts)))
                  ((eq? (exception-kind c)
                        'getaddrinfo-error)
                   (report-network-error "DNS lookup failed")
                   (loop (+ 1 attempts)))
                  ((and (eq? (exception-kind c)
                             'git-error)
                        (eq? (git-error-class (first (exception-args c)))
                             GITERR_NET))
                   (report-network-error "network error coming from git")
                   (loop (+ 1 attempts)))
                  (else
                   (let ((port (current-warning-port)))
                     (format port "Unexpected error, will skip ~S.~%reason: "
                             package-name)
                     ;; Printing a backtrace here is not very useful: it is
                     ;; cut off because GUARD unwinds.
                     (print-exception port (stack-ref (make-stack #t) 1)
                                      c (exception-args c))
                     (display-backtrace (make-stack #t) port))
                   ;; give up on this entry
                   (values #f '())))
          (with-exception-handler
              (lambda (c)
                (when report-all-errors?
                  (let ((port (current-warning-port)))
                    (format port "*** exception while importing:~%")
                    (print-exception port (stack-ref (make-stack #t) 1)
                                     c (exception-args c))
                    (format port "*** printing backtrace:~%")
                    (display-backtrace (make-stack #t) port)
                    ;; DISPLAY-BACKTRACE can fail, so it's better to make its
                    ;; exit also visible.
                    (format port "*** done printing backtrace~%")))
                (raise-continuable c))
            (lambda ()
              (apply go-module->guix-package args))
            #:unwind? (not report-all-errors?))))))))

(define* (go-module-recursive-import package-name
                                     #:key (goproxy "https://proxy.golang.org")
                                     version
                                     pin-versions?)
  (log.info "Initiating recursive import of ~a, version ~a" package-name version)
  (recursive-import
   package-name
   #:repo->guix-package
   (memoize
    (lambda* (name #:key version repo)
      (receive (package-sexp dependencies)
          (go-module->guix-package* name #:goproxy goproxy
                                    #:version version
                                    #:pin-versions? pin-versions?)
        (values package-sexp dependencies))))
   #:guix-name go-module->guix-package-name
   #:version version))

debug log:

solving fbed3ca88b ...
found fbed3ca88b in https://yhetil.org/guix-patches/20220503114301.9524-10-attila@lendvai.name/
found 25d424c1ac in https://yhetil.org/guix-patches/20220503114301.9524-9-attila@lendvai.name/
found ce6463cc51 in https://yhetil.org/guix-patches/20220503114301.9524-8-attila@lendvai.name/
found 6871132a70 in https://yhetil.org/guix-patches/20220503114301.9524-7-attila@lendvai.name/
found a08005d090 in https://yhetil.org/guix-patches/20220503114301.9524-6-attila@lendvai.name/
found 6b0fbaa8b6 in https://yhetil.org/guix-patches/20220503114301.9524-5-attila@lendvai.name/
found a115c61adc in https://yhetil.org/guix-patches/20220503114301.9524-4-attila@lendvai.name/
found 0af5e4b5e2 in https://yhetil.org/guix-patches/20220503114301.9524-3-attila@lendvai.name/
found bb4bb7bb7b in https://yhetil.org/guix-patches/20220503114301.9524-2-attila@lendvai.name/
found d00c13475a in https://git.savannah.gnu.org/cgit/guix.git
preparing index
index prepared:
100644 d00c13475a06d53fdf2edd946995125add8661c5	guix/import/go.scm

applying [1/9] https://yhetil.org/guix-patches/20220503114301.9524-2-attila@lendvai.name/
diff --git a/guix/import/go.scm b/guix/import/go.scm
index d00c13475a..bb4bb7bb7b 100644


applying [2/9] https://yhetil.org/guix-patches/20220503114301.9524-3-attila@lendvai.name/
diff --git a/guix/import/go.scm b/guix/import/go.scm
index bb4bb7bb7b..0af5e4b5e2 100644


applying [3/9] https://yhetil.org/guix-patches/20220503114301.9524-4-attila@lendvai.name/
diff --git a/guix/import/go.scm b/guix/import/go.scm
index 0af5e4b5e2..a115c61adc 100644


applying [4/9] https://yhetil.org/guix-patches/20220503114301.9524-5-attila@lendvai.name/
diff --git a/guix/import/go.scm b/guix/import/go.scm
index a115c61adc..6b0fbaa8b6 100644


applying [5/9] https://yhetil.org/guix-patches/20220503114301.9524-6-attila@lendvai.name/
diff --git a/guix/import/go.scm b/guix/import/go.scm
index 6b0fbaa8b6..a08005d090 100644


applying [6/9] https://yhetil.org/guix-patches/20220503114301.9524-7-attila@lendvai.name/
diff --git a/guix/import/go.scm b/guix/import/go.scm
index a08005d090..6871132a70 100644


applying [7/9] https://yhetil.org/guix-patches/20220503114301.9524-8-attila@lendvai.name/
diff --git a/guix/import/go.scm b/guix/import/go.scm
index 6871132a70..ce6463cc51 100644


applying [8/9] https://yhetil.org/guix-patches/20220503114301.9524-9-attila@lendvai.name/
diff --git a/guix/import/go.scm b/guix/import/go.scm
index ce6463cc51..25d424c1ac 100644


applying [9/9] https://yhetil.org/guix-patches/20220503114301.9524-10-attila@lendvai.name/
diff --git a/guix/import/go.scm b/guix/import/go.scm
index 25d424c1ac..fbed3ca88b 100644

Checking patch guix/import/go.scm...
Applied patch guix/import/go.scm cleanly.
Checking patch guix/import/go.scm...
Applied patch guix/import/go.scm cleanly.
Checking patch guix/import/go.scm...
Applied patch guix/import/go.scm cleanly.
Checking patch guix/import/go.scm...
Applied patch guix/import/go.scm cleanly.
Checking patch guix/import/go.scm...
Applied patch guix/import/go.scm cleanly.
Checking patch guix/import/go.scm...
Applied patch guix/import/go.scm cleanly.
Checking patch guix/import/go.scm...
Applied patch guix/import/go.scm cleanly.
Checking patch guix/import/go.scm...
Applied patch guix/import/go.scm cleanly.
Checking patch guix/import/go.scm...
Applied patch guix/import/go.scm cleanly.

index at:
100644 fbed3ca88b42e630fcc55f6560472cd9e7cb1d6e	guix/import/go.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).