[med-svn] [SCM] praat annotated tag, upstream/5.3.46, created. upstream/5.3.46

2013-04-22 Thread Rafael Laboissiere
The annotated tag, upstream/5.3.46 has been created
at  27d74bc31415b28d717461606e77c7d8df245fe9 (tag)
   tagging  70eeb43540ab03fced3ce4f5777847a4c708694e (commit)
  replaces  upstream/5.3.44
 tagged by  Rafael Laboissiere
on  Mon Apr 22 08:34:18 2013 +0200

- Shortlog 
Upstream version 5.3.46

Rafael Laboissiere (1):
  Imported Upstream version 5.3.46

---

-- 
Debian packaging for Praat

___
debian-med-commit mailing list
debian-med-commit@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit


[med-svn] [SCM] praat annotated tag, upstream/5.3.44, created. upstream/5.3.44

2013-04-22 Thread Rafael Laboissiere
The annotated tag, upstream/5.3.44 has been created
at  49fe6d62adf495232cc5fc493d22c8a79f1143de (tag)
   tagging  d4ea7c466029b52306d51ee7c6202ae48c4448cf (commit)
  replaces  upstream/5.3.39
 tagged by  Rafael Laboissiere
on  Wed Apr 10 22:44:47 2013 +0200

- Shortlog 
Upstream version 5.3.44

Rafael Laboissiere (1):
  Imported Upstream version 5.3.44

---

-- 
Debian packaging for Praat

___
debian-med-commit mailing list
debian-med-commit@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit


[med-svn] [SCM] praat annotated tag, upstream/5.3.39, created. upstream/5.3.39

2013-04-22 Thread Rafael Laboissiere
The annotated tag, upstream/5.3.39 has been created
at  2bae2e395995c8a68d44e399940999b43c6c5486 (tag)
   tagging  e4bf75094776e9b488a246560f10db4cd52a1ea8 (commit)
  replaces  upstream/5.3.38
 tagged by  Rafael Laboissiere
on  Tue Jan 15 22:36:28 2013 +0100

- Shortlog 
Upstream version 5.3.39

Rafael Laboissiere (2):
  Imported Upstream version 5.3.38
  Imported Upstream version 5.3.39

---

-- 
Debian packaging for Praat

___
debian-med-commit mailing list
debian-med-commit@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit


[med-svn] [SCM] praat tag, native-gsl, created. debian/5.3.14-1-34-ge3ede6e

2013-04-22 Thread Rafael Laboissiere
The tag, native-gsl has been created
at  e3ede6ed8713ab380eda68af780f46f59f26726a (commit)

- Shortlog 
commit e3ede6ed8713ab380eda68af780f46f59f26726a
Author: Rafael Laboissiere 
Date:   Wed Apr 10 23:03:34 2013 +0200

Link against the native GSL library

The version of GSL shipped with Praat is no more compiled and the
final executable is now linked against the shared library provided by
the libgsl0 package.
---

-- 
Debian packaging for Praat

___
debian-med-commit mailing list
debian-med-commit@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit


[med-svn] [SCM] praat branch, master, updated. debian/5.3.14-1-45-geb6df89

2013-04-22 Thread Rafael Laboissiere
The following commit has been merged in the master branch:
commit d357f27f1ae0111daa159fbf25452516deba758b
Author: Rafael Laboissiere 
Date:   Mon Apr 22 18:15:23 2013 +0200

debian/praat-open-files: New script for opening sound files with praat

diff --git a/debian/control b/debian/control
index 2ac3590..6129210 100644
--- a/debian/control
+++ b/debian/control
@@ -13,7 +13,7 @@ Vcs-Browser: http://git.debian.org/?p=debian-med/praat.git
 
 Package: praat
 Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, oss-compat
+Depends: ${shlibs:Depends}, ${misc:Depends}, oss-compat, python
 Recommends: xfonts-75dpi | xfonts-75dpi-transcoded
  | xfonts-100dpi | xfonts-100dpi-transcoded
 Description: program for speech analysis and synthesis
diff --git a/debian/install.in b/debian/install.in
index 90ade97..127c165 100644
--- a/debian/install.in
+++ b/debian/install.in
@@ -1,5 +1,6 @@
 praat  @BINDIR@
 sendpraat  @BINDIR@
+debian/praat-open-files@BINDIR@
 debian/praat.xpm   @PIXDIR@
 debian/praat.svg   @SVGDIR@
 debian/praat.desktop@APPDIR@
diff --git a/debian/praat-open-files b/debian/praat-open-files
new file mode 100644
index 000..dd2c3f9
--- /dev/null
+++ b/debian/praat-open-files
@@ -0,0 +1,44 @@
+#!/usr/bin/python
+
+### Copyright (C) 2013  Rafael Laboissiere
+###
+### 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 program; if not, see .
+
+import argparse
+import os
+import subprocess
+import time
+
+parser = argparse.ArgumentParser (description = 'Open sound files with Praat')
+parser.add_argument ('--new', action = 'store_true',
+ help = 'Launch a new instance of praat for viewing the 
files')
+wait_default = 3
+parser.add_argument ('--wait', type = int, default = wait_default,
+ help = 'time, in sec, to wait for the new instance of 
praat'
++ ' to be launched (default = %d)' % wait_default)
+parser.add_argument ('files', metavar = 'file', type = str, nargs = '+',
+ help = 'sound file to be opened')
+
+args = parser.parse_args ()
+
+command = ['sendpraat', 'praat']
+for f in args.files:
+command.append ('Read from file... %s' % os.path.abspath (f))
+command.append ('Edit')
+
+if len (command) > 2:
+if args.new:
+subprocess.Popen (['praat'])
+time.sleep (args.wait)
+subprocess.Popen (command)
diff --git a/debian/praat-open-files.dbk b/debian/praat-open-files.dbk
new file mode 100644
index 000..7af9c94
--- /dev/null
+++ b/debian/praat-open-files.dbk
@@ -0,0 +1,164 @@
+
+http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd"; [
+
+
+
+  
+  Rafael">
+  Laboissiere">
+  
+  April 22, 2013">
+  
+  1">
+  raf...@laboissiere.net">
+  
+  PRAAT-OPEN-FILES">
+  
+
+  
+  GNU">
+  GPL">
+]>
+
+
+  
+
+  &dhemail;
+
+
+  &dhfirstname;
+  &dhsurname;
+
+
+  2003
+  &dhusername;
+
+&dhdate;
+  
+  
+&dhucpackage;
+&dhsection;
+User Commands
+Praat
+  
+  
+&dhpackage;
+
+Open sound files with Praat
+  
+  
+
+  &dhpackage;
+  --new
+
+  
+  --wait=secs
+  
+  
+file
+  
+
+  
+
+  
+DESCRIPTION
+
+The &dhpackage; command allows opening of
+sound files with praat from the command line.  Any
+file type recognized by Praat (WAV, FLAC, MP3, etc) can be given as
+arguments.
+
+  
+
+  
+OPTIONS
+
+
+  
+--new
+
+  
+Launch a new instance of praat for viewing
+and editing the sound files.  By default,
+praat-open-files try to open the files in an
+running praat program, and fails if ther is 
none.
+  
+
+  
+  
+--wait=secs
+
+  
+By default, when the --new option is used,
+praat-open-files waits for 3 seconds before
+sending commands to the newly launched instance of
+praat.  If praat takes
+longer to be launched on your system, specify another value
+with the --wait option.
+  
+
+  
+
+
+  
+
+  
+EXAMPLES
+
+praat-open-files file.wav relative/path/file.flac 
/absolute/path/file.mp3
+
+Open the three specified files with individual View & Edit
+windows for each one on

[med-svn] [SCM] praat branch, master, updated. debian/5.3.14-1-45-geb6df89

2013-04-22 Thread Rafael Laboissiere
The following commit has been merged in the master branch:
commit 0ea73638b7fe548bc64fac5f66fbdb1a3fbf1cc4
Author: Rafael Laboissiere 
Date:   Mon Apr 22 15:36:36 2013 +0200

Build and install the sendpraat program

- debian/rules: Adjust the building and cleaning this new program and its
  man page
- debian/install.in: Install it
- debian/patches/{allow-stand-alone-sendpraat,sendpraat-getenv-display,
  sendpraat-help-string}.patch: New patches needed for building the
  standalone version of the program and fixing minor bugs
- debian/sendpraat.dbk: New man page source

Git-Dch: Full

diff --git a/.gitignore b/.gitignore
index 3d28a8d..ca779bf 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,6 +2,7 @@
 *.a
 /makefile.defs
 /praat
+/sendpraat
 /*.1
 /debian/files
 /debian/praat.dirs
diff --git a/debian/install.in b/debian/install.in
index 55439b1..90ade97 100644
--- a/debian/install.in
+++ b/debian/install.in
@@ -1,4 +1,5 @@
 praat  @BINDIR@
+sendpraat  @BINDIR@
 debian/praat.xpm   @PIXDIR@
 debian/praat.svg   @SVGDIR@
 debian/praat.desktop@APPDIR@
diff --git a/debian/patches/allow-stand-alone-sendpraat.patch 
b/debian/patches/allow-stand-alone-sendpraat.patch
new file mode 100644
index 000..de6f188
--- /dev/null
+++ b/debian/patches/allow-stand-alone-sendpraat.patch
@@ -0,0 +1,22 @@
+Description: Allow compilation of stand alone sendpraat program
+ Replace the "#if 0" in the source file sys/sendpraat.c by "#if
+ STAND_ALONE", such it is easier to generate the sendpraat program for
+ the Debian package.
+Author: Rafael Laboissiere 
+Forwarded: not-needed
+Last-Update: 2013-04-22
+
+--- praat-5.3.46.orig/sys/sendpraat.c
 praat-5.3.46/sys/sendpraat.c
+@@ -533,9 +533,9 @@ wchar_t *sendpraatW (void *display, cons
+ 
+ /*
+  * To compile sendpraat as a stand-alone program:
+- * temporarily change the following line to "#if 1" instead of "#if 0":
++ * Use the -DSTAND_ALONE option to the C compiler
+  */
+-#if 0
++#if STAND_ALONE
+ /*
+  * To compile on MacOS X:
+ cc -o sendpraat -framework CoreServices 
-I/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/Headers
 
-I/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/Headers
 sendpraat.c -Dmacintosh -DuseCarbon=1
diff --git a/debian/patches/sendpraat-getenv-display.patch 
b/debian/patches/sendpraat-getenv-display.patch
new file mode 100644
index 000..a065282
--- /dev/null
+++ b/debian/patches/sendpraat-getenv-display.patch
@@ -0,0 +1,24 @@
+Description: Get DISPLAY from the environment
+ The current code in sys/sendpraat.c hardcodes the value of the DISPLAY
+ (":0.0").  This is inappropriate when PRaat is run trhough, say, SSH,
+ in which case the DISPLAY would be something like "localhost:10.0".
+ In order to avoid this problem, the value of DISPLAY is obtained
+ using getenv() in this patch.
+Author: Rafael Laboissiere 
+Forwarded: no
+Last-Update: 2013-04-22
+
+--- praat-5.3.46.orig/sys/sendpraat.c
 praat-5.3.46/sys/sendpraat.c
+@@ -233,9 +233,9 @@ char *sendpraat (void *display, const ch
+   g_type_init ();
+   int displaySupplied = display != NULL;
+   if (! displaySupplied) {
+-  display = gdk_display_open (":0.0");   /* 
GdkDisplay* */
++  display = gdk_display_open (getenv 
("DISPLAY"));   /* GdkDisplay* */
+   if (display == NULL) {
+-  sprintf (errorMessage, "Cannot open 
display :0.0.");
++  sprintf (errorMessage, "Cannot open 
display %s", getenv ("DISPLAY"));
+   return errorMessage;
+   }
+   }
diff --git a/debian/patches/sendpraat-help-string.patch 
b/debian/patches/sendpraat-help-string.patch
new file mode 100644
index 000..e6b58ef
--- /dev/null
+++ b/debian/patches/sendpraat-help-string.patch
@@ -0,0 +1,16 @@
+Description: Fix the help string of the sendpraat command
+Author: Rafael Laboissiere 
+Forwarded: no
+Last-Update: 2013-04-22
+
+--- praat-5.3.46.orig/sys/sendpraat.c
 praat-5.3.46/sys/sendpraat.c
+@@ -597,7 +597,7 @@ int main (int argc, char **argv) {
+   printf ("\n");
+   #if win
+   printf ("   sendpraat praat \"execute 
C:\\MyDocuments\\MyScript.praat\"\n");
+-  #elif mac
++  #else
+   printf ("   sendpraat praat \"execute 
~/MyResearch/MyProject/MyScript.praat\"\n");
+   #endif
+   printf ("  Causes the program \"praat\" to execute a 
script.\n");
diff --git a/debian/patches/series b/debian/patches/series
index 5458732..49af79c 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1 +1,4 @@
 use-ldflags.patch
+all

[med-svn] [SCM] praat branch, master, updated. debian/5.3.14-1-45-geb6df89

2013-04-22 Thread Rafael Laboissiere
The following commit has been merged in the master branch:
commit eb6df89b60bef99a56c7bf4e9412cbc57f47b59c
Author: Rafael Laboissiere 
Date:   Mon Apr 22 18:47:34 2013 +0200

Preparation for the next release of the Debian package

Git-Dch: Ignore

diff --git a/debian/changelog b/debian/changelog
index 451dc88..582cd69 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,32 @@
+praat (5.3.46-1) UNRELEASED; urgency=low
+
+  * Imported Upstream version 5.3.46
+  * debian/What_s_new_.html: Update for the new upstream release
+  * Bump Standards-Version to 3.9.4 (no changes needed)
+  * debian/copyright:
+- Refresh for new upstream release
+- Update Copyright years
+  * Drop useless patch use-dpkg-buildflags.patch
+  * Restore the building of man pages from DocBook sources
+- debian/control: Build-Depends on xmlto
+- debian/manpage.xsl: Is now a fragment for xmlto and uses xsl:param
+- debian/rules: Adjust for building and cleaning the new manpages
+  * debian/praat.dbk: Improvements and fixes
+- Update my email address and the Copyright year
+- Add lacking refmiscinfo tags for "manual" and "source"
+- Upgrade the license to GPL-3
+  * Build and install the sendpraat program
+- debian/rules: Adjust the building and cleaning this new program and its
+  man page
+- debian/install.in: Install it
+- debian/patches/{allow-stand-alone-sendpraat,sendpraat-getenv-display,
+  sendpraat-help-string}.patch: New patches needed for building the
+  standalone version of the program and fixing minor bugs
+- debian/sendpraat.dbk: New man page source
+  * debian/praat-open-files: New script for opening sound files with praat
+
+ -- Rafael Laboissiere   Mon, 22 Apr 2013 18:33:04 
+0200
+
 praat (5.3.35-1) experimental; urgency=low
 
   [ Rafael Laboissiere ]

-- 
Debian packaging for Praat

___
debian-med-commit mailing list
debian-med-commit@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit


[med-svn] [SCM] praat branch, pristine-tar, updated. f77ef3d747a5c660c6c01db5bfd5b18a8eb938e4

2013-04-22 Thread Rafael Laboissiere
The following commit has been merged in the pristine-tar branch:
commit f77ef3d747a5c660c6c01db5bfd5b18a8eb938e4
Author: Rafael Laboissiere 
Date:   Mon Apr 22 08:34:18 2013 +0200

pristine-tar data for praat_5.3.46.orig.tar.gz

diff --git a/praat_5.3.46.orig.tar.gz.delta b/praat_5.3.46.orig.tar.gz.delta
new file mode 100644
index 000..442531b
Binary files /dev/null and b/praat_5.3.46.orig.tar.gz.delta differ
diff --git a/praat_5.3.46.orig.tar.gz.id b/praat_5.3.46.orig.tar.gz.id
new file mode 100644
index 000..f9cc9ad
--- /dev/null
+++ b/praat_5.3.46.orig.tar.gz.id
@@ -0,0 +1 @@
+26006826471bb0cd75ab831deb0842abc0733390

-- 
Debian packaging for Praat

___
debian-med-commit mailing list
debian-med-commit@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit


[med-svn] [SCM] praat branch, master, updated. debian/5.3.14-1-45-geb6df89

2013-04-22 Thread Rafael Laboissiere
The following commit has been merged in the master branch:
commit 99dc76f6457ee1006b20ef9d396d7ca7f0960a66
Author: Rafael Laboissiere 
Date:   Mon Apr 22 18:46:53 2013 +0200

Update for the new upstream release

Git-Dch: Ignore

diff --git a/debian/copyright b/debian/copyright
index 008a570..2a0d63d 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -9,6 +9,9 @@ Copyright: 1990-2013 Paul Boersma
1992-2013 David Weenink
2007 Erez Volk
2002 Hansjoerg Mixdorff
+   2008 Stefan de Konink
+   2010 Franz Brausse
+   2013 Tom Naughton
 License: GPL-2+
 
 Files: external/glpk/*

-- 
Debian packaging for Praat

___
debian-med-commit mailing list
debian-med-commit@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit


[med-svn] [SCM] praat branch, master, updated. debian/5.3.14-1-45-geb6df89

2013-04-22 Thread Rafael Laboissiere
The following commit has been merged in the master branch:
commit 23097d9e9664ccd01c28537ca5bdb64db4ff1fc1
Author: Rafael Laboissiere 
Date:   Mon Apr 22 15:22:13 2013 +0200

debian/praat.dbk: Improvements and fixes

- Update my email address and the Copyright year
- Add lacking refmiscinfo tags for "manual" and "source"
- Upgrade the license to GPL-3

Git-Dch: Full

diff --git a/debian/praat.dbk b/debian/praat.dbk
index 0a22c8c..d91d2a0 100644
--- a/debian/praat.dbk
+++ b/debian/praat.dbk
@@ -30,11 +30,11 @@ and docbook-xsl in your Build-Depends control field.
   Rafael">
   Laboissiere">
   
-  January 27, 2005">
+  April 22, 2013">
   
   1">
-  raf...@debian.org">
+  raf...@laboissiere.net">
   
   PRAAT">
   
@@ -54,15 +54,16 @@ and docbook-xsl in your Build-Depends control field.
   &dhsurname;
 
 
-  2003
+  2003, 2103
   &dhusername;
 
 &dhdate;
   
   
 &dhucpackage;
-
 &dhsection;
+User Commands
+Praat
   
   
 &dhpackage;
@@ -103,22 +104,22 @@ and docbook-xsl in your Build-Depends control field.
   just launch praat and look at the Help menu entry.
 
 For further information, see the Praat website
-  (www.praat.org).  A very good Beginner's Guide is available at
-  http://www.ling.lu.se/persons/Sidney/praate/frames.html 
+(http://www.praat.org).  A very good Beginner's Guide is available at
+http://www.ling.lu.se/persons/Sidney/praate/frames.html.
 
   
 
   
 AUTHOR
 
-This manual page was written by &dhusername; &dhemail; for
+This manual page was written by &dhusername; <&dhemail;> for
   the &debian; system (but may be used by others).  Permission is
   granted to copy, distribute and/or modify this document under
-  the terms of the &gnu; General Public License, Version 2 any
+  the terms of the &gnu; General Public License, Version 3 any
   later version published by the Free Software Foundation.
 
 On Debian systems, the complete text of the GNU General
-  Public License can be found in /usr/share/common-licenses/GPL.
+  Public License can be found in /usr/share/common-licenses/GPL-3.
 
   
 

-- 
Debian packaging for Praat

___
debian-med-commit mailing list
debian-med-commit@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit


[med-svn] [SCM] praat branch, master, updated. debian/5.3.14-1-45-geb6df89

2013-04-22 Thread Rafael Laboissiere
The following commit has been merged in the master branch:
commit 800bd6050340dca159bc3b4576b357203508e2be
Author: Rafael Laboissiere 
Date:   Mon Apr 22 15:16:14 2013 +0200

Bump Standards-Version to 3.9.4 (no changes needed)

diff --git a/debian/control b/debian/control
index 6ee4719..2ac3590 100644
--- a/debian/control
+++ b/debian/control
@@ -6,7 +6,7 @@ Uploaders: Andreas Tille ,
  Rafael Laboissiere 
 DM-Upload-Allowed: yes
 Build-Depends: debhelper (>= 9), libasound2-dev, libgtk2.0-dev, xmlto
-Standards-Version: 3.9.3
+Standards-Version: 3.9.4
 Homepage: http://www.praat.org
 Vcs-Git: git://git.debian.org/debian-med/praat.git
 Vcs-Browser: http://git.debian.org/?p=debian-med/praat.git

-- 
Debian packaging for Praat

___
debian-med-commit mailing list
debian-med-commit@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit


[med-svn] [SCM] praat branch, master, updated. debian/5.3.14-1-45-geb6df89

2013-04-22 Thread Rafael Laboissiere
The following commit has been merged in the master branch:
commit 1ead764f8d9534eba2f337e6cd0f399603d6b537
Author: Rafael Laboissiere 
Date:   Mon Apr 22 15:15:34 2013 +0200

debian/What_s_new_.html: Update for the new upstream release

diff --git a/debian/What_s_new_.html b/debian/What_s_new_.html
index 140ed9b..3803b14 100644
--- a/debian/What_s_new_.html
+++ b/debian/What_s_new_.html
@@ -7,6 +7,20 @@ What's new?
 
 Latest changes in Praat.
 
+5.3.46 (21 April 2013)
+
+
+ Scripting: variable-substitution-free procedure calls.
+
+ Linux: made the Save menu compatible with Ubuntu 12.04.
+
+
+5.3.45 (15 April 2013)
+
+
+ More parts of the manual reflect variable-substitution-free scripting.
+
+
 5.3.44 (7 April 2013)
 
 
@@ -3454,7 +3468,7 @@ Known bugs in the Linux version
 
 
 
-   © ppgb, April 7, 2013
+   © ppgb, April 21, 2013
 
 
 

-- 
Debian packaging for Praat

___
debian-med-commit mailing list
debian-med-commit@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit


[med-svn] [SCM] praat branch, master, updated. debian/5.3.14-1-45-geb6df89

2013-04-22 Thread Rafael Laboissiere
The following commit has been merged in the master branch:
commit 83268397f8704cf1c791dfa26f01e376ea82d774
Author: Rafael Laboissiere 
Date:   Mon Apr 22 15:07:05 2013 +0200

Restore the building of man pages from DocBook sources

- debian/control: Build-Depends on xmlto
- debian/manpage.xsl: Is now a fragment for xmlto and uses xsl:param
- debian/rules: Adjust for building and cleaning the new manpages

Git-Dch: Full

diff --git a/.gitignore b/.gitignore
index ddd51d6..3d28a8d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,6 +2,7 @@
 *.a
 /makefile.defs
 /praat
+/*.1
 /debian/files
 /debian/praat.dirs
 /debian/praat.install
diff --git a/debian/control b/debian/control
index 3d18ad4..6ee4719 100644
--- a/debian/control
+++ b/debian/control
@@ -5,7 +5,7 @@ Maintainer: Debian Med Packaging Team 
,
  Rafael Laboissiere 
 DM-Upload-Allowed: yes
-Build-Depends: debhelper (>= 9), libasound2-dev, libgtk2.0-dev
+Build-Depends: debhelper (>= 9), libasound2-dev, libgtk2.0-dev, xmlto
 Standards-Version: 3.9.3
 Homepage: http://www.praat.org
 Vcs-Git: git://git.debian.org/debian-med/praat.git
diff --git a/debian/manpage.xsl b/debian/manpage.xsl
index 2d15f24..1c2f2fa 100644
--- a/debian/manpage.xsl
+++ b/debian/manpage.xsl
@@ -1,10 +1,5 @@
-
 http://www.w3.org/1999/XSL/Transform";
 version='1.0'>
-  
-  
-  
-  
-  
-  
+  0
+  0
 
diff --git a/debian/praat.1 b/debian/praat.1
deleted file mode 100644
index 6bb2070..000
--- a/debian/praat.1
+++ /dev/null
@@ -1,59 +0,0 @@
-'\" t
-.\" Title: PRAAT
-.\"Author: Rafael Laboissiere
-.\" Generator: DocBook XSL Stylesheets v1.75.2 
-.\"  Date: January 27, 2005
-.\"Manual: [FIXME: manual]
-.\"Source: [FIXME: source]
-.\"  Language: English
-.\"
-.TH "PRAAT" "1" "January 27, 2005" "[FIXME: source]" "[FIXME: manual]"
-.\" -
-.\" * Define some portability stuff
-.\" -
-.\" ~
-.\" http://bugs.debian.org/507673
-.\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
-.\" ~
-.ie \n(.g .ds Aq \(aq
-.el   .ds Aq '
-.\" -
-.\" * set default formatting
-.\" -
-.\" disable hyphenation
-.nh
-.\" disable justification (adjust text to left margin only)
-.ad l
-.\" -
-.\" * MAIN CONTENT STARTS HERE *
-.\" -
-.SH "NAME"
-praat \- doing phonetics by computer
-.SH "SYNOPSIS"
-.HP \w'\fBpraat\fR\ 'u
-\fBpraat\fR
-.SH "DESCRIPTION"
-.PP
-This manual page documents briefly the
-\fBpraat\fR
-command\&.
-.PP
-This manual page was written for the Debian distribution because the original 
program does not have a manual page\&.
-.PP
-\fBpraat\fR
-is a program for speech analysis and synthesis\&. Through its graphical 
interface, several speech analysis functionalities are available: spectrograms, 
cochleograms, and pitch and formant extraction\&. Articulatory synthesis, as 
well as synthesis from pitch, formant, and intensity are also available\&. 
Other features are segmentation, labelling using the phonetic alphabet, and 
computation of statistics\&. Praat is configurable and extensible through its 
own scripting language and has provisions for communicating with other 
programs\&.
-.SH "SEE ALSO"
-.PP
-\fBpraat\fR
-has an on\-line documentation; just launch praat and look at the Help menu 
entry\&.
-.PP
-For further information, see the Praat website (www\&.praat\&.org)\&. A very 
good Beginner\*(Aqs Guide is available at 
http://www\&.ling\&.lu\&.se/persons/Sidney/praate/frames\&.html
-.SH "AUTHOR"
-.PP
-This manual page was written by Rafael Laboissiere
-rafael@debian\&.org
-for the Debian system (but may be used by others)\&. Permission is granted to 
copy, distribute and/or modify this document under the terms of the
-GNU
-General Public License, Version 2 any later version published by the Free 
Software Foundation\&.
-.PP
-On Debian systems, the complete text of the GNU General Public License can be 
found in /usr/share/common\-licenses/GPL\&.
diff --git a/debian/praat.manpages b/debian/praat.manpages
index 3ec6388..b1f73bc 100644
--- a/debian/praat.manpages
+++ b/debian/praat.manpages
@@ -1 +1 @@
-debian/praat.1
+praat.1
diff --git a/debian/rules b/debian/rules
index 80aee1f..98d337b 100755
--- a/debian/rules
+++ b/debian/rules
@@ -28,7 +28,7 @@ clean:
# Fix the lacking cleaning command for the main/ directory
[ ! -f makefile.defs ] || make -C main clean
rm -f makefile.defs $(DEBDIR)/praat.dirs\
-$(DEBDIR)/praat.install $(DEBDIR)/p

[med-svn] [SCM] praat branch, master, updated. debian/5.3.14-1-45-geb6df89

2013-04-22 Thread Rafael Laboissiere
The following commit has been merged in the master branch:
commit 854ba47785aa0f759ff6390969ece97ee4c04ac3
Merge: 1de5c199c5de83cb1448865fb7c039fff4e17dd2 
70eeb43540ab03fced3ce4f5777847a4c708694e
Author: Rafael Laboissiere 
Date:   Mon Apr 22 08:34:18 2013 +0200

Merge tag 'upstream/5.3.46'

Upstream version 5.3.46


-- 
Debian packaging for Praat

___
debian-med-commit mailing list
debian-med-commit@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit


[med-svn] r13381 - trunk/packages/qrisk2/trunk/debian

2013-04-22 Thread Thorsten Alteholz
Author: alteholz
Date: 2013-04-22 19:58:32 + (Mon, 22 Apr 2013)
New Revision: 13381

Modified:
   trunk/packages/qrisk2/trunk/debian/changelog
   trunk/packages/qrisk2/trunk/debian/control
Log:
remove needless . at end of long description

Modified: trunk/packages/qrisk2/trunk/debian/changelog
===
--- trunk/packages/qrisk2/trunk/debian/changelog2013-04-22 19:57:07 UTC 
(rev 13380)
+++ trunk/packages/qrisk2/trunk/debian/changelog2013-04-22 19:58:32 UTC 
(rev 13381)
@@ -1,3 +1,9 @@
+qrisk2 (0.0.r30-2) UNRELEASED; urgency=low
+
+ * debian/control: remove "." at end of long description (Closes: #705791)
+
+ -- Thorsten Alteholz   Mon, 22 Apr 2013 18:00:00 +0200
+
 qrisk2 (0.0.r30-1) unstable; urgency=low
 
   * Initial release (Closes: #705694)
@@ -4,4 +10,3 @@
 Part of packaging has been done by Andreas Tille
 
  -- Thorsten Alteholz   Thu, 18 Apr 2013 18:00:00 +0200
-

Modified: trunk/packages/qrisk2/trunk/debian/control
===
--- trunk/packages/qrisk2/trunk/debian/control  2013-04-22 19:57:07 UTC (rev 
13380)
+++ trunk/packages/qrisk2/trunk/debian/control  2013-04-22 19:58:32 UTC (rev 
13381)
@@ -32,4 +32,4 @@
  deprived areas and over-estimated for patients from affluent areas. All
  medical decisions need to be taken by a patient in consultation with
  their doctor. The authors and the sponsors accept no responsibility for
- clinical use or misuse of these score..
+ clinical use or misuse of these score.


___
debian-med-commit mailing list
debian-med-commit@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit


[med-svn] r13380 - in trunk/packages/treeview/trunk/debian: . patches scripts

2013-04-22 Thread Thorsten Alteholz
Author: alteholz
Date: 2013-04-22 19:57:07 + (Mon, 22 Apr 2013)
New Revision: 13380

Added:
   trunk/packages/treeview/trunk/debian/get-orig-source
   trunk/packages/treeview/trunk/debian/patches/
   trunk/packages/treeview/trunk/debian/patches/classpath.patch
   trunk/packages/treeview/trunk/debian/patches/series
   trunk/packages/treeview/trunk/debian/scripts/
   trunk/packages/treeview/trunk/debian/scripts/treeview
   trunk/packages/treeview/trunk/debian/treeview.install
   trunk/packages/treeview/trunk/debian/treeview.links
   trunk/packages/treeview/trunk/debian/treeview.manpages
Removed:
   trunk/packages/treeview/trunk/debian/treeview
Modified:
   trunk/packages/treeview/trunk/debian/changelog
   trunk/packages/treeview/trunk/debian/compat
   trunk/packages/treeview/trunk/debian/control
   trunk/packages/treeview/trunk/debian/copyright
   trunk/packages/treeview/trunk/debian/menu
   trunk/packages/treeview/trunk/debian/rules
   trunk/packages/treeview/trunk/debian/watch
Log:
some progress, not ready yet

Modified: trunk/packages/treeview/trunk/debian/changelog
===
--- trunk/packages/treeview/trunk/debian/changelog  2013-04-22 14:17:41 UTC 
(rev 13379)
+++ trunk/packages/treeview/trunk/debian/changelog  2013-04-22 19:57:07 UTC 
(rev 13380)
@@ -1,8 +1,10 @@
-treeview (1.1.6.2-1) UNRELEASED; urgency=low
+treeview (1.1.6.2+dfsg-1) UNRELEASED; urgency=low
 
   * Initial release (Closes: #243771)
-TODO: ITP #243771 has to be reopened in case of upload
-  * TODO: remove lintian complaints
+  * TODO: ITP #243771 has to be reopened in case of upload
+  * TODO: take care of plugins
+  * TODO: remove windows stuff
+  * TODO: build docu
   * TODO: either package included JAR files separately from source
   or list according licenses in debian/copyright (in the
   latter case package needs to go to non-free
@@ -10,8 +12,8 @@
   [ Thorsten Alteholz ]
   * debian/watch: watch file added
   * debian/rules: target get-orig-source added
-  * debian/control: debhelper 8
-  * debian/control: standards version 3.9.2 (no other changes)
+  * debian/control: debhelper 9
+  * debian/control: standards version 3.9.4 (no other changes)
   * debian/control: vcs fields added
   * debian/control: team maintenance
   * new upstream release: 1.1.6.2
@@ -23,7 +25,7 @@
   * debian/source/format: 3.0 (quilt)
   * Added myself to Uploaders
 
- -- DMPT   Mon, 23 Jan 2012 
18:00:00 +0100
+ -- Thorsten Alteholz   Mon, 23 Jan 2012 18:00:00 +0100
 
 treeview (1.0.5-0.3) UNRELEASED; urgency=low
 

Modified: trunk/packages/treeview/trunk/debian/compat
===
--- trunk/packages/treeview/trunk/debian/compat 2013-04-22 14:17:41 UTC (rev 
13379)
+++ trunk/packages/treeview/trunk/debian/compat 2013-04-22 19:57:07 UTC (rev 
13380)
@@ -1 +1 @@
-8
+9

Modified: trunk/packages/treeview/trunk/debian/control
===
--- trunk/packages/treeview/trunk/debian/control2013-04-22 14:17:41 UTC 
(rev 13379)
+++ trunk/packages/treeview/trunk/debian/control2013-04-22 19:57:07 UTC 
(rev 13380)
@@ -3,16 +3,26 @@
 Priority: optional
 Maintainer: Debian Med Packaging Team 

 Uploaders: Steffen Moeller ,
- Andreas Tille 
-Build-Depends: debhelper (>= 8), ant, java2-compiler
-Standards-Version: 3.9.2
+ Andreas Tille ,
+ Thorsten Alteholz 
+Build-Depends: debhelper (>= 9), 
+ ant, 
+ default-jdk,
+ libnanoxml2-java,
+ libcommons-configuration-java,
+ libcommons-lang-java
+Standards-Version: 3.9.4
 Homepage: http://jtreeview.sourceforge.net
 Vcs-Browser: 
http://svn.debian.org/wsvn/debian-med/trunk/packages/treeview/trunk/
 Vcs-Svn: svn://svn.debian.org/debian-med/trunk/packages/treeview/trunk/
 
 Package: treeview
 Architecture: all
-Depends: ${shlibs:Depends}, ${misc:Depends}, java2-runtime
+Depends: ${shlibs:Depends}, ${misc:Depends}, 
+ default-jre,
+ libnanoxml2-java,
+ libcommons-configuration-java,
+ libcommons-lang-java
 Recommends: cluster3
 Suggests: mapletree, smile
 Description: Java re-implementation of Michael Eisen's TreeView

Modified: trunk/packages/treeview/trunk/debian/copyright
===
--- trunk/packages/treeview/trunk/debian/copyright  2013-04-22 14:17:41 UTC 
(rev 13379)
+++ trunk/packages/treeview/trunk/debian/copyright  2013-04-22 19:57:07 UTC 
(rev 13380)
@@ -1,26 +1,30 @@
-This package was debianized by Steffen Moeller  on
-Wed,  7 Apr 2004 22:02:54 +0200.
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: treeview
+Source:  http://treeview.sourceforge.net/
 
-It was downloaded from http://treeview.sourceforge.net
+Files: *
+Copyright: Alok Saldanha 
+License: GPL-2
+ This package is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ th

[med-svn] r13379 - trunk/packages/flexbar/trunk/debian

2013-04-22 Thread Tony Travis
Author: ajtravis-guest
Date: 2013-04-22 14:17:41 + (Mon, 22 Apr 2013)
New Revision: 13379

Modified:
   trunk/packages/flexbar/trunk/debian/control
Log:
Restrict architecture to amd64 ia64


Modified: trunk/packages/flexbar/trunk/debian/control
===
--- trunk/packages/flexbar/trunk/debian/control 2013-04-22 13:07:16 UTC (rev 
13378)
+++ trunk/packages/flexbar/trunk/debian/control 2013-04-22 14:17:41 UTC (rev 
13379)
@@ -11,7 +11,7 @@
 Vcs-Svn: svn://svn.debian.org/debian-med/trunk/packages/flexbar/trunk/
 
 Package: flexbar
-Architecture: any
+Architecture: amd64 ia64
 Depends: ${shlibs:Depends}, ${misc:Depends}
 Description: flexible barcode and adapter removal for sequencing platforms
  Flexbar preprocesses high-throughput sequencing data efficiently. It


___
debian-med-commit mailing list
debian-med-commit@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit


[med-svn] r13378 - in trunk/packages/flexbar: . tags

2013-04-22 Thread Andreas Tille
Author: tille
Date: 2013-04-22 13:07:16 + (Mon, 22 Apr 2013)
New Revision: 13378

Added:
   trunk/packages/flexbar/tags/
   trunk/packages/flexbar/tags/2.32-1/
Log:
Tagged 2.32-1



___
debian-med-commit mailing list
debian-med-commit@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit


[med-svn] r13377 - trunk/packages/flexbar/trunk/debian

2013-04-22 Thread Andreas Tille
Author: tille
Date: 2013-04-22 13:06:16 + (Mon, 22 Apr 2013)
New Revision: 13377

Modified:
   trunk/packages/flexbar/trunk/debian/changelog
Log:
Package was uploaded to and accepted in unstable


Modified: trunk/packages/flexbar/trunk/debian/changelog
===
--- trunk/packages/flexbar/trunk/debian/changelog   2013-04-22 09:31:27 UTC 
(rev 13376)
+++ trunk/packages/flexbar/trunk/debian/changelog   2013-04-22 13:06:16 UTC 
(rev 13377)
@@ -1,4 +1,4 @@
-flexbar (2.32-1) UNRELEASED; urgency=low
+flexbar (2.32-1) unstable; urgency=low
 
   * Initial release (Closes: #701539)
 


___
debian-med-commit mailing list
debian-med-commit@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit


[med-svn] r13376 - trunk/packages/dcmtk/branches/experimental/debian

2013-04-22 Thread Mathieu Malaterre
Author: malat
Date: 2013-04-22 09:31:27 + (Mon, 22 Apr 2013)
New Revision: 13376

Added:
   trunk/packages/dcmtk/branches/experimental/debian/libdcmtk3-dev.install
Modified:
   trunk/packages/dcmtk/branches/experimental/debian/control
   trunk/packages/dcmtk/branches/experimental/debian/dcmtk.install
   trunk/packages/dcmtk/branches/experimental/debian/libdcmtk3.install
Log:
Fix installation

Modified: trunk/packages/dcmtk/branches/experimental/debian/control
===
--- trunk/packages/dcmtk/branches/experimental/debian/control   2013-04-22 
08:59:28 UTC (rev 13375)
+++ trunk/packages/dcmtk/branches/experimental/debian/control   2013-04-22 
09:31:27 UTC (rev 13376)
@@ -38,8 +38,8 @@
 Section: libs
 Architecture: any
 Depends: ${misc:Depends}, ${shlibs:Depends}
-Conflicts: dcmtk (<< 3.6.0), libdcmtk0, libdcmtk0c2
-Replaces: libdcmtk0, libdcmtk0c2
+Conflicts: dcmtk (<< 3.6.0), libdcmtk0, libdcmtk2, libdcmtk0c2
+Replaces: libdcmtk0, libdcmtk0c2, libdcmtk2
 Description: OFFIS DICOM toolkit runtime libraries
  DCMTK includes a collection of libraries and applications for examining,
  constructing and converting DICOM image files, handling offline media,

Modified: trunk/packages/dcmtk/branches/experimental/debian/dcmtk.install
===
--- trunk/packages/dcmtk/branches/experimental/debian/dcmtk.install 
2013-04-22 08:59:28 UTC (rev 13375)
+++ trunk/packages/dcmtk/branches/experimental/debian/dcmtk.install 
2013-04-22 09:31:27 UTC (rev 13376)
@@ -1,5 +1,13 @@
 usr/bin/*
 usr/etc/dcmtk/*
-usr/share/dcmtk/*
 usr/share/doc/dcmtk/*
 usr/share/man/man1/*.1
+usr/share/dcmtk/wlistqry
+usr/share/dcmtk/wlistdb
+usr/share/dcmtk/*.lut
+usr/share/dcmtk/DCMTKConfig.cmake
+usr/share/dcmtk/dcm2xml.dtd
+usr/share/dcmtk/dumppat.txt
+usr/share/dcmtk/*.dump
+usr/share/dcmtk/dsr2xml.xsd
+usr/share/dcmtk/*.css

Added: trunk/packages/dcmtk/branches/experimental/debian/libdcmtk3-dev.install
===
--- trunk/packages/dcmtk/branches/experimental/debian/libdcmtk3-dev.install 
(rev 0)
+++ trunk/packages/dcmtk/branches/experimental/debian/libdcmtk3-dev.install 
2013-04-22 09:31:27 UTC (rev 13376)
@@ -0,0 +1,2 @@
+usr/include/dcmtk/*
+usr/lib/*.so

Modified: trunk/packages/dcmtk/branches/experimental/debian/libdcmtk3.install
===
--- trunk/packages/dcmtk/branches/experimental/debian/libdcmtk3.install 
2013-04-22 08:59:28 UTC (rev 13375)
+++ trunk/packages/dcmtk/branches/experimental/debian/libdcmtk3.install 
2013-04-22 09:31:27 UTC (rev 13376)
@@ -1,2 +1,2 @@
-usr/include/dcmtk/*
-usr/lib/*
+usr/lib/*.so.*
+usr/share/dcmtk/*.dic


___
debian-med-commit mailing list
debian-med-commit@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit


[med-svn] r13375 - trunk/packages/dcmtk/branches/experimental/debian

2013-04-22 Thread Mathieu Malaterre
Author: malat
Date: 2013-04-22 08:59:28 + (Mon, 22 Apr 2013)
New Revision: 13375

Modified:
   trunk/packages/dcmtk/branches/experimental/debian/control
   trunk/packages/dcmtk/branches/experimental/debian/dcmtk.install
   trunk/packages/dcmtk/branches/experimental/debian/rules
Log:
Fix installation

Modified: trunk/packages/dcmtk/branches/experimental/debian/control
===
--- trunk/packages/dcmtk/branches/experimental/debian/control   2013-04-22 
08:36:06 UTC (rev 13374)
+++ trunk/packages/dcmtk/branches/experimental/debian/control   2013-04-22 
08:59:28 UTC (rev 13375)
@@ -5,7 +5,7 @@
 Uploaders: Juergen Salk ,
Andreas Tille ,
Mathieu Malaterre 
-Build-Depends: cmake,
+Build-Depends: cmake (>= 2.6.0),
debhelper (>= 9),
libcharls-dev,
libpng-dev,
@@ -54,7 +54,7 @@
 Package: libdcmtk3-dev
 Section: libdevel
 Architecture: any
-Depends: libdcmtk2 (= ${binary:Version}), ${misc:Depends}, ${shlibs:Depends}
+Depends: libdcmtk3 (= ${binary:Version}), ${misc:Depends}
 Conflicts: libdcmtk0-dev, libdcmtk1-dev
 Replaces: libdcmtk0-dev, libdcmtk1-dev
 Suggests: dcmtk-doc
@@ -92,7 +92,7 @@
 Section: doc
 Architecture: all
 Depends: ${misc:Depends}
-Suggests: dcmtk, libdcmtk2-dev
+Suggests: dcmtk, libdcmtk3-dev
 Description: OFFIS DICOM toolkit documentation
  DCMTK includes a collection of libraries and applications for examining,
  constructing and converting DICOM image files, handling offline media,

Modified: trunk/packages/dcmtk/branches/experimental/debian/dcmtk.install
===
--- trunk/packages/dcmtk/branches/experimental/debian/dcmtk.install 
2013-04-22 08:36:06 UTC (rev 13374)
+++ trunk/packages/dcmtk/branches/experimental/debian/dcmtk.install 
2013-04-22 08:59:28 UTC (rev 13375)
@@ -2,3 +2,4 @@
 usr/etc/dcmtk/*
 usr/share/dcmtk/*
 usr/share/doc/dcmtk/*
+usr/share/man/man1/*.1

Modified: trunk/packages/dcmtk/branches/experimental/debian/rules
===
--- trunk/packages/dcmtk/branches/experimental/debian/rules 2013-04-22 
08:36:06 UTC (rev 13374)
+++ trunk/packages/dcmtk/branches/experimental/debian/rules 2013-04-22 
08:59:28 UTC (rev 13375)
@@ -1,6 +1,9 @@
 #!/usr/bin/make -f
 #export DH_VERBOSE=1
 
+# reduce overlinking:
+export DEB_LDFLAGS_MAINT_APPEND=-Wl,--as-needed
+
 # deduce documentation option (build-indep target)
 ifeq "" "$(filter %-doc,$(shell dh_listpackages))"
   BUILDDOC = OFF
@@ -11,6 +14,7 @@
 %:
dh $@ --parallel --buildsystem=cmake
 
+# SKIP_RPATH=OFF to run test suite:
 CMAKE_EXTRA_FLAGS += -DCMAKE_BUILD_TYPE:STRING=RelWithDebInfo \
  -DBUILD_SHARED_LIBS:BOOL=ON \
  -DDCMTK_WITH_OPENSSL:BOOL=ON \
@@ -21,17 +25,11 @@
  -DDCMTK_WITH_ZLIB:BOOL=ON \
  -DDCMTK_WITH_ICONV:BOOL=ON \
  -DUSE_COMPILER_HIDDEN_VISIBILITY:BOOL=ON \
- -DCMAKE_SKIP_RPATH:BOOL=ON
+ -DCMAKE_SKIP_RPATH:BOOL=OFF
 
 override_dh_auto_configure:
dh_auto_configure -- $(CMAKE_EXTRA_FLAGS)
 
-# remove tests for now
-override_dh_auto_test:
-
-# dcmtk does not support shared libs right now (no SONAME)
-override_dh_shlibdeps:
-
 override_dh_install:
dh_install --list-missing
 


___
debian-med-commit mailing list
debian-med-commit@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit


[med-svn] r13374 - trunk/packages/dcmtk/branches/experimental/debian

2013-04-22 Thread Mathieu Malaterre
Author: malat
Date: 2013-04-22 08:36:06 + (Mon, 22 Apr 2013)
New Revision: 13374

Added:
   trunk/packages/dcmtk/branches/experimental/debian/libdcmtk3.install
Removed:
   trunk/packages/dcmtk/branches/experimental/debian/libdcmtk2.install
Log:
Fix SONAME

Deleted: trunk/packages/dcmtk/branches/experimental/debian/libdcmtk2.install
===
--- trunk/packages/dcmtk/branches/experimental/debian/libdcmtk2.install 
2013-04-22 08:35:16 UTC (rev 13373)
+++ trunk/packages/dcmtk/branches/experimental/debian/libdcmtk2.install 
2013-04-22 08:36:06 UTC (rev 13374)
@@ -1,2 +0,0 @@
-usr/include/dcmtk/*
-usr/lib/*

Copied: trunk/packages/dcmtk/branches/experimental/debian/libdcmtk3.install 
(from rev 13373, 
trunk/packages/dcmtk/branches/experimental/debian/libdcmtk2.install)
===
--- trunk/packages/dcmtk/branches/experimental/debian/libdcmtk3.install 
(rev 0)
+++ trunk/packages/dcmtk/branches/experimental/debian/libdcmtk3.install 
2013-04-22 08:36:06 UTC (rev 13374)
@@ -0,0 +1,2 @@
+usr/include/dcmtk/*
+usr/lib/*


___
debian-med-commit mailing list
debian-med-commit@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit


[med-svn] r13373 - in trunk/packages/dcmtk/branches/experimental/debian: . patches

2013-04-22 Thread Mathieu Malaterre
Author: malat
Date: 2013-04-22 08:35:16 + (Mon, 22 Apr 2013)
New Revision: 13373

Modified:
   trunk/packages/dcmtk/branches/experimental/debian/changelog
   trunk/packages/dcmtk/branches/experimental/debian/control
   trunk/packages/dcmtk/branches/experimental/debian/copyright
   trunk/packages/dcmtk/branches/experimental/debian/dcmtk-www.install
   trunk/packages/dcmtk/branches/experimental/debian/dcmtk.install
   trunk/packages/dcmtk/branches/experimental/debian/libdcmtk2.install
   
trunk/packages/dcmtk/branches/experimental/debian/patches/01_fix_perl_script_path.patch
   trunk/packages/dcmtk/branches/experimental/debian/patches/07_doxygen.patch
   trunk/packages/dcmtk/branches/experimental/debian/patches/prefs.patch
   trunk/packages/dcmtk/branches/experimental/debian/patches/series
   trunk/packages/dcmtk/branches/experimental/debian/rules
Log:
Update package

Modified: trunk/packages/dcmtk/branches/experimental/debian/changelog
===
--- trunk/packages/dcmtk/branches/experimental/debian/changelog 2013-04-22 
08:06:06 UTC (rev 13372)
+++ trunk/packages/dcmtk/branches/experimental/debian/changelog 2013-04-22 
08:35:16 UTC (rev 13373)
@@ -1,6 +1,7 @@
-dcmtk (3.6.1~20120515-1) experimental; urgency=low
+dcmtk (3.6.1~20121102-1) experimental; urgency=low
 
   * Use new dh syntax
+  * Run w-a-s. Use B-D-I for doxygen
   * Switch to cmake build system (allows parallel builds)
 
  -- Mathieu Malaterre   Sat, 26 May 2012 09:57:22 +0200

Modified: trunk/packages/dcmtk/branches/experimental/debian/control
===
--- trunk/packages/dcmtk/branches/experimental/debian/control   2013-04-22 
08:06:06 UTC (rev 13372)
+++ trunk/packages/dcmtk/branches/experimental/debian/control   2013-04-22 
08:35:16 UTC (rev 13373)
@@ -2,63 +2,70 @@
 Section: science
 Priority: optional
 Maintainer: Debian Med Packaging Team 

-DM-Upload-Allowed: yes
 Uploaders: Juergen Salk ,
- Andreas Tille ,
- Mathieu Malaterre 
-Build-Depends: debhelper (>= 7), autoconf, autotools-dev, zlib1g-dev, 
libtiff4-dev, cmake,
- libpng-dev, libxml2-dev, libwrap0-dev, libssl-dev, doxygen (>= 1.7.4), 
graphviz, libcharls-dev,
- libsndfile1-dev
-Standards-Version: 3.9.3
+   Andreas Tille ,
+   Mathieu Malaterre 
+Build-Depends: cmake,
+   debhelper (>= 9),
+   libcharls-dev,
+   libpng-dev,
+   libsndfile1-dev,
+   libssl-dev,
+   libtiff4-dev,
+   libwrap0-dev,
+   libxml2-dev,
+   zlib1g-dev
+Build-Depends-Indep: doxygen (>= 1.7.4), graphviz
+Standards-Version: 3.9.4
 Vcs-Browser: 
http://anonscm.debian.org/viewvc/debian-med/trunk/packages/dcmtk/trunk/
 Vcs-Svn: svn://svn.debian.org/debian-med/trunk/packages/dcmtk/trunk/
 Homepage: http://dicom.offis.de/dcmtk
 
 Package: dcmtk
 Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, adduser (>=3.34)
+Depends: adduser (>=3.34), ${misc:Depends}, ${shlibs:Depends}
 Description: OFFIS DICOM toolkit command line utilities
- DCMTK includes a collection of libraries and applications for examining, 
- constructing and converting DICOM image files, handling offline media, 
- sending and receiving images over a network connection, as well as 
+ DCMTK includes a collection of libraries and applications for examining,
+ constructing and converting DICOM image files, handling offline media,
+ sending and receiving images over a network connection, as well as
  demonstrative image storage and worklist servers.
  .
  This package contains the DCMTK utility applications.
  .
  Note: This version was compiled with libssl support.
 
-Package: libdcmtk2
+Package: libdcmtk3
 Section: libs
 Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}
-Conflicts: libdcmtk0, libdcmtk0c2, dcmtk (<< 3.6.0)
+Depends: ${misc:Depends}, ${shlibs:Depends}
+Conflicts: dcmtk (<< 3.6.0), libdcmtk0, libdcmtk0c2
 Replaces: libdcmtk0, libdcmtk0c2
 Description: OFFIS DICOM toolkit runtime libraries
- DCMTK includes a collection of libraries and applications for examining, 
- constructing and converting DICOM image files, handling offline media, 
- sending and receiving images over a network connection, as well as 
- demonstrative image storage and worklist servers. 
+ DCMTK includes a collection of libraries and applications for examining,
+ constructing and converting DICOM image files, handling offline media,
+ sending and receiving images over a network connection, as well as
+ demonstrative image storage and worklist servers.
  .
- This package contains the runtime libraries for the DCMTK utility 
+ This package contains the runtime libraries for the DCMTK utility
  applications.
  .
  Note: This version was compiled with libssl support.
 
-Package: libdcmtk2-dev
+Package: libdcmtk3-dev
 Section: libdevel
 Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, libdcmtk2 

[med-svn] r13372 - trunk/packages/edfbrowser/trunk/debian

2013-04-22 Thread Andreas Tille
Author: tille
Date: 2013-04-22 08:06:06 + (Mon, 22 Apr 2013)
New Revision: 13372

Modified:
   trunk/packages/edfbrowser/trunk/debian/changelog
Log:
Delay upload of new upstream release until Wheezy is released


Modified: trunk/packages/edfbrowser/trunk/debian/changelog
===
--- trunk/packages/edfbrowser/trunk/debian/changelog2013-04-21 07:00:32 UTC 
(rev 13371)
+++ trunk/packages/edfbrowser/trunk/debian/changelog2013-04-22 08:06:06 UTC 
(rev 13372)
@@ -1,3 +1,9 @@
+edfbrowser (1.50-1) UNRELEASED; urgency=low
+
+  * New upstream release
+
+ -- Andreas Tille   Mon, 22 Apr 2013 10:07:59 +0200
+
 edfbrowser (1.49-1) experimental; urgency=low
 
   * New upstream release


___
debian-med-commit mailing list
debian-med-commit@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit


[med-svn] [SCM] mialmpick tag, debian/0.2.8, created. upstream/0.2.8-22-g7996916

2013-04-22 Thread Andreas Tille
The tag, debian/0.2.8 has been created
at  79969165aec9d72a31bfcc1fb907246e55300696 (commit)

- Shortlog 
commit 79969165aec9d72a31bfcc1fb907246e55300696
Author: Andreas Tille 
Date:   Mon Apr 22 08:34:39 2013 +0200

Upload to unstable
---

-- 
packaging of mialmpick for Debian

___
debian-med-commit mailing list
debian-med-commit@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit


[med-svn] [SCM] mialmpick tag, debian/0.2.7, created. upstream/0.2.7-19-g246308b

2013-04-22 Thread Andreas Tille
The tag, debian/0.2.7 has been created
at  246308bce646691a7a20560fcb40ecb4b09bfc0f (commit)

- Shortlog 
commit 246308bce646691a7a20560fcb40ecb4b09bfc0f
Author: Andreas Tille 
Date:   Thu Feb 28 15:09:47 2013 +0100

Upload to unstable
---

-- 
packaging of mialmpick for Debian

___
debian-med-commit mailing list
debian-med-commit@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit


[med-svn] [SCM] mialmpick branch, master, updated. upstream/0.2.8-22-g7996916

2013-04-22 Thread Andreas Tille
The following commit has been merged in the master branch:
commit 79969165aec9d72a31bfcc1fb907246e55300696
Author: Andreas Tille 
Date:   Mon Apr 22 08:34:39 2013 +0200

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index d00b430..8663710 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-mialmpick (0.2.8-1) UNRELEASED; urgency=low
+mialmpick (0.2.8-1) unstable; urgency=low
 
   * New upstream version 
 

-- 
packaging of mialmpick for Debian

___
debian-med-commit mailing list
debian-med-commit@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit