/stdhome

To get this branch, use:
bzr branch http://bzr.ed.am/stdhome

« back to all changes in this revision

Viewing changes to src/stdhome.in

  • Committer: Tim Marston
  • Date: 2021-07-05 19:11:53 UTC
  • Revision ID: tim@ed.am-20210705191153-5jcbb6lxv5i15ypx
fix debian dist-package installation

Show diffs side-by-side

added added

removed removed

1
 
#!/usr/bin/python
 
1
#!/usr/bin/python3
2
2
#
3
3
# stdhome
4
4
#
28
28
        import sys
29
29
        from os.path import join, abspath, exists
30
30
 
 
31
        # add regular site-package directories (for debian)
 
32
        for path in sys.path:
 
33
                if path.endswith('dist-packages'):
 
34
                        sys.path.append( path[:-13] + 'site-packages' )
 
35
 
31
36
        # check for a development source directory and use that if it's there
32
37
        PACKAGE_DIR = join( abspath( sys.path[ 0 ] ), "..", "lib" )
33
38
        if exists( join( PACKAGE_DIR, "stdhome", "the.py" ) ):
34
 
                print >> sys.stderr, "!!! using development packages !!!"
 
39
                print("!!! using development packages !!!", file=sys.stderr)
35
40
                sys.path.insert( 0, PACKAGE_DIR )
36
41
        else:
37
42
                del PACKAGE_DIR
38
 
 
 
43
        
39
44
        # start main program
40
45
        from stdhome import the
41
46
        from stdhome.program import Program