File: drop-polynomialCurves2d.patch

package info (click to toggle)
octave-matgeom 1.2.4-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,584 kB
  • sloc: objc: 469; makefile: 10
file content (46 lines) | stat: -rw-r--r-- 2,139 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
Description: Drop references to non-existent directory polynomialCurves2d
Author: Rafael Laboissière <rafael@debian.org>
Origin: upstream, https://sourceforge.net/p/octave/matgeom/ci/fe7786e6154a062b62d1fc240a2fbcc0f84f6cde/
Bug: https://savannah.gnu.org/bugs/index.php?65562
Bug-Debian: https://bugs.debian.org/1083243
Forwarded: https://github.com/mattools/matGeom/pull/201
Last-Update: 2024-10-12

--- octave-matgeom-1.2.4.orig/INDEX
+++ octave-matgeom-1.2.4/INDEX
@@ -599,5 +599,3 @@ graphs
  relativeNeighborhoodGraph
  voronoi2d
  writeGraph
-polynomialCurves2d
-
--- octave-matgeom-1.2.4.orig/inst/Contents.m
+++ octave-matgeom-1.2.4/inst/Contents.m
@@ -36,7 +36,6 @@
 %   geom2d              - General function in euclidean plane
 %   polygons2d          - Functions operating on point lists 
 %   graphs              - Manipulation of geometric graphs
-%   polynomialCurves2d  - Representation of smooth polynomial curves
 %   geom3d              - General function in 3D euclidean space
 %   meshes3d            - Manipulation of 3D surfacic meshes
 %
--- octave-matgeom-1.2.4.orig/inst/__matgeom_package_register__.m
+++ octave-matgeom-1.2.4/inst/__matgeom_package_register__.m
@@ -25,7 +25,7 @@
 function subdir_paths = __matgeom_package_register__ (loading = 0)
 
   subdirlist = {"utils", "geom2d", "polygons2d", "graphs",...
-                "geom3d","meshes3d","polynomialCurves2d"};
+                "geom3d","meshes3d"};
   ## Get full path, with luck we can retreive the package name from here
   base_pkg_path = fileparts (make_absolute_filename (mfilename ("fullpath")));
 
@@ -38,7 +38,7 @@ function subdir_paths = __matgeom_packag
       ## Check if this package still has varLessThan
       pkgverchecker = fullfile (base_pkg_path, 'verLessThan.');
       if exist ([pkgverchecker, 'm'], 'file')
-        warning ('Octave:deprecated-function', 
+        warning ('Octave:deprecated-function',
             'Permanently renaming verLessThan.m since it is already present');
         ## The change is permanent and done only once
         ## Means that if testing in older version of Octave, needs re-install