~ubuntu-branches/ubuntu/trusty/subversion/trusty-proposed

« back to all changes in this revision

Viewing changes to packages/python-windows/setup.py

  • Committer: Package Import Robot
  • Author(s): Andy Whitcroft
  • Date: 2012-06-21 15:36:36 UTC
  • mfrom: (0.4.13 sid)
  • Revision ID: package-import@ubuntu.com-20120621153636-amqqmuidgwgxz1ly
Tags: 1.7.5-1ubuntu1
* Merge from Debian unstable.  Remaining changes:
  - Create pot file on build.
  - Build a python-subversion-dbg package.
  - Build-depend on python-dbg.
  - Build-depend on default-jre-headless/-jdk.
  - Do not apply java-build patch.
  - debian/rules: Manually create the doxygen output directory, otherwise
    we get weird build failures when running parallel builds.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/env python
2
 
 
3
 
# ====================================================================
4
 
# Copyright (c) 2006 CollabNet.  All rights reserved.
5
 
#
6
 
# This software is licensed as described in the file COPYING, which
7
 
# you should have received as part of this distribution.  The terms
8
 
# are also available at http://subversion.tigris.org/license-1.html.
9
 
# If newer versions of this license are posted there, you may use a
10
 
# newer version instead, at your option.
11
 
#
12
 
# This software consists of voluntary contributions made by many
13
 
# individuals.  For exact contribution history, see the revision
14
 
# history and logs, available at http://subversion.tigris.org/.
15
 
# ====================================================================
16
 
 
17
 
from distutils.core import setup
18
 
 
19
 
setup (name = "svn-python",
20
 
       description = "Subversion Python Bindings",
21
 
       maintainer = "Subversion Developers <dev@subversion.tigris.org>",
22
 
       url = "http://subversion.tigris.org",
23
 
       version = "1.4.0",
24
 
       packages = ["libsvn", "svn"],
25
 
       package_data = {"libsvn": ["*.dll"]})