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