mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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.
This commit is contained in:
parent
b7f1a1aafd
commit
68620d62f5
4 changed files with 82 additions and 0 deletions
19
gnu/packages/patches/enjarify-setup-py.patch
Normal file
19
gnu/packages/patches/enjarify-setup-py.patch
Normal file
|
@ -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(),
|
||||
+ )
|
||||
+
|
Loading…
Add table
Add a link
Reference in a new issue