Sections
Timeline
View Tickets
New Ticket
Sub-Sections
Download
Unified Diff
Zip Archive
Metanav
Preferences
About Trac
Links
Slowchop Studios
Gerald Kaszuba
Advertisement

Changeset 79

Show
Ignore:
Timestamp:
07/07/08 09:17:40 (6 weeks ago)
Author:
gak
Message:
  • easy_install doesn't like installing man pages
Location:
trunk
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • trunk/MANIFEST.in

    r30 r79  
    11include examples/*.py 
     2include man/pycg.1 
    23include COPYING 
    34 
  • trunk/scripts/build_dist.sh

    r73 r79  
    11#!/bin/bash 
     2cd .. 
    23rm -fr build dist 
    34python setup.py clean 
     
    56python setup.py bdist_wininst 
    67cd dist 
    7 scp * gakman.com:/var/html/slowchop.com/pycallgraph/download/ 
     8scp * gakman.com:/var/www/slowchop.com/pycallgraph/download/ 
    89 
  • trunk/setup.py

    r74 r79  
    77 
    88# Only install the man page if the correct directory exists 
    9 man_path = '/usr/share/man/man1/' 
    10 if path.exists(man_path): 
    11     data_files=[['/usr/share/man/man1/', ['man/pycg.1']]] 
    12 else: 
    13     data_files=None 
     9# XXX: Commented because easy_install doesn't like it 
     10#man_path = '/usr/share/man/man1/' 
     11#if path.exists(man_path): 
     12#    data_files=[['/usr/share/man/man1/', ['man/pycg.1']]] 
     13#else: 
     14#    data_files=None 
     15 
     16data_files=None 
    1417 
    1518setup(