pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/pkgtools/url2pkg
Module Name: pkgsrc
Committed By: rillig
Date: Thu Aug 25 20:10:43 UTC 2022
Modified Files:
pkgsrc/pkgtools/url2pkg: PLIST
Added Files:
pkgsrc/pkgtools/url2pkg/files/python/distutils: errors.py
pkgsrc/pkgtools/url2pkg/files/python/distutils/command: __init__.py
build_ext.py
Log Message:
pkgtools/url2pkg: add support for distutils.errors
Needed for geography/py-maxmindb.
To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 pkgsrc/pkgtools/url2pkg/PLIST
cvs rdiff -u -r0 -r1.1 \
pkgsrc/pkgtools/url2pkg/files/python/distutils/errors.py
cvs rdiff -u -r0 -r1.1 \
pkgsrc/pkgtools/url2pkg/files/python/distutils/command/__init__.py \
pkgsrc/pkgtools/url2pkg/files/python/distutils/command/build_ext.py
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/pkgtools/url2pkg/PLIST
diff -u pkgsrc/pkgtools/url2pkg/PLIST:1.11 pkgsrc/pkgtools/url2pkg/PLIST:1.12
--- pkgsrc/pkgtools/url2pkg/PLIST:1.11 Thu Aug 25 19:51:59 2022
+++ pkgsrc/pkgtools/url2pkg/PLIST Thu Aug 25 20:10:42 2022
@@ -1,9 +1,12 @@
-@comment $NetBSD: PLIST,v 1.11 2022/08/25 19:51:59 rillig Exp $
+@comment $NetBSD: PLIST,v 1.12 2022/08/25 20:10:42 rillig Exp $
bin/url2pkg
lib/url2pkg/ExtUtils/MakeMaker.pm
lib/url2pkg/Module/Build.pm
lib/url2pkg/python/distutils/__init__.py
+lib/url2pkg/python/distutils/command/__init__.py
+lib/url2pkg/python/distutils/command/build_ext.py
lib/url2pkg/python/distutils/core.py
+lib/url2pkg/python/distutils/errors.py
lib/url2pkg/python/distutils/extension.py
lib/url2pkg/python/distutils/version.py
lib/url2pkg/python/setuptools/__init__.py
Added files:
Index: pkgsrc/pkgtools/url2pkg/files/python/distutils/errors.py
diff -u /dev/null pkgsrc/pkgtools/url2pkg/files/python/distutils/errors.py:1.1
--- /dev/null Thu Aug 25 20:10:43 2022
+++ pkgsrc/pkgtools/url2pkg/files/python/distutils/errors.py Thu Aug 25 20:10:42 2022
@@ -0,0 +1,19 @@
+# $NetBSD: errors.py,v 1.1 2022/08/25 20:10:42 rillig Exp $
+#
+# Fake implementation of distutils.errors.
+#
+# https://docs.python.org/3/distutils/apiref.html#module-distutils.errors
+
+# used by pkgsrc package geography/py-maxminddb 2.2.0
+class CCompilerError(Exception):
+ pass
+
+
+# used by pkgsrc package geography/py-maxminddb 2.2.0
+class DistutilsExecError(Exception):
+ pass
+
+
+# used by pkgsrc package geography/py-maxminddb 2.2.0
+class DistutilsPlatformError(Exception):
+ pass
Index: pkgsrc/pkgtools/url2pkg/files/python/distutils/command/__init__.py
diff -u /dev/null pkgsrc/pkgtools/url2pkg/files/python/distutils/command/__init__.py:1.1
--- /dev/null Thu Aug 25 20:10:43 2022
+++ pkgsrc/pkgtools/url2pkg/files/python/distutils/command/__init__.py Thu Aug 25 20:10:43 2022
@@ -0,0 +1,5 @@
+# $NetBSD: __init__.py,v 1.1 2022/08/25 20:10:43 rillig Exp $
+#
+# Fake implementation of distutils.command.
+#
+# https://docs.python.org/3/distutils/apiref.html#module-distutils.command
Index: pkgsrc/pkgtools/url2pkg/files/python/distutils/command/build_ext.py
diff -u /dev/null pkgsrc/pkgtools/url2pkg/files/python/distutils/command/build_ext.py:1.1
--- /dev/null Thu Aug 25 20:10:43 2022
+++ pkgsrc/pkgtools/url2pkg/files/python/distutils/command/build_ext.py Thu Aug 25 20:10:43 2022
@@ -0,0 +1,8 @@
+# $NetBSD: build_ext.py,v 1.1 2022/08/25 20:10:43 rillig Exp $
+#
+# Fake implementation of distutils.command.build_ext.
+#
+# https://docs.python.org/3/distutils/apiref.html#module-distutils.command.build_ext
+
+class build_ext():
+ pass
Home |
Main Index |
Thread Index |
Old Index