Author: Reiner Herrmann 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(), + ) + href='/'>index : guix
Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/patches/calibre-remove-test-unrar.patch
AgeCommit message (Expand)Author
2021-04-09gnu: calibre: Update to 5.14.0....* gnu/packages/ebook.scm (calibre): Update to 5.14.0. [source]: Adjust the snippet to preserve some files used by the HTML reader. [native-inputs]: Add python-pyqt-builder. Replace python2-flake8 with python-flake8. [inputs]: Remove chmlib, js-mathjax, python-chardet, and python-sip. Add python-cchardet, python-speechd, python-zeroconf, python-py7zr, python-pychm, python-pycryptodome, libjpeg, and libjxr. Replace all Python 2 dependencies with their Python 3 equivalents. [arguments]: Build with the default Python and adjust custom phases accordingly. Adjust the 'configure' phase to changes in how Calibre uses SIP, and patch lookup paths for libjpeg and libjxr. Rename the 'build-extra' phase to 'install-rapydscript', and run it after the 'install' phase. Adjust it for Calibre 5.14.0. * gnu/packages/patches/calibre-no-updates-dialog.patch, gnu/packages/patches/calibre-remove-test-sqlite.patch, gnu/packages/patches/calibre-remove-test-unrar.patch: Adjust patches for Calibre 5.14.0. Brendan Tildesley