~ubuntu-branches/debian/lenny/octave3.0/lenny

« back to all changes in this revision

Viewing changes to debian/in/PACKAGE.conf

  • Committer: Bazaar Package Importer
  • Author(s): Rafael Laboissiere
  • Date: 2007-12-23 16:04:15 UTC
  • Revision ID: james.westby@ubuntu.com-20071223160415-jfriqav7corvoi9d
Tags: 3.0.0-1
The "Seasons Greetings" release

* New upstream release.  A big thanks to John W. Eaton and all the
  Octave development team for this most awaited release.

* debian/in/control, debian/rules: Replaced most of the references to
  octave2.9 by octave3.0.  Made all octave3.0* packages
  provide/replace/conflict with the respective octave2.9* packages.
* debian/patches/02_prelease_warning.dpatch: Dropped patch, since this
  is the real 3.0 release
* debian/in/control: Dropped the build-conflict with atlas3-base-dev.
  This will make the autobuilders happy.
* debian/in/control: Dropped the empty octave package.  This will allow
  releasing octave3.0 without an epoch in its version number.  We will
  reintroduce this package later, if necessary (anyway, octave3.0
  provides octave).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
### System-wide startup file for Octave.
 
2
###
 
3
### This file should contain any commands that should be executed each
 
4
### time Octave starts for every user at this site.
 
5
 
 
6
### On a Debian GNU/Linux system, Octave also searches for local files and
 
7
### directories below /usr/local/share/octave/site-m/.  Please see the Octave
 
8
### documentation for other variables you might want to set here.
 
9
 
 
10
[V_2_1:
 
11
LOADPATH = [ ":/usr/local/share/octave/site-m//", LOADPATH ];
 
12
:]
 
13
 
 
14
[V_2_9:
 
15
### Use new style of path generation
 
16
 
 
17
addpath (genpath ("/usr/local/share/octave/site-m"), "-begin");
 
18
 
 
19
### We use a function below to avoid polutting the user space with ###
 
20
### Debian start-up specific variables.  Also, the function itself is
 
21
### cleared after being called. 
 
22
 
 
23
function debian_remove_octave_forge 
 
24
  p = split (path (), ":");
 
25
  for i = 1 : rows (p)
 
26
    if ! isempty (findstr (p (i, :), "octave-forge"))
 
27
      rmpath (deblank (p (i, :)));
 
28
    endif
 
29
  endfor
 
30
endfunction
 
31
 
 
32
debian_remove_octave_forge ();
 
33
 
 
34
clear debian_remove_octave_forge;
 
35
:]
 
36