diff options
author | Vagrant Cascadian <vagrant@reproducible-builds.org> | 2019-09-19 16:43:47 -0700 |
---|---|---|
committer | Vagrant Cascadian <vagrant@debian.org> | 2019-09-19 16:45:34 -0700 |
commit | 68620d62f5cd49d6455c351f3a68e3c41dc6ce22 (patch) | |
tree | 19f13c26b5d6ff895075fc7c21cb52b1234ed947 /gnu/packages/patches/enjarify-setup-py.patch | |
parent | b7f1a1aafd806fadee068a026964cde6521a5315 (diff) |
gnu: Add enjarify.
* gnu/packages/android (enjarify): New variable.
* gnu/packages/diffoscope (diffoscope)[native-inputs]: Add enjarify.
[arguments]: add enjarify to add-known-tools phase.
* gnu/packages/patches/enjarify-setup-py.patch: New file.
* gnu/local.mk: Add enjarify-setup-py.patch.
Diffstat (limited to 'gnu/packages/patches/enjarify-setup-py.patch')
-rw-r--r-- | gnu/packages/patches/enjarify-setup-py.patch | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/patches/enjarify-setup-py.patch b/gnu/packages/patches/enjarify-setup-py.patch new file mode 100644 index 0000000000..4b382ca320 --- /dev/null +++ b/gnu/packages/patches/enjarify-setup-py.patch @@ -0,0 +1,19 @@ +Author: Reiner Herrmann <reiner@reiner-h.de> +Origin: https://salsa.debian.org/android-tools-team/enjarify/blob/master/debian/patches/setup_py.patch +Description: provides a minimal setup.py to build/install the package + +Index: enjarify/setup.py +=================================================================== +--- /dev/null ++++ enjarify/setup.py +@@ -0,0 +1,10 @@ ++#!/usr/bin/env python3 ++ ++from setuptools import setup, find_packages ++ ++setup(name='enjarify', ++ version='1.0.3', ++ url='https://github.com/google/enjarify', ++ packages=find_packages(), ++ ) ++ |