diff --git a/.hgignore b/.hgignore deleted file mode 100644 index d2332d3..0000000 --- a/.hgignore +++ /dev/null @@ -1,6 +0,0 @@ -# Merged files -\.orig$ - -# Backup files -.*~$ -\.swp$ diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..d643309 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,8 @@ +language: cpp +compiler: + - clang + - gcc +script: + - mkdir build + - cd build + - cmake .. && make diff --git a/COPYING b/LICENSE similarity index 99% rename from COPYING rename to LICENSE index d645695..651e752 100644 --- a/COPYING +++ b/LICENSE @@ -1,4 +1,3 @@ - Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -179,7 +178,7 @@ APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" + boilerplate notice, with the fields enclosed by brackets "{} replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a @@ -187,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright 2017 Daniel Warner Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/README b/README deleted file mode 100644 index ef355fd..0000000 --- a/README +++ /dev/null @@ -1,5 +0,0 @@ -cd -mkdir build -cd build -cmake ../ -make diff --git a/README.md b/README.md new file mode 100644 index 0000000..eb31228 --- /dev/null +++ b/README.md @@ -0,0 +1,19 @@ +SGP4 library +============ + +License +------- + + Copyright 2013 Jake Wharton + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License.