You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bloodhound.apache.org by rj...@apache.org on 2013/02/09 17:09:51 UTC

svn commit: r1444387 - in /incubator/bloodhound/trunk: bloodhound_dashboard/setup.py bloodhound_multiproduct/setup.py bloodhound_search/setup.py bloodhound_theme/setup.py

Author: rjollos
Date: Sat Feb  9 16:09:50 2013
New Revision: 1444387

URL: http://svn.apache.org/r1444387
Log:
Added author, description, license and url to `setup.py` for all bloodhound plugins. These changes were made so that we don't have blank entries on the admin/general/plugin page.

Modified:
    incubator/bloodhound/trunk/bloodhound_dashboard/setup.py
    incubator/bloodhound/trunk/bloodhound_multiproduct/setup.py
    incubator/bloodhound/trunk/bloodhound_search/setup.py
    incubator/bloodhound/trunk/bloodhound_theme/setup.py

Modified: incubator/bloodhound/trunk/bloodhound_dashboard/setup.py
URL: http://svn.apache.org/viewvc/incubator/bloodhound/trunk/bloodhound_dashboard/setup.py?rev=1444387&r1=1444386&r2=1444387&view=diff
==============================================================================
--- incubator/bloodhound/trunk/bloodhound_dashboard/setup.py (original)
+++ incubator/bloodhound/trunk/bloodhound_dashboard/setup.py Sat Feb  9 16:09:50 2013
@@ -23,7 +23,7 @@ try:
 except ImportError:
     from distutils.core import setup
 
-DESC = """Project dashboard for Apache(TM) Bloodhound
+DESC = """Project dashboard for Apache(TM) Bloodhound.
 
 Add custom dashboards in multiple pages of Bloodhound sites.
 """
@@ -131,6 +131,9 @@ setup(
     name=DIST_NM,
     version=latest,
     description=DESC.split('\n', 1)[0],
+    author = "Apache Bloodhound",
+    license = "Apache License v2",
+    url = "http://incubator.apache.org/bloodhound/",
     requires = ['trac'],
     tests_require = ['dutest>=0.2.4', 'TracXMLRPC'],
     install_requires = [

Modified: incubator/bloodhound/trunk/bloodhound_multiproduct/setup.py
URL: http://svn.apache.org/viewvc/incubator/bloodhound/trunk/bloodhound_multiproduct/setup.py?rev=1444387&r1=1444386&r2=1444387&view=diff
==============================================================================
--- incubator/bloodhound/trunk/bloodhound_multiproduct/setup.py (original)
+++ incubator/bloodhound/trunk/bloodhound_multiproduct/setup.py Sat Feb  9 16:09:50 2013
@@ -22,6 +22,10 @@ from setuptools import setup
 setup(
     name = 'BloodhoundMultiProduct',
     version = '0.4.0',
+    description = "Multiproduct support for Apache(TM) Bloodhound.",
+    author = "Apache Bloodhound",
+    license = "Apache License v2",
+    url = "http://incubator.apache.org/bloodhound/",
     packages = ['multiproduct', 'multiproduct.ticket', 'tests',],
     package_data = {'multiproduct' : ['templates/*.html',]},
     entry_points = {'trac.plugins': [

Modified: incubator/bloodhound/trunk/bloodhound_search/setup.py
URL: http://svn.apache.org/viewvc/incubator/bloodhound/trunk/bloodhound_search/setup.py?rev=1444387&r1=1444386&r2=1444387&view=diff
==============================================================================
--- incubator/bloodhound/trunk/bloodhound_search/setup.py (original)
+++ incubator/bloodhound/trunk/bloodhound_search/setup.py Sat Feb  9 16:09:50 2013
@@ -23,7 +23,7 @@ try:
 except ImportError:
     from distutils.core import setup
 
-DESC = """Search plugin for Apache(TM) Bloodhound
+DESC = """Search plugin for Apache(TM) Bloodhound.
 
 Add free text search and query functionality to Bloodhound sites.
 """
@@ -128,6 +128,9 @@ setup(
     name=DIST_NM,
     version=latest,
     description=DESC.split('\n', 1)[0],
+    author = "Apache Bloodhound",
+    license = "Apache License v2",
+    url = "http://incubator.apache.org/bloodhound/",
     requires = ['trac'],
     install_requires = [
         'setuptools>=0.6b1',

Modified: incubator/bloodhound/trunk/bloodhound_theme/setup.py
URL: http://svn.apache.org/viewvc/incubator/bloodhound/trunk/bloodhound_theme/setup.py?rev=1444387&r1=1444386&r2=1444387&view=diff
==============================================================================
--- incubator/bloodhound/trunk/bloodhound_theme/setup.py (original)
+++ incubator/bloodhound/trunk/bloodhound_theme/setup.py Sat Feb  9 16:09:50 2013
@@ -23,8 +23,10 @@ from setuptools import setup
 setup(
   name = 'BloodhoundTheme',
   version = '0.4.0',
-  description = "Look and feel of Bloodhound issue tracker",
+  description = "Theme for Apache(TM) Bloodhound.",
+  author = "Apache Bloodhound",
   license = "Apache License v2",
+  url = "http://incubator.apache.org/bloodhound/",
   keywords = "trac plugin theme bloodhound",
   packages = ['bhtheme'],
   package_data = {'bhtheme': ['htdocs/*.*', 'htdocs/img/*.*',