[Python-modules-commits] r10320 - in packages/llvm-py/trunk/debian (3 files)
chaica-guest at users.alioth.debian.org
chaica-guest at users.alioth.debian.org
Sat Nov 7 11:47:22 UTC 2009
Date: Saturday, November 7, 2009 @ 11:47:21
Author: chaica-guest
Revision: 10320
* added a debug package
* debian/control
- Improved short description
- Improved long description
- Added a debug package section
* debian/rules
- Added a get-orig-source target
Added:
packages/llvm-py/trunk/debian/python-llvm.install
Modified:
packages/llvm-py/trunk/debian/control
packages/llvm-py/trunk/debian/rules
Modified: packages/llvm-py/trunk/debian/control
===================================================================
--- packages/llvm-py/trunk/debian/control 2009-11-07 11:47:13 UTC (rev 10319)
+++ packages/llvm-py/trunk/debian/control 2009-11-07 11:47:21 UTC (rev 10320)
@@ -4,19 +4,36 @@
Priority: optional
Maintainer: Carl Chenet <chaica at ohmytux.com>
Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>,
-Build-Depends: debhelper (>= 7.0.50~), python (>= 2.4), python-all-dev, python-support, llvm, llvm-dev
+Build-Depends: debhelper (>= 7.0.50~), python (>= 2.4), python-all-dev, python-all-dbg, python-support, llvm, llvm-dev
Standards-Version: 3.8.3
Homepage: http://mdevan.nfshost.com/llvm-py/
Vcs-Svn: svn://svn.debian.org/python-modules/packages/llvm-py/trunk/
Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/llvm-py/trunk/
-Package: python-llvm-py
+Package: python-llvm
Architecture: any
Depends: ${shlibs:Depends}, ${python:Depends}, ${misc:Depends}
Description: Python bindings for LLVM
- llvm-py provides Python bindings for LLVM. It's goal is to expose
- enough of LLVM APIs to implement a compiler backend or a VM in pure Python.
+ llvm-py provides Python bindings for LLVM, the Low Level Virtual Machine.
+ It's goal is to expose enough of LLVM APIs to implement a compiler backend
+ or a VM in pure Python.
.
llvm-py consists of Python and C modules that wrap over the native C++/C
bindings of LLVM, and does not use / have dependencies on "glue utilities"
like Boost.Python, swig etc.
+
+Package: python-llvm-dbg
+Architecture: any
+Priority: extra
+Section: debug
+Depends: ${shlibs:Depends}, ${misc:Depends}, python-dbg, python-llvm (= ${binary:Version})
+Description: Python bindings for LLVM (debug mode)
+ llvm-py provides Python bindings for LLVM, the Low Level Virtual Machine.
+ It's goal is to expose enough of LLVM APIs to implement a compiler backend
+ or a VM in pure Python.
+ .
+ llvm-py consists of Python and C modules that wrap over the native C++/C
+ bindings of LLVM, and does not use / have dependencies on "glue utilities"
+ like Boost.Python, swig etc.
+ .
+ This package provides the debug mode.
Added: packages/llvm-py/trunk/debian/python-llvm.install
===================================================================
--- packages/llvm-py/trunk/debian/python-llvm.install (rev 0)
+++ packages/llvm-py/trunk/debian/python-llvm.install 2009-11-07 11:47:21 UTC (rev 10320)
@@ -0,0 +1 @@
+usr/lib/*/*-packages/llvm/*
Modified: packages/llvm-py/trunk/debian/rules
===================================================================
--- packages/llvm-py/trunk/debian/rules 2009-11-07 11:47:13 UTC (rev 10319)
+++ packages/llvm-py/trunk/debian/rules 2009-11-07 11:47:21 UTC (rev 10320)
@@ -1,3 +1,8 @@
#!/usr/bin/make -f
%:
dh $@
+
+get-orig-source:
+ svn -q export -r 82 http://llvm-py.googlecode.com/svn/trunk/ llvm-py-0.5+svn82 \
+ && tar zcf llvm-py_0.5+svn82.orig.tar.gz llvm-py-0.5+svn82 \
+ && rm -rf llvm-py-0.5+svn82
More information about the Python-modules-commits
mailing list