b2edc5f91f
Package changes: point HOMEPAGE to http://xen.org/ looks like the Xen peoples won't put a tarball on their http server for this; I built one from their repository and put it in ${MASTER_SITE_LOCAL} Summary of changes since 3.1.0: some of our patches have been integrated upstream, thanks to Christoph Egger various performances improvements and bug fixes, including some security fixes, and one bug that would lead to floating point register leak/corruption from HVM to PV guests on Intel VMX CPUs.
21 lines
729 B
Text
21 lines
729 B
Text
$NetBSD: patch-cs,v 1.2 2007/12/03 21:54:31 bouyer Exp $
|
|
|
|
--- misc/xen-python-path.orig 2007-11-15 00:35:27.000000000 +0100
|
|
+++ misc/xen-python-path 2007-12-03 12:45:29.000000000 +0100
|
|
@@ -22,14 +22,14 @@
|
|
# take the first installed instance of auxbin that we find, and then run it
|
|
# to determine the correct path, appending that to sys.path.
|
|
|
|
-AUXBIN = 'xen/util/auxbin.py'
|
|
+AUXBIN = 'site-packages/xen/util/auxbin.py'
|
|
|
|
import os
|
|
import os.path
|
|
import sys
|
|
|
|
for p in ['python%s' % sys.version[:3], 'python']:
|
|
- for l in ['/usr/lib64', '/usr/lib']:
|
|
+ for l in ['@PREFIX@/lib']:
|
|
for k in ['', 'site-packages/']:
|
|
d = os.path.join(l, p, k)
|
|
if os.path.exists(os.path.join(d, AUXBIN)):
|