[med-svn] [orthanc-imagej] 01/12: initial commit of the orthanc-imagej package

Andreas Tille tille at debian.org
Tue Apr 19 12:57:54 UTC 2016


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

tille pushed a commit to branch master
in repository orthanc-imagej.

commit ecc34356efdf5a5c32ebe262c8c1700f803c94ce
Author: Sébastien Jodogne <s.jodogne at chu.ulg.ac.be>
Date:   Tue Dec 9 08:32:00 2014 +0000

    initial commit of the orthanc-imagej package
---
 debian/README.Debian     |  7 +++++++
 debian/changelog         |  5 +++++
 debian/compat            |  1 +
 debian/control           | 34 ++++++++++++++++++++++++++++++++++
 debian/copyright         | 46 ++++++++++++++++++++++++++++++++++++++++++++++
 debian/dirs              |  1 +
 debian/install           |  1 +
 debian/rules             | 10 ++++++++++
 debian/source/format     |  1 +
 debian/upstream/metadata |  6 ++++++
 debian/watch             |  2 ++
 11 files changed, 114 insertions(+)

diff --git a/debian/README.Debian b/debian/README.Debian
new file mode 100644
index 0000000..32b014b
--- /dev/null
+++ b/debian/README.Debian
@@ -0,0 +1,7 @@
+This is a plugin for ImageJ to browse and download the content of an
+Orthanc server.
+
+Homepage: https://code.google.com/p/orthanc-imagej/
+
+The plugin is accessible from the "File" -> "Import" -> "Orthanc" menu
+entry in ImageJ.
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..311e537
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+orthanc-imagej (1.0.0) UNRELEASED; urgency=low
+
+  * Initial release. (Closes: #772561)
+
+ -- Sebastien Jodogne <s.jodogne at gmail.com>  Mon, 08 Dec 2014 16:55:43 +0100
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..0f2f517
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,34 @@
+Source: orthanc-imagej
+Maintainer: Debian Med Packaging Team <debian-med-packaging at lists.alioth.debian.org>
+Uploaders: Sebastien Jodogne <s.jodogne at gmail.com>,
+           Andreas Tille <tille at debian.org>
+Section: science
+Priority: optional
+Standards-Version: 3.9.6
+Build-Depends: cmake (>= 2.8),
+               default-jdk,
+               debhelper (>= 9),
+               imagej
+Vcs-Browser: http://anonscm.debian.org/viewvc/debian-med/trunk/packages/orthanc-imagej/trunk/
+Vcs-Svn: svn://anonscm.debian.org/debian-med/trunk/packages/orthanc-imagej/trunk/
+Homepage: https://code.google.com/p/orthanc-imagej/
+
+Package: orthanc-imagej
+Architecture: all
+Depends: ${java:Depends},
+         ${misc:Depends},
+         default-jre | openjdk-7-jre,
+         imagej
+Recommends: orthanc
+Description: ImageJ plugin to import images from Orthanc
+ This ImageJ plugin allows ImageJ to browse the content of an Orthanc
+ server, then import 2D/3D DICOM images from Orthanc into ImageJ.
+ Orthanc is a lightweight, RESTful DICOM server for healthcare and
+ medical research.
+ .
+ This plugin hopefully greatly simplifies the indexation of DICOM
+ images when dealing with ImageJ (e.g. for quality control of DICOM
+ modalities, or for pedagogical use). There is also no need to carry
+ on any complex network configuration, since the plugin directly uses
+ the REST API of Orthanc. This makes its installation and its use
+ quite straightforward.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..de8fa5d
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,46 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: OrthancImageJ
+Upstream-Contact: Sebastien Jodogne <s.jodogne at gmail.com>
+Source: https://code.google.com/p/orthanc-imagej/
+
+Files: *
+Copyright: 2012-2014 CHU of Liege (Belgium), and Sebastien Jodogne <s.jodogne at gmail.com>
+License: GPL-3
+
+Files: org/*
+Copyright: Yidong Fang, Chris Nokleberg, Dave Hughes
+License: Apache
+
+
+
+License: GPL-3
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or (at
+ your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License along
+ with this package; if not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ .
+ On Debian systems, the full text of the GNU General Public License
+ version 3 can be found in the file
+ `/usr/share/common-licenses/GPL-3'.
+
+License: Apache
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+ .
+ http://www.apache.org/licenses/LICENSE-2.0
+ .
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied.  See the License for the specific language governing
+ permissions and limitations under the License.
diff --git a/debian/dirs b/debian/dirs
new file mode 100644
index 0000000..db0cbfb
--- /dev/null
+++ b/debian/dirs
@@ -0,0 +1 @@
+usr/share/imagej/plugins
diff --git a/debian/install b/debian/install
new file mode 100644
index 0000000..6a8750a
--- /dev/null
+++ b/debian/install
@@ -0,0 +1 @@
+Build/Orthanc_Import.jar usr/share/imagej/plugins/
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..c8541ad
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,10 @@
+#!/usr/bin/make -f
+
+%:
+	dh $@ --parallel --builddirectory=Build
+
+override_dh_installchangelogs:
+	dh_installchangelogs -k NEWS
+
+get-orig-source:
+	uscan --verbose --force-download --repack --compression xz
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/debian/upstream/metadata b/debian/upstream/metadata
new file mode 100644
index 0000000..7cf8c15
--- /dev/null
+++ b/debian/upstream/metadata
@@ -0,0 +1,6 @@
+Reference:
+  Author: S. Jodogne and C. Bernard and M. Devillers and E. Lenaerts and P. Coucke
+  Title: "Orthanc -- A Lightweight, RESTful DICOM Server for Healthcare and Medical Research"
+  Type: book
+  Booktitle: Proc. of the International Symposium on Biomedical Imaging
+  Year: 2013
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..958b919
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+https://github.com/jodogne/Orthanc/releases .*/download/[^/]+/OrthancImageJ-(\d\S*)\.tar\.gz

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



More information about the debian-med-commit mailing list