mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-11 05:22:40 -04:00
16 lines
427 B
Plaintext
16 lines
427 B
Plaintext
$NetBSD: patch-aa,v 1.2 2014/12/05 17:07:49 rodent Exp $
|
|
|
|
Fix script name due to postfixing with PYVERSSUFFIX.
|
|
|
|
--- __pkginfo__.py.orig 2014-11-30 18:41:53.000000000 +0000
|
|
+++ __pkginfo__.py
|
|
@@ -37,7 +37,7 @@ author_email = "contact@logilab.fr"
|
|
|
|
|
|
from os.path import join
|
|
-scripts = [join('bin', 'pytest')]
|
|
+scripts = [join('bin', 'pytest' + sys.version[0:3])]
|
|
include_dirs = [join('test', 'data')]
|
|
|
|
install_requires = [
|