[med-svn] [Git][med-team/pyode][master] 5 commits: Change URLs, descriptions, fix with cme

Nilesh Patra gitlab at salsa.debian.org
Mon Apr 13 13:02:55 BST 2020



Nilesh Patra pushed to branch master at Debian Med / pyode


Commits:
f9bb4434 by Nilesh Patra at 2020-04-13T17:17:30+05:30
Change URLs, descriptions, fix with cme

- - - - -
56c3a023 by Nilesh Patra at 2020-04-13T17:18:09+05:30
Add 'Rules-Requires-Root:no'

- - - - -
590cf032 by Nilesh Patra at 2020-04-13T17:18:53+05:30
Drop compat, switch to debhelper-compat

- - - - -
e0bdaa2c by Nilesh Patra at 2020-04-13T17:19:18+05:30
Add upstream/metadata

- - - - -
e57e7b15 by Nilesh Patra at 2020-04-13T17:32:26+05:30
Fix spellings

- - - - -


6 changed files:

- − debian/compat
- debian/control
- debian/patches/02_add_shebang.patch
- + debian/patches/03_spellings.patch
- debian/patches/series
- + debian/upstream/metadata


Changes:

=====================================
debian/compat deleted
=====================================
@@ -1 +0,0 @@
-10


=====================================
debian/control
=====================================
@@ -1,17 +1,27 @@
 Source: pyode
+Maintainer: Debian Med Packaging Team <debian-med-packaging at lists.alioth.debian.org>
+Uploaders: Yaroslav Halchenko <debian at onerussian.com>,
+           Michael Hanke <michael.hanke at gmail.com>,
+           Nilesh Patra <npatra974 at gmail.com>
 Section: python
 Priority: optional
-Maintainer: NeuroDebian Team <team at neuro.debian.net>
-Uploaders: Yaroslav Halchenko <debian at onerussian.com>, Michael Hanke <michael.hanke at gmail.com>, Nilesh Patra <npatra974 at gmail.com>
-Build-Depends: debhelper (>= 10~), dh-python, python3-all-dev, libode-dev (>=0.7), cython, python3-setuptools
+Build-Depends: debhelper-compat (= 12),
+               dh-python,
+               python3-all-dev,
+               libode-dev,
+               cython,
+               python3-setuptools
 Standards-Version: 4.5.0
-Homepage: http://pyode.sourceforge.net/
-Vcs-Browser: https://salsa.debian.org/neurodebian-team/pyode
-Vcs-Git: https://salsa.debian.org/neurodebian-team/pyode.git
+Vcs-Browser: https://salsa.debian.org/med-team/pyode
+Vcs-Git: https://salsa.debian.org/med-team/pyode.git
+Homepage: https://github.com/filipeabperes/Py3ODE
+Rules-Requires-Root: no
 
 Package: python3-pyode
 Architecture: any
-Depends: ${python3:Depends}, ${shlibs:Depends}, ${misc:Depends}
+Depends: ${python3:Depends},
+         ${shlibs:Depends},
+         ${misc:Depends}
 Provides: ${python3:Provides}
 Description: Python bindings for The Open Dynamics Engine
  PyODE is a set of open-source Python bindings for The Open Dynamics
@@ -22,10 +32,11 @@ Description: Python bindings for The Open Dynamics Engine
 
 Package: python3-pyode-doc
 Architecture: all
-Depends:  ${misc:Depends}
 Section: doc
-Description: Python bindings for The Open Dynamics Engine
- PyODE is a set of open-source Python bindings for The Open Dynamics
+Depends: ${misc:Depends}
+Description: Documentation for pyode
+ This package contains relevant documentation for PyODE
+ which is a set of open-source Python bindings for The Open Dynamics
  Engine, an open-source physics engine. PyODE also includes an XODE
  parser.
  .


=====================================
debian/patches/02_add_shebang.patch
=====================================
@@ -22,3 +22,24 @@ Description: Add shebang to non-executable files.
  
  """
      Py3ODE heightmap example
+--- a/examples/transforms.py
++++ b/examples/transforms.py
+@@ -1,3 +1,4 @@
++#!/usr/bin/python3
+ ######################################################################
+ # Python Open Dynamics Engine Wrapper
+ # Copyright (C) 2004 PyODE developers (see file AUTHORS)
+--- a/examples/tutorial3.py
++++ b/examples/tutorial3.py
+@@ -1,3 +1,4 @@
++#!/usr/bin/python3
+ # pyODE example 3: Collision detection
+ 
+ # Originally by Matthias Baas.
+--- a/examples/vehicle.py
++++ b/examples/vehicle.py
+@@ -1,3 +1,4 @@
++#!/usr/bin/python3
+ ######################################################################
+ # Python Open Dynamics Engine Wrapper
+ # Copyright (C) 2004 PyODE developers (see file AUTHORS)


=====================================
debian/patches/03_spellings.patch
=====================================
@@ -0,0 +1,39 @@
+Description: Fix incorrect spellings.
+--- a/src/heightfielddata.pyx
++++ b/src/heightfielddata.pyx
+@@ -53,7 +53,7 @@
+         array of bytes (8 bit unsigned) representing the height at each sample point.
+ 
+         @param heightData: A list of len( widthSamples * depthSamples ) containing the height values.
+-            NOTE: This NEEDS to be a contigious array (easy to create one with
++            NOTE: This NEEDS to be a contiguous array (easy to create one with
+             numpy, see tutorial_heightmap.py) otherwise ODE won't be able to
+             access it correctly, and it will likely lead to memory corruption.
+             There isn't an automatic conversion built in here as that would bring
+@@ -97,7 +97,7 @@
+         array of shorts (16 bit signed) representing the height at each sample point.
+ 
+         @param heightData: A list of len( widthSamples * depthSamples ) containing the height values.
+-            NOTE: This NEEDS to be a contigious array (easy to create one with
++            NOTE: This NEEDS to be a contiguous array (easy to create one with
+             numpy, see tutorial_heightmap.py) otherwise ODE won't be able to
+             access it correctly, and it will likely lead to memory corruption.
+             There isn't an automatic conversion built in here as that would bring
+@@ -141,7 +141,7 @@
+         array of single precision floats representing the height at each sample point.
+ 
+         @param heightData: A list of len( widthSamples * depthSamples ) containing the height values.
+-            NOTE: This NEEDS to be a contigious array (easy to create one with
++            NOTE: This NEEDS to be a contiguous array (easy to create one with
+             numpy, see tutorial_heightmap.py) otherwise ODE won't be able to
+             access it correctly, and it will likely lead to memory corruption.
+             There isn't an automatic conversion built in here as that would bring
+@@ -185,7 +185,7 @@
+         array of double precision floats representing the height at each sample point.
+ 
+         @param heightData: A list of len( widthSamples * depthSamples ) containing the height values.
+-            NOTE: This NEEDS to be a contigious array (easy to create one with
++            NOTE: This NEEDS to be a contiguous array (easy to create one with
+             numpy, see tutorial_heightmap.py) otherwise ODE won't be able to
+             access it correctly, and it will likely lead to memory corruption.
+             There isn't an automatic conversion built in here as that would bring


=====================================
debian/patches/series
=====================================
@@ -1,2 +1,3 @@
 01_fix_setup.patch
 02_add_shebang.patch
+03_spellings.patch


=====================================
debian/upstream/metadata
=====================================
@@ -0,0 +1,7 @@
+---
+Archive: GitHub
+Bug-Database: https://github.com/filipeabperes/Py3ODE/issues
+Contact: https://github.com/filipeabperes/Py3ODE/issues
+Name: Py3ODE
+Repository: https://github.com/filipeabperes/Py3ODE.git
+Repository-Browse: https://github.com/filipeabperes/Py3ODE



View it on GitLab: https://salsa.debian.org/med-team/pyode/-/compare/2c6102c2a8705746f5f0af3c293994434a888316...e57e7b15e750feca4d05ddae79f1e9e035f1b383

-- 
View it on GitLab: https://salsa.debian.org/med-team/pyode/-/compare/2c6102c2a8705746f5f0af3c293994434a888316...e57e7b15e750feca4d05ddae79f1e9e035f1b383
You're receiving this email because of your account on salsa.debian.org.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/debian-med-commit/attachments/20200413/75252748/attachment-0001.html>


More information about the debian-med-commit mailing list