Author: jodogne-guest Date: 2014-02-17 10:27:33 +0000 (Mon, 17 Feb 2014) New Revision: 16050
Removed: trunk/packages/orthanc/trunk/debian/patches/check-endianness trunk/packages/orthanc/trunk/debian/patches/doxygen-jquery Modified: trunk/packages/orthanc/trunk/debian/changelog trunk/packages/orthanc/trunk/debian/configuration/orthanc.json trunk/packages/orthanc/trunk/debian/docs/Orthanc.1 trunk/packages/orthanc/trunk/debian/patches/series trunk/packages/orthanc/trunk/debian/rules trunk/packages/orthanc/trunk/debian/watch Log: new upstream release of Orthanc: 0.7.3 Modified: trunk/packages/orthanc/trunk/debian/changelog =================================================================== --- trunk/packages/orthanc/trunk/debian/changelog 2014-02-17 08:13:29 UTC (rev 16049) +++ trunk/packages/orthanc/trunk/debian/changelog 2014-02-17 10:27:33 UTC (rev 16050) @@ -1,8 +1,10 @@ -orthanc (0.7.2-2) UNRELEASED; urgency=low +orthanc (0.7.3-1) UNRELEASED; urgency=low + * New upstream version: 0.7.3 * Minimal version for libgoogle-glog is 0.3.3. Closes: #736845 + * Change from Google Code to GitHub - -- Sebastien Jodogne <[email protected]> Mon, 27 Jan 2014 14:33:41 +0100 + -- Sebastien Jodogne <[email protected]> Mon, 17 Feb 2014 10:28:34 +0100 orthanc (0.7.2-1) unstable; urgency=low Modified: trunk/packages/orthanc/trunk/debian/configuration/orthanc.json =================================================================== --- trunk/packages/orthanc/trunk/debian/configuration/orthanc.json 2014-02-17 08:13:29 UTC (rev 16049) +++ trunk/packages/orthanc/trunk/debian/configuration/orthanc.json 2014-02-17 10:27:33 UTC (rev 16050) @@ -1,136 +1,164 @@ -{ - /** - * General configuration of Orthanc - **/ - - // The logical name of this instance of Orthanc. This one is - // displayed in Orthanc Explorer and at the URI "/system". - "Name" : "Orthanc", - - // Path to the directory that holds the heavyweight files - // (i.e. the raw DICOM instances) - "StorageDirectory" : "/var/lib/orthanc/db-v3", - - // Path to the directory that holds the SQLite index (if unset, - // the value of StorageDirectory is used). This index could be - // stored on a RAM-drive or a SSD device for performance reasons. - "IndexDirectory" : "/var/lib/orthanc/db-v3", - - // Enable the transparent compression of the DICOM instances - "StorageCompression" : false, - - // Maximum size of the storage in MB (a value of "0" indicates no - // limit on the storage size) - "MaximumStorageSize" : 0, - - // Maximum number of patients that can be stored at a given time - // in the storage (a value of "0" indicates no limit on the number - // of patients) - "MaximumPatientCount" : 0, - - // List of paths to the custom Lua scripts to load into this - // instance of Orthanc - "LuaScripts" : [ - ], - - - - /** - * Configuration of the HTTP server - **/ - - // HTTP port for the REST services and for the GUI - "HttpPort" : 8042, - - - - /** - * Configuration of the DICOM server - **/ - - // The DICOM Application Entity Title - "DicomAet" : "ORTHANC", - - // Check whether the called AET corresponds during a DICOM request - "DicomCheckCalledAet" : false, - - // The DICOM port - "DicomPort" : 4242, - - - - /** - * Security-related options for the HTTP server - **/ - - // Whether remote hosts can connect to the HTTP server - "RemoteAccessAllowed" : false, - - // Whether or not SSL is enabled - "SslEnabled" : false, - - // Path to the SSL certificate (meaningful only if SSL is enabled) - "SslCertificate" : "certificate.pem", - - // Whether or not the password protection is enabled - "AuthenticationEnabled" : false, - - // The list of the registered users. Because Orthanc uses HTTP - // Basic Authentication, the passwords are stored as plain text. - "RegisteredUsers" : { - // "alice" : "alicePassword" - }, - - - - /** - * Network topology - **/ - - // The list of the known DICOM modalities - "DicomModalities" : { - /** - * Uncommenting the following line would enable Orthanc to - * connect to an instance of the "storescp" open-source DICOM - * store (shipped in the DCMTK distribution) started by the - * command line "storescp 2000". - **/ - // "sample" : [ "STORESCP", "localhost", 2000 ] - - /** - * A fourth parameter is available to enable patches for a - * specific PACS manufacturer. The allowed values are currently - * "Generic" (default value), "ClearCanvas" and "MedInria". This - * parameter is case-sensitive. - **/ - // "clearcanvas" : [ "CLEARCANVAS", "192.168.1.1", 104, "ClearCanvas" ] - }, - - // The list of the known Orthanc peers - "OrthancPeers" : { - /** - * Each line gives the base URL of an Orthanc peer, possibly - * followed by the username/password pair (if the password - * protection is enabled on the peer). - **/ - // "peer" : [ "http://localhost:8043/", "alice", "alicePassword" ] - // "peer2" : [ "http://localhost:8044/" ] - }, - - - - /** - * Advanced options - **/ - - // Dictionary of symbolic names for the user-defined metadata. Each - // entry must map a number between 1024 and 65535 to an unique - // string. - "UserMetadata" : { - // "Sample" : 1024 - }, - - // Number of seconds without receiving any instance before a - // patient, a study or a series is considered as stable. - "StableAge" : 60 -} +{ + /** + * General configuration of Orthanc + **/ + + // The logical name of this instance of Orthanc. This one is + // displayed in Orthanc Explorer and at the URI "/system". + "Name" : "Orthanc", + + // Path to the directory that holds the heavyweight files + // (i.e. the raw DICOM instances) + "StorageDirectory" : "/var/lib/orthanc/db-v4", + + // Path to the directory that holds the SQLite index (if unset, + // the value of StorageDirectory is used). This index could be + // stored on a RAM-drive or a SSD device for performance reasons. + "IndexDirectory" : "/var/lib/orthanc/db-v4", + + // Enable the transparent compression of the DICOM instances + "StorageCompression" : false, + + // Maximum size of the storage in MB (a value of "0" indicates no + // limit on the storage size) + "MaximumStorageSize" : 0, + + // Maximum number of patients that can be stored at a given time + // in the storage (a value of "0" indicates no limit on the number + // of patients) + "MaximumPatientCount" : 0, + + // List of paths to the custom Lua scripts to load into this + // instance of Orthanc + "LuaScripts" : [ + ], + + + + /** + * Configuration of the HTTP server + **/ + + // HTTP port for the REST services and for the GUI + "HttpPort" : 8042, + + + + /** + * Configuration of the DICOM server + **/ + + // The DICOM Application Entity Title + "DicomAet" : "ORTHANC", + + // Check whether the called AET corresponds during a DICOM request + "DicomCheckCalledAet" : false, + + // The DICOM port + "DicomPort" : 4242, + + + + /** + * Security-related options for the HTTP server + **/ + + // Whether remote hosts can connect to the HTTP server + "RemoteAccessAllowed" : false, + + // Whether or not SSL is enabled + "SslEnabled" : false, + + // Path to the SSL certificate (meaningful only if SSL is enabled) + "SslCertificate" : "certificate.pem", + + // Whether or not the password protection is enabled + "AuthenticationEnabled" : false, + + // The list of the registered users. Because Orthanc uses HTTP + // Basic Authentication, the passwords are stored as plain text. + "RegisteredUsers" : { + // "alice" : "alicePassword" + }, + + + + /** + * Network topology + **/ + + // The list of the known DICOM modalities + "DicomModalities" : { + /** + * Uncommenting the following line would enable Orthanc to + * connect to an instance of the "storescp" open-source DICOM + * store (shipped in the DCMTK distribution) started by the + * command line "storescp 2000". + **/ + // "sample" : [ "STORESCP", "localhost", 2000 ] + + /** + * A fourth parameter is available to enable patches for a + * specific PACS manufacturer. The allowed values are currently + * "Generic" (default value), "ClearCanvas" and "MedInria". This + * parameter is case-sensitive. + **/ + // "clearcanvas" : [ "CLEARCANVAS", "192.168.1.1", 104, "ClearCanvas" ] + }, + + // The list of the known Orthanc peers + "OrthancPeers" : { + /** + * Each line gives the base URL of an Orthanc peer, possibly + * followed by the username/password pair (if the password + * protection is enabled on the peer). + **/ + // "peer" : [ "http://localhost:8043/", "alice", "alicePassword" ] + // "peer2" : [ "http://localhost:8044/" ] + }, + + + + /** + * Advanced options + **/ + + // Dictionary of symbolic names for the user-defined metadata. Each + // entry must map a number between 1024 and 65535 to an unique + // string. + "UserMetadata" : { + // "Sample" : 1024 + }, + + // Dictionary of symbolic names for the user-defined types of + // attached files. Each entry must map a number between 1024 and + // 65535 to an unique string. + "UserContentType" : { + // "sample" : 1024 + }, + + // Number of seconds without receiving any instance before a + // patient, a study or a series is considered as stable. + "StableAge" : 60, + + // Enable the HTTP server. If this parameter is set to "false", + // Orthanc acts as a pure DICOM server. The REST API and Orthanc + // Explorer will not be available. + "HttpServerEnabled" : true, + + // Enable the DICOM server. If this parameter is set to "false", + // Orthanc acts as a pure REST server. It will not be possible to + // receive files or to do query/retrieve through the DICOM protocol. + "DicomServerEnabled" : true, + + // By default, Orthanc compares AET (Application Entity Titles) in a + // case-insensitive way. Setting this option to "true" will enable + // case-sensitive matching. + "StrictAetComparison" : false, + + // When the following option is "true", the MD5 of the DICOM files + // will be computed and stored in the Orthanc database. This + // information can be used to detect disk corruption, at the price + // of a small performance overhead. + "StoreMD5ForAttachments" : true +} Modified: trunk/packages/orthanc/trunk/debian/docs/Orthanc.1 =================================================================== --- trunk/packages/orthanc/trunk/debian/docs/Orthanc.1 2014-02-17 08:13:29 UTC (rev 16049) +++ trunk/packages/orthanc/trunk/debian/docs/Orthanc.1 2014-02-17 10:27:33 UTC (rev 16050) @@ -1,5 +1,5 @@ -.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.43.3. -.TH ORTHANC "1" "December 2013" "Orthanc 0.7.2" "User Commands" +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.44.1. +.TH ORTHANC "1" "February 2014" "Orthanc 0.7.3" "User Commands" .SH NAME Orthanc \- Lightweight, RESTful DICOM server for healthcare and medical research .SH SYNOPSIS @@ -42,7 +42,7 @@ .SH AUTHOR Written by Sebastien Jodogne <[email protected]> .SH COPYRIGHT -Copyright \(co 2012\-2013 Medical Physics Department, CHU of Liege (Belgium) +Copyright \(co 2012\-2014 Medical Physics Department, CHU of Liege (Belgium) Licensing GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>, with OpenSSL exception. .br This is free software: you are free to change and redistribute it. Deleted: trunk/packages/orthanc/trunk/debian/patches/check-endianness =================================================================== --- trunk/packages/orthanc/trunk/debian/patches/check-endianness 2014-02-17 08:13:29 UTC (rev 16049) +++ trunk/packages/orthanc/trunk/debian/patches/check-endianness 2014-02-17 10:27:33 UTC (rev 16050) @@ -1,46 +0,0 @@ -Description: Detect correct endianness of the host machine -Author: Sebastien Jodogne <[email protected]> and Adam Conrad <[email protected]> ---- -This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ -Index: Orthanc-0.7.2/UnitTestsSources/main.cpp -=================================================================== ---- Orthanc-0.7.2.orig/UnitTestsSources/main.cpp 2013-11-08 16:08:14.000000000 +0100 -+++ Orthanc-0.7.2/UnitTestsSources/main.cpp 2013-12-03 14:24:49.344914848 +0100 -@@ -522,18 +522,33 @@ - } - - -+ -+#if defined(__linux) -+#include <endian.h> -+#endif -+ - TEST(Toolbox, Endianness) - { --#if defined(__powerpc__) || defined(__powerpc64__) -- ASSERT_EQ(Endianness_Big, Toolbox::DetectEndianness()); --#endif -+ // Parts of this test come from Adam Conrad -+ // http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=728822#5 - - #if defined(_WIN32) - ASSERT_EQ(Endianness_Little, Toolbox::DetectEndianness()); -+ -+#elif defined(__linux) -+ -+#if !defined(__BYTE_ORDER) -+# error Support your platform here - #endif - --#if defined(__amd64__) || defined(__i386__) -+# if __BYTE_ORDER == __BIG_ENDIAN -+ ASSERT_EQ(Endianness_Big, Toolbox::DetectEndianness()); -+# else // __LITTLE_ENDIAN - ASSERT_EQ(Endianness_Little, Toolbox::DetectEndianness()); -+# endif -+ -+#else -+#error Support your platform here - #endif - } - Deleted: trunk/packages/orthanc/trunk/debian/patches/doxygen-jquery =================================================================== --- trunk/packages/orthanc/trunk/debian/patches/doxygen-jquery 2014-02-17 08:13:29 UTC (rev 16049) +++ trunk/packages/orthanc/trunk/debian/patches/doxygen-jquery 2014-02-17 10:27:33 UTC (rev 16050) @@ -1,17 +0,0 @@ -Description: Remove lintian warning embedded-javascript-library due to Doxygen -Author: Sebastien Jodogne <[email protected]> ---- -This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ -Index: Orthanc-0.7.2/Resources/OrthancClient.doxygen -=================================================================== ---- Orthanc-0.7.2.orig/Resources/OrthancClient.doxygen 2013-11-08 16:08:14.000000000 +0100 -+++ Orthanc-0.7.2/Resources/OrthancClient.doxygen 2013-12-03 12:02:07.153131137 +0100 -@@ -1197,7 +1197,7 @@ - # typically be disabled. For large projects the javascript based search engine - # can be slow, then enabling SERVER_BASED_SEARCH may provide a better solution. - --SEARCHENGINE = YES -+SEARCHENGINE = NO - - # When the SERVER_BASED_SEARCH tag is enabled the search engine will be - # implemented using a PHP enabled web server instead of at the web client Modified: trunk/packages/orthanc/trunk/debian/patches/series =================================================================== --- trunk/packages/orthanc/trunk/debian/patches/series 2014-02-17 08:13:29 UTC (rev 16049) +++ trunk/packages/orthanc/trunk/debian/patches/series 2014-02-17 10:27:33 UTC (rev 16050) @@ -1,2 +0,0 @@ -check-endianness -doxygen-jquery Modified: trunk/packages/orthanc/trunk/debian/rules =================================================================== --- trunk/packages/orthanc/trunk/debian/rules 2014-02-17 08:13:29 UTC (rev 16049) +++ trunk/packages/orthanc/trunk/debian/rules 2014-02-17 10:27:33 UTC (rev 16050) @@ -13,6 +13,7 @@ -DUSE_SYSTEM_MONGOOSE:BOOL=OFF \ -DUSE_GTEST_DEBIAN_SOURCE_PACKAGE:BOOL=ON \ -DDCMTK_DICTIONARY_DIR:PATH=/usr/share/libdcmtk2 \ + -DUNIT_TESTS_WITH_HTTP_CONNEXIONS:BOOL=OFF \ -DCMAKE_BUILD_TYPE="" # The build type must be left empty, see #711515 override_dh_auto_configure: Modified: trunk/packages/orthanc/trunk/debian/watch =================================================================== --- trunk/packages/orthanc/trunk/debian/watch 2014-02-17 08:13:29 UTC (rev 16049) +++ trunk/packages/orthanc/trunk/debian/watch 2014-02-17 10:27:33 UTC (rev 16050) @@ -1,2 +1,2 @@ version=3 -http://code.google.com/p/orthanc/downloads/list?can=1 .*/Orthanc-(\d[\d.]*)\.(?:zip|tgz|tbz2|txz|tar\.gz|tar\.bz2|tar\.xz) \ No newline at end of file +https://github.com/jodogne/Orthanc/releases .*/download/[\d.]+/Orthanc-(\d\S*)\.tar\.gz _______________________________________________ debian-med-commit mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit
