From: stevenknight Date: Tue, 26 Aug 2008 14:09:06 +0000 (+0000) Subject: Issue 2112: create a separate single-line description and make the X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=7d5250c297b705a148488f8f6bd9ef5483a61d73;p=scons.git Issue 2112: create a separate single-line description and make the current description the long_description to satisfy RPM packaging. (khomenko) git-svn-id: http://scons.tigris.org/svn/scons/trunk@3312 fdb21ef1-2011-0410-befe-b5e4ea1792b1 --- diff --git a/src/CHANGES.txt b/src/CHANGES.txt index 04e19b7d..9cc05f91 100644 --- a/src/CHANGES.txt +++ b/src/CHANGES.txt @@ -20,6 +20,10 @@ RELEASE 1.0.0 - XXX - Document the ParseDepends() function in the User's Guide. + From khomenko: + + - Create a separate description and long_description for RPM packages. + From Steven Knight: - Document the GetLaunchDir() function in the User's Guide. diff --git a/src/setup.py b/src/setup.py index b49a7af0..e1d4fabb 100644 --- a/src/setup.py +++ b/src/setup.py @@ -361,7 +361,9 @@ class install_data(_install_data): else: self.data_files = [] -description = """Open Source next-generation build tool. +description = "Open Source next-generation build tool." + +long_description = """Open Source next-generation build tool. Improved, cross-platform substitute for the classic Make utility. In short, SCons is an easier, more reliable and faster way to build software.""" @@ -387,6 +389,7 @@ arguments = { 'name' : "scons", 'version' : Version, 'description' : description, + 'long_description' : long_description, 'author' : 'Steven Knight', 'author_email' : 'knight@baldmt.com', 'url' : "http://www.scons.org/",