Skip to content

Commit 5c0ef86

Browse files
authored
docs: change to markdown (README, LICENSE, INSTALL) (#298)
1 parent a440cd3 commit 5c0ef86

File tree

7 files changed

+78
-110
lines changed

7 files changed

+78
-110
lines changed

.github/workflows/build-windows.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -86,11 +86,12 @@ jobs:
8686
$env:PROJ_LIB = "$sdkprefix\bin\proj9\share"
8787
.\mapcache_seed.exe -c "${{github.workspace}}\build\mapcache.xml" -t global --force -z 0,1
8888
Copy-Item -Path "${{github.workspace}}\build\global\GoogleMapsCompatible\00\000\000\000\000\000\000.jpg" -Destination "${{github.workspace}}\seed.jpg"
89-
$match = (.\gdal\apps\gdalinfo.exe -checksum "${{github.workspace}}\seed.jpg" | Select-String -CaseSensitive -Pattern "Checksum=21336" -Quiet)
89+
.\gdal\apps\gdalinfo.exe -checksum "${{github.workspace}}\seed.jpg"
90+
$match = (.\gdal\apps\gdalinfo.exe -checksum "${{github.workspace}}\seed.jpg" | Select-String -CaseSensitive -Pattern "Checksum=21411" -Quiet)
9091
if ( $match ) {
91-
"Success"
92+
"Success: matched checksum for seed.jpg"
9293
} else {
93-
"Failure: Did not get expected checksum"
94+
"Failure: Did not get expected checksum for seed.jpg"
9495
exit 1
9596
}
9697
$env:MAPCACHE_CONFIG_FILE = "${{github.workspace}}\build\mapcache.xml"
@@ -99,11 +100,12 @@ jobs:
99100
$env:QUERY_STRING = ""
100101
Start-Process -FilePath ".\mapcache.fcgi.exe" -RedirectStandardOutput "${{github.workspace}}\fcgi.jpg" -NoNewWindow -Wait
101102
perl.exe -0777 -pi -e 'binmode ARGV;binmode ARGVOUT;s/[A-Z][a-z][-:; ,\/=A-Za-z0-9\r\n]*//' "${{github.workspace}}\fcgi.jpg"
102-
$match = (.\gdal\apps\gdalinfo.exe -checksum "${{github.workspace}}\fcgi.jpg" | Select-String -CaseSensitive -Pattern "Checksum=21336" -Quiet)
103+
.\gdal\apps\gdalinfo.exe -checksum "${{github.workspace}}\fcgi.jpg"
104+
$match = (.\gdal\apps\gdalinfo.exe -checksum "${{github.workspace}}\fcgi.jpg" | Select-String -CaseSensitive -Pattern "Checksum=21411" -Quiet)
103105
if ( $match ) {
104-
"Success"
106+
"Success: matched checksum for fcgi.jpg"
105107
} else {
106-
"Failure: Did not get expected checksum"
108+
"Failure: Did not get expected checksum for fcgi.jpg"
107109
exit 1
108110
}
109111

INSTALL

Lines changed: 0 additions & 15 deletions
This file was deleted.

INSTALL.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Unix compilation instructions
2+
-----------------------------
3+
4+
MapCache now builds with CMake. It seems much happier if it can find apxs, which
5+
means you might need apache2-prefork installed (on ubuntu `apt-get install apache2-prefork-dev`).
6+
7+
```
8+
cd mapcache
9+
mkdir build
10+
cd build
11+
cmake ..
12+
make
13+
sudo make install
14+
```
15+
16+
Detailed instructions and configuration options are maintained in the MapCache
17+
documentation :
18+
19+
https://mapserver.org/mapcache/install.html

LICENSE

Lines changed: 0 additions & 29 deletions
This file was deleted.

LICENSE.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
MapCache Licensing
2+
==================
3+
4+
Copyright (c) 2008-2023 Open Source Geospatial Foundation.
5+
Copyright (c) 1996-2008 Regents of the University of Minnesota.
6+
7+
Permission is hereby granted, free of charge, to any person obtaining a
8+
copy of this software and associated documentation files (the "Software"),
9+
to deal in the Software without restriction, including without limitation
10+
the rights to use, copy, modify, merge, publish, distribute, sublicense,
11+
and/or sell copies of the Software, and to permit persons to whom the
12+
Software is furnished to do so, subject to the following conditions:
13+
14+
The above copyright notice and this permission notice shall be included in
15+
all copies of this Software or works derived from this Software.
16+
17+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18+
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20+
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23+
DEALINGS IN THE SOFTWARE.
24+

README.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
MapCache
2+
========
3+
4+
[![Build Status](https://travis-ci.org/MapServer/mapcache.svg?branch=main)](https://travis-ci.org/MapServer/mapcache)
5+
[![Appveyor Build Status](https://ci.appveyor.com/api/projects/status/7al5utxjh83ig71v?svg=true)](https://ci.appveyor.com/project/mapserver/mapcache)
6+
7+
Summary
8+
-------
9+
10+
MapCache is a server that implements tile caching to speed up access to WMS layers.
11+
The primary objectives are to be fast and easily deployable, while offering the
12+
essential features (and more!) expected from a tile caching solution.
13+
14+
For more information and complete documentation please
15+
visit:
16+
17+
https://mapserver.org/mapcache/
18+
19+
Questions relating to MapCache use and development can be asked on the
20+
MapServer mailing lists:
21+
22+
https://mapserver.org/community/lists.html
23+
24+
License
25+
-------
26+
27+
See [LICENSE.md](LICENSE.md)

README.rst

Lines changed: 0 additions & 60 deletions
This file was deleted.

0 commit comments

Comments
 (0)