Skip to content
Snippets Groups Projects
  • Ludovic Courtès's avatar
    233e7676
    Update license headers. · 233e7676
    Ludovic Courtès authored
    Change all license headers, except guix/build/* and ld-wrapper.scm, with
    this code:
    
      (use-modules (guix build utils)
    	       (srfi srfi-1))
    
      (fluid-set! %default-port-encoding "UTF-8")
    
      (substitute* (remove (lambda (f)
    			 (or (string-contains f ".tar.")
    			     (string-contains f ".git/")
    			     (string-contains f ".so")
    			     (string-suffix? ".o" f)
    			     (string-suffix? ".a" f)
    			     (string-suffix? ".go" f)
    			     (string-suffix? ".pdf" f)
    			     (string-suffix? ".png" f)
    			     (string-suffix? ".info" f)
    			     (equal? (basename f) "guix-daemon")
    			     (equal? (basename f) "nix-setuid-helper")
    			     (string-contains f "nix-upstream/")
    			     (string-contains f "distro/packages/bootstrap/")))
    		       (find-files "." "\\.[a-z]+$"))
        (("^([[:graph:]]+) This file is part of Guix." _ comment-start)
         (string-append comment-start " This file is part of GNU Guix."))
        (("^([[:graph:]]+) Guix --- Nix package management.*" _ comment-start)
         (string-append comment-start
    		    " GNU Guix --- Functional package management for GNU\n"))
        (("^([[:graph:]]+) Guix is " _ comment-start)
         (string-append comment-start " GNU Guix is "))
        (("^([[:graph:]]+) along with Guix." _ comment-start)
         (string-append comment-start " along with GNU Guix."))
        (("^([[:graph:]]+) Copyright \\(C\\)" _ comment-start)
         (string-append comment-start " Copyright ©")))
    
    Change headers using C-style comments manually.
    233e7676
    History
    Update license headers.
    Ludovic Courtès authored
    Change all license headers, except guix/build/* and ld-wrapper.scm, with
    this code:
    
      (use-modules (guix build utils)
    	       (srfi srfi-1))
    
      (fluid-set! %default-port-encoding "UTF-8")
    
      (substitute* (remove (lambda (f)
    			 (or (string-contains f ".tar.")
    			     (string-contains f ".git/")
    			     (string-contains f ".so")
    			     (string-suffix? ".o" f)
    			     (string-suffix? ".a" f)
    			     (string-suffix? ".go" f)
    			     (string-suffix? ".pdf" f)
    			     (string-suffix? ".png" f)
    			     (string-suffix? ".info" f)
    			     (equal? (basename f) "guix-daemon")
    			     (equal? (basename f) "nix-setuid-helper")
    			     (string-contains f "nix-upstream/")
    			     (string-contains f "distro/packages/bootstrap/")))
    		       (find-files "." "\\.[a-z]+$"))
        (("^([[:graph:]]+) This file is part of Guix." _ comment-start)
         (string-append comment-start " This file is part of GNU Guix."))
        (("^([[:graph:]]+) Guix --- Nix package management.*" _ comment-start)
         (string-append comment-start
    		    " GNU Guix --- Functional package management for GNU\n"))
        (("^([[:graph:]]+) Guix is " _ comment-start)
         (string-append comment-start " GNU Guix is "))
        (("^([[:graph:]]+) along with Guix." _ comment-start)
         (string-append comment-start " along with GNU Guix."))
        (("^([[:graph:]]+) Copyright \\(C\\)" _ comment-start)
         (string-append comment-start " Copyright ©")))
    
    Change headers using C-style comments manually.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.