macos: packaging support for MacOS X 10.12 32/12432/2
authorMarcio Barbosa <mbarbosa@sinenomine.net>
Sun, 23 Oct 2016 19:52:49 +0000 (12:52 -0700)
committerStephan Wiesand <stephan.wiesand@desy.de>
Fri, 9 Dec 2016 12:32:35 +0000 (07:32 -0500)
This commit introduces the new set of changes / files required to
successfully create the dmg installer on OS X 10.12 "Sierra".

Reviewed-on: https://gerrit.openafs.org/12420
Reviewed-by: Joe Gorse <jhgorse@gmail.com>
Tested-by: BuildBot <buildbot@rampaginggeek.com>
Reviewed-by: Benjamin Kaduk <kaduk@mit.edu>
(cherry picked from commit 0bed87a15db11bccb693b3a54f704ee5751ae553)

Change-Id: I71a22e2ee43cb86ccdbe16c42b582d90adc91115
Reviewed-on: https://gerrit.openafs.org/12432
Tested-by: BuildBot <buildbot@rampaginggeek.com>
Reviewed-by: Marcio Brito Barbosa <mbarbosa@sinenomine.net>
Tested-by: Marcio Brito Barbosa <mbarbosa@sinenomine.net>
Reviewed-by: Stephan Wiesand <stephan.wiesand@desy.de>

src/packaging/MacOS/InstallationCheck.16 [new file with mode: 0644]
src/packaging/MacOS/InstallationCheck.strings.16 [new file with mode: 0644]
src/packaging/MacOS/ReadMe.rtf.16 [new file with mode: 0644]
src/packaging/MacOS/pkgbuild.sh.in

diff --git a/src/packaging/MacOS/InstallationCheck.16 b/src/packaging/MacOS/InstallationCheck.16
new file mode 100644 (file)
index 0000000..e1ac311
--- /dev/null
@@ -0,0 +1,19 @@
+#!/bin/sh
+majorvers=`uname -r | sed 's/\..*//'`
+if [ $majorvers -ne 16 ]; then
+       exit 112
+fi
+
+# check for temporary versions of ThisCell and CellAlias
+# and move them aside
+tmpthiscell=/private/tmp/org.OpenAFS.Install.ThisCell.$USER
+tmpcellalias=/private/tmp/org.OpenAFS.Install.CellAlias.$USER
+date=`date +%Y%m%d%H%M`
+if [ -e $tmpthiscell ]; then
+    mv -f $tmpthiscell $tmpthiscell.$date
+fi
+if [ -e $tmpcellalias ]; then
+    mv -f $tmpcellalias $tmpcellalias.$date
+fi
+
+exit 0
diff --git a/src/packaging/MacOS/InstallationCheck.strings.16 b/src/packaging/MacOS/InstallationCheck.strings.16
new file mode 100644 (file)
index 0000000..aab93ed
--- /dev/null
@@ -0,0 +1 @@
+"16" = "This OpenAFS release requires Sierra (10.12)";
diff --git a/src/packaging/MacOS/ReadMe.rtf.16 b/src/packaging/MacOS/ReadMe.rtf.16
new file mode 100644 (file)
index 0000000..3139cb7
--- /dev/null
@@ -0,0 +1,7 @@
+{\rtf1\ansi\ansicpg1252\cocoartf1038\cocoasubrtf320
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\margl1440\margr1440\vieww9000\viewh9000\viewkind0
+\pard\tx1440\tx2880\tx4320\tx5760\tx7200\ql\qnatural
+
+\f0\fs24 \cf0 This release of OpenAFS is targeted at MacOS 10.12 (Sierra) and is not recommended for use with any other version.}
index 67f3cc9..36ec5d2 100644 (file)
@@ -127,6 +127,10 @@ elif [ x"$majorvers" = x15 ]; then
     RELNAME="ElCapitan"
     THISREL=11
 
+elif [ x"$majorvers" = x16 ]; then
+    RELNAME="Sierra"
+    THISREL=12
+
 elif [ x"$majorvers" = x ] ; then
     echo "Error running uname" >&2
     exit 1