Gentoo Archives: gentoo-commits

From: Alexis Ballier <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] dev/aballier:master commit in: scripts/texlive/tlpsrc/
Date: Wed, 03 Oct 2012 11:04:47
Message-Id: 1349262242.2804ad30ff3ef67ac799b80cdd611e156a7efde4.aballier@gentoo
1 commit: 2804ad30ff3ef67ac799b80cdd611e156a7efde4
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Tue Oct 2 10:55:05 2012 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 3 11:04:02 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=dev/aballier.git;a=commit;h=2804ad30
7
8 Don't map any catalogue licenses to "as-is".
9
10 This affects the following catalogue licenses:
11 noinfo -> TeX-noinfo
12 nosource -> TeX-nosource
13 other-free -> TeX-other-free
14 other-nonfree -> TeX-other-nonfree
15 other -> (commented out, doesn't occur in TeX Live)
16 unknown -> (commented out, doesn't occur in TeX Live)
17
18 Furthermore, the nosell and nocommercial licenses don't occur any more
19 and is commented out, too. (The nosell license has been deleted from
20 the Portage tree.)
21
22 ---
23 .../tlpsrc/cataloguelicense2gentoolicense.sh | 24 ++++++++++----------
24 1 files changed, 12 insertions(+), 12 deletions(-)
25
26 diff --git a/scripts/texlive/tlpsrc/cataloguelicense2gentoolicense.sh b/scripts/texlive/tlpsrc/cataloguelicense2gentoolicense.sh
27 index e3b41e0..2b99ffe 100755
28 --- a/scripts/texlive/tlpsrc/cataloguelicense2gentoolicense.sh
29 +++ b/scripts/texlive/tlpsrc/cataloguelicense2gentoolicense.sh
30 @@ -19,20 +19,20 @@ while [ $# -gt 0 ] ; do
31 echo "LPPL-1.3";;
32 gfsl)
33 echo "LPPL-1.3";;
34 - unknown)
35 - echo "as-is";;
36 + #unknown)
37 + # echo "TeX-unknown";;
38 noinfo)
39 - echo "as-is";;
40 + echo "TeX-noinfo";;
41 nosource)
42 - echo "as-is";;
43 + echo "TeX-nosource";;
44 collection)
45 echo "GPL-2";;
46 other-free)
47 - echo "as-is";;
48 - other)
49 - echo "as-is";;
50 + echo "TeX-other-free";;
51 + #other)
52 + # echo "TeX-other";;
53 other-nonfree)
54 - echo "as-is";;
55 + echo "TeX-other-nonfree";;
56 lgpl)
57 echo "LGPL-2";;
58 lgpl2.1)
59 @@ -53,10 +53,10 @@ while [ $# -gt 0 ] ; do
60 echo "FDL-1.1";;
61 ofl)
62 echo "OFL";;
63 - nosell)
64 - echo "nosell";;
65 - nocommercial)
66 - echo "nosell";;
67 + #nosell)
68 + # echo "nosell";;
69 + #nocommercial)
70 + # echo "nosell";;
71 *)
72 echo "The $1 license is not mapped yet!"
73 exit 1;;