File tree Expand file tree Collapse file tree 6 files changed +181
-713
lines changed Expand file tree Collapse file tree 6 files changed +181
-713
lines changed Original file line number Diff line number Diff line change @@ -91,6 +91,8 @@ patch=$(grep -e 'SET(CPACK_PACKAGE_VERSION_PATCH' ../CMakeLists.txt |
91
91
92
92
version=$( echo $major .$minor .$patch )
93
93
94
+ timestamp=$( date +' %s' )
95
+
94
96
print_info " Building version $version -$RELVER "
95
97
96
98
if [ " $build_only " -ne " 1" ]
@@ -101,12 +103,13 @@ then
101
103
102
104
print_info " Creating source tarball"
103
105
# Create source tarball
104
- git -C .. archive --format=tar --prefix=qgis-$version / $BRANCH | bzip2 > sources/qgis-$version .tar.gz
106
+ git -C .. archive --format=tar --prefix=qgis-$version / $BRANCH | bzip2 > sources/qgis-$version .tar.bz2
105
107
106
108
print_info " Creating source package"
107
109
# Create spec file
108
110
cat qgis.spec.template | sed -e s/%{_version}/$version /g \
109
111
| sed -e s/%{_relver}/$RELVER /g \
112
+ | sed -e s/%{_timestamp}/$timestamp /g \
110
113
| tee qgis.spec 1> /dev/null
111
114
# Build source package
112
115
mock --buildsrpm --spec qgis.spec --sources ./sources --define " _relver $RELVER " --define " _version $version " --resultdir=$OUTDIR
Original file line number Diff line number Diff line change @@ -10,10 +10,10 @@ OUTDIR="result/"
10
10
11
11
# Which arches to build for. Check /etc/mock for possible options
12
12
ARCHS =(
13
- " fedora-21 -i386"
14
- " fedora-21 -x86_64"
15
- " fedora-22 -i386"
16
- " fedora-22 -x86_64"
13
+ " fedora-26 -i386"
14
+ " fedora-26 -x86_64"
15
+ " fedora-27 -i386"
16
+ " fedora-27 -x86_64"
17
17
)
18
18
19
19
# Which git branch to export. Normally take the current
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change
1
+
2
+ diff -up cmake/PyQtMacros.cmake cmake/PyQtMacros.cmake.lib64
3
+ --- cmake/PyQtMacros.cmake 2017-09-29 17:55:02.000000000 +0200
4
+ +++ cmake/PyQtMacros.cmake.lib64 2017-09-30 18:32:30.277970717 +0200
5
+ @@ -36,7 +36,7 @@ MACRO(PYQT_WRAP_UI outfiles )
6
+ ELSE(WIN32)
7
+ # TODO osx
8
+ SET(PYUIC_WRAPPER "${CMAKE_SOURCE_DIR}/scripts/pyuic-wrapper.sh")
9
+ - SET(PYUIC_WRAPPER_PATH "${QGIS_OUTPUT_DIRECTORY}/lib")
10
+ + SET(PYUIC_WRAPPER_PATH "${QGIS_OUTPUT_DIRECTORY}/lib${LIB_SUFFIX}")
11
+ ENDIF(WIN32)
12
+
13
+ FOREACH(it ${ARGN})
Original file line number Diff line number Diff line change 6
6
<comment xml : lang =" de" >QGIS-Projekt</comment >
7
7
<sub-class-of type =" application/xml" />
8
8
<alias type =" application/x-qgis" />
9
+ <icon name =" qgis-qgs" />
9
10
<magic priority =" 50" >
10
11
<match type =" string" offset =" 0" value =" < !DOCTYPE qgis" >
11
12
<match type =" string" offset =" 0:256" value =" < qgis projectname" />
18
19
<comment >QGIS layer settings</comment >
19
20
<comment xml : lang =" de" >QGIS-Layereinstellungen</comment >
20
21
<sub-class-of type =" application/xml" />
22
+ <icon name =" qgis-qml" />
21
23
<magic priority =" 50" >
22
24
<match type =" string" offset =" 0" value =" < !DOCTYPE qgis" >
23
25
<match type =" string" offset =" 0:256" value =" < qgis version" />
Original file line number Diff line number Diff line change 2
2
# It is not meant for productive use.
3
3
4
4
RewriteEngine on
5
- RewriteRule ^/wms/(.+ )$ /qgis/qgis_mapserv.fcgi?map=/var/www/wms/$1.qgs [QSA,PT]
5
+ RewriteRule ^/wms/(.* )$ /qgis/qgis_mapserv.fcgi?map=/var/www/wms/$1.qgs [QSA,PT]
6
6
7
7
ScriptAlias /qgis/ "/usr/libexec/qgis/"
8
8
9
-
10
9
<Directory "/usr/libexec/qgis/">
11
10
12
11
Options ExecCGI
13
12
Options FollowSymLinks
14
13
15
14
<IfModule mod_authz_core.c>
16
- # Apache 2.4
17
- Require local
18
- </IfModule>
19
-
20
- <IfModule !mod_authz_core.c>
21
- # Apache 2.2
22
- Order deny,allow
23
- Deny from all
24
- Allow from 127.0.0.1
25
- Allow from ::1
26
- </IfModule>
27
-
15
+ # Apache 2.4
16
+ Require local
17
+ </IfModule>
28
18
</Directory>
You can’t perform that action at this time.
0 commit comments