Changeset 130:b7b1349ad770

Show
Ignore:
Timestamp:
11/08/08 19:51:38 (3 years ago)
Author:
chris
Branch:
unix
Message:

use bdist_debain found from Gene Cash to create a debian package

Files:
1 added
2 modified

Legend:

Unmodified
Added
Removed
  • Makefile

    r125 r130  
    55.PHONY : clean 
    66clean: 
    7         rm -f $(TRASH) 
    8         rm -rf build dist 
     7        rm -f $(TRASH) MANIFEST 
     8        rm -rf build dist StormSiren.egg-info 
    99        cd StormSiren && rm -f $(TRASH) 
    1010 
  • setup.py

    r125 r130  
    55# 
    66 
    7 from distutils.core import setup 
     7import bdist_debian 
     8 
     9try: 
     10        from setuptools import setup 
     11except ImportError: 
     12        from distutils.core import setup 
     13 
     14version = file('VERSION').read().strip() 
    815 
    916setup(name="StormSiren", 
    10       version="2.0", 
     17      version=version, 
    1118      description="StormSiren is an application that allows individuals to receive weather alert notifications.", 
     19          long_description="StormSiren is an Internet application that allows\nindividuals to receive alert notifications via\nEmail, SMS, Jabber Instant Messaging, playing\nsound files, external program execution, MythTV\nvisual alerts, and OSD (On Screen Display) visual\nalerts of weather events posted by the NOAA. This\nis a rewrite of the original StormSiren created by\nRory McManus. StormSiren is free, open source,\nsoftware distributed under the Berkley license.", 
    1220      author="Chris Freeze", 
    1321      author_email="cfreeze@users.sourceforge.net", 
    1422      url="http://www.cfreeze.com/trac/stormsiren/", 
     23          keywords="weather science", 
     24          maintainer="Chris Freeze", 
     25          maintainer_email="cfreeze@users.sourceforge.net", 
     26          depends="python", 
    1527      license="BSD", 
     28      recommends="python-xmppy", 
     29      suggests="cron", 
     30      section="user/other", 
     31      architecture="all", 
     32      essential="no", 
    1633      packages=[ 
    1734                   'StormSiren' 
     
    1936      scripts=[ 
    2037                       'StormSiren.py' 
    21               ] 
     38              #] 
     39              ], 
     40      cmdclass={'bdist_debian': bdist_debian.bdist_debian} 
    2241     )