[Python-modules-commits] r30173 - in packages/pkgconfig/pkgconfig/trunk (10 files)
noahfx-guest at users.alioth.debian.org
noahfx-guest at users.alioth.debian.org
Sat Aug 16 19:43:17 UTC 2014
Date: Saturday, August 16, 2014 @ 19:43:16
Author: noahfx-guest
Revision: 30173
[svn-inject] Applying Debian modifications (1.1.0-1) to trunk
Added:
packages/pkgconfig/pkgconfig/trunk/debian/
packages/pkgconfig/pkgconfig/trunk/debian/changelog
packages/pkgconfig/pkgconfig/trunk/debian/compat
packages/pkgconfig/pkgconfig/trunk/debian/control
packages/pkgconfig/pkgconfig/trunk/debian/copyright
packages/pkgconfig/pkgconfig/trunk/debian/docs
packages/pkgconfig/pkgconfig/trunk/debian/rules
packages/pkgconfig/pkgconfig/trunk/debian/source/
packages/pkgconfig/pkgconfig/trunk/debian/source/format
packages/pkgconfig/pkgconfig/trunk/debian/watch
Property changes on: packages/pkgconfig/pkgconfig/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
+ 1
Added: packages/pkgconfig/pkgconfig/trunk/debian/changelog
===================================================================
--- packages/pkgconfig/pkgconfig/trunk/debian/changelog (rev 0)
+++ packages/pkgconfig/pkgconfig/trunk/debian/changelog 2014-08-16 19:43:16 UTC (rev 30173)
@@ -0,0 +1,5 @@
+pkgconfig (1.1.0-1) unstable; urgency=low
+
+ * Initial release (Closes: #757862)
+
+ -- Josue Ortega <josueortega at debian.org.gt> Sat, 16 Aug 2014 10:52:03 -0600
Added: packages/pkgconfig/pkgconfig/trunk/debian/compat
===================================================================
--- packages/pkgconfig/pkgconfig/trunk/debian/compat (rev 0)
+++ packages/pkgconfig/pkgconfig/trunk/debian/compat 2014-08-16 19:43:16 UTC (rev 30173)
@@ -0,0 +1 @@
+9
Added: packages/pkgconfig/pkgconfig/trunk/debian/control
===================================================================
--- packages/pkgconfig/pkgconfig/trunk/debian/control (rev 0)
+++ packages/pkgconfig/pkgconfig/trunk/debian/control 2014-08-16 19:43:16 UTC (rev 30173)
@@ -0,0 +1,39 @@
+Source: pkgconfig
+Section: python
+Priority: optional
+Maintainer: Josue Ortega <josueortega at debian.org.gt>
+Build-Depends: debhelper (>= 9),
+ python-setuptools(>= 2.0.2~),
+ python-all (>= 2.6.6-3~),
+ python-nose (>=1.3.3),
+ python3-all,
+ python3-setuptools,
+ python3-nose (>=1.3.3)
+Standards-Version: 3.9.5
+Homepage: https://github.com/matze/pkgconfig
+#Vcs-Git: git://anonscm.debian.org/collab-maint/pkgconfig.git
+#Vcs-Browser: http://anonscm.debian.org/?p=collab-maint/pkgconfig.git;a=summary
+
+Package: python-pkgconfig
+Architecture: all
+Depends: ${python:Depends}, ${misc:Depends}
+Description: Python interface to the pkg-config command line tool
+ pkgconfig is a Python module to interface with the pkg-config command line tool
+ and supports Python 2.6+.
+ It cabe used to:
+ -Check if a package exists
+ -Check if a package meets certain version requirements
+ -Query CFLAGS and LDFLAGS
+ -Parse the output to build extensions with setup.py
+
+Package: python3-pkgconfig
+Architecture: all
+Depends: ${python3:Depends}, ${misc:Depends}
+Description: Python 3 interface to the pkg-config command line tool
+ pkgconfig is a Python module to interface with the pkg-config command line tool
+ and supports Python 3
+ It cabe used to:
+ -Check if a package exists
+ -Check if a package meets certain version requirements
+ -Query CFLAGS and LDFLAGS
+ -Parse the output to build extensions with setup.py
\ No newline at end of file
Added: packages/pkgconfig/pkgconfig/trunk/debian/copyright
===================================================================
--- packages/pkgconfig/pkgconfig/trunk/debian/copyright (rev 0)
+++ packages/pkgconfig/pkgconfig/trunk/debian/copyright 2014-08-16 19:43:16 UTC (rev 30173)
@@ -0,0 +1,30 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: pkgconfig
+Source: https://github.com/matze/pkgconfig
+
+Files: *
+Copyright: 2013 Matthias Vogelgesang <matthias.vogelgesang at gmail.com>
+License: MIT
+
+Files: debian/*
+Copyright: 2014 Josue Ortega <josueortega at debian.org.gt>
+License: MIT
+
+License: MIT
+ Permission is hereby granted, free of charge, to any person obtaining a
+ copy of this software and associated documentation files (the "Software"),
+ to deal in the Software without restriction, including without limitation
+ the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ and/or sell copies of the Software, and to permit persons to whom the
+ Software is furnished to do so, subject to the following conditions:
+ .
+ The above copyright notice and this permission notice shall be included
+ in all copies or substantial portions of the Software.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+ OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Added: packages/pkgconfig/pkgconfig/trunk/debian/docs
===================================================================
--- packages/pkgconfig/pkgconfig/trunk/debian/docs (rev 0)
+++ packages/pkgconfig/pkgconfig/trunk/debian/docs 2014-08-16 19:43:16 UTC (rev 30173)
@@ -0,0 +1 @@
+README.rst
Added: packages/pkgconfig/pkgconfig/trunk/debian/rules
===================================================================
--- packages/pkgconfig/pkgconfig/trunk/debian/rules (rev 0)
+++ packages/pkgconfig/pkgconfig/trunk/debian/rules 2014-08-16 19:43:16 UTC (rev 30173)
@@ -0,0 +1,8 @@
+#!/usr/bin/make -f
+
+#DH_VERBOSE = 1
+
+export PYBUILD_NAME=pkgconfig
+
+%:
+ dh $@ --with python2,python3 --buildsystem=pybuild
Property changes on: packages/pkgconfig/pkgconfig/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
+ *
Added: packages/pkgconfig/pkgconfig/trunk/debian/source/format
===================================================================
--- packages/pkgconfig/pkgconfig/trunk/debian/source/format (rev 0)
+++ packages/pkgconfig/pkgconfig/trunk/debian/source/format 2014-08-16 19:43:16 UTC (rev 30173)
@@ -0,0 +1 @@
+3.0 (quilt)
Added: packages/pkgconfig/pkgconfig/trunk/debian/watch
===================================================================
--- packages/pkgconfig/pkgconfig/trunk/debian/watch (rev 0)
+++ packages/pkgconfig/pkgconfig/trunk/debian/watch 2014-08-16 19:43:16 UTC (rev 30173)
@@ -0,0 +1,3 @@
+version=3
+opts=filenamemangle=s/.+\/v?(\d\S*)\.tar\.gz/pkgconfig-$1\.tar\.gz/ \
+ https://github.com/matze/pkgconfig/tags .*/v?(\d\S*)\.tar\.gz
\ No newline at end of file
More information about the Python-modules-commits
mailing list