summaryrefslogtreecommitdiff
path: root/gnu/packages/patches/python-configobj-setuptools.patch
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-10-18 08:22:45 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-10-18 12:54:05 +0100
commitbf18de787bf426dda95038e67506cc741f362fd1 (patch)
treebcc0f48f5f4e8fa8958b5136c57bf720e036d749 /gnu/packages/patches/python-configobj-setuptools.patch
parentb56d8a5a18dcc421a6c6d2cac9b2039b3d511d11 (diff)
gnu: python-configobj: Update to 5.0.9.
* gnu/packages/python-xyz.scm (python-configobj): Update to 5.0.9. Improve package style. [source] <patch>: Remove as no longer required. [build-system]: Switch to pyproject-build-system. [propagated-inputs]: Remove python-six. [native-inputs]: Add python-pytest and python-setuptools. * gnu/packages/patches/python-configobj-setuptools.patch: Delete file. * gnu/packages/python-xyz.scm (dist_patch_DATA): Deregister patch. Change-Id: I5ab0522a85626562d5ee4f0f2d02728f3d0459ba
Diffstat (limited to 'gnu/packages/patches/python-configobj-setuptools.patch')
-rw-r--r--gnu/packages/patches/python-configobj-setuptools.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/gnu/packages/patches/python-configobj-setuptools.patch b/gnu/packages/patches/python-configobj-setuptools.patch
deleted file mode 100644
index 3f207ffd74..0000000000
--- a/gnu/packages/patches/python-configobj-setuptools.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From 16fbc38f13e435b4e3e1a37d706e64e05bad4691 Mon Sep 17 00:00:00 2001
-From: Leo Famulari <leo@famulari.name>
-Date: Tue, 10 Nov 2015 23:09:24 -0500
-Subject: [PATCH] patch build to use setuptools
-
----
- setup.py | 8 +++++++-
- 1 file changed, 7 insertions(+), 1 deletion(-)
-
-diff --git a/setup.py b/setup.py
-index c6d57a6..27bf260 100644
---- a/setup.py
-+++ b/setup.py
-@@ -12,7 +12,12 @@
- # http://opensource.org/licenses/BSD-3-Clause
- import os
- import sys
--from distutils.core import setup
-+
-+try:
-+ from setuptools import setup
-+except ImportError:
-+ from distutils.core import setup
-+
- # a simple import wouldn't work if we moved towards a package with __init__
- from _version import __version__
-
---
-2.6.2
-