[Python-apps-commits] r2016 - in packages/cython/trunk/debian (changelog control)

certik-guest at users.alioth.debian.org certik-guest at users.alioth.debian.org
Tue Dec 2 11:08:23 UTC 2008


    Date: Tuesday, December 2, 2008 @ 11:08:23
  Author: certik-guest
Revision: 2016

More changes needed for the upload added

Modified:
  packages/cython/trunk/debian/changelog
  packages/cython/trunk/debian/control

Modified: packages/cython/trunk/debian/changelog
===================================================================
--- packages/cython/trunk/debian/changelog	2008-12-02 10:24:15 UTC (rev 2015)
+++ packages/cython/trunk/debian/changelog	2008-12-02 11:08:23 UTC (rev 2016)
@@ -1,4 +1,4 @@
-cython (0.10.2-1) unstable; urgency=low
+cython (0.10.2-1) UNRELEASED; urgency=low
 
   [ Sandro Tosi ]
   * debian/control
@@ -6,8 +6,12 @@
 
   [ Ondrej Certik ]
   * New upstream release
+  * Description updated
+  * ${shlibs:Depends} added to depends
+  * architecture changed from all to any
+  * python-support moved from Build-Depends-Indep to Build-Depends
 
- -- Ondrej Certik <ondrej at certik.cz>  Tue, 02 Dec 2008 10:08:58 +0100
+ -- Ondrej Certik <ondrej at certik.cz>  Tue, 02 Dec 2008 12:06:41 +0100
 
 cython (0.9.8-1) unstable; urgency=low
 

Modified: packages/cython/trunk/debian/control
===================================================================
--- packages/cython/trunk/debian/control	2008-12-02 10:24:15 UTC (rev 2015)
+++ packages/cython/trunk/debian/control	2008-12-02 11:08:23 UTC (rev 2016)
@@ -3,8 +3,7 @@
 Priority: optional
 Maintainer: Python Applications Packaging Team <python-apps-team at lists.alioth.debian.org>
 Uploaders: Ondrej Certik <ondrej at certik.cz>
-Build-Depends: cdbs (>= 0.4.49), debhelper (>= 5.0.38), python (>= 2.4.4-6), python-all-dev (>= 2.4.4-6)
-Build-Depends-Indep: python-support (>= 0.7.5)
+Build-Depends: cdbs (>= 0.4.49), debhelper (>= 5.0.38), python (>= 2.4.4-6), python-all-dev (>= 2.4.4-6), python-support (>= 0.7.5)
 Standards-Version: 3.8.0
 Homepage: http://cython.org/
 Vcs-Svn: svn://svn.debian.org/svn/python-apps/packages/cython/trunk
@@ -12,15 +11,19 @@
 XS-DM-Upload-Allowed: yes
 
 Package: cython
-Architecture: all
-Depends: ${python:Depends}, ${misc:Depends}
+Architecture: any
+Depends: ${python:Depends}, ${misc:Depends}, ${shlibs:Depends}
 Suggests: gcc
 XB-Python-Version: ${python:Versions}
 Description: C-Extensions for Python
  Cython is a language that makes writing C extensions for the Python language as
- easy as Python itself.
+ easy as Python itself. Cython is based on the well-known Pyrex, but supports
+ more cutting edge functionality and optimizations.
  .
- Cython is based on the well-known Pyrex, but supports more cutting edge
- functionality and optimizations.
+ The Cython language is very close to the Python language, but Cython
+ additionally supports calling C functions and declaring C types on variables
+ and class attributes. This allows the compiler to generate very efficient C
+ code from Cython code.
  .
- Development of Cython is mainly motivated by the needs of Sage.
+ This makes Cython the ideal language for wrapping for external C libraries, and
+ for fast C modules that speed up the execution of Python code.




More information about the Python-apps-commits mailing list