r35243 - in /packages: jeuclid/tags/3.0.3/ jeuclid/tags/3.0.3/debian/ jeuclid/tags/3.0.3/debian/patches/ libbft/trunk/debian/ libfvm/ libfvm/tags/ libfvm/trunk/ libfvm/trunk/debian/

sylvestre-guest at users.alioth.debian.org sylvestre-guest at users.alioth.debian.org
Thu Oct 9 12:21:49 UTC 2008


Author: sylvestre-guest
Date: Thu Oct  9 12:21:49 2008
New Revision: 35243

URL: http://svn.debian.org/wsvn/debian-science/?sc=1&rev=35243
Log:
libfvm package

Added:
    packages/jeuclid/tags/3.0.3/   (props changed)
      - copied from r35237, packages/jeuclid/trunk/
    packages/libbft/trunk/debian/libbft1.install   (props changed)
      - copied unchanged from r35242, packages/libbft/trunk/debian/libbft0.install
    packages/libfvm/
    packages/libfvm/tags/
    packages/libfvm/trunk/
    packages/libfvm/trunk/debian/
    packages/libfvm/trunk/debian/changelog
    packages/libfvm/trunk/debian/compat
    packages/libfvm/trunk/debian/control
    packages/libfvm/trunk/debian/copyright
    packages/libfvm/trunk/debian/docs
    packages/libfvm/trunk/debian/files
    packages/libfvm/trunk/debian/libfvm-dev.install
    packages/libfvm/trunk/debian/libfvm0.install
    packages/libfvm/trunk/debian/rules   (with props)
    packages/libfvm/trunk/debian/watch
Removed:
    packages/libbft/trunk/debian/libbft0.install
Modified:
    packages/jeuclid/tags/3.0.3/debian/changelog
    packages/jeuclid/tags/3.0.3/debian/patches/MacOSX.patch
    packages/jeuclid/tags/3.0.3/debian/patches/freehep.patch
    packages/jeuclid/tags/3.0.3/debian/watch

Propchange: packages/jeuclid/tags/3.0.3/
------------------------------------------------------------------------------
    svn:mergeinfo = 

Modified: packages/jeuclid/tags/3.0.3/debian/changelog
URL: http://svn.debian.org/wsvn/debian-science/packages/jeuclid/tags/3.0.3/debian/changelog?rev=35243&op=diff
==============================================================================
--- packages/jeuclid/tags/3.0.3/debian/changelog (original)
+++ packages/jeuclid/tags/3.0.3/debian/changelog Thu Oct  9 12:21:49 2008
@@ -1,4 +1,4 @@
-jeuclid (3.1.2-1) UNRELEASED; urgency=low
+jeuclid (3.0.3-1) UNRELEASED; urgency=low
 
   * Initial release. (Closes: #490749)
 

Modified: packages/jeuclid/tags/3.0.3/debian/patches/MacOSX.patch
URL: http://svn.debian.org/wsvn/debian-science/packages/jeuclid/tags/3.0.3/debian/patches/MacOSX.patch?rev=35243&op=diff
==============================================================================
--- packages/jeuclid/tags/3.0.3/debian/patches/MacOSX.patch (original)
+++ packages/jeuclid/tags/3.0.3/debian/patches/MacOSX.patch Thu Oct  9 12:21:49 2008
@@ -1,18 +1,131 @@
---- jeuclid-3.1.1.orig/jeuclid-mathviewer/src/main/java/net/sourceforge/jeuclid/app/mathviewer/MathViewer.java	2008-06-03 12:02:46.000000000 +0200
-+++ jeuclid-3.1.1/jeuclid-mathviewer/src/main/java/net/sourceforge/jeuclid/app/mathviewer/MathViewer.java	2008-08-15 20:11:59.000000000 +0200
-@@ -86,13 +86,13 @@
-             public void run() {
-                 final MainFrame mainFrame = new MainFrame();
-                 mainFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
--                if (MathViewer.OSX) {
-+/*                if (MathViewer.OSX) {
-                     final Application a = Application.getApplication();
-                     a.setEnabledAboutMenu(true);
-                     a.setEnabledPreferencesMenu(true);
-                     a.addApplicationListener(new MainFrameAppListener(
-                             mainFrame));
--                }
-+                }*/
-                 if (MathViewer.source != null) {
-                     mainFrame.loadFile(MathViewer.source);
-                 }
+Seulement dans jeuclid-parent-3.0.3/./jeuclid-mathviewer/src/main/java/net/sourceforge/jeuclid/app/mathviewer: AboutDialog.java
+diff -ur jeuclid-parent-3.0.3.orig/./jeuclid-mathviewer/src/main/java/net/sourceforge/jeuclid/app/mathviewer/FileIO.java jeuclid-parent-3.0.3/./jeuclid-mathviewer/src/main/java/net/sourceforge/jeuclid/app/mathviewer/FileIO.java
+--- jeuclid-parent-3.0.3.orig/./jeuclid-mathviewer/src/main/java/net/sourceforge/jeuclid/app/mathviewer/FileIO.java	2008-10-06 11:29:56.000000000 +0200
++++ jeuclid-parent-3.0.3/./jeuclid-mathviewer/src/main/java/net/sourceforge/jeuclid/app/mathviewer/FileIO.java	2008-10-06 11:31:13.000000000 +0200
+@@ -102,7 +102,7 @@
+     public Document loadDocument(final Frame parent) {
+         final File selectedFile;
+ 
+-        if (MathViewer.OSX) {
++/*        if (MathViewer.OSX) {
+             // Have to use AWT file chooser for Mac-friendlyness
+             final FileDialog chooser = new FileDialog(parent,
+                     "Please select a MathML file");
+@@ -116,7 +116,7 @@
+             } else {
+                 selectedFile = null;
+             }
+-        } else {
++        } else {*/
+             final JFileChooser fc = new JFileChooser(this.lastPath);
+             final int returnVal = fc.showOpenDialog(parent);
+             if (returnVal == JFileChooser.APPROVE_OPTION) {
+@@ -124,7 +124,7 @@
+             } else {
+                 selectedFile = null;
+             }
+-        }
++//        }
+         if (selectedFile != null) {
+             this.lastPath = selectedFile.getParentFile();
+             return this.loadFile(parent, selectedFile);
+@@ -176,7 +176,7 @@
+             final Map<ParameterKey, String> params) {
+         final File selectedFile;
+ 
+-        if (MathViewer.OSX) {
++/*        if (MathViewer.OSX) {
+             // Have to use AWT file chooser for Mac-friendlyness
+             final FileDialog chooser = new FileDialog(parent, "Export to...",
+                     FileDialog.SAVE);
+@@ -192,7 +192,7 @@
+             } else {
+                 selectedFile = null;
+             }
+-        } else {
++        } else {*/
+             final JFileChooser fc = new JFileChooser(this.lastPath);
+             final int returnVal = fc.showSaveDialog(parent);
+             if (returnVal == JFileChooser.APPROVE_OPTION) {
+@@ -201,7 +201,7 @@
+                 selectedFile = null;
+             }
+ 
+-        }
++//        }
+         if (selectedFile != null) {
+             this.lastPath = selectedFile.getParentFile();
+ 
+diff -ur jeuclid-parent-3.0.3.orig/./jeuclid-mathviewer/src/main/java/net/sourceforge/jeuclid/app/mathviewer/MainFrame.java jeuclid-parent-3.0.3/./jeuclid-mathviewer/src/main/java/net/sourceforge/jeuclid/app/mathviewer/MainFrame.java
+--- jeuclid-parent-3.0.3.orig/./jeuclid-mathviewer/src/main/java/net/sourceforge/jeuclid/app/mathviewer/MainFrame.java	2008-10-06 11:27:19.000000000 +0200
++++ jeuclid-parent-3.0.3/./jeuclid-mathviewer/src/main/java/net/sourceforge/jeuclid/app/mathviewer/MainFrame.java	2008-10-06 11:27:47.000000000 +0200
+@@ -142,11 +142,11 @@
+             this.jJMenuBar = new JMenuBar();
+             this.jJMenuBar.add(this.getFileMenu());
+             this.jJMenuBar.add(this.getViewMenu());
+-            if (!MathViewer.OSX) {
++/*            if (!MathViewer.OSX) {
+                 // This will need to be changed once the Help menu contains
+                 // more that just the About item.
+                 this.jJMenuBar.add(this.getHelpMenu());
+-            }
++            }*/
+         }
+         return this.jJMenuBar;
+     }
+@@ -162,9 +162,9 @@
+             this.fileMenu.setText(Messages.getString("MathViewer.FileMenu")); //$NON-NLS-1$
+             this.fileMenu.add(this.getOpenMenuItem());
+             this.fileMenu.add(this.getExportMenuItem());
+-            if (!MathViewer.OSX) {
++/*            if (!MathViewer.OSX) {
+                 this.fileMenu.add(this.getExitMenuItem());
+-            }
++            }*/
+         }
+         return this.fileMenu;
+     }
+@@ -288,12 +288,12 @@
+             this.scrollPane = new JScrollPane();
+             this.scrollPane.setViewportView(this.getMathComponent());
+ 
+-            if (MathViewer.OSX) {
++/*            if (MathViewer.OSX) {
+                 this.scrollPane
+                         .setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS);
+                 this.scrollPane
+                         .setHorizontalScrollBarPolicy(ScrollPaneConstants.HORIZONTAL_SCROLLBAR_ALWAYS);
+-            }
++            }*/
+         }
+         return this.scrollPane;
+     }
+Seulement dans jeuclid-parent-3.0.3/./jeuclid-mathviewer/src/main/java/net/sourceforge/jeuclid/app/mathviewer: Messages.java
+Seulement dans jeuclid-parent-3.0.3/./jeuclid-mathviewer/src/main/java/net/sourceforge/jeuclid/app/mathviewer: package-info.java
+Seulement dans jeuclid-parent-3.0.3/./jeuclid-mathviewer/src/main/java/net/sourceforge/jeuclid/app/mathviewer: .svn
+diff -ur jeuclid-parent-3.0.3.orig/./jeuclid-mathviewer/src/main/java/net/sourceforge/jeuclid/app/MathViewer.java jeuclid-parent-3.0.3/./jeuclid-mathviewer/src/main/java/net/sourceforge/jeuclid/app/MathViewer.java
+--- jeuclid-parent-3.0.3.orig/./jeuclid-mathviewer/src/main/java/net/sourceforge/jeuclid/app/MathViewer.java	2008-10-06 11:23:06.000000000 +0200
++++ jeuclid-parent-3.0.3/./jeuclid-mathviewer/src/main/java/net/sourceforge/jeuclid/app/MathViewer.java	2008-10-06 11:23:26.000000000 +0200
+@@ -44,7 +44,7 @@
+     /**
+      * Set to true if we're running under Mac OS X.
+      */
+-    public static final boolean OSX = System.getProperty("mrj.version") != null; //$NON-NLS-1$
++//    public static final boolean OSX = System.getProperty("mrj.version") != null; //$NON-NLS-1$
+ 
+     /**
+      * Logger for this class
+@@ -68,10 +68,10 @@
+         final CommandLineParser.ParseResults parseResults = CommandLineParser
+                 .parseCommandLine(args);
+         MathViewer.source = parseResults.getSource();
+-        if (MathViewer.OSX) {
++/*        if (MathViewer.OSX) {
+             System.setProperty("apple.laf.useScreenMenuBar", MathBase.TRUE); //$NON-NLS-1$ //$NON-NLS-2$
+         }
+-
++*/
+         try {
+             UIManager.setLookAndFeel(UIManager
+                     .getSystemLookAndFeelClassName());
+Seulement dans jeuclid-parent-3.0.3/./jeuclid-mathviewer/src/main/java/net/sourceforge/jeuclid/app/: .svn

Modified: packages/jeuclid/tags/3.0.3/debian/patches/freehep.patch
URL: http://svn.debian.org/wsvn/debian-science/packages/jeuclid/tags/3.0.3/debian/patches/freehep.patch?rev=35243&op=diff
==============================================================================
--- packages/jeuclid/tags/3.0.3/debian/patches/freehep.patch (original)
+++ packages/jeuclid/tags/3.0.3/debian/patches/freehep.patch Thu Oct  9 12:21:49 2008
@@ -1,13 +1,13 @@
-Index: jeuclid-3.1.1/jeuclid-core/src/main/java/net/sourceforge/jeuclid/converter/ConverterRegistry.java
-===================================================================
---- jeuclid-3.1.1.orig/jeuclid-core/src/main/java/net/sourceforge/jeuclid/converter/ConverterRegistry.java	2008-06-03 12:02:48.000000000 +0200
-+++ jeuclid-3.1.1/jeuclid-core/src/main/java/net/sourceforge/jeuclid/converter/ConverterRegistry.java	2008-07-13 23:43:35.000000000 +0200
-@@ -47,7 +47,7 @@
-     private ConverterRegistry() {
-         ImageIODetector.detectConversionPlugins(this);
-         BatikDetector.detectConversionPlugins(this);
--        FreeHepDetector.detectConversionPlugins(this);
-+		//        FreeHepDetector.detectConversionPlugins(this);
+--- jeuclid-parent-3.0.3.orig/jeuclid-core/src/main/java/net/sourceforge/jeuclid/converter/ConverterRegistry.java	2008-10-06 11:16:40.000000000 +0200
++++ jeuclid-parent-3.0.3/jeuclid-core/src/main/java/net/sourceforge/jeuclid/converter/ConverterRegistry.java	2008-10-06 11:17:29.000000000 +0200
+@@ -55,8 +55,9 @@
+                     .detectConversionPlugins(ConverterRegistry.converterRegisty);
+             BatikDetector
+                     .detectConversionPlugins(ConverterRegistry.converterRegisty);
+-            FreeHepDetector
++/*            FreeHepDetector
+                     .detectConversionPlugins(ConverterRegistry.converterRegisty);
++*/
+         }
+         return ConverterRegistry.converterRegisty;
      }
- 
-     /**

Modified: packages/jeuclid/tags/3.0.3/debian/watch
URL: http://svn.debian.org/wsvn/debian-science/packages/jeuclid/tags/3.0.3/debian/watch?rev=35243&op=diff
==============================================================================
--- packages/jeuclid/tags/3.0.3/debian/watch (original)
+++ packages/jeuclid/tags/3.0.3/debian/watch Thu Oct  9 12:21:49 2008
@@ -1,2 +1,2 @@
 version=3
-http://sf.net/jeuclid/jeuclid-parent-(.*)-src\.zip debian debian/orig-tar.sh
+http://sf.net/jeuclid/jeuclid-parent-([\d+]\.[02468]\.[\d+])-src\.zip debian debian/orig-tar.sh

Propchange: packages/libbft/trunk/debian/libbft1.install
------------------------------------------------------------------------------
    svn:mergeinfo = 

Added: packages/libfvm/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/debian-science/packages/libfvm/trunk/debian/changelog?rev=35243&op=file
==============================================================================
--- packages/libfvm/trunk/debian/changelog (added)
+++ packages/libfvm/trunk/debian/changelog Thu Oct  9 12:21:49 2008
@@ -1,0 +1,6 @@
+libfvm (0.11.0-1) unstable; urgency=low
+
+  * Initial release (Closes: #xxx)
+
+ -- Sylvestre Ledru <sylvestre.ledru at inria.fr>  Wed, 08 Oct 2008 22:38:20 +0200
+

Added: packages/libfvm/trunk/debian/compat
URL: http://svn.debian.org/wsvn/debian-science/packages/libfvm/trunk/debian/compat?rev=35243&op=file
==============================================================================
--- packages/libfvm/trunk/debian/compat (added)
+++ packages/libfvm/trunk/debian/compat Thu Oct  9 12:21:49 2008
@@ -1,0 +1,1 @@
+7

Added: packages/libfvm/trunk/debian/control
URL: http://svn.debian.org/wsvn/debian-science/packages/libfvm/trunk/debian/control?rev=35243&op=file
==============================================================================
--- packages/libfvm/trunk/debian/control (added)
+++ packages/libfvm/trunk/debian/control Thu Oct  9 12:21:49 2008
@@ -1,0 +1,44 @@
+Source: libfvm
+Section: libs
+Priority: optional
+Maintainer: Debian Science Team <debian-science-maintainers at lists.alioth.debian.org>
+Uploaders: Sylvestre Ledru <sylvestre.ledru at inria.fr>,
+ Torsten Werner <twerner at debian.org>
+Build-Depends: debhelper (>= 7), autotools-dev, cdbs, libbft-dev
+Standards-Version: 3.8.0
+Homepage: http://www.code-saturne.org/
+Vcs-Svn: svn://svn.debian.org/svn/debian-science/packages/libfvm/
+Vcs-Browser: http://svn.debian.org/viewsvn/debian-science/packages/libfvm/
+DM-Upload-Allowed: yes
+
+Package: libfvm-dev
+Section: libdevel
+Architecture: any
+Depends:  libfvm0 (= ${binary:Version})
+Description: Code_Saturne Base Functions and Types library
+ BFT stands for Base Functions and Types.
+ It is destined to be used by scientific codes (Computational Fluid
+ Dynamics) often using some form of parallelism, especially MPI.
+ .
+ This package contains the development files needed to compile software to
+ use the libfvm API.
+
+Package: libfvm0
+Architecture: any
+Depends: ${shlibs:Depends}
+Description: Code_Saturne Base Functions and Types library
+ BFT stands for Base Functions and Types.
+ It is destined to be used by scientific codes (Computational Fluid
+ Dynamics) often using some form of parallelism, especially MPI.
+
+Package: libfvm0-dbg
+Section: libdevel
+Priority: extra
+Architecture: any
+Depends: libfvm0 (= ${binary:Version})
+Description: Code_Saturne Base Functions and Types library
+ BFT stands for Base Functions and Types.
+ It is destined to be used by scientific codes (Computational Fluid
+ Dynamics) often using some form of parallelism, especially MPI.
+ .
+ This package contains the debugging symbols of the library.

Added: packages/libfvm/trunk/debian/copyright
URL: http://svn.debian.org/wsvn/debian-science/packages/libfvm/trunk/debian/copyright?rev=35243&op=file
==============================================================================
--- packages/libfvm/trunk/debian/copyright (added)
+++ packages/libfvm/trunk/debian/copyright Thu Oct  9 12:21:49 2008
@@ -1,0 +1,21 @@
+This package was debianized by Sylvestre Ledru <sylvestre.ledru at inria.fr> on
+Wed, 08 Oct 2008 22:38:20 +0200.
+
+It was downloaded from <http://www.code-saturne.org/>
+
+Upstream Authors:
+
+    Yvan Fournier   <yvan.fournier at edf.fr>
+    Didier Poizat 
+
+Copyright:
+
+    Copyright (C) 1999-2004 Yvan Fournier
+    Copyright (C) 1999-2009 Didier Poizat
+
+License:
+
+    LGPL
+
+The Debian packaging is (C) 2008, Sylvestre Ledru <sylvestre.ledru at inria.fr> and
+is licensed under the LGPL, see `/usr/share/common-licenses/LGPL'.

Added: packages/libfvm/trunk/debian/docs
URL: http://svn.debian.org/wsvn/debian-science/packages/libfvm/trunk/debian/docs?rev=35243&op=file
==============================================================================
--- packages/libfvm/trunk/debian/docs (added)
+++ packages/libfvm/trunk/debian/docs Thu Oct  9 12:21:49 2008
@@ -1,0 +1,2 @@
+NEWS
+README

Added: packages/libfvm/trunk/debian/files
URL: http://svn.debian.org/wsvn/debian-science/packages/libfvm/trunk/debian/files?rev=35243&op=file
==============================================================================
--- packages/libfvm/trunk/debian/files (added)
+++ packages/libfvm/trunk/debian/files Thu Oct  9 12:21:49 2008
@@ -1,0 +1,12 @@
+libfvm-dev_0.11.0-1_i386.deb libdevel optional
+libfvm0_0.11.0-1_i386.deb libs optional
+libfvm0-dbg_0.11.0-1_i386.deb libdevel extra
+libfvm-dev_0.11.0-1_i386.deb libdevel optional
+libfvm0_0.11.0-1_i386.deb libs optional
+libfvm0-dbg_0.11.0-1_i386.deb libdevel extra
+libfvm-dev_0.11.0-1_i386.deb libdevel optional
+libfvm0_0.11.0-1_i386.deb libs optional
+libfvm0-dbg_0.11.0-1_i386.deb libdevel extra
+libfvm-dev_0.11.0-1_i386.deb libdevel optional
+libfvm0_0.11.0-1_i386.deb libs optional
+libfvm0-dbg_0.11.0-1_i386.deb libdevel extra

Added: packages/libfvm/trunk/debian/libfvm-dev.install
URL: http://svn.debian.org/wsvn/debian-science/packages/libfvm/trunk/debian/libfvm-dev.install?rev=35243&op=file
==============================================================================
--- packages/libfvm/trunk/debian/libfvm-dev.install (added)
+++ packages/libfvm/trunk/debian/libfvm-dev.install Thu Oct  9 12:21:49 2008
@@ -1,0 +1,4 @@
+debian/tmp/usr/include/*
+debian/tmp/usr/lib/lib*.a
+debian/tmp/usr/lib/lib*.so
+debian/tmp/usr/lib/*.la

Added: packages/libfvm/trunk/debian/libfvm0.install
URL: http://svn.debian.org/wsvn/debian-science/packages/libfvm/trunk/debian/libfvm0.install?rev=35243&op=file
==============================================================================
--- packages/libfvm/trunk/debian/libfvm0.install (added)
+++ packages/libfvm/trunk/debian/libfvm0.install Thu Oct  9 12:21:49 2008
@@ -1,0 +1,1 @@
+debian/tmp/usr/lib/lib*.so.*

Added: packages/libfvm/trunk/debian/rules
URL: http://svn.debian.org/wsvn/debian-science/packages/libfvm/trunk/debian/rules?rev=35243&op=file
==============================================================================
--- packages/libfvm/trunk/debian/rules (added)
+++ packages/libfvm/trunk/debian/rules Thu Oct  9 12:21:49 2008
@@ -1,0 +1,7 @@
+#!/usr/bin/make -f
+# Copyright 2008 Sylvestre Ledru <sylvestre.ledru at inria.fr>
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/autotools.mk
+
+DEB_MAKE_INSTALL_TARGET  := install DESTDIR=`pwd`/debian/tmp

Propchange: packages/libfvm/trunk/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: packages/libfvm/trunk/debian/watch
URL: http://svn.debian.org/wsvn/debian-science/packages/libfvm/trunk/debian/watch?rev=35243&op=file
==============================================================================
--- packages/libfvm/trunk/debian/watch (added)
+++ packages/libfvm/trunk/debian/watch Thu Oct  9 12:21:49 2008
@@ -1,0 +1,2 @@
+version=3
+ http://rd.edf.com/the-edf-offers/research-and-development/softwares/code-saturne/code-saturne-download-107009.html .*fvm-(.*).tgz




More information about the debian-science-commits mailing list