From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:37854) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1heH0b-0005An-Qw for guix-patches@gnu.org; Fri, 21 Jun 2019 06:43:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1heH0Y-0006q6-Lh for guix-patches@gnu.org; Fri, 21 Jun 2019 06:43:05 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:36220) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1heH0Y-0006pe-Fc for guix-patches@gnu.org; Fri, 21 Jun 2019 06:43:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1heH0Y-0002F0-9B for guix-patches@gnu.org; Fri, 21 Jun 2019 06:43:02 -0400 Subject: [bug#36194] [PATCH 01/10 v2] gnu: Add python-slugify. Resent-Message-ID: References: <20190613150126.17280-1-pierre.langlois@gmx.com> <20190613150627.1882-1-pierre.langlois@gmx.com> From: Pierre Langlois In-reply-to: <20190613150627.1882-1-pierre.langlois@gmx.com> Date: Fri, 21 Jun 2019 11:42:23 +0100 Message-ID: <87ef3nfcds.fsf@gmx.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 36194@debbugs.gnu.org --=-=-= Content-Type: text/plain Pierre Langlois writes: > * gnu/packages/python-web.scm (python-slugify): New variable. > * gnu/packages/patches/python-slugify-depend-on-unidecode.patch: New file. > * gnu/local.mk (dist_patch_DATA): Add it. > --- > gnu/local.mk | 1 + > .../python-slugify-depend-on-unidecode.patch | 22 +++++++++++++ > gnu/packages/python-web.scm | 31 +++++++++++++++++++ > 3 files changed, 54 insertions(+) > create mode 100644 gnu/packages/patches/python-slugify-depend-on-unidecode.patch > > diff --git a/gnu/local.mk b/gnu/local.mk > index c7b557ca61..f8c33dd8c2 100644 > --- a/gnu/local.mk > +++ b/gnu/local.mk > @@ -1214,6 +1214,7 @@ dist_patch_DATA = \ > %D%/packages/patches/python2-pygobject-2-gi-info-type-error-domain.patch \ > %D%/packages/patches/python-pygpgme-fix-pinentry-tests.patch \ > %D%/packages/patches/python-robotframework-honor-source-date-epoch.patch \ > + %D%/packages/patches/python-slugify-depend-on-unidecode.patch \ > %D%/packages/patches/python2-subprocess32-disable-input-test.patch \ > %D%/packages/patches/python-unittest2-python3-compat.patch \ > %D%/packages/patches/python-unittest2-remove-argparse.patch \ > diff --git a/gnu/packages/patches/python-slugify-depend-on-unidecode.patch b/gnu/packages/patches/python-slugify-depend-on-unidecode.patch > new file mode 100644 > index 0000000000..93a3aaebe9 > --- /dev/null > +++ b/gnu/packages/patches/python-slugify-depend-on-unidecode.patch > @@ -0,0 +1,22 @@ > +diff --git a/setup.py b/setup.py > +index 4800173..6bdd77f 100755 > +--- a/setup.py > ++++ b/setup.py > +@@ -14,8 +14,7 @@ url = 'https://github.com/un33k/python-slugify' > + author = 'Val Neekman' > + author_email = 'info@neekware.com' > + license = 'MIT' > +-install_requires = ['text-unidecode==1.2'] > +-extras_require = {'unidecode': ['Unidecode==1.0.23']} > ++install_requires = ['Unidecode==1.0.23'] Ah, the python-unidecode package was just updated to version 1.1.0 which then breaks csvkit. Here's a fixed patch that ignores the version number, the tests pass so I think we're good still. Thanks! Pierre --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: attachment; filename=0001-gnu-Add-python-slugify.patch Content-Transfer-Encoding: quoted-printable >From 39110b5dc66485cdda73b85bc46ff9ff2c85b97f Mon Sep 17 00:00:00 2001 From: Pierre Langlois Date: Wed, 12 Jun 2019 21:15:27 +0100 Subject: [PATCH] gnu: Add python-slugify. * gnu/packages/python-web.scm (python-slugify): New variable. * gnu/packages/patches/python-slugify-depend-on-unidecode.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. --- gnu/local.mk | 1 + .../python-slugify-depend-on-unidecode.patch | 22 +++++++++++++ gnu/packages/python-web.scm | 31 +++++++++++++++++++ 3 files changed, 54 insertions(+) create mode 100644 gnu/packages/patches/python-slugify-depend-on-unidecode= .patch diff --git a/gnu/local.mk b/gnu/local.mk index 4c54f024e0..28d9d118a6 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -1223,6 +1223,7 @@ dist_patch_DATA =3D \ %D%/packages/patches/python2-pygobject-2-gi-info-type-error-domain.patch= \ %D%/packages/patches/python-pygpgme-fix-pinentry-tests.patch \ %D%/packages/patches/python-robotframework-honor-source-date-epoch.patch= \ + %D%/packages/patches/python-slugify-depend-on-unidecode.patch \ %D%/packages/patches/python2-subprocess32-disable-input-test.patch \ %D%/packages/patches/python-unittest2-python3-compat.patch \ %D%/packages/patches/python-unittest2-remove-argparse.patch \ diff --git a/gnu/packages/patches/python-slugify-depend-on-unidecode.patch = b/gnu/packages/patches/python-slugify-depend-on-unidecode.patch new file mode 100644 index 0000000000..6038f432f1 --- /dev/null +++ b/gnu/packages/patches/python-slugify-depend-on-unidecode.patch @@ -0,0 +1,22 @@ +diff --git a/setup.py b/setup.py +index 4800173..6bdd77f 100755 +--- a/setup.py ++++ b/setup.py +@@ -14,8 +14,7 @@ url =3D 'https://github.com/un33k/python-slugify' + author =3D 'Val Neekman' + author_email =3D 'info@neekware.com' + license =3D 'MIT' +-install_requires =3D ['text-unidecode=3D=3D1.2'] +-extras_require =3D {'unidecode': ['Unidecode=3D=3D1.0.23']} ++install_requires =3D ['Unidecode'] +=20 + classifiers =3D [ + 'Development Status :: 5 - Production/Stable', +@@ -67,7 +66,6 @@ setup( + author_email=3Dauthor_email, + packages=3Dfind_packages(exclude=3DEXCLUDE_FROM_PACKAGES), + install_requires=3Dinstall_requires, +- extras_require=3Dextras_require, + classifiers=3Dclassifiers, + entry_points=3D{'console_scripts': ['slugify=3Dslugify.slugify:main']= }, + ) diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index cbcbe6c867..e441cbaa81 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -29,6 +29,7 @@ ;;; Copyright =C2=A9 2018 Maxim Cournoyer ;;; Copyright =C2=A9 2019 Vagrant Cascadian ;;; Copyright =C2=A9 2019 Brendan Tildesley +;;; Copyright =C2=A9 2019 Pierre Langlois ;;; ;;; This file is part of GNU Guix. ;;; @@ -3165,3 +3166,33 @@ Python.") (propagated-inputs `(("python-gevent" ,python2-gevent) ("python-tornado" ,python2-tornado))))) + +(define-public python-slugify + (package + (name "python-slugify") + (version "3.0.2") + (source + (origin + (method url-fetch) + (uri (pypi-uri "python-slugify" version)) + (sha256 + (base32 + "0n6pfmsq899c54plpvzi46l7zrpa3zfpm8im6h32czjw6kxky5jp")) + (patches + (search-patches "python-slugify-depend-on-unidecode.patch")))) + (native-inputs + `(("python-wheel" ,python-wheel))) + (propagated-inputs + `(("python-unidecode" ,python-unidecode))) + (arguments + `(#:phases + (modify-phases %standard-phases + (replace 'check + (lambda _ + (invoke "python" "test.py")))))) + (build-system python-build-system) + (home-page "https://github.com/un33k/python-slugify") + (synopsis "Python Slugify application that handles Unicode") + (description "This package provides a @command{slufigy} command and +library to create slugs from unicode strings while keeping it DRY.") + (license license:expat))) --=20 2.22.0 --=-=-=--