[med-svn] [charls] branch master updated (ae6782d -> be832bc)

Andreas Tille tille at debian.org
Thu May 19 15:45:51 UTC 2016


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

tille pushed a change to branch master
in repository charls.

      from  ae6782d   Packaging moved from SVN to Git
       new  05527a5   Add missing patch that was not commited to SVN
       new  936c46c   New upstream version (use Files-Excluded)
       new  d3794ab   Close bug asking for new version
       new  1db5624   Remove more files we do not need once we are at removing files
       new  029c0dd   Cleanup rules from now unneeded get-orig-source target
       new  0ff9be9   Remove patches applied upstream
       new  2113579   Refresh patches
       new  f822706   Imported Upstream version 1.1.0+dfsg
       new  f48a9b3   Merge tag 'upstream/1.1.0+dfsg'
       new  be832bc   Remove another patch applied upstream; deactivate all other patches that do not apply as expected

The 10 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:
 .gitignore                                         |  24 +
 .travis.yml                                        |  28 +
 CMakeLists.txt                                     |  68 +-
 CharLS.sln                                         |  49 --
 CharLS.vcproj                                      | 545 --------------
 CharLS_VS2015.sln                                  |  54 ++
 README.md                                          |  30 +
 appveyor.yml                                       |  14 +
 check.cmd                                          |   3 +
 debian/changelog                                   |   4 +-
 debian/copyright                                   |   9 +
 debian/patches/add_visibility.patch                |  30 -
 .../patches/charls_add_cmake_install_target.patch  |  10 +-
 debian/patches/charls_add_sharedlib_soname.patch   |  10 +-
 .../charls_fix_clang_compilation_issue.patch       |  16 -
 debian/patches/charls_fix_tests.patch              |   4 +-
 debian/patches/series                              |  11 +-
 debian/patches/stl_symbols_hack.patch              |   6 +-
 debian/rules                                       |  31 -
 debian/watch                                       |   3 +-
 decoderstrategy.h                                  | 285 -------
 header.cpp                                         | 627 ----------------
 header.h                                           |  62 --
 interface.cpp                                      | 206 -----
 interface.h                                        |  48 --
 plainc/plainc.c                                    |  19 +-
 plainc/plainc.vcproj                               | 186 -----
 processline.h                                      | 225 ------
 publictypes.h                                      |  76 --
 src/JpegStreamWriter.cd                            |  44 ++
 License.txt => src/License.txt                     |   0
 charls.def => src/charls.def                       |  17 +-
 src/charls.rc                                      | Bin 0 -> 3150 bytes
 colortransform.h => src/colortransform.h           |   3 +
 config.h => src/config.h                           |  10 +-
 context.h => src/context.h                         |  45 +-
 contextrunmode.h => src/contextrunmode.h           |  16 +-
 src/decoderstrategy.h                              | 325 ++++++++
 defaulttraits.h => src/defaulttraits.h             |  17 +-
 encoderstrategy.h => src/encoderstrategy.h         | 107 ++-
 src/header.cpp                                     | 388 ++++++++++
 src/header.h                                       |  70 ++
 src/interface.cpp                                  | 234 ++++++
 src/interface.h                                    |  66 ++
 src/jpegimagedatasegment.h                         |  28 +
 jpegls.cpp => src/jpegls.cpp                       |   3 +-
 src/jpegmarker.h                                   |  75 ++
 src/jpegmarkersegment.cpp                          | 120 +++
 src/jpegmarkersegment.h                            |  40 +
 src/jpegsegment.h                                  |  22 +
 src/jpegstreamwriter.cpp                           | 107 +++
 src/jpegstreamwriter.h                             | 114 +++
 lookuptable.h => src/lookuptable.h                 |   0
 losslesstraits.h => src/losslesstraits.h           |   0
 src/processline.h                                  | 346 +++++++++
 src/publictypes.h                                  | 137 ++++
 scan.h => src/scan.h                               | 217 +++---
 util.h => src/util.h                               |  11 +-
 stdafx.cpp                                         |   0
 streams.h                                          | 156 ----
 test/CMakeLists.txt                                |   8 +-
 test/bitstreamdamage.cpp                           | 246 +++---
 test/compliance.cpp                                | 476 ++++++------
 test/config.h                                      |  56 +-
 test/dicomsamples.cpp                              | 156 ++--
 test/main.cpp                                      | 831 ++++++++++++++-------
 test/performance.cpp                               | 180 +++--
 test/test.vcproj                                   | 415 ----------
 test/time.cpp                                      |  77 +-
 test/time.h                                        |  20 +-
 test/util.cpp                                      | 302 ++++----
 test/util.h                                        |  40 +-
 unittest/JpegStreamWriterTest.cpp                  |  29 +
 unittest/jpegmarkersegmenttest.cpp                 |  47 ++
 unittest/stdafx.cpp                                |   8 +
 unittest/stdafx.h                                  |  13 +
 unittest/targetver.h                               |   8 +
 77 files changed, 4057 insertions(+), 4256 deletions(-)
 create mode 100644 .gitignore
 create mode 100644 .travis.yml
 delete mode 100644 CharLS.sln
 delete mode 100644 CharLS.vcproj
 create mode 100644 CharLS_VS2015.sln
 create mode 100644 README.md
 create mode 100644 appveyor.yml
 create mode 100644 check.cmd
 delete mode 100644 debian/patches/add_visibility.patch
 delete mode 100644 debian/patches/charls_fix_clang_compilation_issue.patch
 delete mode 100644 decoderstrategy.h
 delete mode 100644 header.cpp
 delete mode 100644 header.h
 delete mode 100644 interface.cpp
 delete mode 100644 interface.h
 delete mode 100644 plainc/plainc.vcproj
 delete mode 100644 processline.h
 delete mode 100644 publictypes.h
 create mode 100644 src/JpegStreamWriter.cd
 rename License.txt => src/License.txt (100%)
 rename charls.def => src/charls.def (53%)
 create mode 100644 src/charls.rc
 rename colortransform.h => src/colortransform.h (98%)
 rename config.h => src/config.h (80%)
 rename context.h => src/context.h (72%)
 rename contextrunmode.h => src/contextrunmode.h (85%)
 create mode 100644 src/decoderstrategy.h
 rename defaulttraits.h => src/defaulttraits.h (88%)
 rename encoderstrategy.h => src/encoderstrategy.h (55%)
 create mode 100644 src/header.cpp
 create mode 100644 src/header.h
 create mode 100644 src/interface.cpp
 create mode 100644 src/interface.h
 create mode 100644 src/jpegimagedatasegment.h
 rename jpegls.cpp => src/jpegls.cpp (98%)
 create mode 100644 src/jpegmarker.h
 create mode 100644 src/jpegmarkersegment.cpp
 create mode 100644 src/jpegmarkersegment.h
 create mode 100644 src/jpegsegment.h
 create mode 100644 src/jpegstreamwriter.cpp
 create mode 100644 src/jpegstreamwriter.h
 rename lookuptable.h => src/lookuptable.h (100%)
 rename losslesstraits.h => src/losslesstraits.h (100%)
 create mode 100644 src/processline.h
 create mode 100644 src/publictypes.h
 rename scan.h => src/scan.h (82%)
 rename util.h => src/util.h (93%)
 delete mode 100644 stdafx.cpp
 delete mode 100644 streams.h
 delete mode 100644 test/test.vcproj
 create mode 100644 unittest/JpegStreamWriterTest.cpp
 create mode 100644 unittest/jpegmarkersegmenttest.cpp
 create mode 100644 unittest/stdafx.cpp
 create mode 100644 unittest/stdafx.h
 create mode 100644 unittest/targetver.h

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-med/charls.git



More information about the debian-med-commit mailing list