[med-svn] r7609 - trunk/packages/openslide/trunk/debian
Mathieu Malaterre
malat-guest at alioth.debian.org
Thu Sep 1 19:26:55 UTC 2011
Author: malat-guest
Date: 2011-09-01 19:26:55 +0000 (Thu, 01 Sep 2011)
New Revision: 7609
Added:
trunk/packages/openslide/trunk/debian/get-orig-source
Modified:
trunk/packages/openslide/trunk/debian/control
trunk/packages/openslide/trunk/debian/copyright
trunk/packages/openslide/trunk/debian/rules
Log:
fix copyright info
Modified: trunk/packages/openslide/trunk/debian/control
===================================================================
--- trunk/packages/openslide/trunk/debian/control 2011-09-01 16:12:24 UTC (rev 7608)
+++ trunk/packages/openslide/trunk/debian/control 2011-09-01 19:26:55 UTC (rev 7609)
@@ -7,7 +7,6 @@
Build-Depends: debhelper (>= 7.0.50~), cmake (>= 2.6.2), quilt (>= 0.46-7~),
libjpeg-dev, libopenjpeg-dev, zlib1g-dev, libtiff-dev, libgtk2.0-dev
Standards-Version: 3.9.2
-XS-Python-Version: current
Homepage: http://openslide.org
Vcs-Browser: http://svn.debian.org/wsvn/debian-med/trunk/packages/openslide/trunk/?rev=0&sc=0
Vcs-Svn: svn://svn.debian.org/svn/debian-med/trunk/packages/openslide/trunk/
@@ -15,7 +14,7 @@
Package: libopenslide3.2
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
-Description: OpenSlide runtime library
+Description: library for reading whole slide image files
OpenSlide is a C library that provides a simple interface to read whole-slide
images also known as virtual slides.
.
Modified: trunk/packages/openslide/trunk/debian/copyright
===================================================================
--- trunk/packages/openslide/trunk/debian/copyright 2011-09-01 16:12:24 UTC (rev 7608)
+++ trunk/packages/openslide/trunk/debian/copyright 2011-09-01 19:26:55 UTC (rev 7609)
@@ -1,13 +1,73 @@
Format-Specification: http://dep.debian.net/deps/dep5/
Upstream-Name: openslide
-Source: http://pythonqt.sourceforge.net/
+Source: http://openslide.org/
Files: *
Copyright: © 2007-2010 Carnegie Mellon University
License: LGPL-2.1
+Files: cmake/*.cmake
+Copyright: © 2001-2009 Kitware, Inc.
+ © 2008-2009 Philip Lowman <philip at yhbt.com>
+ © 2006-2010 Mathieu Malaterre <mathieu.malaterre at gmail.com>
+License: BSD
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+
+ 1. Redistributions of source code must retain the copyright
+ notice, this list of conditions and the following disclaimer.
+ 2. Redistributions in binary form must reproduce the copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ 3. The name of the author may not be used to endorse or promote products
+ derived from this software without specific prior written permission.
+
+ THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+ IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+ IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
+ INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+ NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+Files: src/sha256.*
+License: Public Domain. You can do whatever you want with this file.
+Files: openslide-jdatasrc.c
+Copyright: © 1991-1998, Thomas G. Lane
+License: Copy from IJG (6b)
+ Permission is hereby granted to use, copy, modify, and distribute this
+ software (or portions thereof) for any purpose, without fee, subject to these
+ conditions:
+ (1) If any part of the source code for this software is distributed, then this
+ README file must be included, with this copyright and no-warranty notice
+ unaltered; and any additions, deletions, or changes to the original files
+ must be clearly indicated in accompanying documentation.
+ (2) If only executable code is distributed, then the accompanying
+ documentation must state that "this software is based in part on the work of
+ the Independent JPEG Group".
+ (3) Permission for use of this software is granted only if the user accepts
+ full responsibility for any undesirable consequences; the authors accept
+ NO LIABILITY for damages of any kind.
+
+ These conditions apply to any software derived from or based on the IJG code,
+ not just to the unmodified library. If you use our work, you ought to
+ acknowledge us.
+
+ Permission is NOT granted for the use of any IJG author's name or company name
+ in advertising or publicity relating to this software or products derived from
+ it. This software may be referred to only as "the Independent JPEG Group's
+ software".
+
+ We specifically permit and encourage the use of this software as the basis of
+ commercial products, provided that all warranty or liability claims are
+ assumed by the product vendor.
+
+
Files: debian/*
Copyright: 2011; Mathieu Malaterre <mathieu.malaterre at gmail.com>
License: LGPL-2.1
Added: trunk/packages/openslide/trunk/debian/get-orig-source
===================================================================
--- trunk/packages/openslide/trunk/debian/get-orig-source (rev 0)
+++ trunk/packages/openslide/trunk/debian/get-orig-source 2011-09-01 19:26:55 UTC (rev 7609)
@@ -0,0 +1,25 @@
+#!/bin/sh
+set -ex
+
+# TODO prefer xz compression:
+# http://github.com/downloads/openslide/openslide/openslide-3.2.4.tar.xz
+# http://github.com/downloads/openslide/openslide/openslide-3.2.4.tar.gz
+
+PACKAGE=openslide
+
+VERSION=`dpkg-parsechangelog | sed -n -e 's/^Version: \(.*\)-[^-]*$/\1/p'`
+
+TARFILE=${PACKAGE}_${VERSION}.orig.tar.gz
+
+FOLDER=${PACKAGE}-${VERSION}
+
+wget -c http://github.com/downloads/openslide/openslide/$PACKAGE-$VERSION.tar.gz
+tar xfz $PACKAGE-$VERSION.tar.gz
+
+# remove a GPL file:
+rm $FOLDER/ltmain.sh
+# remove BSD file, needed for windows anyway
+rm $FOLDER/src/callgrind.h
+rm $FOLDER/src/valgrind.h
+
+GZIP="--best --no-name" tar cfz $TARFILE $FOLDER
Property changes on: trunk/packages/openslide/trunk/debian/get-orig-source
___________________________________________________________________
Added: svn:executable
+ *
Modified: trunk/packages/openslide/trunk/debian/rules
===================================================================
--- trunk/packages/openslide/trunk/debian/rules 2011-09-01 16:12:24 UTC (rev 7608)
+++ trunk/packages/openslide/trunk/debian/rules 2011-09-01 19:26:55 UTC (rev 7609)
@@ -13,4 +13,5 @@
dh --parallel --with quilt --buildsystem=cmake $@
get-orig-source:
- uscan --verbose --force-download --repack --rename
+ #uscan --verbose --force-download --repack --rename
+ ./debian/get-orig-source
More information about the debian-med-commit
mailing list