This is an automated email from the git hooks/post-receive script. spectra pushed a commit to branch master in repository conquest-dicom-server.
commit c606432fe83cab479a44d856f7a5d862a16f6568 Author: Mathieu Malaterre <[email protected]> Date: Wed Jul 4 15:58:43 2012 +0000 initial work on conquest dicom server git-svn-id: svn+ssh://svn.debian.org/svn/debian-med/trunk/packages/conquest-dicom-server/trunk@11543 d8681a01-af0d-0410-a158-b4166a59cfaa --- debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 26 ++++++++++++++++++++++++++ debian/get-orig-source | 38 ++++++++++++++++++++++++++++++++++++++ debian/rules | 8 ++++++++ debian/source/format | 1 + debian/watch | 3 +++ 7 files changed, 82 insertions(+) diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..581075e --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +conquest-dicom-server (1.14.16-1) unstable; urgency=low + + * Initial release (Closes: #) + + -- Mathieu Malaterre <[email protected]> Wed, 04 Jul 2012 17:49:00 +0200 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..9362f03 --- /dev/null +++ b/debian/control @@ -0,0 +1,26 @@ +Source: conquest-dicom-server +Section: web +Maintainer: Debian Med Packaging Team <[email protected]> +DM-Upload-Allowed: yes +Uploaders: Mathieu Malaterre <[email protected]> +Priority: extra +Build-Depends: debhelper (>= 9) +Standards-Version: 3.9.3 +Vcs-Browser: http://anonscm.debian.org/viewvc/debian-med/trunk/packages/conquest-dicom-server/trunk/ +Vcs-Svn: svn://svn.debian.org/debian-med/trunk/packages/conquest-dicom-server/trunk/ +Homepage: http://ingenium.home.xs4all.nl/dicom.html + +Package: conquest-dicom-server +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: Conquest DICOM Server + A full featured DICOM server that has been developed based on and heavily + extending the public domain UCDMC DICOM code. Some possible applications of the + Conquest DICOM software are: + - DICOM training and testing + - Demonstration and research image archives + - Image format conversion from a scanner with DICOM network access + - DICOM image viewing and slide making + - DICOM image selection, (limited) editing, and splitting and merging of series + - Advanced automatic image forwarding and (de)compression + - DICOM caching and archive merging diff --git a/debian/get-orig-source b/debian/get-orig-source new file mode 100755 index 0000000..c514094 --- /dev/null +++ b/debian/get-orig-source @@ -0,0 +1,38 @@ +#!/bin/sh + +PACKAGE=conquest-dicom-server + +VERSION=`dpkg-parsechangelog | sed -n -e 's/^Version: \(.*\)-[^-]*$/\1/p'` + +TARFILE=${PACKAGE}_${VERSION}.orig.tar.gz +UPSTREAM=conquestlinux1416.tar.gz + +FOLDER=${PACKAGE}-${VERSION} + +wget -c ftp://ftp-rt.nki.nl/outbox/MarcelVanHerk/dicomserver/${UPSTREAM} + +mkdir ${FOLDER} +tar xvf ${UPSTREAM} -C ${FOLDER} + +# cleanup +# conv copy of libjasper (sigh) +rm -rf ${FOLDER}/jasper-1.900.1-6ct/ +# conv copy of libjpeg 6c: +rm -rf ${FOLDER}/jpeg-6c/ +# conv copy of lua 5.1.4 +rm -rf ${FOLDER}/lua_5.1.4/ +# conv copy of sqlite3 +rm ${FOLDER}/sqlite3.* + +# remove DICOM test files: +rm -rf ${FOLDER}/data/samples/ + +# scary stuff: +rm ${FOLDER}/ActiveFormProj1.ocx + +# no real source: +rm ${FOLDER}/*.pdf + +GZIP="--best --no-name" tar cvfz ${TARFILE} ${FOLDER} +rm -rf ${FOLDER} +rm ${UPSTREAM} diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..bb1c1ce --- /dev/null +++ b/debian/rules @@ -0,0 +1,8 @@ +#!/usr/bin/make -f +#export DH_VERBOSE=1 + +%: + dh $@ --parallel + +get-orig-source: + ./debian/get-orig-source 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/watch b/debian/watch new file mode 100644 index 0000000..598f511 --- /dev/null +++ b/debian/watch @@ -0,0 +1,3 @@ +version=3 +opts="passive" \ +ftp://dicom.offis.de/pub/dicom/offis/software/dscope/dscope([\d]+)/dsgui(\d)(\d)(\d)\.zip -- Alioth's /git/debian-med/git-commit-notice on /srv/git.debian.org/git/debian-med/conquest-dicom-server.git _______________________________________________ debian-med-commit mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit
