summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorClint Adams <clint@debian.org>2014-02-25 13:03:49 -0500
committerAndrew Shadura <andrewsh@debian.org>2016-10-19 17:56:53 +0200
commit48f73f7fc980eb923bf453e175dfd6c128c48063 (patch)
tree5b9a4663bea5713968b3a473e52f0300d58c48af /debian
parentbdbd753fe4ab2de979939bae4caf93b16f6b5efc (diff)
Imported Debian patch 0.14-1
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog5
-rw-r--r--debian/compat1
-rw-r--r--debian/control52
-rw-r--r--debian/copyright33
-rw-r--r--debian/python-ofxparse.docs1
-rw-r--r--debian/python3-ofxparse.docs1
-rwxr-xr-xdebian/rules9
-rw-r--r--debian/source/format1
-rw-r--r--debian/watch3
9 files changed, 106 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..f40cae1
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+python-ofxparse (0.14-1) unstable; urgency=low
+
+ * Initial release.
+
+ -- Clint Adams <clint@debian.org> Tue, 25 Feb 2014 13:03:49 -0500
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..08a8b11
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,52 @@
+Source: python-ofxparse
+Section: python
+Priority: optional
+Maintainer: Clint Adams <clint@debian.org>
+Build-Depends: debhelper (>= 9)
+ , dh-python
+ , python-all (>= 2.7~)
+ , python-setuptools
+ , python3-all
+ , python3-setuptools
+ , python-six
+ , python3-six
+ , python-bs4
+ , python3-bs4
+Standards-Version: 3.9.5
+Homepage: https://sites.google.com/site/ofxparse/
+X-Python-Version: >= 2.7
+X-Python3-Version: >= 3.2
+
+Package: python-ofxparse
+Architecture: all
+Depends: ${python:Depends}, ${misc:Depends}
+Description: parser for Open Financial Exchange (.ofx) format files
+ ofxparse is a parser for Open Financial Exchange (.ofx) format files.
+ OFX files are available from almost any online banking site, so they
+ work well if you want to pull together your finances from multiple
+ sources. Online trading accounts also provide account statements in
+ OFX files.
+ .
+ There are three different types of OFX files, called BankAccount,
+ CreditAccount and InvestmentAccount files. This library has been
+ tested with real-world samples of all three types. If you find a file
+ that does not work with this library, please consider contributing the
+ file so ofxparse can be improved. See the Help! section below for
+ directions on how to do this.
+
+Package: python3-ofxparse
+Architecture: all
+Depends: ${python3:Depends}, ${misc:Depends}
+Description: parser for Open Financial Exchange (.ofx) format files
+ ofxparse is a parser for Open Financial Exchange (.ofx) format files.
+ OFX files are available from almost any online banking site, so they
+ work well if you want to pull together your finances from multiple
+ sources. Online trading accounts also provide account statements in
+ OFX files.
+ .
+ There are three different types of OFX files, called BankAccount,
+ CreditAccount and InvestmentAccount files. This library has been
+ tested with real-world samples of all three types. If you find a file
+ that does not work with this library, please consider contributing the
+ file so ofxparse can be improved. See the Help! section below for
+ directions on how to do this.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..7d4f802
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,33 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: ofxparse
+Source: https://pypi.python.org/pypi/ofxparse
+
+Files: *
+Copyright: 2009 Jerry Seutter
+License: Expat
+
+Files: debian/*
+Copyright: 2014 Clint Adams <clint@debian.org>
+License: Expat
+
+License: Expat
+ 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.
diff --git a/debian/python-ofxparse.docs b/debian/python-ofxparse.docs
new file mode 100644
index 0000000..e845566
--- /dev/null
+++ b/debian/python-ofxparse.docs
@@ -0,0 +1 @@
+README
diff --git a/debian/python3-ofxparse.docs b/debian/python3-ofxparse.docs
new file mode 100644
index 0000000..e845566
--- /dev/null
+++ b/debian/python3-ofxparse.docs
@@ -0,0 +1 @@
+README
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..ad98a9e
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,9 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+#export DH_VERBOSE=1
+export PYBUILD_NAME=ofxparse
+
+
+%:
+ dh $@ --with python2,python3 --buildsystem=pybuild
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..63b2aba
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts=uversionmangle=s/(rc|dev|a|b|c)/~$1/ \
+ https://pypi.python.org/packages/source/o/ofxparse/ofxparse-(.*)\.(?:tar\.gz|zip|tar\.bz2)