pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/inputmethod/ibus-table
Module Name: pkgsrc
Committed By: maya
Date: Wed Dec 18 01:46:06 UTC 2024
Modified Files:
pkgsrc/inputmethod/ibus-table: Makefile
Log Message:
ibus-table: require python3.10 or python3.11
this uses 'imp' module which was removed in python 3.12.
To generate a diff of this commit:
cvs rdiff -u -r1.30 -r1.31 pkgsrc/inputmethod/ibus-table/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/inputmethod/ibus-table/Makefile
diff -u pkgsrc/inputmethod/ibus-table/Makefile:1.30 pkgsrc/inputmethod/ibus-table/Makefile:1.31
--- pkgsrc/inputmethod/ibus-table/Makefile:1.30 Mon Oct 23 06:37:46 2023
+++ pkgsrc/inputmethod/ibus-table/Makefile Wed Dec 18 01:46:06 2024
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.30 2023/10/23 06:37:46 wiz Exp $
+# $NetBSD: Makefile,v 1.31 2024/12/18 01:46:06 maya Exp $
DISTNAME= ibus-table-1.9.2
PKGREVISION= 7
@@ -24,7 +24,8 @@ SUBST_FILES.prefix= engine/tabcreatedb.p
SUBST_SED.prefix= -e 's|/usr/share|${PREFIX}/share|g'
REPLACE_PYTHON+= engine/tabcreatedb.py
-PYTHON_VERSIONS_INCOMPATIBLE= 27
+# Needs 'imp' removed in 3.12
+PYTHON_VERSIONS_ACCEPTED= 310 311
.include "../../lang/python/batteries-included.mk"
.include "../../lang/python/application.mk"
Home |
Main Index |
Thread Index |
Old Index