[med-svn] r12542 - in trunk/packages/python-casmoothing/trunk: . debian debian/source
Thiago Franco Moraes
tfmoraes-guest at alioth.debian.org
Mon Nov 19 17:08:18 UTC 2012
Author: tfmoraes-guest
Date: 2012-11-19 17:08:17 +0000 (Mon, 19 Nov 2012)
New Revision: 12542
Added:
trunk/packages/python-casmoothing/trunk/debian/
trunk/packages/python-casmoothing/trunk/debian/README.Debian
trunk/packages/python-casmoothing/trunk/debian/README.source
trunk/packages/python-casmoothing/trunk/debian/changelog
trunk/packages/python-casmoothing/trunk/debian/compat
trunk/packages/python-casmoothing/trunk/debian/control
trunk/packages/python-casmoothing/trunk/debian/copyright
trunk/packages/python-casmoothing/trunk/debian/docs
trunk/packages/python-casmoothing/trunk/debian/python-casmoothing-dev.dirs
trunk/packages/python-casmoothing/trunk/debian/python-casmoothing-dev.install
trunk/packages/python-casmoothing/trunk/debian/python-casmoothing1.dirs
trunk/packages/python-casmoothing/trunk/debian/python-casmoothing1.install
trunk/packages/python-casmoothing/trunk/debian/rules
trunk/packages/python-casmoothing/trunk/debian/source/
trunk/packages/python-casmoothing/trunk/debian/source/format
Log:
[svn-inject] Applying Debian modifications (0.1~git357bbd1-1) to trunk
Property changes on: trunk/packages/python-casmoothing/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
+ 1
Added: trunk/packages/python-casmoothing/trunk/debian/README.Debian
===================================================================
--- trunk/packages/python-casmoothing/trunk/debian/README.Debian (rev 0)
+++ trunk/packages/python-casmoothing/trunk/debian/README.Debian 2012-11-19 17:08:17 UTC (rev 12542)
@@ -0,0 +1,6 @@
+python-casmoothing for Debian
+-----------------------------
+
+<possible notes regarding this package - if none, delete this file>
+
+ -- Thiago Franco de Moraes <tfmoraes at cti.gov.br> Thu, 01 Nov 2012 13:27:23 -0200
Added: trunk/packages/python-casmoothing/trunk/debian/README.source
===================================================================
--- trunk/packages/python-casmoothing/trunk/debian/README.source (rev 0)
+++ trunk/packages/python-casmoothing/trunk/debian/README.source 2012-11-19 17:08:17 UTC (rev 12542)
@@ -0,0 +1,9 @@
+python-casmoothing for Debian
+-----------------------------
+
+<this file describes information about the source package, see Debian policy
+manual section 4.14. You WILL either need to modify or delete this file>
+
+
+
+
Added: trunk/packages/python-casmoothing/trunk/debian/changelog
===================================================================
--- trunk/packages/python-casmoothing/trunk/debian/changelog (rev 0)
+++ trunk/packages/python-casmoothing/trunk/debian/changelog 2012-11-19 17:08:17 UTC (rev 12542)
@@ -0,0 +1,5 @@
+python-casmoothing (0.1~git357bbd1-1) unstable; urgency=low
+
+ * Initial release (Closes: #nnnn) <nnnn is the bug number of your ITP>
+
+ -- Thiago Franco de Moraes <tfmoraes at cti.gov.br> Thu, 01 Nov 2012 13:27:23 -0200
Added: trunk/packages/python-casmoothing/trunk/debian/compat
===================================================================
--- trunk/packages/python-casmoothing/trunk/debian/compat (rev 0)
+++ trunk/packages/python-casmoothing/trunk/debian/compat 2012-11-19 17:08:17 UTC (rev 12542)
@@ -0,0 +1 @@
+8
Added: trunk/packages/python-casmoothing/trunk/debian/control
===================================================================
--- trunk/packages/python-casmoothing/trunk/debian/control (rev 0)
+++ trunk/packages/python-casmoothing/trunk/debian/control 2012-11-19 17:08:17 UTC (rev 12542)
@@ -0,0 +1,16 @@
+Source: python-casmoothing
+Priority: extra
+Maintainer: Thiago Franco de Moraes <tfmoraes at cti.gov.br>
+Build-Depends: debhelper (>= 8.0.0), cdbs, cmake, swig, python-dev
+Standards-Version: 3.9.2
+Section: python
+Homepage: https://github.com/tfmoraes/context_aware_smoothing
+Vcs-Git: git://github.com/tfmoraes/context_aware_smoothing.git
+#Vcs-Browser: http://git.debian.org/?p=collab-maint/python-casmoothing.git;a=summary
+
+Package: python-casmoothing
+Section: libs
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}, python, python-vtk, libvtk5.8
+Description: Implementation of the paper "Context-aware mesh smoothing for biomedical applications".
+ This is a implementation of the paper "Context-aware mesh smoothing for biomedical applications" in Cpp with Python bindings. It can be used to smooth meshes generated by binary images to remove its staircase artifacts and keep the fine features.
Added: trunk/packages/python-casmoothing/trunk/debian/copyright
===================================================================
--- trunk/packages/python-casmoothing/trunk/debian/copyright (rev 0)
+++ trunk/packages/python-casmoothing/trunk/debian/copyright 2012-11-19 17:08:17 UTC (rev 12542)
@@ -0,0 +1,31 @@
+Format: http://dep.debian.net/deps/dep5
+Upstream-Name: python-casmoothing
+Source: https://github.com/tfmoraes/context_aware_smoothing
+
+Files: *
+Copyright: 2012 Centro de Pesquisas Renato Archer
+License: GPL-2.0
+
+Files: debian/*
+Copyright: 2012 Thiago Franco de Moraes <tfmoraes at cti.gov.br>
+License: GPL-2.0+
+
+License: GPL-2.0+
+ 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
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This package 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 <http://www.gnu.org/licenses/>
+ .
+ On Debian systems, the complete text of the GNU General
+ Public License version 2 can be found in "/usr/share/common-licenses/GPL-2".
+
+# Please also look if there are files or directories which have a
+# different copyright/license attached and list them here.
Added: trunk/packages/python-casmoothing/trunk/debian/docs
===================================================================
--- trunk/packages/python-casmoothing/trunk/debian/docs (rev 0)
+++ trunk/packages/python-casmoothing/trunk/debian/docs 2012-11-19 17:08:17 UTC (rev 12542)
@@ -0,0 +1,5 @@
+AUTHORS.txt
+HEADER.txt
+LICENSE-pt.txt
+LICENSE.txt
+README.md
Added: trunk/packages/python-casmoothing/trunk/debian/python-casmoothing-dev.dirs
===================================================================
--- trunk/packages/python-casmoothing/trunk/debian/python-casmoothing-dev.dirs (rev 0)
+++ trunk/packages/python-casmoothing/trunk/debian/python-casmoothing-dev.dirs 2012-11-19 17:08:17 UTC (rev 12542)
@@ -0,0 +1,2 @@
+usr/lib
+usr/include
Added: trunk/packages/python-casmoothing/trunk/debian/python-casmoothing-dev.install
===================================================================
--- trunk/packages/python-casmoothing/trunk/debian/python-casmoothing-dev.install (rev 0)
+++ trunk/packages/python-casmoothing/trunk/debian/python-casmoothing-dev.install 2012-11-19 17:08:17 UTC (rev 12542)
@@ -0,0 +1,5 @@
+usr/include/*
+usr/lib/lib*.a
+usr/lib/lib*.so
+usr/lib/pkgconfig/*
+usr/share/pkgconfig/*
Added: trunk/packages/python-casmoothing/trunk/debian/python-casmoothing1.dirs
===================================================================
--- trunk/packages/python-casmoothing/trunk/debian/python-casmoothing1.dirs (rev 0)
+++ trunk/packages/python-casmoothing/trunk/debian/python-casmoothing1.dirs 2012-11-19 17:08:17 UTC (rev 12542)
@@ -0,0 +1 @@
+usr/lib
Added: trunk/packages/python-casmoothing/trunk/debian/python-casmoothing1.install
===================================================================
--- trunk/packages/python-casmoothing/trunk/debian/python-casmoothing1.install (rev 0)
+++ trunk/packages/python-casmoothing/trunk/debian/python-casmoothing1.install 2012-11-19 17:08:17 UTC (rev 12542)
@@ -0,0 +1 @@
+usr/lib/lib*.so.*
Added: trunk/packages/python-casmoothing/trunk/debian/rules
===================================================================
--- trunk/packages/python-casmoothing/trunk/debian/rules (rev 0)
+++ trunk/packages/python-casmoothing/trunk/debian/rules 2012-11-19 17:08:17 UTC (rev 12542)
@@ -0,0 +1,4 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/cmake.mk
Property changes on: trunk/packages/python-casmoothing/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
+ *
Added: trunk/packages/python-casmoothing/trunk/debian/source/format
===================================================================
--- trunk/packages/python-casmoothing/trunk/debian/source/format (rev 0)
+++ trunk/packages/python-casmoothing/trunk/debian/source/format 2012-11-19 17:08:17 UTC (rev 12542)
@@ -0,0 +1 @@
+3.0 (quilt)
More information about the debian-med-commit
mailing list