[python-fabio] branch master updated (37e5d52 -> ceabe31)
Frédéric-Emmanuel Picca
picca at moszumanska.debian.org
Sat Sep 2 14:19:05 UTC 2017
This is an automated email from the git hooks/post-receive script.
picca pushed a change to branch master
in repository python-fabio.
from 37e5d52 release
new f6928c3 update the Files-Excluded for fabio 0.5.0
new 9bf6562 New upstream version 0.5.0+dfsg
new 1e4ec65 Merge tag 'upstream/0.5.0+dfsg'
new c6c5ecc update the copyright with cme
new e6bc8b0 cme fix and wrap-en-sort
new ceabe31 update changelog
The 6 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
MANIFEST.in | 6 +-
PKG-INFO | 12 +-
README.rst | 4 +-
copyright | 34 +-
debian/changelog | 12 +
debian/control | 56 +-
debian/copyright | 326 +-
debian/copyright-scan-patterns.yml | 15 +
debian/fill.copyright.blanks.yml | 50 +
debian/fix.scanned.copyright | 4 +
doc/man/fabio_viewer.1 | 26 -
doc/man/fabio_viewer.pdf | Bin 3671 -> 0 bytes
doc/source/Changelog.rst | 13 +
doc/source/conf.py | 14 -
doc/source/coverage.rst | 86 +-
doc/source/getting_started.rst | 3 +
doc/source/install.rst | 27 +-
doc/source/performances.rst | 4 +-
doc/source/tutorials/convert_CBF.rst | 62 +
doc/source/tutorials/index.rst | 2 +
fabio.egg-info/SOURCES.txt | 92 +-
fabio/GEimage.py | 79 +-
fabio/GEimage_old.py | 524 -
fabio/HiPiCimage.py | 57 +-
fabio/OXDimage.py | 178 +-
fabio/TiffIO.py | 309 +-
fabio/__init__.py | 18 +-
fabio/adscimage.py | 25 +-
fabio/{ext => app}/__init__.py | 0
fabio/app/convert.py | 400 +
fabio/app/setup.py | 39 +
scripts/fabio_viewer => fabio/app/viewer.py | 63 +-
fabio/benchmark/__init__.py | 43 +-
fabio/benchmark/setup.py | 39 +
fabio/binaryimage.py | 30 +-
fabio/bruker100image.py | 61 +-
fabio/brukerimage.py | 79 +-
fabio/cbfimage.py | 152 +-
fabio/compression.py | 108 +-
fabio/converters.py | 86 +-
fabio/datIO.py | 41 +-
fabio/directories.py | 42 +-
fabio/dm3image.py | 132 +-
fabio/edfimage.py | 192 +-
fabio/eigerimage.py | 20 +-
fabio/ext/_cif.c | 720 +-
fabio/ext/_cif.pyx | 37 +-
fabio/ext/byte_offset.c | 8508 ++++-----
fabio/ext/byte_offset.pyx | 142 +-
fabio/ext/cf_io.c | 663 +-
fabio/ext/cf_io.pyx | 34 +-
fabio/ext/include/ccp4_pack.h | 2 +-
fabio/ext/mar345_IO.c | 17546 ++++++++++++++-----
fabio/ext/mar345_IO.pyx | 660 +-
fabio/ext/setup.py | 66 +
fabio/fabioformats.py | 173 +
fabio/fabioimage.py | 186 +-
fabio/fabioutils.py | 225 +-
fabio/file_series.py | 100 +-
fabio/fit2dimage.py | 23 +-
fabio/fit2dmaskimage.py | 38 +-
fabio/fit2dspreadsheetimage.py | 49 +-
fabio/hdf5image.py | 20 +-
fabio/jpeg2kimage.py | 159 +
fabio/jpegimage.py | 120 +
fabio/kcdimage.py | 93 +-
fabio/mar345image.py | 129 +-
fabio/marccdimage.py | 66 +-
fabio/mpaimage.py | 131 +
fabio/mrcimage.py | 35 +-
fabio/nexus.py | 130 +-
fabio/numpyimage.py | 141 +-
fabio/openimage.py | 151 +-
fabio/pilatusimage.py | 36 +-
fabio/pixiimage.py | 63 +-
fabio/pnmimage.py | 86 +-
fabio/raxisimage.py | 438 +-
fabio/readbytestream.py | 74 +-
fabio/setup.py | 48 +
fabio/speimage.py | 66 +-
fabio/templateimage.py | 57 +-
fabio/test/profile_all.py | 5 +-
fabio/test/setup.py | 39 +
fabio/test/testGEimage.py | 7 +-
fabio/test/testOXDimage.py | 120 +-
fabio/test/testXSDimage.py | 21 +-
fabio/test/test_all.py | 8 +
fabio/test/test_all_images.py | 22 +-
fabio/test/test_file_series.py | 18 +-
fabio/test/test_filename_steps.py | 13 +-
fabio/test/test_flat_binary.py | 13 +-
fabio/test/test_nexus.py | 24 +-
fabio/test/testadscimage.py | 23 +-
fabio/test/testbruker100image.py | 9 +-
fabio/test/testbrukerimage.py | 35 +-
fabio/test/testcbfimage.py | 20 +-
fabio/test/testcompression.py | 17 +-
fabio/test/testedfimage.py | 67 +-
fabio/test/testeigerimage.py | 8 +-
fabio/test/testfabioconvert.py | 196 +
fabio/test/testfabioimage.py | 79 +-
fabio/test/testfilenames.py | 26 +-
fabio/test/testfit2dimage.py | 7 +-
fabio/test/testfit2dmaskimage.py | 27 +-
fabio/test/testhdf5image.py | 8 +-
fabio/test/testheadernotsingleton.py | 3 +-
fabio/test/testjpeg2kimage.py | 173 +
fabio/test/testjpegimage.py | 170 +
fabio/test/testkcdimage.py | 32 +-
fabio/test/testmar345image.py | 69 +-
fabio/test/testmccdimage.py | 14 +-
.../test/{testpilatusimage.py => testmpaimage.py} | 39 +-
fabio/test/testnumpyimage.py | 42 +-
fabio/test/testopenheader.py | 11 +-
fabio/test/testopenimage.py | 225 +-
fabio/test/testpilatusimage.py | 7 +-
fabio/test/testpnmimage.py | 14 +-
fabio/test/testraxisimage.py | 15 +-
fabio/test/testspeimage.py | 23 +-
fabio/test/testtifimage.py | 31 +-
fabio/test/utilstest.py | 68 +-
fabio/tifimage.py | 173 +-
fabio/{ext => utils}/__init__.py | 0
fabio/utils/mathutils.py | 58 +
fabio/utils/pilutils.py | 129 +
fabio/utils/setup.py | 39 +
fabio/xsdimage.py | 44 +-
run_tests.py | 21 +-
setup.py | 719 +-
version.py | 31 +-
130 files changed, 23886 insertions(+), 13856 deletions(-)
create mode 100644 debian/copyright-scan-patterns.yml
create mode 100644 debian/fill.copyright.blanks.yml
create mode 100644 debian/fix.scanned.copyright
delete mode 100644 doc/man/fabio_viewer.1
delete mode 100644 doc/man/fabio_viewer.pdf
create mode 100644 doc/source/tutorials/convert_CBF.rst
delete mode 100644 fabio/GEimage_old.py
copy fabio/{ext => app}/__init__.py (100%)
create mode 100644 fabio/app/convert.py
create mode 100644 fabio/app/setup.py
rename scripts/fabio_viewer => fabio/app/viewer.py (97%)
create mode 100644 fabio/benchmark/setup.py
create mode 100644 fabio/ext/setup.py
create mode 100644 fabio/fabioformats.py
create mode 100644 fabio/jpeg2kimage.py
create mode 100644 fabio/jpegimage.py
create mode 100644 fabio/mpaimage.py
create mode 100644 fabio/setup.py
create mode 100644 fabio/test/setup.py
create mode 100644 fabio/test/testfabioconvert.py
create mode 100644 fabio/test/testjpeg2kimage.py
create mode 100644 fabio/test/testjpegimage.py
copy fabio/test/{testpilatusimage.py => testmpaimage.py} (72%)
copy fabio/{ext => utils}/__init__.py (100%)
create mode 100644 fabio/utils/mathutils.py
create mode 100644 fabio/utils/pilutils.py
create mode 100644 fabio/utils/setup.py
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/python-fabio.git
More information about the debian-science-commits
mailing list