r44063 - in /packages/libalberta2/trunk/debian: ./ patches/ source/

sylvestre at users.alioth.debian.org sylvestre at users.alioth.debian.org
Sun Nov 27 09:19:08 UTC 2011


Author: sylvestre
Date: Sun Nov 27 09:19:07 2011
New Revision: 44063

URL: http://svn.debian.org/wsvn/debian-science/?sc=1&rev=44063
Log:
libalberta2 (2.0.1-4) unstable; urgency=low

  * Team upload
  * Switch to dpkg-source 3.0 (quilt) format
  * Fix the format-security bug (Closes: #643416)
  * Remove myself from the uploaders
  * Standards-Version udpated to version 3.9.2

Added:
    packages/libalberta2/trunk/debian/patches/00_as-needed.diff
      - copied unchanged from r44061, packages/libalberta2/trunk/debian/patches/00_as-needed.patch
    packages/libalberta2/trunk/debian/patches/01_linkfix.diff
      - copied unchanged from r44061, packages/libalberta2/trunk/debian/patches/01_linkfix.dpatch
    packages/libalberta2/trunk/debian/patches/format-security.diff
    packages/libalberta2/trunk/debian/patches/series
    packages/libalberta2/trunk/debian/source/
    packages/libalberta2/trunk/debian/source/format
Removed:
    packages/libalberta2/trunk/debian/patches/00_as-needed.patch
    packages/libalberta2/trunk/debian/patches/00list
    packages/libalberta2/trunk/debian/patches/01_linkfix.dpatch
Modified:
    packages/libalberta2/trunk/debian/   (props changed)
    packages/libalberta2/trunk/debian/changelog
    packages/libalberta2/trunk/debian/control
    packages/libalberta2/trunk/debian/rules

Propchange: packages/libalberta2/trunk/debian/
------------------------------------------------------------------------------
    MergeWithUpstream = 1

Modified: packages/libalberta2/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/debian-science/packages/libalberta2/trunk/debian/changelog?rev=44063&op=diff
==============================================================================
--- packages/libalberta2/trunk/debian/changelog (original)
+++ packages/libalberta2/trunk/debian/changelog Sun Nov 27 09:19:07 2011
@@ -1,3 +1,13 @@
+libalberta2 (2.0.1-4) unstable; urgency=low
+
+  * Team upload
+  * Switch to dpkg-source 3.0 (quilt) format
+  * Fix the format-security bug (Closes: #643416)
+  * Remove myself from the uploaders
+  * Standards-Version udpated to version 3.9.2
+
+ -- Sylvestre Ledru <sylvestre at debian.org>  Sat, 26 Nov 2011 09:24:18 +0100
+
 libalberta2 (2.0.1-3.1) unstable; urgency=low
 
   * Non-maintainer upload.

Modified: packages/libalberta2/trunk/debian/control
URL: http://svn.debian.org/wsvn/debian-science/packages/libalberta2/trunk/debian/control?rev=44063&op=diff
==============================================================================
--- packages/libalberta2/trunk/debian/control (original)
+++ packages/libalberta2/trunk/debian/control Sun Nov 27 09:19:07 2011
@@ -2,11 +2,11 @@
 Section: libs
 Priority: extra
 Maintainer: Debian Science Team <debian-science-maintainers at lists.alioth.debian.org>
-Uploaders: André Gaul <gaul at web-yard.de>, 
- Sylvestre Ledru <sylvestre at debian.org>,
-Build-Depends: dpatch, debhelper (>= 7), autotools-dev, gfortran, cdbs, 
- libblas-dev, libx11-dev, libgl1-mesa-dev, autoconf, automake, libtool
-Standards-Version: 3.8.4
+Uploaders: André Gaul <gaul at web-yard.de>
+Build-Depends: debhelper (>= 7), autotools-dev, gfortran, cdbs, 
+ libblas-dev, libx11-dev, libgl1-mesa-dev, autoconf, automake, libtool,
+ quilt
+Standards-Version: 3.9.2
 Vcs-Svn: svn://svn.debian.org/svn/debian-science/packages/libalberta2/
 Vcs-Browser: http://svn.debian.org/viewsvn/debian-science/packages/libalberta2/
 Homepage: http://www.alberta-fem.de

Added: packages/libalberta2/trunk/debian/patches/format-security.diff
URL: http://svn.debian.org/wsvn/debian-science/packages/libalberta2/trunk/debian/patches/format-security.diff?rev=44063&op=file
==============================================================================
--- packages/libalberta2/trunk/debian/patches/format-security.diff (added)
+++ packages/libalberta2/trunk/debian/patches/format-security.diff Sun Nov 27 09:19:07 2011
@@ -1,0 +1,40 @@
+Index: libalberta2-2.0.1/alberta/src/Common/write_mesh_gmv.c
+===================================================================
+--- libalberta2-2.0.1.orig/alberta/src/Common/write_mesh_gmv.c	2007-09-27 14:57:15.000000000 +0200
++++ libalberta2-2.0.1/alberta/src/Common/write_mesh_gmv.c	2011-11-26 09:21:15.269858373 +0100
+@@ -336,7 +336,7 @@
+   else
+     ERROR_EXIT("Could not determine centering type of data (n_dof[VERTEX] and n_dof[CENTER] both nil).\n");
+ 
+-  snprintf(drv_name, 32, drv->name);
++  snprintf(drv_name, 32, "%s", drv->name);
+   convert_string((char *)drv_name);
+ 
+   if(write_ascii)
+@@ -462,7 +462,7 @@
+   else {
+     n_components = DIM_OF_WORLD;
+ 
+-    snprintf(drdv_name, 32, drdv->name);
++    snprintf(drdv_name, 32, "%s", drdv->name);
+     convert_string((char *)drdv_name);
+ 
+     if(write_ascii) {
+@@ -942,7 +942,7 @@
+ 
+   for(i = 0; i < n_drv; i++)
+     if(new_vecs[i]) {
+-      snprintf(name, 32, drv_ptr[i]->name);
++      snprintf(name, 32, "%s", drv_ptr[i]->name);
+       convert_string(name);
+ 
+       if(drv_ptr[i]->fe_space->bas_fcts->degree == 0) {
+@@ -983,7 +983,7 @@
+ 
+   for(i = 0; i < n_drdv; i++)
+     if(new_vecs_d[i][0]) {
+-      snprintf(name, 32, drdv_ptr[i]->name);
++      snprintf(name, 32, "%s", drdv_ptr[i]->name);
+       convert_string(name);
+ 
+       if(drdv_ptr[i]->fe_space->bas_fcts->degree == 0) {

Added: packages/libalberta2/trunk/debian/patches/series
URL: http://svn.debian.org/wsvn/debian-science/packages/libalberta2/trunk/debian/patches/series?rev=44063&op=file
==============================================================================
--- packages/libalberta2/trunk/debian/patches/series (added)
+++ packages/libalberta2/trunk/debian/patches/series Sun Nov 27 09:19:07 2011
@@ -1,0 +1,2 @@
+01_linkfix.diff
+format-security.diff

Modified: packages/libalberta2/trunk/debian/rules
URL: http://svn.debian.org/wsvn/debian-science/packages/libalberta2/trunk/debian/rules?rev=44063&op=diff
==============================================================================
--- packages/libalberta2/trunk/debian/rules (original)
+++ packages/libalberta2/trunk/debian/rules Sun Nov 27 09:19:07 2011
@@ -1,7 +1,7 @@
 #!/usr/bin/make -f
 include /usr/share/cdbs/1/rules/debhelper.mk
 include /usr/share/cdbs/1/class/autotools.mk
-include /usr/share/cdbs/1/rules/dpatch.mk
+include /usr/share/cdbs/1/rules/patchsys-quilt.mk
 
 DEB_CONFIGURE_USER_FLAGS := --prefix=/usr --mandir=\$${prefix}/share/man --without-grape --without-silo --without-dx --without-gltools --disable-install-libtool --disable-debug --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs -Wl,--as-needed"
 

Added: packages/libalberta2/trunk/debian/source/format
URL: http://svn.debian.org/wsvn/debian-science/packages/libalberta2/trunk/debian/source/format?rev=44063&op=file
==============================================================================
--- packages/libalberta2/trunk/debian/source/format (added)
+++ packages/libalberta2/trunk/debian/source/format Sun Nov 27 09:19:07 2011
@@ -1,0 +1,1 @@
+3.0 (quilt)




More information about the debian-science-commits mailing list