~ruther/guix-local

ref: 7facbf2b58f80afffedbb9230ec7ab9b61232dfe guix-local/guix/licenses.scm -rw-r--r-- 8.6 KiB
ef7cf291 — Nikita Karetnikov 13 years ago
licenses: Add 'agpl3' and 'agpl3+'.

* guix/licenses.scm (agpl3, agpl3+): New variables.
4928e500 — Ludovic Courtès 13 years ago
Merge branch 'master' into core-updates

Conflicts:
	Makefile.am
	gnu/packages/base.scm
bbd60260 — Nikita Karetnikov 13 years ago
licenses: Add 'x11-style'.

* guix/licenses.scm (x11-style): New variable.
b1426f17 — Cyril Roelandt 13 years ago
gnu: Add tmux.  licenses: add ISC.

* gnu/packages/tmux.scm: New file.
* Makefile.am (MODULES): Use it.
* guix/licenses.scm: add ISC.
6d36a6f3 — Andreas Enge 13 years ago
licenses: Add new meta-license fsf-free.

* guix/licenses.scm (fsf-free): New record with constructor.
d192efae — Cyril Roelandt 13 years ago
gnu: Add OCaml. licenses: Add QPL.

* gnu/packages/ocaml.scm: New file.
* Makefile.am (MODULES): Add it.
* guix/licenses.scm: New variable.
b387a1c5 — Andreas Enge 13 years ago
gnu: Add Freetype.
licenses: Add freetype license.

* gnu/packages/freetype.scm: New file.
* guix/licenses.scm (freetype): New variable.
* Makefile.am (MODULES): Add freetype.scm.
99e6c1b1 — Andreas Enge 13 years ago
licenses: Add 'vim'.

* guix/licenses.scm (vim): New variable.
e2034de5 — Nikita Karetnikov 13 years ago
licenses: Add 'psfl'.

* guix/licenses.scm (psfl): New variable.
1ca98280 — Andreas Enge 13 years ago
licenses: Add 'openldap2.8'.

* guix/licenses.scm (openldap2.8): New variable.
4050e5d6 — Ludovic Courtès 13 years ago
Merge branch 'master' into core-updates

Conflicts:
	build-aux/download.scm
	distro/packages/autotools.scm
	distro/packages/base.scm
	distro/packages/bootstrap.scm
	distro/packages/lsh.scm
	distro/packages/make-bootstrap.scm
	distro/packages/ncurses.scm
	distro/packages/perl.scm
	tests/derivations.scm
	tests/union.scm
233e7676 — Ludovic Courtès 13 years ago
Update license headers.

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.
f15b31c5 — Nikita Karetnikov 13 years ago
licenses: Add 'bsd-style', 'expat', 'gpl1', 'gpl1+', 'lgpl2.0', and 'lgpl2.0+'.

* guix/licenses.scm (bsd-style, expat, gpl1, gpl1+)
  (lgpl2.0, lgpl2.0+): New variables.
4d152bf1 — Ludovic Courtès 13 years ago
Merge branch 'master' into nix-integration

Conflicts:
	guix/store.scm
838d78e3 — Nikita Karetnikov 13 years ago
Add (guix licenses).

* guix/licenses.scm: New file.
* Makefile.am (MODULES): Add it.