Changeset - 7c732f2047f8
[Not reviewed]
default
1 3 0
Mads Kiilerich - 9 years ago 2016-07-28 16:28:34
madski@unity3d.com
docs: drop empty Changelog in the documentation

Changelog.rst is empty and just refer to the Mercurial logs. More readable
release notes and other meta information is also available on the web site and
in announcement mails.
4 files changed with 3 insertions and 18 deletions:
0 comments (0 inline, 0 general)
docs/changelog.rst
Show inline comments
 
deleted file
docs/index.rst
Show inline comments
 
@@ -34,49 +34,48 @@ Kallithea Documentation
 
   usage/vcs_support
 
   usage/locking
 
   usage/statistics
 

	
 
**Administrator's guide**
 

	
 
.. toctree::
 
   :maxdepth: 1
 

	
 
   usage/email
 
   usage/performance
 
   usage/backup
 
   usage/debugging
 
   usage/troubleshooting
 
   usage/customization
 

	
 
**Development**
 

	
 
.. toctree::
 
   :maxdepth: 1
 

	
 
   contributing
 
   dev/translation
 
   dev/dbmigrations
 
   changelog
 

	
 
**API**
 

	
 
.. toctree::
 
   :maxdepth: 1
 

	
 
   api/api
 

	
 

	
 
Other topics
 
************
 

	
 
* :ref:`genindex`
 
* :ref:`search`
 

	
 

	
 
.. _virtualenv: http://pypi.python.org/pypi/virtualenv
 
.. _python: http://www.python.org/
 
.. _django: http://www.djangoproject.com/
 
.. _mercurial: http://mercurial.selenic.com/
 
.. _bitbucket: http://bitbucket.org/
 
.. _subversion: http://subversion.tigris.org/
 
.. _git: http://git-scm.com/
 
.. _celery: http://celeryproject.org/
scripts/manifest
Show inline comments
 
@@ -2,49 +2,48 @@
 
Apache-License-2.0.txt
 
CONTRIBUTORS
 
COPYING
 
Kallithea.egg-info/
 
Kallithea.egg-info/PKG-INFO
 
Kallithea.egg-info/SOURCES.txt
 
Kallithea.egg-info/dependency_links.txt
 
Kallithea.egg-info/entry_points.txt
 
Kallithea.egg-info/not-zip-safe
 
Kallithea.egg-info/paster_plugins.txt
 
Kallithea.egg-info/requires.txt
 
Kallithea.egg-info/top_level.txt
 
LICENSE-MERGELY.html
 
LICENSE.md
 
MANIFEST.in
 
MIT-Permissive-License.txt
 
PKG-INFO
 
README.rst
 
development.ini
 
docs/
 
docs/Makefile
 
docs/api/
 
docs/api/api.rst
 
docs/api/models.rst
 
docs/changelog.rst
 
docs/conf.py
 
docs/contributing.rst
 
docs/images/
 
docs/images/.img
 
docs/index.rst
 
docs/installation.rst
 
docs/installation_iis.rst
 
docs/installation_puppet.rst
 
docs/installation_win.rst
 
docs/installation_win_old.rst
 
docs/make.bat
 
docs/overview.rst
 
docs/readme.rst
 
docs/setup.rst
 
docs/theme/
 
docs/theme/nature/
 
docs/theme/nature/layout.html
 
docs/theme/nature/static/
 
docs/theme/nature/static/kallithea-logo.svg
 
docs/theme/nature/static/nature.css_t
 
docs/theme/nature/static/pygments.css
 
docs/theme/nature/theme.conf
 
docs/usage/
 
docs/usage/backup.rst
setup.py
Show inline comments
 
@@ -76,57 +76,54 @@ classifiers = [
 
    'Operating System :: OS Independent',
 
    'Programming Language :: Python',
 
    'Programming Language :: Python :: 2.6',
 
    'Programming Language :: Python :: 2.7',
 
    'Topic :: Software Development :: Version Control',
 
]
 

	
 

	
 
# additional files from project that goes somewhere in the filesystem
 
# relative to sys.prefix
 
data_files = []
 

	
 
description = ('Kallithea is a fast and powerful management tool '
 
               'for Mercurial and Git with a built in push/pull server, '
 
               'full text search and code-review.')
 

	
 
keywords = ' '.join([
 
    'kallithea', 'mercurial', 'git', 'code review',
 
    'repo groups', 'ldap', 'repository management', 'hgweb replacement',
 
    'hgwebdir', 'gitweb replacement', 'serving hgweb',
 
])
 

	
 
# long description
 
README_FILE = 'README.rst'
 
CHANGELOG_FILE = 'docs/changelog.rst'
 
try:
 
    long_description = open(README_FILE).read() + '\n\n' + \
 
        open(CHANGELOG_FILE).read()
 

	
 
    long_description = open(README_FILE).read()
 
except IOError as err:
 
    sys.stderr.write(
 
        "[WARNING] Cannot find file specified as long_description (%s)\n or "
 
        "changelog (%s) skipping that file" % (README_FILE, CHANGELOG_FILE)
 
        "[WARNING] Cannot find file specified as long_description (%s)\n"
 
        % README_FILE
 
    )
 
    long_description = description
 

	
 
import setuptools
 

	
 
# monkey patch setuptools to use distutils owner/group functionality
 
from setuptools.command import sdist
 
sdist_org = sdist.sdist
 
class sdist_new(sdist_org):
 
    def initialize_options(self):
 
        sdist_org.initialize_options(self)
 
        self.owner = self.group = 'root'
 
sdist.sdist = sdist_new
 

	
 
packages = setuptools.find_packages(exclude=['ez_setup'])
 

	
 
setuptools.setup(
 
    name='Kallithea',
 
    version=__version__,
 
    description=description,
 
    long_description=long_description,
 
    keywords=keywords,
 
    license=__license__,
 
    author=__author__,
0 comments (0 inline, 0 general)