Compare commits
42 Commits
version/20
...
release/20
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
fe461bbdcb | ||
|
|
216a0ac75b | ||
|
|
72bd67c6ef | ||
|
|
ac35f4d20f | ||
|
|
56e1055dec | ||
|
|
ed88c630ea | ||
|
|
da0f443f62 | ||
|
|
2eac2b8546 | ||
|
|
1d97e9f573 | ||
|
|
bd7ccccda6 | ||
|
|
f0f047e6c5 | ||
|
|
271f103ae3 | ||
|
|
99b893368b | ||
|
|
e4007bae99 | ||
|
|
6e8b4c3ee7 | ||
|
|
ccb35c7707 | ||
|
|
391ceaea11 | ||
|
|
feae4a2d56 | ||
|
|
70dfd6b8d4 | ||
|
|
a1f8e52ae8 | ||
|
|
a5525ba2b3 | ||
|
|
1c5449fcd6 | ||
|
|
359152c8d1 | ||
|
|
2c41742b99 | ||
|
|
a20342ed48 | ||
|
|
d424cdaad3 | ||
|
|
141bb7dec4 | ||
|
|
2874e0eade | ||
|
|
6520925c5b | ||
|
|
77384be44a | ||
|
|
7c5ad2405e | ||
|
|
250c0c54a8 | ||
|
|
2930727a87 | ||
|
|
a281b46214 | ||
|
|
8a7fd33b2b | ||
|
|
305a501ef3 | ||
|
|
d073c54c0d | ||
|
|
705bd47bcd | ||
|
|
4128259e8e | ||
|
|
44bdb42fd0 | ||
|
|
7de0f9f524 | ||
|
|
1e3ac37c96 |
2
.gitignore
vendored
2
.gitignore
vendored
@@ -1,6 +1,6 @@
|
||||
dist
|
||||
.DS_Store
|
||||
install
|
||||
install*/
|
||||
3rdParty
|
||||
3rdParty.x64
|
||||
boost_1_44_0
|
||||
|
||||
8
.gitmodules
vendored
8
.gitmodules
vendored
@@ -1,11 +1,11 @@
|
||||
[submodule "simgear"]
|
||||
path = simgear
|
||||
url = ../simgear
|
||||
branch = release/2018.3
|
||||
branch = release/2019.1
|
||||
[submodule "flightgear"]
|
||||
path = flightgear
|
||||
url = ../flightgear
|
||||
branch = release/2018.3
|
||||
branch = release/2019.1
|
||||
[submodule "fgrun"]
|
||||
path = fgrun
|
||||
url = ../fgrun
|
||||
@@ -13,7 +13,7 @@
|
||||
[submodule "fgdata"]
|
||||
path = fgdata
|
||||
url = ../fgdata
|
||||
branch = release/2018.3
|
||||
branch = release/2019.1
|
||||
[submodule "windows-3rd-party"]
|
||||
path = windows-3rd-party
|
||||
url = ../windows-3rd-party
|
||||
@@ -21,4 +21,4 @@
|
||||
[submodule "getstart"]
|
||||
path = getstart
|
||||
url = ../getstart
|
||||
branch = release/2018.3
|
||||
branch = release/2019.1
|
||||
|
||||
@@ -2,7 +2,8 @@
|
||||
|
||||
import argparse
|
||||
import datetime
|
||||
import xml.etree.cElementTree as ET
|
||||
#import xml.etree.cElementTree as ET
|
||||
import lxml.etree as ET
|
||||
import os
|
||||
import re
|
||||
import sgprops
|
||||
@@ -212,7 +213,7 @@ def append_author_nodes(node, info):
|
||||
# traditional single author string
|
||||
node.append( make_xml_leaf('author', info['author']) )
|
||||
|
||||
def make_aircraft_node(aircraftDirName, package, variants, downloadBase):
|
||||
def make_aircraft_node(aircraftDirName, package, variants, downloadBase, mirrors):
|
||||
#print "package:", package
|
||||
#print "variants:", variants
|
||||
package_node = ET.Element('package')
|
||||
@@ -261,9 +262,15 @@ def make_aircraft_node(aircraftDirName, package, variants, downloadBase):
|
||||
|
||||
package_node.append( make_xml_leaf('dir', aircraftDirName) )
|
||||
|
||||
# primary URL is first
|
||||
download_url = downloadBase + aircraftDirName + '.zip'
|
||||
package_node.append( make_xml_leaf('url', download_url) )
|
||||
|
||||
for m in mirrors:
|
||||
mu = m + aircraftDirName + '.zip'
|
||||
package_node.append( make_xml_leaf('url', mu) )
|
||||
|
||||
|
||||
if 'thumbnail' in package:
|
||||
thumbnail_url = downloadBase + 'thumbnails/' + aircraftDirName + '_' + package['thumbnail']
|
||||
package_node.append( make_xml_leaf('thumbnail', thumbnail_url) )
|
||||
|
||||
31
catalog/fgaddon-catalog-ukmirror/catalog.config.xml
Normal file
31
catalog/fgaddon-catalog-ukmirror/catalog.config.xml
Normal file
@@ -0,0 +1,31 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<PropertyList>
|
||||
<local-output>/home/fgaddon/output/Aircraft-trunk</local-output>
|
||||
<download-url n="0">http://mirrors.ibiblio.org/flightgear/ftp/Aircraft-trunk/</download-url>
|
||||
<download-url n="1">http://ukmirror.flightgear.org/fgaddon/Aircraft-trunk/</download-url>
|
||||
|
||||
<thumbnail-url n="0">http://mirrors.ibiblio.org/flightgear/ftp/Aircraft-trunk/thumbnails</thumbnail-url>
|
||||
<thumbnail-url n="1">http://ukmirror.flightgear.org/fgaddon/Aircraft-trunk/thumbnails</thumbnail-url>
|
||||
|
||||
<scm>
|
||||
<type>svn</type>
|
||||
<path>/home/fgaddon/fgaddon-trunk/Aircraft</path>
|
||||
<skip>NTPS</skip>
|
||||
<skip>c172</skip>
|
||||
<skip>tu134</skip>
|
||||
</scm>
|
||||
<include-dir>/home/fgaddon/fgdata</include-dir>
|
||||
<include-dir>/home/fgaddon/fgaddon-trunk</include-dir>
|
||||
|
||||
<!-- <scm>
|
||||
<type>git</type>
|
||||
<update type="bool">false</update>
|
||||
<path>/Users/jmt/FGFS/fgdata</path>
|
||||
<url>git://git.code.sf.net/p/flightgear/fgdata</url>
|
||||
</scm> -->
|
||||
<upload n="0">
|
||||
<enabled type="bool">true</enabled>
|
||||
<type>rsync-ssh</type>
|
||||
<remote>ibiblio:/public/mirrors/flightgear/ftp/Aircraft</remote>
|
||||
</upload>
|
||||
</PropertyList>
|
||||
21
catalog/fgaddon-catalog-ukmirror/template.xml
Normal file
21
catalog/fgaddon-catalog-ukmirror/template.xml
Normal file
@@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<PropertyList>
|
||||
<template>
|
||||
<version n="0">2019.*</version>
|
||||
<version n="1">2018.*</version>
|
||||
|
||||
<id>org.flightgear.fgaddon.trunk</id>
|
||||
<license>GPL</license>
|
||||
<url>http://mirrors.ibiblio.org/flightgear/ftp/Aircraft-trunk/catalog.xml</url>
|
||||
<name>FlightGear aircraft distribution from fgaddon</name>
|
||||
<description>This hangar provides aircraft officially supported and maintained by the FlightGear project,
|
||||
under a free-software license. It tracks latest aircraft developments in the FGaddon repository.</description>
|
||||
<!-- <de>
|
||||
<description>Auf Deutsch</description>
|
||||
</de>
|
||||
<fr>
|
||||
<description>En Francais</description>
|
||||
</fr> -->
|
||||
|
||||
</template>
|
||||
</PropertyList>
|
||||
5
catalog/fgaddon-catalog-ukmirror/zip-excludes.lst
Normal file
5
catalog/fgaddon-catalog-ukmirror/zip-excludes.lst
Normal file
@@ -0,0 +1,5 @@
|
||||
*/.svn/*
|
||||
*.xcf
|
||||
*.blend
|
||||
*.psd
|
||||
*~
|
||||
25
catalog/legacy-catalog/catalog.config.xml
Normal file
25
catalog/legacy-catalog/catalog.config.xml
Normal file
@@ -0,0 +1,25 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<PropertyList>
|
||||
<local-output>/home/fgaddon/output/Aircraft</local-output>
|
||||
<download-url n="0">http://mirrors.ibiblio.org/flightgear/ftp/Aircraft/</download-url>
|
||||
<download-url n="1">http://ukmirror.flightgear.org/fgaddon/Aircraft/</download-url>
|
||||
|
||||
<thumbnail-url n="0">http://mirrors.ibiblio.org/flightgear/ftp/Aircraft/thumbnails</thumbnail-url>
|
||||
<thumbnail-url n="1">http://ukmirror.flightgear.org/fgaddon/Aircraft/thumbnails</thumbnail-url>
|
||||
|
||||
<scm>
|
||||
<type>svn</type>
|
||||
<path>/home/fgaddon/fgaddon-legacy/Aircraft</path>
|
||||
<skip>NTPS</skip>
|
||||
<skip>c172</skip>
|
||||
<skip>tu134</skip>
|
||||
</scm>
|
||||
<include-dir>/home/fgaddon/fgdata-legacy</include-dir>
|
||||
<include-dir>/home/fgaddon/fgaddon-legacy</include-dir>
|
||||
|
||||
<upload n="0">
|
||||
<enabled type="bool">true</enabled>
|
||||
<type>rsync-ssh</type>
|
||||
<remote>ibiblio:/public/mirrors/flightgear/ftp/Aircraft-legacy</remote>
|
||||
</upload>
|
||||
</PropertyList>
|
||||
38
catalog/legacy-catalog/template.xml
Normal file
38
catalog/legacy-catalog/template.xml
Normal file
@@ -0,0 +1,38 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<PropertyList>
|
||||
<template>
|
||||
<version n="0">3.4.*</version>
|
||||
<version n="1">3.5.*</version>
|
||||
<version n="2">3.6.*</version>
|
||||
<version n="3">3.7.*</version>
|
||||
<version n="5">2016.*.*</version>
|
||||
<version n="6">2017.*.*</version>
|
||||
<version n="7">2018.*.*</version>
|
||||
|
||||
<!-- the legacy catalog has to have this ID, becuase this is what older FG
|
||||
clients expect -->
|
||||
<id>org.flightgear.fgaddon</id>
|
||||
<license>GPL</license>
|
||||
<url>http://mirrors.ibiblio.org/flightgear/ftp/Aircraft/catalog.xml</url>
|
||||
<name>FlightGear aircraft(legacy support)</name>
|
||||
<description>This hangar provides aircraft officially supported and maintained by the
|
||||
FlightGear project, under a free-software license. Aircraft are intended for
|
||||
use with FlightGear versions 2018.2 and older.</description>
|
||||
|
||||
<!-- <alternate-version>
|
||||
<version>2019.*</version>
|
||||
<version>2018.4.*</version>
|
||||
<url>http://mirrors.ibiblio.org/flightgear/ftp/Aircraft-trunk/catalog.xml</url>
|
||||
<id>org.flightgear.fgaddon.trunk</id>
|
||||
</alternate-version>
|
||||
|
||||
<alternate-version>
|
||||
<version>2018.3.*</version>
|
||||
<url>http://mirrors.ibiblio.org/flightgear/ftp/Aircraft-2018/catalog.xml</url>
|
||||
<id>org.flightgear.fgaddon.stable_2018</id>
|
||||
</alternate-version>
|
||||
-->
|
||||
|
||||
</template>
|
||||
</PropertyList>
|
||||
5
catalog/legacy-catalog/zip-excludes.lst
Normal file
5
catalog/legacy-catalog/zip-excludes.lst
Normal file
@@ -0,0 +1,5 @@
|
||||
*/.svn/*
|
||||
*.xcf
|
||||
*.blend
|
||||
*.psd
|
||||
*~
|
||||
@@ -2,7 +2,8 @@
|
||||
from xml.sax import make_parser, handler, expatreader
|
||||
|
||||
# ElementTree for writing
|
||||
import xml.etree.cElementTree as ET
|
||||
#import xml.etree.cElementTree as ET
|
||||
import lxml.etree as ET
|
||||
|
||||
import re, os
|
||||
|
||||
|
||||
32
catalog/stable-2018-catalog/catalog.config.xml
Normal file
32
catalog/stable-2018-catalog/catalog.config.xml
Normal file
@@ -0,0 +1,32 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--Template catalog - copy and modify for your site as required-->
|
||||
<PropertyList>
|
||||
<local-output>/home/fgaddon/output/Aircraft-2018</local-output>
|
||||
<download-url n="0">http://mirrors.ibiblio.org/flightgear/ftp/Aircraft-2018/</download-url>
|
||||
<download-url n="1">http://ukmirror.flightgear.org/fgaddon/Aircraft-2018/</download-url>
|
||||
|
||||
<thumbnail-url n="0">http://mirrors.ibiblio.org/flightgear/ftp/Aircraft-2018/thumbnails</thumbnail-url>
|
||||
<thumbnail-url n="1">http://ukmirror.flightgear.org/official/Aircraft-2018/thumbnails</thumbnail-url>
|
||||
|
||||
|
||||
<!-- share zips with the trunk catalog where possible -->
|
||||
<share-output>/home/fgaddon/output/Aircraft</share-output>
|
||||
<share-md5-sums>/home/fgaddon/fgmeta/catalog/fgaddon-catalog-ukmirror/md5sum.xml</share-md5-sums>
|
||||
|
||||
<scm>
|
||||
<type>svn</type>
|
||||
<path>/home/fgaddon/fgaddon-release-2018.3/Aircraft</path>
|
||||
<skip>NTPS</skip>
|
||||
<skip>c172</skip>
|
||||
<skip>tu134</skip>
|
||||
</scm>
|
||||
|
||||
<include-dir>/home/fgaddon/fgdata-release_2018.3</include-dir>
|
||||
<include-dir>/home/fgaddon/fgaddon-release-2018.3</include-dir>
|
||||
|
||||
<upload n="0">
|
||||
<enabled type="bool">true</enabled>
|
||||
<type>rsync-ssh</type>
|
||||
<remote>ibiblio:/public/mirrors/flightgear/ftp/Aircraft-2018</remote>
|
||||
</upload>
|
||||
</PropertyList>
|
||||
14
catalog/stable-2018-catalog/template.xml
Normal file
14
catalog/stable-2018-catalog/template.xml
Normal file
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<PropertyList>
|
||||
<template>
|
||||
<version n="0">2018.*</version>
|
||||
<id>org.flightgear.fgaddon.stable_2018</id>
|
||||
<license>GPL</license>
|
||||
<url>http://mirrors.ibiblio.org/flightgear/ftp/Aircraft-2018/catalog.xml</url>
|
||||
<name>FlightGear aircraft distribution for 2018.x versions</name>
|
||||
<description>This hangar provides aircraft officially supported and maintained
|
||||
by the FlightGear project, under a free-software license. These aircraft
|
||||
are compatible with FlightGear versions from 2018.</description>
|
||||
|
||||
</template>
|
||||
</PropertyList>
|
||||
5
catalog/stable-2018-catalog/zip-excludes.lst
Normal file
5
catalog/stable-2018-catalog/zip-excludes.lst
Normal file
@@ -0,0 +1,5 @@
|
||||
*/.svn/*
|
||||
*.xcf
|
||||
*.blend
|
||||
*.psd
|
||||
*~
|
||||
@@ -24,10 +24,13 @@ parser.add_argument("--no-update",
|
||||
action="store_true")
|
||||
parser.add_argument("--clean", help="Force regeneration of all zip files",
|
||||
action="store_true")
|
||||
parser.add_argument("--quiet", help="Only print warnings and errors",
|
||||
action="store_true")
|
||||
parser.add_argument("dir", help="Catalog directory")
|
||||
args = parser.parse_args()
|
||||
|
||||
includes = []
|
||||
mirrors = [] # mirror base URLs
|
||||
|
||||
# xml node (robust) get text helper
|
||||
def get_xml_text(e):
|
||||
@@ -64,7 +67,8 @@ def scan_dir_for_change_date_mtime(path):
|
||||
return maxsec
|
||||
|
||||
def make_aircraft_zip(repo_path, name, zip_file):
|
||||
print "Updating:", name + '.zip'
|
||||
if (not args.quiet):
|
||||
print "Updating:", name + '.zip'
|
||||
savedir = os.getcwd()
|
||||
os.chdir(repo_path)
|
||||
if os.path.exists(zip_file):
|
||||
@@ -129,6 +133,7 @@ def process_aircraft_dir(name, repo_path):
|
||||
global output_dir
|
||||
global valid_zips
|
||||
global previews_dir
|
||||
global mirrors
|
||||
|
||||
aircraft_dir = os.path.join(repo_path, name)
|
||||
if not os.path.isdir(aircraft_dir):
|
||||
@@ -136,12 +141,14 @@ def process_aircraft_dir(name, repo_path):
|
||||
|
||||
(package, variants) = catalog.scan_aircraft_dir(aircraft_dir, includes)
|
||||
if package == None:
|
||||
print "skipping:", name, "(no -set.xml files)"
|
||||
if not args.quiet:
|
||||
print "skipping:", name, "(no -set.xml files)"
|
||||
return
|
||||
|
||||
print "%s:" % name,
|
||||
if not args.quiet:
|
||||
print "%s:" % name,
|
||||
|
||||
package_node = catalog.make_aircraft_node(name, package, variants, download_base)
|
||||
package_node = catalog.make_aircraft_node(name, package, variants, download_base, mirrors)
|
||||
|
||||
download_url = download_base + name + '.zip'
|
||||
if 'thumbnail' in package:
|
||||
@@ -168,11 +175,13 @@ def process_aircraft_dir(name, repo_path):
|
||||
or dir_mtime > os.path.getmtime(zipfile) \
|
||||
or args.clean:
|
||||
# rebuild zip file
|
||||
print "updating:", zipfile
|
||||
if not args.quiet:
|
||||
print "updating:", zipfile
|
||||
make_aircraft_zip(repo_path, name, zipfile)
|
||||
md5sum = get_md5sum(zipfile)
|
||||
else:
|
||||
print "(no change)"
|
||||
if not args.quiet:
|
||||
print "(no change)"
|
||||
if md5sum == "":
|
||||
md5sum = get_md5sum(zipfile)
|
||||
filesize = os.path.getsize(zipfile)
|
||||
@@ -186,6 +195,18 @@ def process_aircraft_dir(name, repo_path):
|
||||
else:
|
||||
md5sum_root.append( catalog.make_xml_leaf('aircraft_' + name, md5sum) )
|
||||
|
||||
# handle sharing
|
||||
if share_md5sum_root != None:
|
||||
sharedNode = share_md5sum_root.find(str('aircraft_' + name))
|
||||
if node != None:
|
||||
shared_md5 = get_xml_text(sharedNode)
|
||||
if shared_md5 == md5sum:
|
||||
if not args.quiet:
|
||||
print "Sharing zip with share catalog for:",name
|
||||
os.remove(zipfile)
|
||||
os.symlink(os.path.join( share_output_dir, name + '.zip' ), zipfile)
|
||||
|
||||
|
||||
# handle thumbnails
|
||||
copy_thumbnails_for_package(package, variants, name, aircraft_dir, thumbnail_dir)
|
||||
|
||||
@@ -224,11 +245,31 @@ else:
|
||||
md5sum_root = ET.Element('PropertyList')
|
||||
md5sum_tree = ET.ElementTree(md5sum_root)
|
||||
|
||||
# share .zip files with other output dirs
|
||||
share_output_dir = get_xml_text(config_node.find('share-output'))
|
||||
share_md5_file = get_xml_text(config_node.find('share-md5-sums'))
|
||||
if share_output_dir != '' and share_md5_file != '':
|
||||
print 'Output shared with:', share_output_dir
|
||||
share_md5sum_tree = ET.parse(share_md5_file, parser)
|
||||
share_md5sum_root = share_md5sum_tree.getroot()
|
||||
else:
|
||||
share_md5sum_root = None
|
||||
|
||||
# SCM providers
|
||||
scm_list = config_node.findall('scm')
|
||||
upload_node = config_node.find('upload')
|
||||
download_base = get_xml_text(config_node.find('download-url'))
|
||||
if not download_base.endswith('/'):
|
||||
download_base += '/'
|
||||
|
||||
download_base = None
|
||||
for i in config_node.findall("download-url"):
|
||||
url = get_xml_text(i)
|
||||
if not url.endswith('/'):
|
||||
url += '/'
|
||||
|
||||
if download_base == None:
|
||||
# download_base is the first entry
|
||||
download_base = url
|
||||
else:
|
||||
mirrors.append(url)
|
||||
|
||||
output_dir = get_xml_text(config_node.find('local-output'))
|
||||
if output_dir == '':
|
||||
@@ -300,7 +341,8 @@ for scm in scm_list:
|
||||
names = os.listdir(repo_path)
|
||||
for name in sorted(names, key=lambda s: s.lower()):
|
||||
if name in skip_list:
|
||||
print "skipping:", name
|
||||
if not args.quiet:
|
||||
print "skipping:", name
|
||||
continue
|
||||
|
||||
# process each aircraft in turn
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
2
fg-from-scratch/.gitignore
vendored
Normal file
2
fg-from-scratch/.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
scratch-*/
|
||||
vcpkg-git/
|
||||
@@ -46,8 +46,10 @@ IF NOT EXIST vcpkg-git/NUL (
|
||||
)
|
||||
cd %ROOT_DIR%
|
||||
|
||||
IF NOT EXIST openscenegraph-3.4-git/NUL (
|
||||
IF NOT EXIST openscenegraph-3.4-build/NUL (
|
||||
mkdir openscenegraph-3.4-build
|
||||
)
|
||||
IF NOT EXIST openscenegraph-3.4-git/NUL (
|
||||
echo Downloading OpenSceneGraph . . .
|
||||
git clone -b OpenSceneGraph-3.4 https://github.com/openscenegraph/OpenSceneGraph.git openscenegraph-3.4-git
|
||||
) ELSE (
|
||||
@@ -57,8 +59,10 @@ IF NOT EXIST openscenegraph-3.4-git/NUL (
|
||||
)
|
||||
cd %ROOT_DIR%
|
||||
|
||||
IF NOT EXIST simgear-git/NUL (
|
||||
IF NOT EXIST simgear-build/NUL (
|
||||
mkdir simgear-build
|
||||
)
|
||||
IF NOT EXIST simgear-git/NUL (
|
||||
echo Downloading SimGear . . .
|
||||
git clone -b next https://git.code.sf.net/p/flightgear/simgear simgear-git
|
||||
) ELSE (
|
||||
@@ -68,8 +72,10 @@ IF NOT EXIST simgear-git/NUL (
|
||||
)
|
||||
cd %ROOT_DIR%
|
||||
|
||||
IF NOT EXIST flightgear-git/NUL (
|
||||
IF NOT EXIST flightgear-build/NUL (
|
||||
mkdir flightgear-build
|
||||
)
|
||||
IF NOT EXIST flightgear-git/NUL (
|
||||
echo Downloading FlightGear . . .
|
||||
git clone -b next https://git.code.sf.net/p/flightgear/flightgear flightgear-git
|
||||
) ELSE (
|
||||
@@ -79,8 +85,10 @@ IF NOT EXIST flightgear-git/NUL (
|
||||
)
|
||||
cd %ROOT_DIR%
|
||||
|
||||
IF NOT EXIST terragear-git/NUL (
|
||||
IF NOT EXIST terragear-build/NUL (
|
||||
mkdir terragear-build
|
||||
)
|
||||
IF NOT EXIST terragear-git/NUL (
|
||||
echo Downloading TerraGear . . .
|
||||
git clone -b next https://git.code.sf.net/p/flightgear/terragear terragear-git
|
||||
) ELSE (
|
||||
|
||||
202
fg-from-scratch/fg-from-scratch.sh
Executable file
202
fg-from-scratch/fg-from-scratch.sh
Executable file
@@ -0,0 +1,202 @@
|
||||
#!/bin/bash
|
||||
|
||||
# fg-from-scratch - Linux utility to download, compile, and stage TerraGear and its dependencies
|
||||
# Copyright (C) 2018 Scott Giese (xDraconian) scttgs0@gmail.com
|
||||
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
|
||||
QT_SELECT=qt5
|
||||
ROOT_DIR=${PWD}
|
||||
PATH=${ROOT_DIR}/vcpkg-git/installed/x64-linux/bin:${PATH}
|
||||
CMAKE_TOOLCHAIN="Ninja"
|
||||
CHIPSET=$(gcc -march=native -Q --help=target | grep -- '-march=' | cut -f3)
|
||||
|
||||
QT5x64=$(qtpaths --install-prefix)
|
||||
QT5x64_LIB=${QT5x64}/lib
|
||||
QT5x64_CMAKE=${QT5x64_LIB}/cmake
|
||||
QT5x64_PKGCONFIG=${QT5x64_LIB}/pkgconfig
|
||||
export PKG_CONFIG_PATH=${ROOT_DIR}/scratch-install/lib64/pkgconfig:${ROOT_DIR}/vcpkg-git/installed/x64-linux/lib/pkgconfig:${QT5x64_PKGCONFIG}
|
||||
|
||||
echo ${QT5x64}
|
||||
|
||||
if [ ! -d "vcpkg-git" ]
|
||||
then
|
||||
echo Preparing to install external libraries via vcpkg . . .
|
||||
git clone https://github.com/Microsoft/vcpkg.git vcpkg-git
|
||||
|
||||
echo Compiling vcpkg
|
||||
cd vcpkg-git
|
||||
./bootstrap-vcpkg.sh
|
||||
|
||||
echo Compiling external libraries . . .
|
||||
./vcpkg install --triplet x64-linux boost cgal curl freeglut freetype glew jasper libxml2 openal-soft openssl plib sdl2 tiff zlib
|
||||
else
|
||||
echo Updating vcpkg . . .
|
||||
cd vcpkg-git
|
||||
PULL_RESULT=$(git pull)
|
||||
|
||||
if [ "${PULL_RESULT}" != "Already up to date." ]
|
||||
then
|
||||
echo Compiling vcpkg
|
||||
./bootstrap-vcpkg.sh
|
||||
fi
|
||||
|
||||
echo Updating external libraries . . .
|
||||
./vcpkg update
|
||||
./vcpkg upgrade --triplet x64-linux --no-dry-run
|
||||
|
||||
echo Compiling external libraries . . .
|
||||
./vcpkg install --triplet x64-linux boost cgal curl freeglut freetype glew jasper libxml2 openal-soft openssl plib sdl2 tiff zlib
|
||||
fi
|
||||
cd ${ROOT_DIR}
|
||||
|
||||
if [ ! -d "scratch-source" ]
|
||||
then
|
||||
mkdir scratch-source
|
||||
fi
|
||||
if [ ! -d "scratch-build" ]
|
||||
then
|
||||
mkdir scratch-build
|
||||
fi
|
||||
if [ ! -d "scratch-install" ]
|
||||
then
|
||||
mkdir scratch-install
|
||||
fi
|
||||
|
||||
if [ ! -d "scratch-build/openscenegraph-3.4" ]
|
||||
then
|
||||
mkdir scratch-build/openscenegraph-3.4
|
||||
fi
|
||||
if [ ! -d "scratch-source/openscenegraph-3.4-git" ]
|
||||
then
|
||||
echo Downloading OpenSceneGraph . . .
|
||||
git clone -b OpenSceneGraph-3.4 https://github.com/openscenegraph/OpenSceneGraph.git scratch-source/openscenegraph-3.4-git
|
||||
else
|
||||
echo Updating OpenSceneGraph . . .
|
||||
cd scratch-source/openscenegraph-3.4-git
|
||||
git pull
|
||||
fi
|
||||
cd ${ROOT_DIR}
|
||||
|
||||
if [ ! -d "scratch-build/simgear" ]
|
||||
then
|
||||
mkdir scratch-build/simgear
|
||||
fi
|
||||
if [ ! -d "scratch-source/simgear-git" ]
|
||||
then
|
||||
echo Downloading SimGear . . .
|
||||
git clone -b next https://git.code.sf.net/p/flightgear/simgear scratch-source/simgear-git
|
||||
else
|
||||
echo Updating SimGear . . .
|
||||
cd scratch-source/simgear-git
|
||||
git pull
|
||||
fi
|
||||
cd ${ROOT_DIR}
|
||||
|
||||
if [ ! -d "scratch-build/flightgear" ]
|
||||
then
|
||||
mkdir scratch-build/flightgear
|
||||
fi
|
||||
if [ ! -d "scratch-source/flightgear-git" ]
|
||||
then
|
||||
echo Downloading FlightGear . . .
|
||||
git clone -b next https://git.code.sf.net/p/flightgear/flightgear scratch-source/flightgear-git
|
||||
else
|
||||
echo Updating FlightGear . . .
|
||||
cd scratch-source/flightgear-git
|
||||
git pull
|
||||
fi
|
||||
cd ${ROOT_DIR}
|
||||
|
||||
if [ ! -d "scratch-build/terragear" ]
|
||||
then
|
||||
mkdir scratch-build/terragear
|
||||
fi
|
||||
if [ ! -d "scratch-source/terragear-git" ]
|
||||
then
|
||||
echo Downloading TerraGear . . .
|
||||
git clone -b next https://git.code.sf.net/p/flightgear/terragear scratch-source/terragear-git
|
||||
else
|
||||
echo Updating TerraGear . . .
|
||||
cd scratch-source/terragear-git
|
||||
git pull
|
||||
fi
|
||||
cd ${ROOT_DIR}
|
||||
|
||||
echo Compiling OpenSceneGraph . . .
|
||||
cd scratch-build/openscenegraph-3.4
|
||||
cmake ../../scratch-source/openscenegraph-3.4-git -G ${CMAKE_TOOLCHAIN} \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DCMAKE_INSTALL_PREFIX=${ROOT_DIR}/scratch-install \
|
||||
-DCMAKE_PREFIX_PATH=${ROOT_DIR}/scratch-install/lib:${ROOT_DIR}/vcpkg-git/installed/x64-linux/lib:${QT5x64_LIB} \
|
||||
-DCMAKE_CXX_FLAGS="-march=${CHIPSET} -mtune=${CHIPSET}" \
|
||||
-DCMAKE_C_FLAGS="-march=${CHIPSET} -mtune=${CHIPSET}" \
|
||||
-DBUILD_DOCUMENTATION:BOOL=1 \
|
||||
-DBUILD_OSG_APPLICATIONS:BOOL=1 \
|
||||
-DQt5Core_DIR=${QT5x64_CMAKE}/Qt5Core \
|
||||
-DQt5Gui_DIR=${QT5x64_CMAKE}/Qt5Gui \
|
||||
-DQt5OpenGL_DIR=${QT5x64_CMAKE}/Qt5OpenGL \
|
||||
-DQt5Widgets_DIR=${QT5x64_CMAKE}/Qt5Widgets
|
||||
cmake --build . --config Release --target install
|
||||
cd ${ROOT_DIR}
|
||||
|
||||
echo Compiling SimGear . . .
|
||||
cd scratch-build/simgear
|
||||
cmake ../../scratch-source/simgear-git -G ${CMAKE_TOOLCHAIN} \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DCMAKE_INSTALL_PREFIX=${ROOT_DIR}/scratch-install \
|
||||
-DCMAKE_PREFIX_PATH=${ROOT_DIR}/scratch-install/lib:${ROOT_DIR}/vcpkg-git/installed/x64-linux/lib:${QT5x64} \
|
||||
-DCMAKE_CXX_FLAGS="-march=${CHIPSET} -mtune=${CHIPSET}" \
|
||||
-DCMAKE_C_FLAGS="-march=${CHIPSET} -mtune=${CHIPSET}"
|
||||
cmake --build . --config Release --target install
|
||||
cd ${ROOT_DIR}
|
||||
|
||||
echo Compiling FlightGear . . .
|
||||
cd scratch-build/flightgear
|
||||
cmake ../../scratch-source/flightgear-git -G ${CMAKE_TOOLCHAIN} \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DCMAKE_INSTALL_PREFIX=${ROOT_DIR}/scratch-install \
|
||||
-DCMAKE_PREFIX_PATH=${ROOT_DIR}/scratch-install/lib:${ROOT_DIR}/vcpkg-git/installed/x64-linux/lib:${QT5x64_LIB} \
|
||||
-DCMAKE_CXX_FLAGS="-march=${CHIPSET} -mtune=${CHIPSET}" \
|
||||
-DCMAKE_C_FLAGS="-march=${CHIPSET} -mtune=${CHIPSET}" \
|
||||
-DOSG_FSTREAM_EXPORT_FIXED:BOOL=1 \
|
||||
-DENABLE_JSBSIM:BOOL=1 \
|
||||
-DENABLE_GPSSMOOTH:BOOL=1 \
|
||||
-DENABLE_FGVIEWER:BOOL=1 \
|
||||
-DENABLE_STGMERGE:BOOL=0 \
|
||||
-DQt5Core_DIR=${QT5x64_CMAKE}/Qt5Core \
|
||||
-DQt5Gui_DIR=${QT5x64_CMAKE}/Qt5Gui \
|
||||
-DQt5LinguistTools_DIR=${QT5x64_CMAKE}/Qt5LinguistTools \
|
||||
-DQt5Network_DIR=${QT5x64_CMAKE}/Qt5Network \
|
||||
-DQt5Qml_DIR=${QT5x64_CMAKE}/Qt5Qml \
|
||||
-DQt5Quick_DIR=${QT5x64_CMAKE}/Qt5Quick \
|
||||
-DQt5Svg_DIR=${QT5x64_CMAKE}/Qt5Svg \
|
||||
-DQt5Widgets_DIR=${QT5x64_CMAKE}/Qt5Widgets \
|
||||
-DQt5_DIR=${QT5x64_CMAKE}/Qt5
|
||||
cmake --build . --config Release --target install
|
||||
cd ${ROOT_DIR}
|
||||
|
||||
echo Compiling TerraGear . . .
|
||||
cd scratch-build/terragear
|
||||
cmake ../../scratch-source/terragear-git -G ${CMAKE_TOOLCHAIN} \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DCMAKE_INSTALL_PREFIX=${ROOT_DIR}/scratch-install \
|
||||
-DCMAKE_PREFIX_PATH=${ROOT_DIR}/scratch-install/lib:${ROOT_DIR}/vcpkg-git/installed/x64-linux/lib:${QT5x64_LIB} \
|
||||
-DCMAKE_CXX_FLAGS="-march=${CHIPSET} -mtune=${CHIPSET}" \
|
||||
-DCMAKE_C_FLAGS="-march=${CHIPSET} -mtune=${CHIPSET}"
|
||||
cmake --build . --config Release --target install
|
||||
cd ${ROOT_DIR}
|
||||
|
||||
echo All done!
|
||||
2
fgdata
2
fgdata
Submodule fgdata updated: 062722daca...dade6b7218
Submodule flightgear updated: 08d3247f2d...d8dd148245
2
getstart
2
getstart
Submodule getstart updated: 43e1c38faa...d83b8723ea
@@ -23,15 +23,16 @@ echo "Starting on SimGear"
|
||||
pushd sgBuild
|
||||
cmake -DCMAKE_INSTALL_PREFIX:PATH=$WORKSPACE/dist -DCMAKE_BUILD_TYPE=RelWithDebInfo ../simgear
|
||||
|
||||
# compile (with out-j for now, it's hitting process limits)
|
||||
cmake --build .
|
||||
# compile
|
||||
make
|
||||
|
||||
if [ $? -ne '0' ]; then
|
||||
echo "make simgear failed"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
cmake --build . --target install
|
||||
make install
|
||||
|
||||
|
||||
popd
|
||||
|
||||
@@ -47,15 +48,14 @@ fi
|
||||
|
||||
cmake -DFG_BUILD_TYPE=$FGBUILDTYPE -DCMAKE_INSTALL_PREFIX:PATH=$WORKSPACE/dist -DCMAKE_BUILD_TYPE=RelWithDebInfo ../flightgear
|
||||
|
||||
# compile (with out-j for now, it's hitting process limits)
|
||||
cmake --build .
|
||||
make
|
||||
|
||||
if [ $? -ne '0' ]; then
|
||||
echo "make flightgear failed"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
cmake --build . --target install
|
||||
make install
|
||||
|
||||
popd
|
||||
|
||||
|
||||
@@ -91,6 +91,7 @@ PLURAL_FORMS = {
|
||||
"nl": ["singular", "plural"],
|
||||
"pl": ["singular", "paucal", "plural"],
|
||||
"pt": ["singular", "plural"],
|
||||
"ru": ["singular", "plural"],
|
||||
"zh": ["universal"] # universal form
|
||||
}
|
||||
|
||||
@@ -576,10 +577,25 @@ class Translation:
|
||||
return ''.join(l)
|
||||
|
||||
def __getitem__(self, cat):
|
||||
"""Get all translations for a given category.
|
||||
|
||||
Return a mapping where each key is a tid (instance of a subclass
|
||||
of AbstractTranslationUnitId) and each value a TranslationUnit
|
||||
instance.
|
||||
|
||||
"""
|
||||
return self.translations[cat]
|
||||
|
||||
def __setitem__(self, cat, translUnit):
|
||||
self.translations[cat] = translUnit
|
||||
def __setitem__(self, cat, mapping):
|
||||
"""Replace all translations for a given category.
|
||||
|
||||
cat: a category name (string such as 'sys', 'options', etc.)
|
||||
mapping: a mapping where each key is a tid (instance of a
|
||||
subclass of AbstractTranslationUnitId) and each value a
|
||||
TranslationUnit instance.
|
||||
|
||||
"""
|
||||
self.translations[cat] = dict(mapping)
|
||||
|
||||
def __iter__(self):
|
||||
return iter(self.translations)
|
||||
@@ -1654,10 +1670,8 @@ registerFormatHandler("xliff", XliffFormatHandler)
|
||||
# Could also be a dict
|
||||
def L10nResMgrForCat(category):
|
||||
"""Map from category/resource name to L10NResourceManager class."""
|
||||
if category in ("menu", "options", "tips"):
|
||||
if category in ("menu", "options", "sys", "tips"):
|
||||
return BasicL10NResourceManager
|
||||
elif category == "sys":
|
||||
return SysL10NResourceManager
|
||||
else:
|
||||
assert False, "unexpected category: {!r}".format(category)
|
||||
|
||||
@@ -1843,7 +1857,7 @@ class L10NResourceManagerBase:
|
||||
class BasicL10NResourceManager(L10NResourceManagerBase):
|
||||
"""Resource manager for FG XML i18n files with the simplest structure.
|
||||
|
||||
This is suitable for resources (menu, options, tips) where
|
||||
This is suitable for resources (menu, options, tips, etc.) where
|
||||
translations are in direct children of the <PropertyList> element,
|
||||
with no more structure.
|
||||
|
||||
@@ -1851,7 +1865,16 @@ class BasicL10NResourceManager(L10NResourceManagerBase):
|
||||
@classmethod
|
||||
def _findMainNode(cls, rootNode):
|
||||
"""
|
||||
Return the node directly containing the translations in an FG XML file."""
|
||||
Return the node directly containing the translations in an FG XML file.
|
||||
|
||||
This method was added when sys.xml had all its useful contents
|
||||
inside a 'splash' top-level node, instead of having a flat
|
||||
structure like the other FG XML i18n files (options.xml,
|
||||
menu.xml, etc.). At that time, we thus had a
|
||||
SysL10NResourceManager class derived from this class only to
|
||||
override this method.
|
||||
|
||||
"""
|
||||
assert rootNode.tag == "PropertyList", rootNode.tag
|
||||
return rootNode
|
||||
|
||||
@@ -1909,17 +1932,3 @@ class BasicL10NResourceManager(L10NResourceManagerBase):
|
||||
[text], isPlural=isPlural, logger=logger)
|
||||
|
||||
return nbWhitespaceProblems
|
||||
|
||||
|
||||
class SysL10NResourceManager(BasicL10NResourceManager):
|
||||
|
||||
@classmethod
|
||||
def _findMainNode(cls, rootNode):
|
||||
"""
|
||||
Return the node directly containing the translations in sys.xml."""
|
||||
assert rootNode.tag == "PropertyList", rootNode.tag
|
||||
# In sys.xml, all translations are inside a <splash> element
|
||||
mainNode = rootNode.find("splash")
|
||||
assert mainNode is not None
|
||||
|
||||
return mainNode
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#!/bin/bash
|
||||
|
||||
THIS_RELEASE="2018.3"
|
||||
NEXT_RELEASE="2018.4"
|
||||
THIS_RELEASE="2019.1"
|
||||
NEXT_RELEASE="2019.2"
|
||||
SUBMODULES="simgear flightgear fgdata getstart"
|
||||
|
||||
#:<< 'COMMENT_END'
|
||||
|
||||
2
simgear
2
simgear
Submodule simgear updated: 1b3c048363...d6bbad87c4
22
update_git_mirror.sh
Executable file
22
update_git_mirror.sh
Executable file
@@ -0,0 +1,22 @@
|
||||
#!/bin/bash
|
||||
|
||||
mirror_dirs='fgdata fgmeta flightgear simgear getstart windows-3rd-party fgrun'
|
||||
|
||||
pushd /var/lib/git
|
||||
|
||||
for dir in $mirror_dirs
|
||||
do
|
||||
repo_name=$dir.git
|
||||
if [ ! -d "$repo_name" ]; then
|
||||
echo "Doing initial clone"
|
||||
git clone --mirror git://git.code.sf.net/p/flightgear/$dir
|
||||
fi
|
||||
|
||||
pushd $repo_name
|
||||
echo "Updating in $PWD"
|
||||
git remote update
|
||||
popd
|
||||
done
|
||||
|
||||
popd
|
||||
|
||||
Reference in New Issue
Block a user