Changeset 3156

Show
Ignore:
Timestamp:
03/23/07 16:16:30 (17 years ago)
Author:
jerome
Message:

Removed NEWS file, it will now be generated on-demand with the gentarball.sh command line tool.

Location:
pykota/trunk
Files:
2 added
1 removed
3 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/clean.sh

    r3133 r3156  
    2424# Use this to clean the tree from temporary files 
    2525 
    26 rm -f MANIFEST 
     26rm -f MANIFEST ChangeLog 
    2727find . -name "*.bak" -exec rm -f {} \; 
    2828find . -name "*~" -exec rm -f {} \; 
  • pykota/trunk/MANIFEST.in

    r3063 r3156  
    1 include README FAQ COPYING LICENSE TODO NEWS CREDITS SECURITY MANIFEST.in  
    2 include clean.sh checkdeps.py bin/pkturnkey bin/pkmail bin/pkbanner 
     1include README FAQ COPYING LICENSE TODO ChangeLog AUTHORS CREDITS SECURITY MANIFEST.in  
     2include clean.sh gentarball.sh checkdeps.py bin/pkturnkey bin/pkmail bin/pkbanner 
    33include bin/autopykota bin/dumpykota bin/cupspykota bin/edpykota bin/warnpykota 
    44include bin/repykota bin/pykotme bin/pykosd bin/pkprinters bin/pkbcodes bin/pkinvoice 
  • pykota/trunk/setup.py

    r3133 r3156  
    4949     
    5050docdir = "share/doc/pykota"     
    51 docfiles = ["README", "FAQ", "SECURITY", "COPYING", "LICENSE", "CREDITS", "TODO", "NEWS"] 
     51docfiles = ["README", "FAQ", "SECURITY", "COPYING", "LICENSE", "CREDITS", "TODO"] 
     52if os.path.exists("ChangeLog") : 
     53    docfiles.append("ChangeLog") 
    5254data_files.append((docdir, docfiles)) 
    5355