File: 02_test-suite.patch

package info (click to toggle)
pymol 2.5.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 42,288 kB
  • sloc: cpp: 476,472; python: 76,538; ansic: 29,510; javascript: 6,792; sh: 47; makefile: 24
file content (51 lines) | stat: -rw-r--r-- 1,428 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
Author: Michael Banck <mbanck@debian.org>
Description: Patch to make the test-suite work during debian build-time.
Forwarded: not-needed
Last-Update: Mon, 13 Dec 2021 13:36:51 +0100 (Andreas Tille - patch deactivated since unused)

--- /dev/null
+++ b/test/pymol-test
@@ -0,0 +1,43 @@
+#!/usr/bin/env python3
+# NOTE: This file is now obsolete.  However it has been left functional
+# and intact in order to promote backwards compatibility with existing
+# PyMOL installs.
+#
+# Future installations should launch pymol by running:
+#   "python $PYMOL_PATH/modules/pymol/__init__.py" instead.
+# or
+#   by importing "pymol" from within a standalone Python script
+#   followed immediately by a call to pymol.finish_launching()
+
+import _thread
+import threading
+import os
+import sys
+import time
+import __main__
+
+# let pymol/__init__.py known that we're launching using the old way
+
+__main__.pymol_launch = 0
+
+if hasattr(__main__,"pymol_argv"):
+   pymol_argv = __main__.pymol_argv
+else:
+   pymol_argv = sys.argv
+
+modules_path = '../debian/pymol/usr/lib/python' + sys.version[0:3] + '/site-packages'
+
+if modules_path not in sys.path:
+   sys.path.append(modules_path)
+
+modules_path = '../debian/pymol/usr/lib/python' + sys.version[0:3] + '/dist-packages'
+
+if modules_path not in sys.path:
+   sys.path.append(modules_path)
+
+import pymol
+
+pymol.invocation.parse_args(pymol_argv)
+
+pymol.start_pymol()
+