diff options
author | Thomas Goirand <thomas@goirand.fr> | 2013-05-12 08:00:27 +0000 |
---|---|---|
committer | Thomas Goirand <thomas@goirand.fr> | 2013-05-12 08:20:03 +0000 |
commit | 4523d576e9ad73f7ef14515bffc7c99c6184cdfd (patch) | |
tree | 2b0554b66573164330f3534f552d155571d066bd | |
parent | 5bd9dcbb0a66c8bd29e39b9096eb0166409c95ff (diff) | |
download | factory-boy-4523d576e9ad73f7ef14515bffc7c99c6184cdfd.tar factory-boy-4523d576e9ad73f7ef14515bffc7c99c6184cdfd.tar.gz |
using distutils as build system due to the Makefile in the root folder.debian/2.0.2-1
Switched Architecture: to all from any
-rw-r--r-- | debian/changelog | 2 | ||||
-rw-r--r-- | debian/control | 4 | ||||
-rwxr-xr-x | debian/rules | 2 |
3 files changed, 5 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog index 5f0c897..5c8cf38 100644 --- a/debian/changelog +++ b/debian/changelog @@ -4,6 +4,8 @@ factory-boy (2.0.2-1) unstable; urgency=low * New upstream release. * Switched to debhelper / compat level 9. * Bumped StandardVersion. + * Switched Architecture: to all instead of any (there's no arch dependent + things that I can see in the produced binary). -- Thomas Goirand <zigo@debian.org> Sun, 12 May 2013 05:33:18 +0000 diff --git a/debian/control b/debian/control index 95fd125..14f03fb 100644 --- a/debian/control +++ b/debian/control @@ -7,14 +7,14 @@ Uploaders: Loic Dachary (OuoU) <loic@debian.org>, Thomas Goirand <zigo@debian.org>, Ghe Rivero <ghe.rivero@stackops.com>, Mehdi Abaakouk <sileht@sileht.net> -Build-Depends: debhelper (>= 9), python-dev (>=2.6.6-3~), openstack-pkg-tools +Build-Depends: debhelper (>= 9), python-all (>=2.6.6-3~), openstack-pkg-tools Standards-Version: 3.9.4 Homepage: https://github.com/rbarrois/factory_boy Vcs-Browser: http://anonscm.debian.org/gitweb/?p=openstack/factory-boy.git;a=summary Vcs-Git: git://anonscm.debian.org/openstack/factory-boy.git Package: python-factory-boy -Architecture: any +Architecture: all Pre-Depends: dpkg (>= 1.15.6~) Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}, Description: test fixtures replacement based on thoughtbot's factory_girl for Ruby diff --git a/debian/rules b/debian/rules index 137b5c6..c450391 100755 --- a/debian/rules +++ b/debian/rules @@ -7,4 +7,4 @@ UPSTREAM_GIT = git://github.com/rbarrois/factory_boy.git include /usr/share/openstack-pkg-tools/pkgos.make %: - dh $@ --with python2 + dh $@ --with python2 --buildsystem=python_distutils |