[segyio] 01/01: Merge tag 'upstream/1.3.3'

Jørgen Kvalsvik jokva-guest at moszumanska.debian.org
Wed Sep 20 08:18:08 UTC 2017


This is an automated email from the git hooks/post-receive script.

jokva-guest pushed a commit to branch master
in repository segyio.

commit 23bd32111f6cbb50d2853e92bf1458efca2bca0a
Merge: 1d348c5 f88475b
Author: Jørgen Kvalsvik <jokva at statiol.com>
Date:   Wed Sep 20 10:15:53 2017 +0200

    Merge tag 'upstream/1.3.3'
    
    Upstream version 1.3.3

 .gitmodules                            |    6 +
 .travis.yml                            |  151 +++
 CMakeLists.txt                         |   42 +
 License.md                             |  157 +++
 MANIFEST.in                            |    3 +
 README.md                              |  314 ++++++
 applications/CMakeLists.txt            |   48 +
 applications/apputils.c                |   53 ++
 applications/apputils.h                |   11 +
 applications/segyinfo.c                |  167 ++++
 applications/segyinspect.c             |  185 ++++
 applications/segyio-catb.c             |  170 ++++
 applications/segyio-cath.c             |  156 +++
 applications/segyio-catr.c             |  530 +++++++++++
 applications/segyio-crop.c             |  458 +++++++++
 applications/test/catb.py              |   83 ++
 applications/test/cath.py              |   59 ++
 applications/test/catr.py              |  166 ++++
 appveyor.yml                           |   93 ++
 changelog.md                           |  106 +++
 cmake/check_includes.cmake             |   40 +
 cmake/default_warnings.cmake           |    9 +
 cmake/matlab.cmake                     |  241 +++++
 cmake/segyio_testing.cmake             |   32 +
 config.sh                              |    5 +
 cppcheck/segyio.cfg                    |  131 +++
 cppcheck/suppressions.txt              |    9 +
 debian/changelog                       |    5 -
 debian/compat                          |    1 -
 debian/control                         |   63 --
 debian/copyright                       |   23 -
 debian/libsegyio-dev.install           |    4 -
 debian/libsegyio1.install              |    1 -
 debian/python3-segyio.install          |    2 -
 debian/rules                           |   17 -
 debian/segyio-bin.install              |    4 -
 debian/segyio-bin.manpages             |    4 -
 debian/source/format                   |    1 -
 debian/tests/control                   |    2 -
 debian/tests/link-with-shared          |    9 -
 debian/watch                           |    3 -
 lib/CMakeLists.txt                     |   83 ++
 lib/include/segyio/segy.h              |  544 +++++++++++
 lib/src/segy.c                         | 1632 ++++++++++++++++++++++++++++++++
 lib/src/segy.def                       |   54 ++
 lib/src/segyio/util.h                  |   28 +
 lib/test/segy.c                        |  929 ++++++++++++++++++
 lib/test/spec.c                        |   84 ++
 lib/test/unittest.h                    |   43 +
 lib/test/utils.c                       |   90 ++
 man/CMakeLists.txt                     |   12 +
 man/segyio-catb.1                      |   28 +
 man/segyio-cath.1                      |   53 ++
 man/segyio-catr.1                      |   63 ++
 man/segyio-crop.1                      |   90 ++
 mex/CMakeLists.txt                     |   68 ++
 mex/Segy.m                             |  647 +++++++++++++
 mex/SegySampleFormat.m                 |   13 +
 mex/SegySpec.m                         |   53 ++
 mex/TraceField.m                       |   96 ++
 mex/TraceSortingFormat.m               |    9 +
 mex/get_line.c                         |   41 +
 mex/segy_get_bfield_mex.c              |   24 +
 mex/segy_get_field_mex.c               |   24 +
 mex/segy_get_header_mex.c              |   46 +
 mex/segy_get_ntraces_mex.c             |   14 +
 mex/segy_get_offsets_mex.c             |   63 ++
 mex/segy_get_ps_line_mex.c             |   62 ++
 mex/segy_get_segy_header_mex.c         |   44 +
 mex/segy_get_trace_header_mex.c        |   42 +
 mex/segy_get_traces_mex.c              |   78 ++
 mex/segy_put_headers_mex.c             |   62 ++
 mex/segy_put_traces_mex.c              |   68 ++
 mex/segy_read_write_line_mex.c         |  115 +++
 mex/segy_read_write_ps_line_mex.c      |  125 +++
 mex/segyspec_mex.c                     |  156 +++
 mex/segyutil.c                         |  217 +++++
 mex/segyutil.h                         |   52 +
 mex/test/segy.m                        |  281 ++++++
 mex/test/segyspec.m                    |   88 ++
 pycmake/.travis.yml                    |   21 +
 pycmake/CMakeLists.txt                 |   10 +
 pycmake/FindPythonModule.cmake         |  168 ++++
 pycmake/LICENSE                        |  674 +++++++++++++
 pycmake/PythonPackage.cmake            |  817 ++++++++++++++++
 pycmake/README.md                      |  132 +++
 pycmake/test/CMakeLists.txt            |   31 +
 python/CMakeLists.txt                  |   93 ++
 python/examples/about.py               |   51 +
 python/examples/copy-sub-cube.py       |   41 +
 python/examples/make-file.py           |   56 ++
 python/examples/make-ps-file.py        |   60 ++
 python/examples/make-rotated-copies.py |   94 ++
 python/examples/scan_min_max.py        |   31 +
 python/examples/write.py               |   84 ++
 python/segyio/__init__.py              |   96 ++
 python/segyio/_field.py                |  125 +++
 python/segyio/_gather.py               |   82 ++
 python/segyio/_header.py               |  133 +++
 python/segyio/_line.py                 |  155 +++
 python/segyio/_raw_trace.py            |   33 +
 python/segyio/_segyio.c                | 1284 +++++++++++++++++++++++++
 python/segyio/_trace.py                |  116 +++
 python/segyio/binfield.py              |   36 +
 python/segyio/create.py                |  109 +++
 python/segyio/open.py                  |  137 +++
 python/segyio/segy.py                  | 1151 ++++++++++++++++++++++
 python/segyio/segysampleformat.py      |   12 +
 python/segyio/su.py                    |  144 +++
 python/segyio/tools.py                 |  189 ++++
 python/segyio/tracefield.py            |   95 ++
 python/segyio/tracesortingformat.py    |    7 +
 python/setup.py.in                     |   78 ++
 python/test/context.py                 |   32 +
 python/test/segy.py                    | 1000 +++++++++++++++++++
 python/test/segyio_c.py                |  485 ++++++++++
 python/test/segyioenum.py              |   24 +
 python/test/test_context.py            |   47 +
 python/test/tools.py                   |  129 +++
 requires.txt                           |    1 +
 setup.py                               |   84 ++
 test-data/1x1.sgy                      |  Bin 0 -> 4720 bytes
 test-data/1xN.sgy                      |  Bin 0 -> 10320 bytes
 test-data/Mx1.sgy                      |  Bin 0 -> 10320 bytes
 test-data/acute-small.sgy              |  Bin 0 -> 14600 bytes
 test-data/inv-acute-small.sgy          |  Bin 0 -> 14600 bytes
 test-data/left-small.sgy               |  Bin 0 -> 14600 bytes
 test-data/normal-small.sgy             |  Bin 0 -> 14600 bytes
 test-data/obtuse-small.sgy             |  Bin 0 -> 14600 bytes
 test-data/reflex-small.sgy             |  Bin 0 -> 14600 bytes
 test-data/right-small.sgy              |  Bin 0 -> 14600 bytes
 test-data/small-ps.sgy                 |  Bin 0 -> 10320 bytes
 test-data/small.sgy                    |  Bin 0 -> 14600 bytes
 test-data/straight-small.sgy           |  Bin 0 -> 14600 bytes
 test-data/text.sgy                     |  Bin 0 -> 3600 bytes
 135 files changed, 17793 insertions(+), 139 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/segyio.git



More information about the debian-science-commits mailing list