-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
380 additions
and
130 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,29 +3,31 @@ language: python | |
python: | ||
- 2.7 | ||
|
||
env: | ||
global: | ||
- secure: ZfUM5EuWFnPXgyw7M/dz4deW8qmxGsrCZTSeeLUeJj6lQ/zhM9Dn259IL4SuA3Neji6WOLqm6Z7SmXjm7ieFmn2/Fshuz1KWsGe8XdHDm8PUsfj1XVOpZBKqyPLUv2CPxR+V22fDaAUX3UlWdaFhsWYJzVo3GYX2fJtshFjKDJw= | ||
- APT_DEPENDS="gfortran-4.9 binutils" | ||
- PIP_DEPENDS="FoBiS.py markdown-checklist ford" | ||
matrix: | ||
- SCRIPT="FoBiS.py rule -ex makecoverage" | ||
ACTION="COVERAGE" | ||
- SCRIPT="./makedoc.sh Lib_VTK_IO" | ||
ACTION="MAKEDOC" | ||
|
||
before_install: | ||
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y | ||
- sudo apt-get update -qq | ||
- sudo apt-get install gfortran-4.9 | ||
|
||
install: | ||
- sudo apt-get install -y $APT_DEPENDS | ||
- sudo pip install $PIP_DEPENDS | ||
- ln -fs /usr/bin/gfortran-4.9 gfortran | ||
- pip install FoBiS.py | ||
- pip install markdown-checklist | ||
- pip install ford | ||
- ln -fs /usr/bin/gcov-4.9 gcov | ||
- export PATH=".:$PATH" | ||
|
||
before_script: | ||
- FoBiS.py build -mode test-driver-gnu | ||
|
||
script: | ||
- ./Test_Driver/Test_Driver -unst | ||
- $SCRIPT | ||
|
||
after_success: | ||
- git config --global user.name "Stefano Zaghi" | ||
- git config --global user.email "[email protected]" | ||
- git clone --quiet --branch=gh-pages https://${GH_TOKEN}@github.com/szaghi/Lib_VTK_IO doc/html | ||
- FoBiS.py rule -ex makedoc | ||
- cd doc/html | ||
- git add -f --all * | ||
- git commit -m "Travis CI autocommit from travis build ${TRAVIS_BUILD_NUMBER}" | ||
- git push -fq origin gh-pages | ||
- cd ../../ | ||
- cd $TRAVIS_BUILD_DIR | ||
- if [[ $ACTION == COVERAGE ]]; then bash <(curl -s https://codecov.io/bash); fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
Simplified BSD License | ||
====================== | ||
|
||
Copyright © 2015, Stefano Zaghi | ||
|
||
All rights reserved. | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are met: | ||
|
||
1. Redistributions of source code must retain the above copyright notice, this | ||
list of conditions and the following disclaimer. | ||
2. Redistributions in binary form must reproduce the above copyright notice, | ||
this list of conditions and the following disclaimer in the documentation | ||
and/or other materials provided with the distribution. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS” AND | ||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR | ||
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
|
||
The views and conclusions contained in the software and documentation are those | ||
of the authors and should not be interpreted as representing official policies, | ||
either expressed or implied, of the FreeBSD Project. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
Modified BSD License | ||
==================== | ||
|
||
Copyright © 2015, Stefano Zaghi | ||
|
||
All rights reserved. | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are met: | ||
|
||
1. Redistributions of source code must retain the above copyright | ||
notice, this list of conditions and the following disclaimer. | ||
2. Redistributions in binary form must reproduce the above copyright | ||
notice, this list of conditions and the following disclaimer in the | ||
documentation and/or other materials provided with the distribution. | ||
3. Neither the name of the Lib_VTK_IO nor the | ||
names of its contributors may be used to endorse or promote products | ||
derived from this software without specific prior written permission. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS” AND | ||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
DISCLAIMED. IN NO EVENT SHALL Stefano Zaghi BE LIABLE FOR ANY | ||
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,49 @@ | ||
### Version v1.0.2 | ||
# Change Log | ||
|
||
Stable release. Fully backward compatible, minor bugs fix: | ||
## [Unreleased](https://github.com/szaghi/BeFoR64/tree/HEAD) | ||
|
||
+ change encoders from elemental to pure due to the allocation of code; | ||
+ check the dimensions of bits array for not overtake its dimensions; | ||
+ add travis ci support. | ||
[Full Changelog](https://github.com/szaghi/BeFoR64/compare/v1.0.3...HEAD) | ||
|
||
### Version v1.0.1 | ||
**Closed issues:** | ||
|
||
Stable release. Fully backward compatible: | ||
- Pure/Elemental with unlimited polymorphic [\#8](https://github.com/szaghi/BeFoR64/issues/8) | ||
|
||
+ add scalar/array encoders for character; | ||
+ add scalar/array decoders for character; | ||
+ add scalar/array encoders for unlimited polymorphic; | ||
+ add scalar/array decoders for unlimited polymorphic. | ||
## [v1.0.3](https://github.com/szaghi/BeFoR64/tree/v1.0.3) (2015-06-08) | ||
|
||
### Version v1.0.0 | ||
[Full Changelog](https://github.com/szaghi/BeFoR64/compare/v1.0.2...v1.0.3) | ||
|
||
Stable release. Fully backward compatible: | ||
**Closed issues:** | ||
|
||
+ add scalar encoders for numbers; | ||
+ add scalar/array decoders for numbers; | ||
+ add initializing procedure; | ||
+ add autotest procedure. | ||
- Unlimited polymorphic encoding/decoding [\#5](https://github.com/szaghi/BeFoR64/issues/5) | ||
|
||
### Version v0.0.1 | ||
- Characters encoding/decoding [\#4](https://github.com/szaghi/BeFoR64/issues/4) | ||
|
||
First stable release. | ||
- Wiki Exploiting [\#3](https://github.com/szaghi/BeFoR64/issues/3) | ||
|
||
- Documentation improvement [\#2](https://github.com/szaghi/BeFoR64/issues/2) | ||
|
||
## [v1.0.2](https://github.com/szaghi/BeFoR64/tree/v1.0.2) (2015-02-12) | ||
|
||
[Full Changelog](https://github.com/szaghi/BeFoR64/compare/v1.0.1...v1.0.2) | ||
|
||
## [v1.0.1](https://github.com/szaghi/BeFoR64/tree/v1.0.1) (2015-02-03) | ||
|
||
[Full Changelog](https://github.com/szaghi/BeFoR64/compare/v1.0.0...v1.0.1) | ||
|
||
**Closed issues:** | ||
|
||
- Decoders implementing [\#1](https://github.com/szaghi/BeFoR64/issues/1) | ||
|
||
## [v1.0.0](https://github.com/szaghi/BeFoR64/tree/v1.0.0) (2015-02-02) | ||
|
||
[Full Changelog](https://github.com/szaghi/BeFoR64/compare/v0.1.1...v1.0.0) | ||
|
||
## [v0.1.1](https://github.com/szaghi/BeFoR64/tree/v0.1.1) (2015-01-29) | ||
|
||
[Full Changelog](https://github.com/szaghi/BeFoR64/compare/v0.0.1...v0.1.1) | ||
|
||
## [v0.0.1](https://github.com/szaghi/BeFoR64/tree/v0.0.1) (2015-01-27) | ||
|
||
|
||
|
||
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.