[med-svn] [dcmtkpp] branch master updated (10aa527 -> d8c5995)
    Julien Lamy 
    lamy-guest at moszumanska.debian.org
       
    Thu Oct  8 14:47:14 UTC 2015
    
    
  
This is an automated email from the git hooks/post-receive script.
lamy-guest pushed a change to branch master
in repository dcmtkpp.
      from  10aa527   Upload to unstable (new)
       new  6406d68   Imported Upstream version 0.3.1
       new  bc391c9   Remove patch applied upstream
       new  ef3340c   Update package dependencies
       new  d8c5995   Update changelog with new version
The 4 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:
 .travis.yml                                       |   20 +-
 CMakeLists.txt                                    |    6 +
 README.md                                         |   12 +-
 debian/changelog                                  |    6 +
 debian/control                                    |    3 +
 debian/patches/series                             |    1 -
 debian/rules                                      |    2 +
 examples/CMakeLists.txt                           |    7 +-
 examples/dicomdir.cpp                             |   23 +
 examples/dump.cpp                                 |   91 +
 examples/find.cpp                                 |   13 +-
 examples/get.cpp                                  |   17 +-
 examples/move.cpp                                 |   14 +-
 examples/store.cpp                                |   15 +-
 generate_registry                                 |  148 +-
 registry.cpp.tmpl                                 |   95 +
 registry.h.tmpl                                   |   36 +
 src/CMakeLists.txt                                |   13 +-
 src/dcmtkpp/BasicDirectoryCreator.cpp             |  472 ++
 src/dcmtkpp/BasicDirectoryCreator.h               |  113 +
 src/dcmtkpp/CStoreRequest.h                       |    3 -
 src/dcmtkpp/DataSet.cpp                           |    5 -
 src/dcmtkpp/{unicode.h => ElementsDictionary.cpp} |   18 +-
 src/dcmtkpp/ElementsDictionary.h                  |   39 +
 src/dcmtkpp/Reader.cpp                            |  601 ++
 src/dcmtkpp/Reader.h                              |  105 +
 src/dcmtkpp/SCU.cpp                               |    3 +-
 src/dcmtkpp/ServiceRole.cpp                       |  346 +-
 src/dcmtkpp/ServiceRole.h                         |    9 +-
 src/dcmtkpp/ServiceRole.txx                       |    1 -
 src/dcmtkpp/StoreSCU.cpp                          |  128 +-
 src/dcmtkpp/Tag.cpp                               |   34 +-
 src/dcmtkpp/{unicode.h => UIDsDictionary.cpp}     |   19 +-
 src/dcmtkpp/UIDsDictionary.h                      |   36 +
 src/dcmtkpp/VR.cpp                                |   15 +-
 src/dcmtkpp/VRFinder.cpp                          |  198 +
 src/dcmtkpp/VRFinder.h                            |   78 +
 src/dcmtkpp/Value.cpp                             |    7 +
 src/dcmtkpp/Value.h                               |   10 +
 src/dcmtkpp/Value.txx                             |   34 +
 src/dcmtkpp/Writer.cpp                            |  547 ++
 src/dcmtkpp/Writer.h                              |  112 +
 src/dcmtkpp/conversion.cpp                        |   58 +-
 src/dcmtkpp/conversion.h                          |    9 +-
 src/dcmtkpp/registry.cpp                          | 8174 +++++++++++++++++++++
 src/dcmtkpp/registry.h                            | 8086 ++++++++++----------
 src/dcmtkpp/uid.cpp                               |   88 +
 src/dcmtkpp/uid.h                                 |   34 +
 src/dcmtkpp/xml_converter.cpp                     |  597 ++
 src/dcmtkpp/{json_converter.h => xml_converter.h} |   19 +-
 tests/CMakeLists.txt                              |    1 +
 tests/code/Association.cpp                        |    9 +-
 tests/code/CEchoRequest.cpp                       |    8 +-
 tests/code/CEchoResponse.cpp                      |    8 +-
 tests/code/CFindRequest.cpp                       |    8 +-
 tests/code/CFindResponse.cpp                      |    8 +-
 tests/code/CGetRequest.cpp                        |    6 +-
 tests/code/CGetResponse.cpp                       |    7 +-
 tests/code/CMoveRequest.cpp                       |    8 +-
 tests/code/CMoveResponse.cpp                      |    8 +-
 tests/code/CStoreRequest.cpp                      |    8 +-
 tests/code/CStoreResponse.cpp                     |    8 +-
 tests/code/DataSet.cpp                            |    2 +
 tests/code/FindSCU.cpp                            |    9 +-
 tests/code/GetSCU.cpp                             |   11 +-
 tests/code/MoveSCU.cpp                            |   11 +-
 tests/code/Reader.cpp                             |  328 +
 tests/code/SCU.cpp                                |    5 +-
 tests/code/StoreSCU.cpp                           |   11 +-
 tests/code/Writer.cpp                             |  327 +
 tests/code/conversion.cpp                         |    3 +-
 tests/code/registry.cpp                           |   28 +
 tests/code/uid.cpp                                |   14 +
 tests/code/xml_converter.cpp                      | 1114 +++
 74 files changed, 17994 insertions(+), 4476 deletions(-)
 create mode 100644 examples/dicomdir.cpp
 create mode 100644 examples/dump.cpp
 create mode 100644 registry.cpp.tmpl
 create mode 100644 registry.h.tmpl
 create mode 100644 src/dcmtkpp/BasicDirectoryCreator.cpp
 create mode 100644 src/dcmtkpp/BasicDirectoryCreator.h
 copy src/dcmtkpp/{unicode.h => ElementsDictionary.cpp} (56%)
 create mode 100644 src/dcmtkpp/ElementsDictionary.h
 create mode 100644 src/dcmtkpp/Reader.cpp
 create mode 100644 src/dcmtkpp/Reader.h
 copy src/dcmtkpp/{unicode.h => UIDsDictionary.cpp} (56%)
 create mode 100644 src/dcmtkpp/UIDsDictionary.h
 create mode 100644 src/dcmtkpp/VRFinder.cpp
 create mode 100644 src/dcmtkpp/VRFinder.h
 create mode 100644 src/dcmtkpp/Writer.cpp
 create mode 100644 src/dcmtkpp/Writer.h
 create mode 100644 src/dcmtkpp/registry.cpp
 create mode 100644 src/dcmtkpp/uid.cpp
 create mode 100644 src/dcmtkpp/uid.h
 create mode 100644 src/dcmtkpp/xml_converter.cpp
 copy src/dcmtkpp/{json_converter.h => xml_converter.h} (51%)
 create mode 100644 tests/code/Reader.cpp
 create mode 100644 tests/code/Writer.cpp
 create mode 100644 tests/code/registry.cpp
 create mode 100644 tests/code/uid.cpp
 create mode 100644 tests/code/xml_converter.cpp
-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-med/dcmtkpp.git
    
    
More information about the debian-med-commit
mailing list