[SCM] Packaging for pytables branch, master, updated. debian/2.4.0-1-33-gd245091

Antonio Valentino antonio.valentino at tiscali.it
Sun Jun 23 14:25:55 UTC 2013


The following commit has been merged in the master branch:
commit df21551ed768c28e806aa84a096ecd0fa39f2dd3
Merge: ea8ca47b900817b8584321c38cc8037304481b25 5c3332336b6be61bba2d3c9e5b324c8eafe10c0c
Author: Antonio Valentino <antonio.valentino at tiscali.it>
Date:   Sun Jun 23 16:05:31 2013 +0200

    Merge branch '2.4.0'

diff --combined debian/changelog
index d211456,319e72a..1efacca
--- a/debian/changelog
+++ b/debian/changelog
@@@ -1,20 -1,17 +1,28 @@@
 +pytables (3.0.0-1) experimental; urgency=low
 +
 +  * New upstream release
-   * Added vitables as suggested package (Closes: #702228)
-   * Updated copyright file
-   * Standard version bumped to 3.9.4 (no changes)
 +  * Fix PDF doc installation after upstream changes
-   * Removed obsolete DM-Upload-Allowed field from the control file
 +  * Added a man page for the new pt2pt3 command line tool
 +  * Depend on numexpr >= 2.0
 +  * Minimum Python version is now 2.6
 +  * New packages for Python 3
++
++ -- Antonio Valentino <antonio.valentino at tiscali.it>  Mon, 04 Mar 2013 20:22:28 +0100
++
+ pytables (2.4.0-2) unstable; urgency=low
+ 
+   * Added vitables as suggested package (Closes: #702228)
+   * Updated copyright file
+   * Standard version bumped to 3.9.4 (no changes)
+   * Removed obsolete DM-Upload-Allowed field from the control file
    * Enabled automatic testing for dbg packages
    * Keep the original name of the upstream changelog
    * Use canonical URI for VCS-* fields
+   * Fixed unnecessarily versioned build dependencies (silence cme warnings)
+   * Uploading PyTables 2.4 to unstable also fixes a small incompatibility
+     with numpy >= 1.7 (Closes: #713085)
  
-  -- Antonio Valentino <antonio.valentino at tiscali.it>  Mon, 04 Mar 2013 20:22:28 +0100
+  -- Antonio Valentino <antonio.valentino at tiscali.it>  Sun, 23 Jun 2013 13:25:28 +0000
  
  pytables (2.4.0-1) experimental; urgency=low
  
diff --combined debian/control
index b26a152,089c729..769670c
--- a/debian/control
+++ b/debian/control
@@@ -7,16 -7,12 +7,16 @@@ Homepage: http://www.pytables.or
  Vcs-Git: git://anonscm.debian.org/debian-science/packages/pytables.git
  Vcs-Browser: http://anonscm.debian.org/gitweb/?p=debian-science/packages/pytables.git
  Standards-Version: 3.9.4
 -X-Python-Version: >= 2.4
 +X-Python-Version: >= 2.6
 +X-Python3-Version: >= 3.2
- Build-Depends: debhelper (>= 9.0.0), libhdf5-dev (>= 1.8.4-patch1),
-                python-all-dev (>= 2.6.6-3~), python-all-dbg (>= 2.6.6-3~),
+ Build-Depends: debhelper (>= 9.0.0), libhdf5-dev,
+                python-all-dev, python-all-dbg,
 +               python3-all-dev, python3-all-dbg,
-                python-numpy (>= 1:1.4.1-4~), python-numpy-dbg (>= 1:1.4.1-4~),
+                python-numpy, python-numpy-dbg,
 -               python-numexpr, python-numexpr-dbg,
 -               cython (>= 0.13), cython-dbg (>= 0.13),
 +               python3-numpy, python3-numpy-dbg,
 +               python-numexpr (>= 2.0), python-numexpr-dbg,
 +               python3-numexpr, python3-numexpr-dbg,
 +               cython (>= 0.13), cython-dbg, cython3, cython3-dbg,
                 zlib1g-dev, liblzo2-dev,
                 libbz2-dev, python-sphinx (>= 1.0.7+dfsg),
                 texlive-latex-recommended, texlive-latex-extra,
@@@ -25,9 -21,9 +25,9 @@@
  Package: python-tables
  Architecture: any
  Depends: ${misc:Depends}, ${python:Depends}, ${shlibs:Depends},
 -         python-numexpr
 +         python-numexpr (>= 2.0)
  Recommends: ${shlibs:Recommends}
- Suggests: python-tables-doc, python-netcdf, ${shlibs:Suggests} vitables
+ Suggests: python-tables-doc, python-netcdf, ${shlibs:Suggests}, vitables
  Description: hierarchical database for Python based on HDF5
   PyTables is a hierarchical database package designed to efficiently
   manage very large amounts of data. PyTables is built on top of the
@@@ -44,8 -40,6 +44,8 @@@
    - Very easy to select data through the use of iterators over the
      rows in tables. Extended slicing is supported as well.
    - It supports the complete set of NumPy, Numeric and numarray objects.
 + .
 + This is the Python 2 version of the package.
  
  Package: python-tables-dbg
  Section: debug
@@@ -75,59 -69,6 +75,59 @@@ Description: hierarchical database for 
   .
   This package contains the extension built for the Python debug interpreter.
  
 +Package: python3-tables
 +Architecture: any
 +Depends: ${misc:Depends}, ${python3:Depends}, ${shlibs:Depends},
 +         python3-numexpr (>= 2.0)
 +Recommends: ${shlibs:Recommends}
 +Suggests: python-tables-doc, python-netcdf, ${shlibs:Suggests} vitables
 +Description: hierarchical database for Python3 based on HDF5
 + PyTables is a hierarchical database package designed to efficiently
 + manage very large amounts of data. PyTables is built on top of the
 + HDF5 library and the NumPy package. It features an object-oriented
 + interface that, combined with natural naming and C-code generated
 + from Pyrex sources, makes it a fast, yet extremely easy to use tool
 + for interactively save and retrieve large amounts of data.
 + .
 +  - Compound types (records) can be used entirely from Python (i.e. it
 +    is not necessary to use C for taking advantage of them).
 +  - The tables are both enlargeable and compressible.
 +  - I/O is buffered, so you can get very fast I/O, specially with
 +    large tables.
 +  - Very easy to select data through the use of iterators over the
 +    rows in tables. Extended slicing is supported as well.
 +  - It supports the complete set of NumPy, Numeric and numarray objects.
 + .
 + This is the Python 3 version of the package.
 +
 +Package: python3-tables-dbg
 +Section: debug
 +Priority: extra
 +Architecture: any
 +Depends: ${misc:Depends}, ${python3:Depends}, ${shlibs:Depends},
 +         python3-tables (= ${binary:Version})
 +Recommends: ${shlibs:Recommends}, python3-dbg, python3-numpy-dbg,
 +            python3-numexpr-dbg
 +Suggests: python-tables-doc, python-netcdf, ${shlibs:Suggests}
 +Description: hierarchical database for Python 3 based on HDF5 (debug extension)
 + PyTables is a hierarchical database package designed to efficiently
 + manage very large amounts of data. PyTables is built on top of the
 + HDF5 library and the NumPy package. It features an object-oriented
 + interface that, combined with natural naming and C-code generated
 + from Pyrex sources, makes it a fast, yet extremely easy to use tool
 + for interactively save and retrieve large amounts of data.
 + .
 +  - Compound types (records) can be used entirely from Python (i.e. it
 +    is not necessary to use C for taking advantage of them).
 +  - The tables are both enlargeable and compressible.
 +  - I/O is buffered, so you can get very fast I/O, specially with
 +    large tables.
 +  - Very easy to select data through the use of iterators over the
 +    rows in tables. Extended slicing is supported as well.
 +  - It supports the complete set of NumPy, Numeric and numarray objects.
 + .
 + This package contains the extension built for the Python 3 debug interpreter.
 +
  Package: python-tables-doc
  Section: doc
  Architecture: all
diff --combined debian/copyright
index 3f81253,c7fd6cb..7e251e3
--- a/debian/copyright
+++ b/debian/copyright
@@@ -3,10 -3,10 +3,10 @@@ Upstream-Name: pytable
  Source: http://www.pytables.org
  
  Files: *
- Copyright: 2002-2004 by Francesc Alted
-            2005-2007 by Carabos Coop. V.
-            2008-2010 by Francesc Alted
-            2011-2013 by PyTables maintainers
+ Copyright: 2002-2004 Francesc Alted
+            2005-2007 Carabos Coop. V.
+            2008-2010 Francesc Alted
 -           2011-2012 PyTables maintainers, The PyTables Governance Team
++           2011-2013 PyTables maintainers
  License: BSD-3-Clause
  
  Files: debian/*
@@@ -39,8 -39,7 +39,8 @@@ License: BSD-3-Claus
   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  
  Files: blosc/*
 -Copyright: 2009-2010 Francesc Alted <faltet at pytables.org>
 +Copyright: 2009-2012 Francesc Alted <faltet at gmail.com>
 +           2013 Francesc Alted <faltet at gmail.com>
  License: BSD
  
  Files: blosc/win32/pthread.h blosc/win32/pthread.c

-- 
Packaging for pytables



More information about the debian-science-commits mailing list