author | wenzelm |
Mon, 21 Mar 2022 11:55:51 +0100 | |
changeset 75291 | e4d6b9bd5071 |
parent 75202 | 4fdde010086f |
child 75393 | 87ebf5a50283 |
permissions | -rw-r--r-- |
64202 | 1 |
/* Title: Pure/Admin/build_release.scala |
2 |
Author: Makarius |
|
3 |
||
4 |
Build full Isabelle distribution from repository. |
|
5 |
*/ |
|
6 |
||
7 |
package isabelle |
|
8 |
||
9 |
||
10 |
object Build_Release |
|
11 |
{ |
|
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
12 |
/** release context **/ |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
13 |
|
73629 | 14 |
private def execute(dir: Path, script: String): Unit = |
15 |
Isabelle_System.bash(script, cwd = dir.file).check |
|
16 |
||
17 |
private def execute_tar(dir: Path, args: String, strip: Int = 0): Unit = |
|
18 |
Isabelle_System.gnutar(args, dir = dir, strip = strip).check |
|
19 |
||
74857
25e9e7088561
address problems with launch4j and jdk-17 (see also 41d009462d3c);
wenzelm
parents:
74856
diff
changeset
|
20 |
private def bash_java_opens(args: String*): String = |
25e9e7088561
address problems with launch4j and jdk-17 (see also 41d009462d3c);
wenzelm
parents:
74856
diff
changeset
|
21 |
Bash.strings(args.toList.flatMap(arg => List("--add-opens", arg + "=ALL-UNNAMED"))) |
25e9e7088561
address problems with launch4j and jdk-17 (see also 41d009462d3c);
wenzelm
parents:
74856
diff
changeset
|
22 |
|
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
23 |
object Release_Context |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
24 |
{ |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
25 |
def apply( |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
26 |
target_dir: Path, |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
27 |
release_name: String = "", |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
28 |
components_base: Path = Components.default_components_base, |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
29 |
progress: Progress = new Progress): Release_Context = |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
30 |
{ |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
31 |
val date = Date.now() |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
32 |
val dist_name = proper_string(release_name) getOrElse ("Isabelle_" + Date.Format.date(date)) |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
33 |
val dist_dir = (target_dir + Path.explode("dist-" + dist_name)).absolute |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
34 |
new Release_Context(release_name, dist_name, dist_dir, components_base, progress) |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
35 |
} |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
36 |
} |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
37 |
|
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
38 |
class Release_Context private[Build_Release]( |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
39 |
val release_name: String, |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
40 |
val dist_name: String, |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
41 |
val dist_dir: Path, |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
42 |
val components_base: Path, |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
43 |
val progress: Progress) |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
44 |
{ |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
45 |
override def toString: String = dist_name |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
46 |
|
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
47 |
val isabelle: Path = Path.explode(dist_name) |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
48 |
val isabelle_dir: Path = dist_dir + isabelle |
73629 | 49 |
val isabelle_archive: Path = dist_dir + isabelle.tar.gz |
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
50 |
val isabelle_library_archive: Path = dist_dir + Path.explode(dist_name + "_library.tar.gz") |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
51 |
|
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
52 |
def other_isabelle(dir: Path): Other_Isabelle = |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
53 |
Other_Isabelle(dir + isabelle, |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
54 |
isabelle_identifier = dist_name + "-build", |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
55 |
progress = progress) |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
56 |
|
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
57 |
def make_announce(id: String): Unit = |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
58 |
{ |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
59 |
if (release_name.isEmpty) { |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
60 |
File.write(isabelle_dir + Path.explode("ANNOUNCE"), |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
61 |
""" |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
62 |
IMPORTANT NOTE |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
63 |
============== |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
64 |
|
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
65 |
This is a snapshot of Isabelle/""" + id + """ from the repository. |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
66 |
""") |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
67 |
} |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
68 |
} |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
69 |
|
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
70 |
def make_contrib(): Unit = |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
71 |
{ |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
72 |
Isabelle_System.make_directory(Components.contrib(isabelle_dir)) |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
73 |
File.write(Components.contrib(isabelle_dir, name = "README"), |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
74 |
"""This directory contains add-on components that contribute to the main |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
75 |
Isabelle distribution. Separate licensing conditions apply, see each |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
76 |
directory individually. |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
77 |
""") |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
78 |
} |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
79 |
|
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
80 |
def bundle_info(platform: Platform.Family.Value): Bundle_Info = |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
81 |
platform match { |
73637 | 82 |
case Platform.Family.linux_arm => |
83 |
Bundle_Info(platform, "Linux (ARM)", dist_name + "_linux_arm.tar.gz") |
|
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
84 |
case Platform.Family.linux => Bundle_Info(platform, "Linux", dist_name + "_linux.tar.gz") |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
85 |
case Platform.Family.macos => Bundle_Info(platform, "macOS", dist_name + "_macos.tar.gz") |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
86 |
case Platform.Family.windows => Bundle_Info(platform, "Windows", dist_name + ".exe") |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
87 |
} |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
88 |
} |
69174 | 89 |
|
90 |
sealed case class Bundle_Info( |
|
69410 | 91 |
platform: Platform.Family.Value, |
69174 | 92 |
platform_description: String, |
69432
d072f3287ffa
discontinued somewhat point dmg: plain .tar.gz is smaller and more convenient to install;
wenzelm
parents:
69425
diff
changeset
|
93 |
name: String) |
69174 | 94 |
{ |
69432
d072f3287ffa
discontinued somewhat point dmg: plain .tar.gz is smaller and more convenient to install;
wenzelm
parents:
69425
diff
changeset
|
95 |
def path: Path = Path.explode(name) |
69174 | 96 |
} |
97 |
||
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
98 |
|
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
99 |
|
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
100 |
/** release archive **/ |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
101 |
|
73629 | 102 |
val ISABELLE: Path = Path.basic("Isabelle") |
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
103 |
val ISABELLE_ID: Path = Path.explode("etc/ISABELLE_ID") |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
104 |
val ISABELLE_TAGS: Path = Path.explode("etc/ISABELLE_TAGS") |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
105 |
val ISABELLE_IDENTIFIER: Path = Path.explode("etc/ISABELLE_IDENTIFIER") |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
106 |
|
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
107 |
object Release_Archive |
69174 | 108 |
{ |
73629 | 109 |
def make(bytes: Bytes, rename: String = ""): Release_Archive = |
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
110 |
{ |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
111 |
Isabelle_System.with_tmp_dir("tmp")(dir => |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
112 |
Isabelle_System.with_tmp_file("archive", ext = "tar.gz")(archive_path => |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
113 |
{ |
73629 | 114 |
val isabelle_dir = Isabelle_System.make_directory(dir + ISABELLE) |
115 |
||
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
116 |
Bytes.write(archive_path, bytes) |
73629 | 117 |
execute_tar(isabelle_dir, "-xzf " + File.bash_path(archive_path), strip = 1) |
118 |
||
119 |
val id = File.read(isabelle_dir + ISABELLE_ID) |
|
120 |
val tags = File.read(isabelle_dir + ISABELLE_TAGS) |
|
121 |
val identifier = File.read(isabelle_dir + ISABELLE_IDENTIFIER) |
|
69174 | 122 |
|
73629 | 123 |
val (bytes1, identifier1) = |
124 |
if (rename.isEmpty || rename == identifier) (bytes, identifier) |
|
125 |
else { |
|
126 |
File.write(isabelle_dir + ISABELLE_IDENTIFIER, rename) |
|
127 |
Isabelle_System.move_file(isabelle_dir, dir + Path.basic(rename)) |
|
128 |
execute_tar(dir, "-czf " + File.bash_path(archive_path) + " " + Bash.string(rename)) |
|
129 |
(Bytes.read(archive_path), rename) |
|
130 |
} |
|
131 |
new Release_Archive(bytes1, id, tags, identifier1) |
|
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
132 |
}) |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
133 |
) |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
134 |
} |
69174 | 135 |
|
73629 | 136 |
def read(path: Path, rename: String = ""): Release_Archive = |
137 |
make(Bytes.read(path), rename = rename) |
|
138 |
||
139 |
def get(url: String, rename: String = "", progress: Progress = new Progress): Release_Archive = |
|
140 |
{ |
|
141 |
val bytes = |
|
142 |
if (Path.is_wellformed(url)) Bytes.read(Path.explode(url)) |
|
143 |
else Isabelle_System.download(url, progress = progress).bytes |
|
144 |
make(bytes, rename = rename) |
|
145 |
} |
|
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
146 |
} |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
147 |
|
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
148 |
case class Release_Archive private[Build_Release]( |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
149 |
bytes: Bytes, id: String, tags: String, identifier: String) |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
150 |
{ |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
151 |
override def toString: String = identifier |
69174 | 152 |
} |
153 |
||
154 |
||
155 |
||
69168
68816d1c73a7
eliminated "isabelle makedist" -- prefer Scala over bash/perl scripting;
wenzelm
parents:
69167
diff
changeset
|
156 |
/** generated content **/ |
68816d1c73a7
eliminated "isabelle makedist" -- prefer Scala over bash/perl scripting;
wenzelm
parents:
69167
diff
changeset
|
157 |
|
69395
d1c4a1dee9e7
more explicit support for Isabelle system components;
wenzelm
parents:
69392
diff
changeset
|
158 |
/* bundled components */ |
d1c4a1dee9e7
more explicit support for Isabelle system components;
wenzelm
parents:
69392
diff
changeset
|
159 |
|
69410 | 160 |
class Bundled(platform: Option[Platform.Family.Value] = None) |
69395
d1c4a1dee9e7
more explicit support for Isabelle system components;
wenzelm
parents:
69392
diff
changeset
|
161 |
{ |
d1c4a1dee9e7
more explicit support for Isabelle system components;
wenzelm
parents:
69392
diff
changeset
|
162 |
def detect(s: String): Boolean = |
d1c4a1dee9e7
more explicit support for Isabelle system components;
wenzelm
parents:
69392
diff
changeset
|
163 |
s.startsWith("#bundled") && !s.startsWith("#bundled ") |
d1c4a1dee9e7
more explicit support for Isabelle system components;
wenzelm
parents:
69392
diff
changeset
|
164 |
|
d1c4a1dee9e7
more explicit support for Isabelle system components;
wenzelm
parents:
69392
diff
changeset
|
165 |
def apply(name: String): String = |
69410 | 166 |
"#bundled" + (platform match { case None => "" case Some(plat) => "-" + plat }) + ":" + name |
69391
a3c776b9d3dd
manage components similar to makedist_bundle (still inactive);
wenzelm
parents:
69390
diff
changeset
|
167 |
|
69395
d1c4a1dee9e7
more explicit support for Isabelle system components;
wenzelm
parents:
69392
diff
changeset
|
168 |
private val Pattern1 = ("""^#bundled:(.*)$""").r |
d1c4a1dee9e7
more explicit support for Isabelle system components;
wenzelm
parents:
69392
diff
changeset
|
169 |
private val Pattern2 = ("""^#bundled-(.*):(.*)$""").r |
d1c4a1dee9e7
more explicit support for Isabelle system components;
wenzelm
parents:
69392
diff
changeset
|
170 |
|
d1c4a1dee9e7
more explicit support for Isabelle system components;
wenzelm
parents:
69392
diff
changeset
|
171 |
def unapply(s: String): Option[String] = |
d1c4a1dee9e7
more explicit support for Isabelle system components;
wenzelm
parents:
69392
diff
changeset
|
172 |
s match { |
d1c4a1dee9e7
more explicit support for Isabelle system components;
wenzelm
parents:
69392
diff
changeset
|
173 |
case Pattern1(name) => Some(name) |
69410 | 174 |
case Pattern2(Platform.Family(plat), name) if platform == Some(plat) => Some(name) |
69395
d1c4a1dee9e7
more explicit support for Isabelle system components;
wenzelm
parents:
69392
diff
changeset
|
175 |
case _ => None |
d1c4a1dee9e7
more explicit support for Isabelle system components;
wenzelm
parents:
69392
diff
changeset
|
176 |
} |
d1c4a1dee9e7
more explicit support for Isabelle system components;
wenzelm
parents:
69392
diff
changeset
|
177 |
} |
69391
a3c776b9d3dd
manage components similar to makedist_bundle (still inactive);
wenzelm
parents:
69390
diff
changeset
|
178 |
|
73340 | 179 |
def record_bundled_components(dir: Path): Unit = |
69391
a3c776b9d3dd
manage components similar to makedist_bundle (still inactive);
wenzelm
parents:
69390
diff
changeset
|
180 |
{ |
a3c776b9d3dd
manage components similar to makedist_bundle (still inactive);
wenzelm
parents:
69390
diff
changeset
|
181 |
val catalogs = |
69395
d1c4a1dee9e7
more explicit support for Isabelle system components;
wenzelm
parents:
69392
diff
changeset
|
182 |
List("main", "bundled").map((_, new Bundled())) ::: |
73637 | 183 |
Platform.Family.list.flatMap(platform => |
69410 | 184 |
List(platform.toString, "bundled-" + platform.toString). |
185 |
map((_, new Bundled(platform = Some(platform))))) |
|
69391
a3c776b9d3dd
manage components similar to makedist_bundle (still inactive);
wenzelm
parents:
69390
diff
changeset
|
186 |
|
69395
d1c4a1dee9e7
more explicit support for Isabelle system components;
wenzelm
parents:
69392
diff
changeset
|
187 |
File.append(Components.components(dir), |
69391
a3c776b9d3dd
manage components similar to makedist_bundle (still inactive);
wenzelm
parents:
69390
diff
changeset
|
188 |
terminate_lines("#bundled components" :: |
a3c776b9d3dd
manage components similar to makedist_bundle (still inactive);
wenzelm
parents:
69390
diff
changeset
|
189 |
(for { |
69395
d1c4a1dee9e7
more explicit support for Isabelle system components;
wenzelm
parents:
69392
diff
changeset
|
190 |
(catalog, bundled) <- catalogs.iterator |
71601 | 191 |
path = Components.admin(dir) + Path.basic(catalog) |
69391
a3c776b9d3dd
manage components similar to makedist_bundle (still inactive);
wenzelm
parents:
69390
diff
changeset
|
192 |
if path.is_file |
a3c776b9d3dd
manage components similar to makedist_bundle (still inactive);
wenzelm
parents:
69390
diff
changeset
|
193 |
line <- split_lines(File.read(path)) |
73987
fc363a3b690a
build.props for isabelle.jar, including isabelle.jedit;
wenzelm
parents:
73894
diff
changeset
|
194 |
if line.nonEmpty && !line.startsWith("#") |
69395
d1c4a1dee9e7
more explicit support for Isabelle system components;
wenzelm
parents:
69392
diff
changeset
|
195 |
} yield bundled(line)).toList)) |
d1c4a1dee9e7
more explicit support for Isabelle system components;
wenzelm
parents:
69392
diff
changeset
|
196 |
} |
d1c4a1dee9e7
more explicit support for Isabelle system components;
wenzelm
parents:
69392
diff
changeset
|
197 |
|
69410 | 198 |
def get_bundled_components(dir: Path, platform: Platform.Family.Value): (List[String], String) = |
69395
d1c4a1dee9e7
more explicit support for Isabelle system components;
wenzelm
parents:
69392
diff
changeset
|
199 |
{ |
69410 | 200 |
val Bundled = new Bundled(platform = Some(platform)) |
69401
7a1b7b737c02
eliminated old makedist_bundle and remote_dmg: build_release does everything in Scala;
wenzelm
parents:
69400
diff
changeset
|
201 |
val components = |
73987
fc363a3b690a
build.props for isabelle.jar, including isabelle.jedit;
wenzelm
parents:
73894
diff
changeset
|
202 |
for { Bundled(name) <- Components.read_components(dir) } yield name |
69401
7a1b7b737c02
eliminated old makedist_bundle and remote_dmg: build_release does everything in Scala;
wenzelm
parents:
69400
diff
changeset
|
203 |
val jdk_component = |
7a1b7b737c02
eliminated old makedist_bundle and remote_dmg: build_release does everything in Scala;
wenzelm
parents:
69400
diff
changeset
|
204 |
components.find(_.startsWith("jdk")) getOrElse error("Missing jdk component") |
7a1b7b737c02
eliminated old makedist_bundle and remote_dmg: build_release does everything in Scala;
wenzelm
parents:
69400
diff
changeset
|
205 |
(components, jdk_component) |
69391
a3c776b9d3dd
manage components similar to makedist_bundle (still inactive);
wenzelm
parents:
69390
diff
changeset
|
206 |
} |
a3c776b9d3dd
manage components similar to makedist_bundle (still inactive);
wenzelm
parents:
69390
diff
changeset
|
207 |
|
73340 | 208 |
def activate_components( |
209 |
dir: Path, platform: Platform.Family.Value, more_names: List[String]): Unit = |
|
69391
a3c776b9d3dd
manage components similar to makedist_bundle (still inactive);
wenzelm
parents:
69390
diff
changeset
|
210 |
{ |
69413 | 211 |
def contrib_name(name: String): String = |
212 |
Components.contrib(name = name).implode |
|
213 |
||
69410 | 214 |
val Bundled = new Bundled(platform = Some(platform)) |
69395
d1c4a1dee9e7
more explicit support for Isabelle system components;
wenzelm
parents:
69392
diff
changeset
|
215 |
Components.write_components(dir, |
d1c4a1dee9e7
more explicit support for Isabelle system components;
wenzelm
parents:
69392
diff
changeset
|
216 |
Components.read_components(dir).flatMap(line => |
69391
a3c776b9d3dd
manage components similar to makedist_bundle (still inactive);
wenzelm
parents:
69390
diff
changeset
|
217 |
line match { |
69395
d1c4a1dee9e7
more explicit support for Isabelle system components;
wenzelm
parents:
69392
diff
changeset
|
218 |
case Bundled(name) => |
69413 | 219 |
if (Components.check_dir(Components.contrib(dir, name))) Some(contrib_name(name)) |
69395
d1c4a1dee9e7
more explicit support for Isabelle system components;
wenzelm
parents:
69392
diff
changeset
|
220 |
else None |
d1c4a1dee9e7
more explicit support for Isabelle system components;
wenzelm
parents:
69392
diff
changeset
|
221 |
case _ => if (Bundled.detect(line)) None else Some(line) |
71601 | 222 |
}) ::: more_names.map(contrib_name)) |
69391
a3c776b9d3dd
manage components similar to makedist_bundle (still inactive);
wenzelm
parents:
69390
diff
changeset
|
223 |
} |
69168
68816d1c73a7
eliminated "isabelle makedist" -- prefer Scala over bash/perl scripting;
wenzelm
parents:
69167
diff
changeset
|
224 |
|
68816d1c73a7
eliminated "isabelle makedist" -- prefer Scala over bash/perl scripting;
wenzelm
parents:
69167
diff
changeset
|
225 |
|
70099
9b9c1192f972
support for platform-specific builds on remote server;
wenzelm
parents:
70098
diff
changeset
|
226 |
/** build release **/ |
69168
68816d1c73a7
eliminated "isabelle makedist" -- prefer Scala over bash/perl scripting;
wenzelm
parents:
69167
diff
changeset
|
227 |
|
73634 | 228 |
/* build heaps */ |
70099
9b9c1192f972
support for platform-specific builds on remote server;
wenzelm
parents:
70098
diff
changeset
|
229 |
|
73634 | 230 |
private def build_heaps( |
70101 | 231 |
options: Options, |
232 |
platform: Platform.Family.Value, |
|
233 |
build_sessions: List[String], |
|
73340 | 234 |
local_dir: Path): Unit = |
70099
9b9c1192f972
support for platform-specific builds on remote server;
wenzelm
parents:
70098
diff
changeset
|
235 |
{ |
72341 | 236 |
val server_option = "build_host_" + platform.toString |
73634 | 237 |
val ssh = |
238 |
options.string(server_option) match { |
|
239 |
case "" => |
|
240 |
if (Platform.family == platform) SSH.Local |
|
241 |
else error("Undefined option " + server_option + ": cannot build heaps") |
|
242 |
case SSH.Target(user, host) => |
|
243 |
SSH.open_session(options, host = host, user = user) |
|
244 |
case s => error("Malformed option " + server_option + ": " + quote(s)) |
|
245 |
} |
|
246 |
try { |
|
247 |
Isabelle_System.with_tmp_file("tmp", ext = "tar")(local_tmp_tar => |
|
248 |
{ |
|
249 |
execute_tar(local_dir, "-cf " + File.bash_path(local_tmp_tar) + " .") |
|
250 |
ssh.with_tmp_dir(remote_dir => |
|
251 |
{ |
|
252 |
val remote_tmp_tar = remote_dir + Path.basic("tmp.tar") |
|
253 |
ssh.write_file(remote_tmp_tar, local_tmp_tar) |
|
254 |
val remote_commands = |
|
255 |
List( |
|
256 |
"cd " + File.bash_path(remote_dir), |
|
257 |
"tar -xf tmp.tar", |
|
258 |
"bin/isabelle build -o system_heaps -b -- " + Bash.strings(build_sessions), |
|
259 |
"tar -cf tmp.tar heaps") |
|
260 |
ssh.execute(remote_commands.mkString(" && "), settings = false).check |
|
261 |
ssh.read_file(remote_tmp_tar, local_tmp_tar) |
|
262 |
}) |
|
263 |
execute_tar(local_dir, "-xf " + File.bash_path(local_tmp_tar)) |
|
264 |
}) |
|
70099
9b9c1192f972
support for platform-specific builds on remote server;
wenzelm
parents:
70098
diff
changeset
|
265 |
} |
73634 | 266 |
finally { ssh.close() } |
70099
9b9c1192f972
support for platform-specific builds on remote server;
wenzelm
parents:
70098
diff
changeset
|
267 |
} |
9b9c1192f972
support for platform-specific builds on remote server;
wenzelm
parents:
70098
diff
changeset
|
268 |
|
9b9c1192f972
support for platform-specific builds on remote server;
wenzelm
parents:
70098
diff
changeset
|
269 |
|
73066 | 270 |
/* Isabelle application */ |
73060 | 271 |
|
73340 | 272 |
def make_isabelle_options(path: Path, options: List[String], line_ending: String = "\n"): Unit = |
73068
a95f5ae5a12a
discontinued macOS JavaAppLauncher: re-use plain shell script;
wenzelm
parents:
73067
diff
changeset
|
273 |
{ |
a95f5ae5a12a
discontinued macOS JavaAppLauncher: re-use plain shell script;
wenzelm
parents:
73067
diff
changeset
|
274 |
val title = "# Java runtime options" |
a95f5ae5a12a
discontinued macOS JavaAppLauncher: re-use plain shell script;
wenzelm
parents:
73067
diff
changeset
|
275 |
File.write(path, (title :: options).map(_ + line_ending).mkString) |
a95f5ae5a12a
discontinued macOS JavaAppLauncher: re-use plain shell script;
wenzelm
parents:
73067
diff
changeset
|
276 |
} |
a95f5ae5a12a
discontinued macOS JavaAppLauncher: re-use plain shell script;
wenzelm
parents:
73067
diff
changeset
|
277 |
|
73065 | 278 |
def make_isabelle_app( |
73193 | 279 |
platform: Platform.Family.Value, |
280 |
isabelle_target: Path, |
|
281 |
isabelle_name: String, |
|
73065 | 282 |
jdk_component: String, |
73095 | 283 |
classpath: List[Path], |
73340 | 284 |
dock_icon: Boolean = false): Unit = |
73064 | 285 |
{ |
286 |
val script = """#!/usr/bin/env bash |
|
73060 | 287 |
# |
288 |
# Author: Makarius |
|
289 |
# |
|
290 |
# Main Isabelle application script. |
|
291 |
||
292 |
# minimal Isabelle environment |
|
293 |
||
73193 | 294 |
ISABELLE_HOME="$(cd "$(dirname "$0")"; cd "$(pwd -P)/../.."; pwd)" |
73060 | 295 |
source "$ISABELLE_HOME/lib/scripts/isabelle-platform" |
296 |
||
73063 | 297 |
#paranoia settings -- avoid intrusion of alien options |
298 |
unset "_JAVA_OPTIONS" |
|
299 |
unset "JAVA_TOOL_OPTIONS" |
|
300 |
||
301 |
#paranoia settings -- avoid problems of Java/Swing versus XIM/IBus etc. |
|
302 |
unset XMODIFIERS |
|
303 |
||
73062 | 304 |
COMPONENT="$ISABELLE_HOME/contrib/""" + jdk_component + """" |
305 |
source "$COMPONENT/etc/settings" |
|
306 |
||
73060 | 307 |
|
73063 | 308 |
# main |
73060 | 309 |
|
73703 | 310 |
declare -a JAVA_OPTIONS=($(grep -v '^#' "$ISABELLE_HOME/Isabelle.options")) |
73060 | 311 |
|
73197
d967f6643f5e
proper Isabelle environment (amending 31fbde3baa97);
wenzelm
parents:
73193
diff
changeset
|
312 |
"$ISABELLE_HOME/bin/isabelle" env "$ISABELLE_HOME/lib/scripts/java-gui-setup" |
73153
96d87b9c2b42
workaround for Big Sur fullscreen mode: better support for JDialog windows (e.g. Find on top of main View);
wenzelm
parents:
73152
diff
changeset
|
313 |
|
73062 | 314 |
exec "$ISABELLE_JDK_HOME/bin/java" \ |
73060 | 315 |
"-Disabelle.root=$ISABELLE_HOME" "${JAVA_OPTIONS[@]}" \ |
73061 | 316 |
-classpath """" + classpath.map(p => "$ISABELLE_HOME/" + p.implode).mkString(":") + """" \ |
73060 | 317 |
"-splash:$ISABELLE_HOME/lib/logo/isabelle.gif" \ |
73095 | 318 |
""" + (if (dock_icon) """"-Xdock:icon=$ISABELLE_HOME/lib/logo/isabelle_transparent-128.png" \ |
75291 | 319 |
""" else "") + """isabelle.jedit.JEdit_Main "$@" |
73060 | 320 |
""" |
73193 | 321 |
val script_path = isabelle_target + Path.explode("lib/scripts/Isabelle_app") |
322 |
File.write(script_path, script) |
|
323 |
File.set_executable(script_path, true) |
|
324 |
||
325 |
val component_dir = isabelle_target + Path.explode("contrib/Isabelle_app") |
|
73317 | 326 |
Isabelle_System.move_file( |
73637 | 327 |
component_dir + Path.explode(Platform.Family.standard(platform)) + Path.explode("Isabelle"), |
73193 | 328 |
isabelle_target + Path.explode(isabelle_name)) |
329 |
Isabelle_System.rm_tree(component_dir) |
|
73064 | 330 |
} |
73060 | 331 |
|
332 |
||
73340 | 333 |
def make_isabelle_plist(path: Path, isabelle_name: String, isabelle_rev: String): Unit = |
73066 | 334 |
{ |
335 |
File.write(path, """<?xml version="1.0" ?> |
|
336 |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> |
|
337 |
<plist version="1.0"> |
|
338 |
<dict> |
|
339 |
<key>CFBundleDevelopmentRegion</key> |
|
340 |
<string>English</string> |
|
73075
893310d6d76d
recovered bundle icons (not application) from macos_app;
wenzelm
parents:
73074
diff
changeset
|
341 |
<key>CFBundleIconFile</key> |
893310d6d76d
recovered bundle icons (not application) from macos_app;
wenzelm
parents:
73074
diff
changeset
|
342 |
<string>isabelle.icns</string> |
73066 | 343 |
<key>CFBundleIdentifier</key> |
73152
5a954fd5f078
clarified app identification, potentially relevant for macOS "defaults";
wenzelm
parents:
73112
diff
changeset
|
344 |
<string>de.tum.in.isabelle</string> |
73066 | 345 |
<key>CFBundleDisplayName</key> |
346 |
<string>""" + isabelle_name + """</string> |
|
347 |
<key>CFBundleInfoDictionaryVersion</key> |
|
348 |
<string>6.0</string> |
|
349 |
<key>CFBundleName</key> |
|
350 |
<string>""" + isabelle_name + """</string> |
|
351 |
<key>CFBundlePackageType</key> |
|
352 |
<string>APPL</string> |
|
353 |
<key>CFBundleShortVersionString</key> |
|
73152
5a954fd5f078
clarified app identification, potentially relevant for macOS "defaults";
wenzelm
parents:
73112
diff
changeset
|
354 |
<string>""" + isabelle_name + """</string> |
73066 | 355 |
<key>CFBundleSignature</key> |
356 |
<string>????</string> |
|
357 |
<key>CFBundleVersion</key> |
|
73152
5a954fd5f078
clarified app identification, potentially relevant for macOS "defaults";
wenzelm
parents:
73112
diff
changeset
|
358 |
<string>""" + isabelle_rev + """</string> |
73066 | 359 |
<key>NSHumanReadableCopyright</key> |
360 |
<string></string> |
|
361 |
<key>LSMinimumSystemVersion</key> |
|
73085 | 362 |
<string>10.11</string> |
73066 | 363 |
<key>LSApplicationCategoryType</key> |
364 |
<string>public.app-category.developer-tools</string> |
|
365 |
<key>NSHighResolutionCapable</key> |
|
366 |
<string>true</string> |
|
367 |
<key>NSSupportsAutomaticGraphicsSwitching</key> |
|
368 |
<string>true</string> |
|
369 |
<key>CFBundleDocumentTypes</key> |
|
370 |
<array> |
|
371 |
<dict> |
|
372 |
<key>CFBundleTypeExtensions</key> |
|
373 |
<array> |
|
374 |
<string>thy</string> |
|
375 |
</array> |
|
73077 | 376 |
<key>CFBundleTypeIconFile</key> |
377 |
<string>theory.icns</string> |
|
73066 | 378 |
<key>CFBundleTypeName</key> |
379 |
<string>Isabelle theory file</string> |
|
380 |
<key>CFBundleTypeRole</key> |
|
381 |
<string>Editor</string> |
|
382 |
<key>LSTypeIsPackage</key> |
|
383 |
<false/> |
|
384 |
</dict> |
|
385 |
</array> |
|
386 |
</dict> |
|
387 |
</plist> |
|
388 |
""") |
|
389 |
} |
|
390 |
||
391 |
||
73064 | 392 |
/* main */ |
70099
9b9c1192f972
support for platform-specific builds on remote server;
wenzelm
parents:
70098
diff
changeset
|
393 |
|
73629 | 394 |
def use_release_archive( |
395 |
context: Release_Context, |
|
396 |
archive: Release_Archive, |
|
397 |
id: String = ""): Unit = |
|
398 |
{ |
|
399 |
if (id.nonEmpty && id != archive.id) { |
|
400 |
error("Mismatch of release identification " + id + " vs. archive " + archive.id) |
|
401 |
} |
|
402 |
||
403 |
if (!context.isabelle_archive.is_file || Bytes.read(context.isabelle_archive) != archive.bytes) { |
|
404 |
Bytes.write(context.isabelle_archive, archive.bytes) |
|
405 |
} |
|
406 |
} |
|
407 |
||
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
408 |
def build_release_archive( |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
409 |
context: Release_Context, |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
410 |
version: String, |
73629 | 411 |
parallel_jobs: Int = 1): Unit = |
64202 | 412 |
{ |
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
413 |
val progress = context.progress |
69174 | 414 |
|
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
415 |
val hg = Mercurial.repository(Path.ISABELLE_HOME) |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
416 |
val id = |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
417 |
try { hg.id(version) } |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
418 |
catch { case ERROR(msg) => cat_error("Bad repository version: " + version, msg) } |
64202 | 419 |
|
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
420 |
if (context.isabelle_archive.is_file) { |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
421 |
progress.echo_warning("Found existing release archive: " + context.isabelle_archive) |
73629 | 422 |
use_release_archive(context, Release_Archive.read(context.isabelle_archive), id = id) |
69171
710845a85944
more robust release.read_ident: eliminated odd state files ISABELLE_IDENT, ISABELLE_DIST;
wenzelm
parents:
69170
diff
changeset
|
423 |
} |
710845a85944
more robust release.read_ident: eliminated odd state files ISABELLE_IDENT, ISABELLE_DIST;
wenzelm
parents:
69170
diff
changeset
|
424 |
else { |
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
425 |
progress.echo_warning("Preparing release " + context.dist_name + " ...") |
64221 | 426 |
|
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
427 |
Isabelle_System.new_directory(context.dist_dir) |
69171
710845a85944
more robust release.read_ident: eliminated odd state files ISABELLE_IDENT, ISABELLE_DIST;
wenzelm
parents:
69170
diff
changeset
|
428 |
|
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
429 |
hg.archive(context.isabelle_dir.expand.implode, rev = id, options = "--type files") |
69168
68816d1c73a7
eliminated "isabelle makedist" -- prefer Scala over bash/perl scripting;
wenzelm
parents:
69167
diff
changeset
|
430 |
|
69171
710845a85944
more robust release.read_ident: eliminated odd state files ISABELLE_IDENT, ISABELLE_DIST;
wenzelm
parents:
69170
diff
changeset
|
431 |
for (name <- List(".hg_archival.txt", ".hgtags", ".hgignore", "README_REPOSITORY")) { |
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
432 |
(context.isabelle_dir + Path.explode(name)).file.delete |
69171
710845a85944
more robust release.read_ident: eliminated odd state files ISABELLE_IDENT, ISABELLE_DIST;
wenzelm
parents:
69170
diff
changeset
|
433 |
} |
69168
68816d1c73a7
eliminated "isabelle makedist" -- prefer Scala over bash/perl scripting;
wenzelm
parents:
69167
diff
changeset
|
434 |
|
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
435 |
File.write(context.isabelle_dir + ISABELLE_ID, id) |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
436 |
File.write(context.isabelle_dir + ISABELLE_TAGS, hg.tags(rev = id)) |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
437 |
File.write(context.isabelle_dir + ISABELLE_IDENTIFIER, context.dist_name) |
69168
68816d1c73a7
eliminated "isabelle makedist" -- prefer Scala over bash/perl scripting;
wenzelm
parents:
69167
diff
changeset
|
438 |
|
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
439 |
context.make_announce(id) |
73520
4cba4e250c28
clarified ISABELLE_ID: distribution vs. hg archive vs. hg repos;
wenzelm
parents:
73519
diff
changeset
|
440 |
|
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
441 |
context.make_contrib() |
69168
68816d1c73a7
eliminated "isabelle makedist" -- prefer Scala over bash/perl scripting;
wenzelm
parents:
69167
diff
changeset
|
442 |
|
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
443 |
execute(context.isabelle_dir, """find . -print | xargs chmod -f u+rw""") |
69168
68816d1c73a7
eliminated "isabelle makedist" -- prefer Scala over bash/perl scripting;
wenzelm
parents:
69167
diff
changeset
|
444 |
|
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
445 |
record_bundled_components(context.isabelle_dir) |
69401
7a1b7b737c02
eliminated old makedist_bundle and remote_dmg: build_release does everything in Scala;
wenzelm
parents:
69400
diff
changeset
|
446 |
|
69168
68816d1c73a7
eliminated "isabelle makedist" -- prefer Scala over bash/perl scripting;
wenzelm
parents:
69167
diff
changeset
|
447 |
|
69171
710845a85944
more robust release.read_ident: eliminated odd state files ISABELLE_IDENT, ISABELLE_DIST;
wenzelm
parents:
69170
diff
changeset
|
448 |
/* build tools and documentation */ |
69168
68816d1c73a7
eliminated "isabelle makedist" -- prefer Scala over bash/perl scripting;
wenzelm
parents:
69167
diff
changeset
|
449 |
|
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
450 |
val other_isabelle = context.other_isabelle(context.dist_dir) |
69168
68816d1c73a7
eliminated "isabelle makedist" -- prefer Scala over bash/perl scripting;
wenzelm
parents:
69167
diff
changeset
|
451 |
|
69388 | 452 |
other_isabelle.init_settings( |
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
453 |
other_isabelle.init_components( |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
454 |
components_base = context.components_base, catalogs = List("main"))) |
69171
710845a85944
more robust release.read_ident: eliminated odd state files ISABELLE_IDENT, ISABELLE_DIST;
wenzelm
parents:
69170
diff
changeset
|
455 |
other_isabelle.resolve_components(echo = true) |
69168
68816d1c73a7
eliminated "isabelle makedist" -- prefer Scala over bash/perl scripting;
wenzelm
parents:
69167
diff
changeset
|
456 |
|
69171
710845a85944
more robust release.read_ident: eliminated odd state files ISABELLE_IDENT, ISABELLE_DIST;
wenzelm
parents:
69170
diff
changeset
|
457 |
try { |
74011 | 458 |
other_isabelle.bash( |
459 |
"export CLASSPATH=" + Bash.string(other_isabelle.getenv("ISABELLE_CLASSPATH")) + "\n" + |
|
460 |
"bin/isabelle jedit -b", echo = true).check |
|
69171
710845a85944
more robust release.read_ident: eliminated odd state files ISABELLE_IDENT, ISABELLE_DIST;
wenzelm
parents:
69170
diff
changeset
|
461 |
} |
71936 | 462 |
catch { case ERROR(msg) => cat_error("Failed to build tools:", msg) } |
69168
68816d1c73a7
eliminated "isabelle makedist" -- prefer Scala over bash/perl scripting;
wenzelm
parents:
69167
diff
changeset
|
463 |
|
69171
710845a85944
more robust release.read_ident: eliminated odd state files ISABELLE_IDENT, ISABELLE_DIST;
wenzelm
parents:
69170
diff
changeset
|
464 |
try { |
710845a85944
more robust release.read_ident: eliminated odd state files ISABELLE_IDENT, ISABELLE_DIST;
wenzelm
parents:
69170
diff
changeset
|
465 |
other_isabelle.bash( |
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
466 |
"bin/isabelle build_doc -a -o system_heaps -j " + parallel_jobs, echo = true).check |
69171
710845a85944
more robust release.read_ident: eliminated odd state files ISABELLE_IDENT, ISABELLE_DIST;
wenzelm
parents:
69170
diff
changeset
|
467 |
} |
71936 | 468 |
catch { case ERROR(msg) => cat_error("Failed to build documentation:", msg) } |
69168
68816d1c73a7
eliminated "isabelle makedist" -- prefer Scala over bash/perl scripting;
wenzelm
parents:
69167
diff
changeset
|
469 |
|
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
470 |
other_isabelle.make_news() |
69168
68816d1c73a7
eliminated "isabelle makedist" -- prefer Scala over bash/perl scripting;
wenzelm
parents:
69167
diff
changeset
|
471 |
|
69171
710845a85944
more robust release.read_ident: eliminated odd state files ISABELLE_IDENT, ISABELLE_DIST;
wenzelm
parents:
69170
diff
changeset
|
472 |
for (name <- List("Admin", "browser_info", "heaps")) { |
710845a85944
more robust release.read_ident: eliminated odd state files ISABELLE_IDENT, ISABELLE_DIST;
wenzelm
parents:
69170
diff
changeset
|
473 |
Isabelle_System.rm_tree(other_isabelle.isabelle_home + Path.explode(name)) |
710845a85944
more robust release.read_ident: eliminated odd state files ISABELLE_IDENT, ISABELLE_DIST;
wenzelm
parents:
69170
diff
changeset
|
474 |
} |
69168
68816d1c73a7
eliminated "isabelle makedist" -- prefer Scala over bash/perl scripting;
wenzelm
parents:
69167
diff
changeset
|
475 |
|
69171
710845a85944
more robust release.read_ident: eliminated odd state files ISABELLE_IDENT, ISABELLE_DIST;
wenzelm
parents:
69170
diff
changeset
|
476 |
other_isabelle.cleanup() |
69168
68816d1c73a7
eliminated "isabelle makedist" -- prefer Scala over bash/perl scripting;
wenzelm
parents:
69167
diff
changeset
|
477 |
|
68816d1c73a7
eliminated "isabelle makedist" -- prefer Scala over bash/perl scripting;
wenzelm
parents:
69167
diff
changeset
|
478 |
|
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
479 |
progress.echo_warning("Creating release archive " + context.isabelle_archive + " ...") |
69168
68816d1c73a7
eliminated "isabelle makedist" -- prefer Scala over bash/perl scripting;
wenzelm
parents:
69167
diff
changeset
|
480 |
|
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
481 |
execute(context.dist_dir, """chmod -R a+r . && chmod -R u+w . && chmod -R g=o .""") |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
482 |
execute(context.dist_dir, |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
483 |
"""find . -type f "(" -name "*.thy" -o -name "*.ML" -o -name "*.scala" ")" -print | xargs chmod -f u-w""") |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
484 |
execute_tar(context.dist_dir, "-czf " + |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
485 |
File.bash_path(context.isabelle_archive) + " " + Bash.string(context.dist_name)) |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
486 |
} |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
487 |
} |
69168
68816d1c73a7
eliminated "isabelle makedist" -- prefer Scala over bash/perl scripting;
wenzelm
parents:
69167
diff
changeset
|
488 |
|
73642 | 489 |
def default_platform_families: List[Platform.Family.Value] = Platform.Family.list0 |
490 |
||
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
491 |
def build_release( |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
492 |
options: Options, |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
493 |
context: Release_Context, |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
494 |
afp_rev: String = "", |
73642 | 495 |
platform_families: List[Platform.Family.Value] = default_platform_families, |
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
496 |
more_components: List[Path] = Nil, |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
497 |
website: Option[Path] = None, |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
498 |
build_sessions: List[String] = Nil, |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
499 |
build_library: Boolean = false, |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
500 |
parallel_jobs: Int = 1): Unit = |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
501 |
{ |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
502 |
val progress = context.progress |
69168
68816d1c73a7
eliminated "isabelle makedist" -- prefer Scala over bash/perl scripting;
wenzelm
parents:
69167
diff
changeset
|
503 |
|
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
504 |
|
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
505 |
/* release directory */ |
69168
68816d1c73a7
eliminated "isabelle makedist" -- prefer Scala over bash/perl scripting;
wenzelm
parents:
69167
diff
changeset
|
506 |
|
73629 | 507 |
val archive = Release_Archive.read(context.isabelle_archive) |
508 |
||
509 |
for (path <- List(context.isabelle, ISABELLE)) { |
|
510 |
Isabelle_System.rm_tree(context.dist_dir + path) |
|
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
511 |
} |
69168
68816d1c73a7
eliminated "isabelle makedist" -- prefer Scala over bash/perl scripting;
wenzelm
parents:
69167
diff
changeset
|
512 |
|
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
513 |
Isabelle_System.with_tmp_file("archive", ext = "tar.gz")(archive_path => |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
514 |
{ |
73629 | 515 |
Bytes.write(archive_path, archive.bytes) |
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
516 |
val extract = |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
517 |
List("README", "NEWS", "ANNOUNCE", "COPYRIGHT", "CONTRIBUTORS", "doc"). |
73631 | 518 |
map(name => context.dist_name + "/" + name) |
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
519 |
execute_tar(context.dist_dir, |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
520 |
"-xzf " + File.bash_path(archive_path) + " " + Bash.strings(extract)) |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
521 |
}) |
69168
68816d1c73a7
eliminated "isabelle makedist" -- prefer Scala over bash/perl scripting;
wenzelm
parents:
69167
diff
changeset
|
522 |
|
73629 | 523 |
Isabelle_System.symlink(Path.explode(context.dist_name), context.dist_dir + ISABELLE) |
64202 | 524 |
|
525 |
||
526 |
/* make application bundles */ |
|
527 |
||
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
528 |
val bundle_infos = platform_families.map(context.bundle_info) |
69168
68816d1c73a7
eliminated "isabelle makedist" -- prefer Scala over bash/perl scripting;
wenzelm
parents:
69167
diff
changeset
|
529 |
|
66730 | 530 |
for (bundle_info <- bundle_infos) { |
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
531 |
val isabelle_name = context.dist_name |
70098
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
532 |
val platform = bundle_info.platform |
69401
7a1b7b737c02
eliminated old makedist_bundle and remote_dmg: build_release does everything in Scala;
wenzelm
parents:
69400
diff
changeset
|
533 |
|
70098
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
534 |
progress.echo("\nApplication bundle for " + platform) |
69401
7a1b7b737c02
eliminated old makedist_bundle and remote_dmg: build_release does everything in Scala;
wenzelm
parents:
69400
diff
changeset
|
535 |
|
70098
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
536 |
Isabelle_System.with_tmp_dir("build_release")(tmp_dir => |
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
537 |
{ |
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
538 |
// release archive |
69401
7a1b7b737c02
eliminated old makedist_bundle and remote_dmg: build_release does everything in Scala;
wenzelm
parents:
69400
diff
changeset
|
539 |
|
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
540 |
execute_tar(tmp_dir, "-xzf " + File.bash_path(context.isabelle_archive)) |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
541 |
val other_isabelle = context.other_isabelle(tmp_dir) |
70098
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
542 |
val isabelle_target = other_isabelle.isabelle_home |
69401
7a1b7b737c02
eliminated old makedist_bundle and remote_dmg: build_release does everything in Scala;
wenzelm
parents:
69400
diff
changeset
|
543 |
|
7a1b7b737c02
eliminated old makedist_bundle and remote_dmg: build_release does everything in Scala;
wenzelm
parents:
69400
diff
changeset
|
544 |
|
70098
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
545 |
// bundled components |
69401
7a1b7b737c02
eliminated old makedist_bundle and remote_dmg: build_release does everything in Scala;
wenzelm
parents:
69400
diff
changeset
|
546 |
|
70098
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
547 |
progress.echo("Bundled components:") |
69401
7a1b7b737c02
eliminated old makedist_bundle and remote_dmg: build_release does everything in Scala;
wenzelm
parents:
69400
diff
changeset
|
548 |
|
70098
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
549 |
val contrib_dir = Components.contrib(isabelle_target) |
69401
7a1b7b737c02
eliminated old makedist_bundle and remote_dmg: build_release does everything in Scala;
wenzelm
parents:
69400
diff
changeset
|
550 |
|
70098
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
551 |
val (bundled_components, jdk_component) = |
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
552 |
get_bundled_components(isabelle_target, platform) |
69401
7a1b7b737c02
eliminated old makedist_bundle and remote_dmg: build_release does everything in Scala;
wenzelm
parents:
69400
diff
changeset
|
553 |
|
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
554 |
Components.resolve(context.components_base, bundled_components, |
70102 | 555 |
target_dir = Some(contrib_dir), |
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
556 |
copy_dir = Some(context.dist_dir + Path.explode("contrib")), |
70102 | 557 |
progress = progress) |
69413 | 558 |
|
70098
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
559 |
val more_components_names = |
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
560 |
more_components.map(Components.unpack(contrib_dir, _, progress = progress)) |
69401
7a1b7b737c02
eliminated old makedist_bundle and remote_dmg: build_release does everything in Scala;
wenzelm
parents:
69400
diff
changeset
|
561 |
|
70098
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
562 |
activate_components(isabelle_target, platform, more_components_names) |
69401
7a1b7b737c02
eliminated old makedist_bundle and remote_dmg: build_release does everything in Scala;
wenzelm
parents:
69400
diff
changeset
|
563 |
|
7a1b7b737c02
eliminated old makedist_bundle and remote_dmg: build_release does everything in Scala;
wenzelm
parents:
69400
diff
changeset
|
564 |
|
70098
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
565 |
// Java parameters |
69401
7a1b7b737c02
eliminated old makedist_bundle and remote_dmg: build_release does everything in Scala;
wenzelm
parents:
69400
diff
changeset
|
566 |
|
70098
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
567 |
val java_options: List[String] = |
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
568 |
(for { |
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
569 |
variable <- |
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
570 |
List( |
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
571 |
"ISABELLE_JAVA_SYSTEM_OPTIONS", |
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
572 |
"JEDIT_JAVA_SYSTEM_OPTIONS", |
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
573 |
"JEDIT_JAVA_OPTIONS") |
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
574 |
opt <- Word.explode(other_isabelle.getenv(variable)) |
73068
a95f5ae5a12a
discontinued macOS JavaAppLauncher: re-use plain shell script;
wenzelm
parents:
73067
diff
changeset
|
575 |
} |
a95f5ae5a12a
discontinued macOS JavaAppLauncher: re-use plain shell script;
wenzelm
parents:
73067
diff
changeset
|
576 |
yield { |
a95f5ae5a12a
discontinued macOS JavaAppLauncher: re-use plain shell script;
wenzelm
parents:
73067
diff
changeset
|
577 |
val s = "-Dapple.awt.application.name=" |
a95f5ae5a12a
discontinued macOS JavaAppLauncher: re-use plain shell script;
wenzelm
parents:
73067
diff
changeset
|
578 |
if (opt.startsWith(s)) s + isabelle_name else opt |
a95f5ae5a12a
discontinued macOS JavaAppLauncher: re-use plain shell script;
wenzelm
parents:
73067
diff
changeset
|
579 |
}) ::: List("-Disabelle.jedit_server=" + isabelle_name) |
69401
7a1b7b737c02
eliminated old makedist_bundle and remote_dmg: build_release does everything in Scala;
wenzelm
parents:
69400
diff
changeset
|
580 |
|
70098
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
581 |
val classpath: List[Path] = |
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
582 |
{ |
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
583 |
val base = isabelle_target.absolute |
73988 | 584 |
val classpath1 = Path.split(other_isabelle.getenv("ISABELLE_CLASSPATH")) |
585 |
val classpath2 = Path.split(other_isabelle.getenv("ISABELLE_SETUP_CLASSPATH")) |
|
586 |
(classpath1 ::: classpath2).map(path => |
|
69401
7a1b7b737c02
eliminated old makedist_bundle and remote_dmg: build_release does everything in Scala;
wenzelm
parents:
69400
diff
changeset
|
587 |
{ |
70098
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
588 |
val abs_path = path.absolute |
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
589 |
File.relative_path(base, abs_path) match { |
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
590 |
case Some(rel_path) => rel_path |
73988 | 591 |
case None => error("Bad classpath element: " + abs_path) |
70098
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
592 |
} |
73987
fc363a3b690a
build.props for isabelle.jar, including isabelle.jedit;
wenzelm
parents:
73894
diff
changeset
|
593 |
}) |
70098
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
594 |
} |
69401
7a1b7b737c02
eliminated old makedist_bundle and remote_dmg: build_release does everything in Scala;
wenzelm
parents:
69400
diff
changeset
|
595 |
|
71542
e76692ec6e5a
more usable defaults for high resolution on Linux, where the desktop environment usually lacks automatic scaling;
wenzelm
parents:
71459
diff
changeset
|
596 |
val jedit_options = Path.explode("src/Tools/jEdit/etc/options") |
73987
fc363a3b690a
build.props for isabelle.jar, including isabelle.jedit;
wenzelm
parents:
73894
diff
changeset
|
597 |
val jedit_props = |
fc363a3b690a
build.props for isabelle.jar, including isabelle.jedit;
wenzelm
parents:
73894
diff
changeset
|
598 |
Path.explode(other_isabelle.getenv("JEDIT_HOME") + "/properties/jEdit.props") |
69401
7a1b7b737c02
eliminated old makedist_bundle and remote_dmg: build_release does everything in Scala;
wenzelm
parents:
69400
diff
changeset
|
599 |
|
7a1b7b737c02
eliminated old makedist_bundle and remote_dmg: build_release does everything in Scala;
wenzelm
parents:
69400
diff
changeset
|
600 |
|
70101 | 601 |
// build heaps |
602 |
||
603 |
if (build_sessions.nonEmpty) { |
|
73634 | 604 |
progress.echo("Building heaps " + commas_quote(build_sessions) + " ...") |
605 |
build_heaps(options, platform, build_sessions, isabelle_target) |
|
70101 | 606 |
} |
607 |
||
608 |
||
70098
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
609 |
// application bundling |
69401
7a1b7b737c02
eliminated old makedist_bundle and remote_dmg: build_release does everything in Scala;
wenzelm
parents:
69400
diff
changeset
|
610 |
|
73990
778ab9983f40
proper cross-platform build: jdk component is required for ISABELLE_SETUP_CLASSPATH in other_isabelle;
wenzelm
parents:
73988
diff
changeset
|
611 |
Components.purge(contrib_dir, platform) |
778ab9983f40
proper cross-platform build: jdk component is required for ISABELLE_SETUP_CLASSPATH in other_isabelle;
wenzelm
parents:
73988
diff
changeset
|
612 |
|
70098
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
613 |
platform match { |
73637 | 614 |
case Platform.Family.linux_arm | Platform.Family.linux => |
75202 | 615 |
File.change(isabelle_target + jedit_options) { |
616 |
_.replaceAll("jedit_reset_font_size : int =.*", "jedit_reset_font_size : int = 24") |
|
617 |
} |
|
71542
e76692ec6e5a
more usable defaults for high resolution on Linux, where the desktop environment usually lacks automatic scaling;
wenzelm
parents:
71459
diff
changeset
|
618 |
|
75202 | 619 |
File.change(isabelle_target + jedit_props) { |
72378 | 620 |
_.replaceAll("console.fontsize=.*", "console.fontsize=18") |
621 |
.replaceAll("helpviewer.fontsize=.*", "helpviewer.fontsize=18") |
|
622 |
.replaceAll("metal.primary.fontsize=.*", "metal.primary.fontsize=18") |
|
623 |
.replaceAll("metal.secondary.fontsize=.*", "metal.secondary.fontsize=18") |
|
624 |
.replaceAll("view.fontsize=.*", "view.fontsize=24") |
|
75202 | 625 |
.replaceAll("view.gutter.fontsize=.*", "view.gutter.fontsize=16") |
626 |
} |
|
71542
e76692ec6e5a
more usable defaults for high resolution on Linux, where the desktop environment usually lacks automatic scaling;
wenzelm
parents:
71459
diff
changeset
|
627 |
|
73068
a95f5ae5a12a
discontinued macOS JavaAppLauncher: re-use plain shell script;
wenzelm
parents:
73067
diff
changeset
|
628 |
make_isabelle_options( |
a95f5ae5a12a
discontinued macOS JavaAppLauncher: re-use plain shell script;
wenzelm
parents:
73067
diff
changeset
|
629 |
isabelle_target + Path.explode("Isabelle.options"), java_options) |
69401
7a1b7b737c02
eliminated old makedist_bundle and remote_dmg: build_release does everything in Scala;
wenzelm
parents:
69400
diff
changeset
|
630 |
|
73193 | 631 |
make_isabelle_app(platform, isabelle_target, isabelle_name, jdk_component, classpath) |
69417 | 632 |
|
73637 | 633 |
progress.echo("Packaging " + bundle_info.name + " ...") |
70098
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
634 |
execute_tar(tmp_dir, |
73637 | 635 |
"-czf " + File.bash_path(context.dist_dir + bundle_info.path) + " " + |
70242 | 636 |
Bash.string(isabelle_name)) |
69424
840f0cadeba8
clarified application bundling: discontinued redundant archives;
wenzelm
parents:
69417
diff
changeset
|
637 |
|
69432
d072f3287ffa
discontinued somewhat point dmg: plain .tar.gz is smaller and more convenient to install;
wenzelm
parents:
69425
diff
changeset
|
638 |
|
70098
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
639 |
case Platform.Family.macos => |
75202 | 640 |
File.change(isabelle_target + jedit_props) { |
73112 | 641 |
_.replaceAll("delete-line.shortcut=.*", "delete-line.shortcut=C+d") |
75202 | 642 |
.replaceAll("delete.shortcut2=.*", "delete.shortcut2=A+d") |
643 |
} |
|
69417 | 644 |
|
69401
7a1b7b737c02
eliminated old makedist_bundle and remote_dmg: build_release does everything in Scala;
wenzelm
parents:
69400
diff
changeset
|
645 |
|
73193 | 646 |
// macOS application bundle |
69401
7a1b7b737c02
eliminated old makedist_bundle and remote_dmg: build_release does everything in Scala;
wenzelm
parents:
69400
diff
changeset
|
647 |
|
73193 | 648 |
val app_contents = isabelle_target + Path.explode("Contents") |
69401
7a1b7b737c02
eliminated old makedist_bundle and remote_dmg: build_release does everything in Scala;
wenzelm
parents:
69400
diff
changeset
|
649 |
|
73077 | 650 |
for (icon <- List("lib/logo/isabelle.icns", "lib/logo/theory.icns")) { |
73317 | 651 |
Isabelle_System.copy_file(isabelle_target + Path.explode(icon), |
73193 | 652 |
Isabelle_System.make_directory(app_contents + Path.explode("Resources"))) |
73077 | 653 |
} |
73075
893310d6d76d
recovered bundle icons (not application) from macos_app;
wenzelm
parents:
73074
diff
changeset
|
654 |
|
73083 | 655 |
make_isabelle_plist( |
73629 | 656 |
app_contents + Path.explode("Info.plist"), isabelle_name, archive.id) |
69401
7a1b7b737c02
eliminated old makedist_bundle and remote_dmg: build_release does everything in Scala;
wenzelm
parents:
69400
diff
changeset
|
657 |
|
73193 | 658 |
make_isabelle_app(platform, isabelle_target, isabelle_name, jdk_component, |
659 |
classpath, dock_icon = true) |
|
660 |
||
661 |
val isabelle_options = Path.explode("Isabelle.options") |
|
662 |
make_isabelle_options( |
|
663 |
isabelle_target + isabelle_options, |
|
664 |
java_options ::: List("-Disabelle.app=true")) |
|
665 |
||
69424
840f0cadeba8
clarified application bundling: discontinued redundant archives;
wenzelm
parents:
69417
diff
changeset
|
666 |
|
70098
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
667 |
// application archive |
69424
840f0cadeba8
clarified application bundling: discontinued redundant archives;
wenzelm
parents:
69417
diff
changeset
|
668 |
|
73637 | 669 |
progress.echo("Packaging " + bundle_info.name + " ...") |
73193 | 670 |
|
671 |
val isabelle_app = Path.explode(isabelle_name + ".app") |
|
73317 | 672 |
Isabelle_System.move_file(tmp_dir + Path.explode(isabelle_name), |
673 |
tmp_dir + isabelle_app) |
|
73193 | 674 |
|
70098
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
675 |
execute_tar(tmp_dir, |
73637 | 676 |
"-czf " + File.bash_path(context.dist_dir + bundle_info.path) + " " + |
70242 | 677 |
File.bash_path(isabelle_app)) |
69432
d072f3287ffa
discontinued somewhat point dmg: plain .tar.gz is smaller and more convenient to install;
wenzelm
parents:
69425
diff
changeset
|
678 |
|
69417 | 679 |
|
70098
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
680 |
case Platform.Family.windows => |
75202 | 681 |
File.change(isabelle_target + jedit_props) { |
682 |
_.replaceAll("foldPainter=.*", "foldPainter=Square") |
|
683 |
} |
|
69424
840f0cadeba8
clarified application bundling: discontinued redundant archives;
wenzelm
parents:
69417
diff
changeset
|
684 |
|
840f0cadeba8
clarified application bundling: discontinued redundant archives;
wenzelm
parents:
69417
diff
changeset
|
685 |
|
70098
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
686 |
// application launcher |
69424
840f0cadeba8
clarified application bundling: discontinued redundant archives;
wenzelm
parents:
69417
diff
changeset
|
687 |
|
73317 | 688 |
Isabelle_System.move_file(isabelle_target + Path.explode("contrib/windows_app"), tmp_dir) |
69424
840f0cadeba8
clarified application bundling: discontinued redundant archives;
wenzelm
parents:
69417
diff
changeset
|
689 |
|
70098
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
690 |
val app_template = Path.explode("~~/Admin/Windows/launch4j") |
69424
840f0cadeba8
clarified application bundling: discontinued redundant archives;
wenzelm
parents:
69417
diff
changeset
|
691 |
|
73068
a95f5ae5a12a
discontinued macOS JavaAppLauncher: re-use plain shell script;
wenzelm
parents:
73067
diff
changeset
|
692 |
make_isabelle_options( |
a95f5ae5a12a
discontinued macOS JavaAppLauncher: re-use plain shell script;
wenzelm
parents:
73067
diff
changeset
|
693 |
isabelle_target + Path.explode(isabelle_name + ".l4j.ini"), |
a95f5ae5a12a
discontinued macOS JavaAppLauncher: re-use plain shell script;
wenzelm
parents:
73067
diff
changeset
|
694 |
java_options, line_ending = "\r\n") |
69424
840f0cadeba8
clarified application bundling: discontinued redundant archives;
wenzelm
parents:
69417
diff
changeset
|
695 |
|
70098
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
696 |
val isabelle_xml = Path.explode("isabelle.xml") |
73637 | 697 |
val isabelle_exe = bundle_info.path |
69424
840f0cadeba8
clarified application bundling: discontinued redundant archives;
wenzelm
parents:
69417
diff
changeset
|
698 |
|
70098
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
699 |
File.write(tmp_dir + isabelle_xml, |
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
700 |
File.read(app_template + isabelle_xml) |
72387 | 701 |
.replace("{ISABELLE_NAME}", isabelle_name) |
702 |
.replace("{OUTFILE}", File.platform_path(isabelle_target + isabelle_exe)) |
|
703 |
.replace("{ICON}", |
|
70098
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
704 |
File.platform_path(app_template + Path.explode("isabelle_transparent.ico"))) |
72387 | 705 |
.replace("{SPLASH}", |
70098
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
706 |
File.platform_path(app_template + Path.explode("isabelle.bmp"))) |
72387 | 707 |
.replace("{CLASSPATH}", |
70098
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
708 |
cat_lines(classpath.map(cp => |
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
709 |
" <cp>%EXEDIR%\\" + File.platform_path(cp).replace('/', '\\') + "</cp>"))) |
72387 | 710 |
.replace("\\jdk\\", "\\" + jdk_component + "\\")) |
69424
840f0cadeba8
clarified application bundling: discontinued redundant archives;
wenzelm
parents:
69417
diff
changeset
|
711 |
|
74857
25e9e7088561
address problems with launch4j and jdk-17 (see also 41d009462d3c);
wenzelm
parents:
74856
diff
changeset
|
712 |
val java_opts = |
25e9e7088561
address problems with launch4j and jdk-17 (see also 41d009462d3c);
wenzelm
parents:
74856
diff
changeset
|
713 |
bash_java_opens( |
25e9e7088561
address problems with launch4j and jdk-17 (see also 41d009462d3c);
wenzelm
parents:
74856
diff
changeset
|
714 |
"java.base/java.io", |
25e9e7088561
address problems with launch4j and jdk-17 (see also 41d009462d3c);
wenzelm
parents:
74856
diff
changeset
|
715 |
"java.base/java.lang", |
25e9e7088561
address problems with launch4j and jdk-17 (see also 41d009462d3c);
wenzelm
parents:
74856
diff
changeset
|
716 |
"java.base/java.lang.reflect", |
25e9e7088561
address problems with launch4j and jdk-17 (see also 41d009462d3c);
wenzelm
parents:
74856
diff
changeset
|
717 |
"java.base/java.text", |
25e9e7088561
address problems with launch4j and jdk-17 (see also 41d009462d3c);
wenzelm
parents:
74856
diff
changeset
|
718 |
"java.base/java.util", |
25e9e7088561
address problems with launch4j and jdk-17 (see also 41d009462d3c);
wenzelm
parents:
74856
diff
changeset
|
719 |
"java.desktop/java.awt.font") |
25e9e7088561
address problems with launch4j and jdk-17 (see also 41d009462d3c);
wenzelm
parents:
74856
diff
changeset
|
720 |
val launch4j_jar = |
25e9e7088561
address problems with launch4j and jdk-17 (see also 41d009462d3c);
wenzelm
parents:
74856
diff
changeset
|
721 |
Path.explode("windows_app/launch4j-" + Platform.family + "/launch4j.jar") |
25e9e7088561
address problems with launch4j and jdk-17 (see also 41d009462d3c);
wenzelm
parents:
74856
diff
changeset
|
722 |
|
70098
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
723 |
execute(tmp_dir, |
74857
25e9e7088561
address problems with launch4j and jdk-17 (see also 41d009462d3c);
wenzelm
parents:
74856
diff
changeset
|
724 |
cat_lines(List( |
25e9e7088561
address problems with launch4j and jdk-17 (see also 41d009462d3c);
wenzelm
parents:
74856
diff
changeset
|
725 |
"export LAUNCH4J=" + File.bash_platform_path(launch4j_jar), |
25e9e7088561
address problems with launch4j and jdk-17 (see also 41d009462d3c);
wenzelm
parents:
74856
diff
changeset
|
726 |
"isabelle java " + java_opts + " -jar \"$LAUNCH4J\" isabelle.xml"))) |
69424
840f0cadeba8
clarified application bundling: discontinued redundant archives;
wenzelm
parents:
69417
diff
changeset
|
727 |
|
73317 | 728 |
Isabelle_System.copy_file(app_template + Path.explode("manifest.xml"), |
70098
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
729 |
isabelle_target + isabelle_exe.ext("manifest")) |
69424
840f0cadeba8
clarified application bundling: discontinued redundant archives;
wenzelm
parents:
69417
diff
changeset
|
730 |
|
840f0cadeba8
clarified application bundling: discontinued redundant archives;
wenzelm
parents:
69417
diff
changeset
|
731 |
|
70098
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
732 |
// Cygwin setup |
69424
840f0cadeba8
clarified application bundling: discontinued redundant archives;
wenzelm
parents:
69417
diff
changeset
|
733 |
|
70098
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
734 |
val cygwin_template = Path.explode("~~/Admin/Windows/Cygwin") |
69424
840f0cadeba8
clarified application bundling: discontinued redundant archives;
wenzelm
parents:
69417
diff
changeset
|
735 |
|
73317 | 736 |
Isabelle_System.copy_file(cygwin_template + Path.explode("Cygwin-Terminal.bat"), |
737 |
isabelle_target) |
|
69424
840f0cadeba8
clarified application bundling: discontinued redundant archives;
wenzelm
parents:
69417
diff
changeset
|
738 |
|
70098
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
739 |
val cygwin_mirror = |
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
740 |
File.read(isabelle_target + Path.explode("contrib/cygwin/isabelle/cygwin_mirror")) |
69424
840f0cadeba8
clarified application bundling: discontinued redundant archives;
wenzelm
parents:
69417
diff
changeset
|
741 |
|
70098
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
742 |
val cygwin_bat = Path.explode("Cygwin-Setup.bat") |
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
743 |
File.write(isabelle_target + cygwin_bat, |
72387 | 744 |
File.read(cygwin_template + cygwin_bat).replace("{MIRROR}", cygwin_mirror)) |
70098
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
745 |
File.set_executable(isabelle_target + cygwin_bat, true) |
69424
840f0cadeba8
clarified application bundling: discontinued redundant archives;
wenzelm
parents:
69417
diff
changeset
|
746 |
|
70098
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
747 |
for (name <- List("isabelle/postinstall", "isabelle/rebaseall")) { |
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
748 |
val path = Path.explode(name) |
73317 | 749 |
Isabelle_System.copy_file(cygwin_template + path, |
70098
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
750 |
isabelle_target + Path.explode("contrib/cygwin") + path) |
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
751 |
} |
69424
840f0cadeba8
clarified application bundling: discontinued redundant archives;
wenzelm
parents:
69417
diff
changeset
|
752 |
|
70098
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
753 |
execute(isabelle_target, |
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
754 |
"""find . -type f -not -name "*.exe" -not -name "*.dll" """ + |
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
755 |
(if (Platform.is_macos) "-perm +100" else "-executable") + |
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
756 |
" -print0 > contrib/cygwin/isabelle/executables") |
69424
840f0cadeba8
clarified application bundling: discontinued redundant archives;
wenzelm
parents:
69417
diff
changeset
|
757 |
|
70098
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
758 |
execute(isabelle_target, |
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
759 |
"""find . -type l -exec echo "{}" ";" -exec readlink "{}" ";" """ + |
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
760 |
"""> contrib/cygwin/isabelle/symlinks""") |
69424
840f0cadeba8
clarified application bundling: discontinued redundant archives;
wenzelm
parents:
69417
diff
changeset
|
761 |
|
70098
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
762 |
execute(isabelle_target, """find . -type l -exec rm "{}" ";" """) |
69424
840f0cadeba8
clarified application bundling: discontinued redundant archives;
wenzelm
parents:
69417
diff
changeset
|
763 |
|
70098
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
764 |
File.write(isabelle_target + Path.explode("contrib/cygwin/isabelle/uninitialized"), "") |
69424
840f0cadeba8
clarified application bundling: discontinued redundant archives;
wenzelm
parents:
69417
diff
changeset
|
765 |
|
840f0cadeba8
clarified application bundling: discontinued redundant archives;
wenzelm
parents:
69417
diff
changeset
|
766 |
|
70098
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
767 |
// executable archive (self-extracting 7z) |
69424
840f0cadeba8
clarified application bundling: discontinued redundant archives;
wenzelm
parents:
69417
diff
changeset
|
768 |
|
70098
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
769 |
val archive_name = isabelle_name + ".7z" |
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
770 |
val exe_archive = tmp_dir + Path.explode(archive_name) |
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
771 |
exe_archive.file.delete |
69401
7a1b7b737c02
eliminated old makedist_bundle and remote_dmg: build_release does everything in Scala;
wenzelm
parents:
69400
diff
changeset
|
772 |
|
70098
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
773 |
progress.echo("Packaging " + archive_name + " ...") |
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
774 |
execute(tmp_dir, |
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
775 |
"7z -y -bd a " + File.bash_path(exe_archive) + " " + Bash.string(isabelle_name)) |
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
776 |
if (!exe_archive.is_file) error("Failed to create archive: " + exe_archive) |
69401
7a1b7b737c02
eliminated old makedist_bundle and remote_dmg: build_release does everything in Scala;
wenzelm
parents:
69400
diff
changeset
|
777 |
|
70098
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
778 |
val sfx_exe = tmp_dir + Path.explode("windows_app/7zsd_All_x64.sfx") |
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
779 |
val sfx_txt = |
72387 | 780 |
File.read(Path.explode("~~/Admin/Windows/Installer/sfx.txt")) |
781 |
.replace("{ISABELLE_NAME}", isabelle_name) |
|
69401
7a1b7b737c02
eliminated old makedist_bundle and remote_dmg: build_release does everything in Scala;
wenzelm
parents:
69400
diff
changeset
|
782 |
|
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
783 |
Bytes.write(context.dist_dir + isabelle_exe, |
70098
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
784 |
Bytes.read(sfx_exe) + Bytes(sfx_txt) + Bytes.read(exe_archive)) |
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
785 |
File.set_executable(context.dist_dir + isabelle_exe, true) |
70098
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
786 |
} |
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
787 |
}) |
956d2430cb29
more robust: always (re)build platform application bundles;
wenzelm
parents:
70046
diff
changeset
|
788 |
progress.echo("DONE") |
64202 | 789 |
} |
790 |
||
791 |
||
792 |
/* minimal website */ |
|
793 |
||
64361 | 794 |
for (dir <- website) { |
795 |
val website_platform_bundles = |
|
796 |
for { |
|
66730 | 797 |
bundle_info <- bundle_infos |
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
798 |
if (context.dist_dir + bundle_info.path).is_file |
69432
d072f3287ffa
discontinued somewhat point dmg: plain .tar.gz is smaller and more convenient to install;
wenzelm
parents:
69425
diff
changeset
|
799 |
} yield (bundle_info.name, bundle_info) |
64206 | 800 |
|
71275 | 801 |
val isabelle_link = |
73629 | 802 |
HTML.link(Isabelle_System.isabelle_repository.changeset(archive.id), |
803 |
HTML.text("Isabelle/" + archive.id)) |
|
64405
81bac77929d9
just one task to identify Isabelle + AFP repository snapshots and build release;
wenzelm
parents:
64371
diff
changeset
|
804 |
val afp_link = |
73610 | 805 |
HTML.link(Isabelle_System.afp_repository.changeset(afp_rev), |
806 |
HTML.text("AFP/" + afp_rev)) |
|
64405
81bac77929d9
just one task to identify Isabelle + AFP repository snapshots and build release;
wenzelm
parents:
64371
diff
changeset
|
807 |
|
65838 | 808 |
HTML.write_document(dir, "index.html", |
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
809 |
List(HTML.title(context.dist_name)), |
65838 | 810 |
List( |
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
811 |
HTML.section(context.dist_name), |
73626 | 812 |
HTML.subsection("Downloads"), |
65838 | 813 |
HTML.itemize( |
73626 | 814 |
List(HTML.link(context.dist_name + ".tar.gz", HTML.text("Source archive"))) :: |
66730 | 815 |
website_platform_bundles.map({ case (bundle, bundle_info) => |
73626 | 816 |
List(HTML.link(bundle, HTML.text(bundle_info.platform_description + " bundle"))) })), |
71275 | 817 |
HTML.subsection("Repositories"), |
818 |
HTML.itemize( |
|
819 |
List(List(isabelle_link)) ::: (if (afp_rev == "") Nil else List(List(afp_link)))))) |
|
64202 | 820 |
|
73626 | 821 |
Isabelle_System.copy_file(context.isabelle_archive, dir) |
822 |
||
823 |
for ((bundle, _) <- website_platform_bundles) { |
|
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
824 |
Isabelle_System.copy_file(context.dist_dir + Path.explode(bundle), dir) |
73626 | 825 |
} |
64361 | 826 |
} |
64202 | 827 |
|
828 |
||
829 |
/* HTML library */ |
|
830 |
||
64203 | 831 |
if (build_library) { |
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
832 |
if (context.isabelle_library_archive.is_file) { |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
833 |
progress.echo_warning("Library archive already exists: " + context.isabelle_library_archive) |
69168
68816d1c73a7
eliminated "isabelle makedist" -- prefer Scala over bash/perl scripting;
wenzelm
parents:
69167
diff
changeset
|
834 |
} |
64203 | 835 |
else { |
64316 | 836 |
Isabelle_System.with_tmp_dir("build_release")(tmp_dir => |
837 |
{ |
|
69401
7a1b7b737c02
eliminated old makedist_bundle and remote_dmg: build_release does everything in Scala;
wenzelm
parents:
69400
diff
changeset
|
838 |
val bundle = |
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
839 |
context.dist_dir + Path.explode(context.dist_name + "_" + Platform.family + ".tar.gz") |
70246
7c55ea37fbf7
back to gz for linux (and macos) -- xz is too slow and cumbersome;
wenzelm
parents:
70244
diff
changeset
|
840 |
execute_tar(tmp_dir, "-xzf " + File.bash_path(bundle)) |
64316 | 841 |
|
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
842 |
val other_isabelle = context.other_isabelle(tmp_dir) |
64316 | 843 |
|
74856 | 844 |
Isabelle_System.make_directory(other_isabelle.etc) |
845 |
File.write(other_isabelle.etc_settings, "ML_OPTIONS=\"--minheap 1000 --maxheap 4000\"\n") |
|
846 |
||
70243 | 847 |
other_isabelle.bash("bin/isabelle build -f -j " + parallel_jobs + |
69406 | 848 |
" -o browser_info -o document=pdf -o document_variants=document:outline=/proof,/ML" + |
69873 | 849 |
" -o system_heaps -c -a -d '~~/src/Benchmarks'", echo = true).check |
64316 | 850 |
other_isabelle.isabelle_home_user.file.delete |
851 |
||
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
852 |
execute(tmp_dir, "chmod -R a+r " + Bash.string(context.dist_name)) |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
853 |
execute(tmp_dir, "chmod -R g=o " + Bash.string(context.dist_name)) |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
854 |
execute_tar(tmp_dir, "-czf " + File.bash_path(context.isabelle_library_archive) + |
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
855 |
" " + Bash.string(context.dist_name + "/browser_info")) |
64316 | 856 |
}) |
64203 | 857 |
} |
858 |
} |
|
64202 | 859 |
} |
860 |
||
861 |
||
862 |
||
863 |
/** command line entry point **/ |
|
864 |
||
73340 | 865 |
def main(args: Array[String]): Unit = |
64202 | 866 |
{ |
71632 | 867 |
Command_Line.tool { |
64405
81bac77929d9
just one task to identify Isabelle + AFP repository snapshots and build release;
wenzelm
parents:
64371
diff
changeset
|
868 |
var afp_rev = "" |
69434 | 869 |
var components_base: Path = Components.default_components_base |
73607
fc13738e1933
clarified command-line, following other build_XYZ tools;
wenzelm
parents:
73582
diff
changeset
|
870 |
var target_dir = Path.current |
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
871 |
var release_name = "" |
73629 | 872 |
var source_archive = "" |
64211 | 873 |
var website: Option[Path] = None |
70101 | 874 |
var build_sessions: List[String] = Nil |
69413 | 875 |
var more_components: List[Path] = Nil |
64202 | 876 |
var parallel_jobs = 1 |
877 |
var build_library = false |
|
69401
7a1b7b737c02
eliminated old makedist_bundle and remote_dmg: build_release does everything in Scala;
wenzelm
parents:
69400
diff
changeset
|
878 |
var options = Options.init() |
73642 | 879 |
var platform_families = default_platform_families |
64202 | 880 |
var rev = "" |
881 |
||
882 |
val getopts = Getopts(""" |
|
73894 | 883 |
Usage: Admin/build_release [OPTIONS] |
64202 | 884 |
|
885 |
Options are: |
|
64405
81bac77929d9
just one task to identify Isabelle + AFP repository snapshots and build release;
wenzelm
parents:
64371
diff
changeset
|
886 |
-A REV corresponding AFP changeset id |
69434 | 887 |
-C DIR base directory for Isabelle components (default: """ + |
888 |
Components.default_components_base + """) |
|
73607
fc13738e1933
clarified command-line, following other build_XYZ tools;
wenzelm
parents:
73582
diff
changeset
|
889 |
-D DIR target directory (default ".") |
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
890 |
-R RELEASE explicit release name |
73629 | 891 |
-S ARCHIVE use existing source archive (file or URL) |
64211 | 892 |
-W WEBSITE produce minimal website in given directory |
70101 | 893 |
-b SESSIONS build platform-specific session images (separated by commas) |
69413 | 894 |
-c ARCHIVE clean bundling with additional component .tar.gz archive |
64202 | 895 |
-j INT maximum number of parallel jobs (default 1) |
896 |
-l build library |
|
69401
7a1b7b737c02
eliminated old makedist_bundle and remote_dmg: build_release does everything in Scala;
wenzelm
parents:
69400
diff
changeset
|
897 |
-o OPTION override Isabelle system OPTION (via NAME=VAL or NAME) |
73642 | 898 |
-p NAMES platform families (default: """ + default_platform_families.mkString(",") + """) |
73629 | 899 |
-r REV Mercurial changeset id (default: ARCHIVE or RELEASE or tip) |
64202 | 900 |
|
901 |
Build Isabelle release in base directory, using the local repository clone. |
|
902 |
""", |
|
64405
81bac77929d9
just one task to identify Isabelle + AFP repository snapshots and build release;
wenzelm
parents:
64371
diff
changeset
|
903 |
"A:" -> (arg => afp_rev = arg), |
69434 | 904 |
"C:" -> (arg => components_base = Path.explode(arg)), |
73607
fc13738e1933
clarified command-line, following other build_XYZ tools;
wenzelm
parents:
73582
diff
changeset
|
905 |
"D:" -> (arg => target_dir = Path.explode(arg)), |
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
906 |
"R:" -> (arg => release_name = arg), |
73629 | 907 |
"S:" -> (arg => source_archive = arg), |
64211 | 908 |
"W:" -> (arg => website = Some(Path.explode(arg))), |
70101 | 909 |
"b:" -> (arg => build_sessions = space_explode(',', arg)), |
69413 | 910 |
"c:" -> (arg => |
911 |
{ |
|
912 |
val path = Path.explode(arg) |
|
913 |
Components.Archive.get_name(path.file_name) |
|
914 |
more_components = more_components ::: List(path) |
|
915 |
}), |
|
64202 | 916 |
"j:" -> (arg => parallel_jobs = Value.Int.parse(arg)), |
64316 | 917 |
"l" -> (_ => build_library = true), |
69401
7a1b7b737c02
eliminated old makedist_bundle and remote_dmg: build_release does everything in Scala;
wenzelm
parents:
69400
diff
changeset
|
918 |
"o:" -> (arg => options = options + arg), |
69410 | 919 |
"p:" -> (arg => platform_families = space_explode(',', arg).map(Platform.Family.parse)), |
64204 | 920 |
"r:" -> (arg => rev = arg)) |
64202 | 921 |
|
922 |
val more_args = getopts(args) |
|
73607
fc13738e1933
clarified command-line, following other build_XYZ tools;
wenzelm
parents:
73582
diff
changeset
|
923 |
if (more_args.nonEmpty) getopts.usage() |
64202 | 924 |
|
73629 | 925 |
if (platform_families.contains(Platform.Family.windows) && !Isabelle_System.bash("7z i").ok) |
926 |
error("Building for windows requires 7z") |
|
927 |
||
73634 | 928 |
val progress = new Console_Progress() |
73629 | 929 |
def make_context(name: String): Release_Context = |
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
930 |
Release_Context(target_dir, |
73629 | 931 |
release_name = name, |
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
932 |
components_base = components_base, |
73634 | 933 |
progress = progress) |
64202 | 934 |
|
73629 | 935 |
val context = |
936 |
if (source_archive.isEmpty) { |
|
937 |
val context = make_context(release_name) |
|
938 |
val version = proper_string(rev) orElse proper_string(release_name) getOrElse "tip" |
|
939 |
build_release_archive(context, version, parallel_jobs = parallel_jobs) |
|
940 |
context |
|
941 |
} |
|
942 |
else { |
|
73634 | 943 |
val archive = |
944 |
Release_Archive.get(source_archive, rename = release_name, progress = progress) |
|
73632 | 945 |
val context = make_context(archive.identifier) |
73634 | 946 |
Isabelle_System.make_directory(context.dist_dir) |
73629 | 947 |
use_release_archive(context, archive, id = rev) |
948 |
context |
|
949 |
} |
|
69415 | 950 |
|
73630 | 951 |
build_release(options, context, afp_rev = afp_rev, platform_families = platform_families, |
74857
25e9e7088561
address problems with launch4j and jdk-17 (see also 41d009462d3c);
wenzelm
parents:
74856
diff
changeset
|
952 |
more_components = more_components, build_sessions = build_sessions, |
73625
f8f065e20837
misc tuning and clarification: more explicit types Release_Context, Release_Archive;
wenzelm
parents:
73610
diff
changeset
|
953 |
build_library = build_library, parallel_jobs = parallel_jobs, website = website) |
64202 | 954 |
} |
955 |
} |
|
956 |
} |