[Python-modules-commits] r9482 - in packages/apiextractor/trunk (9 files)

odyx-guest at users.alioth.debian.org odyx-guest at users.alioth.debian.org
Wed Aug 26 10:23:29 UTC 2009


    Date: Wednesday, August 26, 2009 @ 10:23:28
  Author: odyx-guest
Revision: 9482

[svn-inject] Applying Debian modifications to trunk

Added:
  packages/apiextractor/trunk/debian/
  packages/apiextractor/trunk/debian/changelog
  packages/apiextractor/trunk/debian/cmake.mk
  packages/apiextractor/trunk/debian/compat
  packages/apiextractor/trunk/debian/control
  packages/apiextractor/trunk/debian/copyright
  packages/apiextractor/trunk/debian/libapiextractor-dev.install
  packages/apiextractor/trunk/debian/libapiextractor.install
  packages/apiextractor/trunk/debian/rules

Added: packages/apiextractor/trunk/debian/changelog
===================================================================
--- packages/apiextractor/trunk/debian/changelog	                        (rev 0)
+++ packages/apiextractor/trunk/debian/changelog	2009-08-26 10:23:28 UTC (rev 9482)
@@ -0,0 +1,11 @@
+apiextractor (0.2-0ubuntu1) jaunty; urgency=low
+
+  * Build for Ubuntu 9.04.
+
+ -- Anderson Lizardo <anderson.lizardo at indt.org.br>  Tue, 18 Aug 2009 08:05:11 -0400
+
+apiextractor (0.2-0maemo1) unstable; urgency=low
+
+  * Initial release
+
+ -- Anderson Lizardo <anderson.lizardo at openbossa.org>  Thu, 16 Jul 2009 09:12:10 -0400

Added: packages/apiextractor/trunk/debian/cmake.mk
===================================================================
--- packages/apiextractor/trunk/debian/cmake.mk	                        (rev 0)
+++ packages/apiextractor/trunk/debian/cmake.mk	2009-08-26 10:23:28 UTC (rev 9482)
@@ -0,0 +1,55 @@
+# -*- mode: makefile; coding: utf-8 -*-
+# Copyright © 2006 Peter Rockai <me at mornfall.net>
+# Copyright © 2006 Fathi Boudra <fboudra at free.fr>
+# Copyright © 2007 Peter Eisentraut <petere at debian.org>
+# Description: A class for cmake packages
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License as
+# published by the Free Software Foundation; either version 2, or (at
+# your option) any later version.
+#
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+# 02111-1307 USA.
+
+_cdbs_scripts_path ?= /usr/lib/cdbs
+_cdbs_rules_path ?= /usr/share/cdbs/1/rules
+_cdbs_class_path ?= /usr/share/cdbs/1/class
+
+ifndef _cdbs_class_cmake
+_cdbs_class_cmake = 1
+
+include $(_cdbs_class_path)/makefile.mk$(_cdbs_makefile_suffix)
+
+ifdef _cdbs_tarball_dir
+DEB_BUILDDIR = $(_cdbs_tarball_dir)/obj-$(DEB_BUILD_GNU_TYPE)
+else
+DEB_BUILDDIR = obj-$(DEB_BUILD_GNU_TYPE)
+endif
+
+# Overriden from makefile-vars.mk
+# We pass CFLAGS and friends to cmake, so no need to pass them to make
+DEB_MAKE_INVOKE = $(DEB_MAKE_ENVVARS) $(MAKE) -C $(DEB_BUILDDIR)
+
+DEB_MAKE_INSTALL_TARGET = install DESTDIR=$(DEB_DESTDIR)
+
+CMAKE = cmake
+DEB_CMAKE_INSTALL_PREFIX = /usr
+DEB_CMAKE_NORMAL_ARGS = -DCMAKE_INSTALL_PREFIX="$(DEB_CMAKE_INSTALL_PREFIX)" -DCMAKE_C_COMPILER:FILEPATH="$(CC)" -DCMAKE_CXX_COMPILER:FILEPATH="$(CXX)" -DCMAKE_C_FLAGS="$(CFLAGS)" -DCMAKE_CXX_FLAGS="$(CXXFLAGS)" -DCMAKE_SKIP_RPATH=ON -DCMAKE_VERBOSE_MAKEFILE=ON
+
+common-configure-arch common-configure-indep:: common-configure-impl
+common-configure-impl:: $(DEB_BUILDDIR)/CMakeCache.txt
+$(DEB_BUILDDIR)/CMakeCache.txt:
+	cd $(DEB_BUILDDIR) && $(CMAKE) $(CURDIR)/$(DEB_SRCDIR) $(DEB_CMAKE_NORMAL_ARGS) $(DEB_CMAKE_EXTRA_FLAGS)
+
+cleanbuilddir::
+	-$(if $(call cdbs_streq,$(DEB_BUILDDIR),$(DEB_SRCDIR)),,rm -rf $(DEB_BUILDDIR))
+
+endif

Added: packages/apiextractor/trunk/debian/compat
===================================================================
--- packages/apiextractor/trunk/debian/compat	                        (rev 0)
+++ packages/apiextractor/trunk/debian/compat	2009-08-26 10:23:28 UTC (rev 9482)
@@ -0,0 +1 @@
+5

Added: packages/apiextractor/trunk/debian/control
===================================================================
--- packages/apiextractor/trunk/debian/control	                        (rev 0)
+++ packages/apiextractor/trunk/debian/control	2009-08-26 10:23:28 UTC (rev 9482)
@@ -0,0 +1,26 @@
+Source: apiextractor
+Priority: extra
+Maintainer: PySide team <contact at pyside.org>
+Build-Depends: debhelper (>= 5), cdbs, cmake (>= 2.6.0), libboost-graph1.38-dev (>= 1.38.0), libboost-graph1.38.0 (>= 1.38.0), libqt4-dev (>= 4.4.0), libqt4-xmlpatterns (>= 4.4.0), libxml2-dev, libxslt1-dev
+Standards-Version: 3.7.3
+Section: libs
+
+Package: libapiextractor-dev
+Section: libdevel
+Architecture: any
+Depends: libapiextractor (= ${binary:Version})
+Replaces: libqtbindgen-dev
+Description: Development files to create new qt binding generators
+ The apiextractor provides classes that help the creation of binding
+ generators for Qt-based libraries. This package contains the
+ development files.
+
+Package: libapiextractor
+Section: libs
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Replaces: libqtbindgen
+Description: Runtime library for qt binding generators
+ The apiextractor provides classes that help the creation of binding
+ generators for Qt-based libraries. This package contains runtime
+ library.

Added: packages/apiextractor/trunk/debian/copyright
===================================================================
--- packages/apiextractor/trunk/debian/copyright	                        (rev 0)
+++ packages/apiextractor/trunk/debian/copyright	2009-08-26 10:23:28 UTC (rev 9482)
@@ -0,0 +1,33 @@
+This package was debianized by Lauro Moura <lauro.neto at indt.org.br> on
+Mon, 02 Feb 2009 11:36:23 -0300.
+
+Upstream Authors:
+
+    PySide team <contact at pyside.org>
+
+Copyright:
+
+    Copyright (C) 2009 Nokia Corporation and/or its subsidiary(ies)
+
+License:
+
+    This package is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+
+    This package is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this package; if not, write to the Free Software
+    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+
+    On Debian systems, the complete text of the GNU General Public License
+    can be found in `/usr/share/common-licenses/GPL'.
+
+
+The Debian packaging is (C) 2009, Nokia Corporation and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.

Added: packages/apiextractor/trunk/debian/libapiextractor-dev.install
===================================================================
--- packages/apiextractor/trunk/debian/libapiextractor-dev.install	                        (rev 0)
+++ packages/apiextractor/trunk/debian/libapiextractor-dev.install	2009-08-26 10:23:28 UTC (rev 9482)
@@ -0,0 +1,4 @@
+debian/tmp/usr/include/*
+debian/tmp/usr/lib/pkgconfig/*
+debian/tmp/usr/share/cmake-2.6/*
+debian/tmp/usr/lib/lib*.so

Added: packages/apiextractor/trunk/debian/libapiextractor.install
===================================================================
--- packages/apiextractor/trunk/debian/libapiextractor.install	                        (rev 0)
+++ packages/apiextractor/trunk/debian/libapiextractor.install	2009-08-26 10:23:28 UTC (rev 9482)
@@ -0,0 +1 @@
+debian/tmp/usr/lib/lib*.so.*

Added: packages/apiextractor/trunk/debian/rules
===================================================================
--- packages/apiextractor/trunk/debian/rules	                        (rev 0)
+++ packages/apiextractor/trunk/debian/rules	2009-08-26 10:23:28 UTC (rev 9482)
@@ -0,0 +1,24 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+# workaround for missing cmake.mk in older CDBS versions
+ifneq (,$(realpath /usr/share/cdbs/1/class/cmake.mk))
+include /usr/share/cdbs/1/class/cmake.mk
+else
+include debian/cmake.mk
+endif
+
+# borrowed from python2.5 debian/rules
+COMMA = ,
+ifneq (,$(filter parallel=%,$(subst $(COMMA), ,$(DEB_BUILD_OPTIONS))))
+  DEB_MAKE_ENVVARS := MAKEFLAGS=-j$(subst parallel=,,$(filter parallel=%,$(subst $(COMMA), ,$(DEB_BUILD_OPTIONS))))
+endif


Property changes on: packages/apiextractor/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *




More information about the Python-modules-commits mailing list