summarylogtreecommitdiffstats
path: root/remove-argparse.patch
diff options
context:
space:
mode:
authorGeorge Macon2023-05-26 18:58:30 -0400
committerGeorge Macon2023-05-26 19:02:08 -0400
commite4502fea3f00a3b6829ab42b6f6eec039c9e8097 (patch)
treee003c905e750e6203996b874dc2dd8af8ed705f7 /remove-argparse.patch
parent5b0e48aee6666d543b371d3d050a02e46bae1cb1 (diff)
downloadaur-tarsnapper.tar.gz
Remove argparse dependency
Diffstat (limited to 'remove-argparse.patch')
-rw-r--r--remove-argparse.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/remove-argparse.patch b/remove-argparse.patch
new file mode 100644
index 000000000000..31d2a96b4195
--- /dev/null
+++ b/remove-argparse.patch
@@ -0,0 +1,11 @@
+diff -ur tarsnapper-0.5.0/setup.py tarsnapper-0.5.0-1/setup.py
+--- tarsnapper-0.5.0/setup.py 2018-07-08 05:10:32.000000000 -0400
++++ tarsnapper-0.5.0-1/setup.py 2023-05-26 18:51:07.633915850 -0400
+@@ -45,6 +45,6 @@
+ url='http://github.com/miracle2k/tarsnapper',
+ license='BSD',
+ packages=['tarsnapper'],
+- install_requires = ['argparse>=1.1', 'pyyaml>=3.09', 'python-dateutil>=2.4.0', 'pexpect>=3.1'],
++ install_requires = ['pyyaml>=3.09', 'python-dateutil>=2.4.0', 'pexpect>=3.1'],
+ **kw
+ )