2005-01-19 14:14:38 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
###
|
2005-04-04 16:23:47 +02:00
|
|
|
# Copyright (c) 2002-2005, Jeremiah Fincher
|
2012-09-01 16:16:48 +02:00
|
|
|
# Copyright (c) 2009, James McCoy
|
2005-01-19 14:14:38 +01:00
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions are met:
|
|
|
|
#
|
|
|
|
# * Redistributions of source code must retain the above copyright notice,
|
|
|
|
# this list of conditions, and the following disclaimer.
|
|
|
|
# * Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
# this list of conditions, and the following disclaimer in the
|
|
|
|
# documentation and/or other materials provided with the distribution.
|
|
|
|
# * Neither the name of the author of this software nor the name of
|
|
|
|
# contributors to this software may be used to endorse or promote products
|
|
|
|
# derived from this software without specific prior written consent.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
# POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
###
|
|
|
|
|
2012-09-01 16:06:50 +02:00
|
|
|
import os
|
2005-01-19 14:14:38 +01:00
|
|
|
import sys
|
2014-06-04 16:50:31 +02:00
|
|
|
import time
|
2016-02-24 17:25:51 +01:00
|
|
|
import warnings
|
2014-06-04 16:50:31 +02:00
|
|
|
import datetime
|
2013-02-02 20:47:31 +01:00
|
|
|
import tempfile
|
2012-05-11 18:43:23 +02:00
|
|
|
import subprocess
|
2005-01-19 14:14:38 +01:00
|
|
|
|
2016-02-24 17:25:51 +01:00
|
|
|
warnings.filterwarnings('always', category=DeprecationWarning)
|
|
|
|
|
2013-02-22 20:50:38 +01:00
|
|
|
debug = '--debug' in sys.argv
|
|
|
|
|
2013-02-02 19:59:03 +01:00
|
|
|
path = os.path.dirname(__file__)
|
2013-02-22 20:50:38 +01:00
|
|
|
if debug:
|
|
|
|
print('DEBUG: Changing dir from %r to %r' % (os.getcwd(), path))
|
2013-02-02 19:59:03 +01:00
|
|
|
if path:
|
|
|
|
os.chdir(path)
|
2013-02-02 19:56:54 +01:00
|
|
|
|
2019-02-23 00:10:10 +01:00
|
|
|
VERSION_FILE = os.path.join('src', 'version.py')
|
2012-05-23 18:08:25 +02:00
|
|
|
version = None
|
2012-05-11 18:43:23 +02:00
|
|
|
try:
|
2018-06-01 08:29:51 +02:00
|
|
|
if 'SOURCE_DATE_EPOCH' in os.environ:
|
|
|
|
date = int(os.environ['SOURCE_DATE_EPOCH'])
|
|
|
|
else:
|
|
|
|
proc = subprocess.Popen('git show HEAD --format=%ct', shell=True,
|
|
|
|
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
|
|
|
date = proc.stdout.readline()
|
|
|
|
if sys.version_info[0] >= 3:
|
|
|
|
date = date.decode()
|
|
|
|
date = int(date.strip())
|
2018-01-13 00:08:22 +01:00
|
|
|
version = ".".join(str(i).zfill(2) for i in
|
2018-06-01 08:29:51 +02:00
|
|
|
time.strptime(time.asctime(time.gmtime(date)))[:3])
|
2012-05-11 18:43:23 +02:00
|
|
|
except:
|
2016-02-21 10:13:50 +01:00
|
|
|
if os.path.isfile(VERSION_FILE):
|
2019-02-23 00:10:10 +01:00
|
|
|
from src.version import version
|
2016-02-21 10:13:50 +01:00
|
|
|
else:
|
2018-08-03 13:44:23 +02:00
|
|
|
version = 'installed on ' + time.strftime("%Y-%m-%dT%H-%M-%S", time.gmtime())
|
2012-05-23 18:08:25 +02:00
|
|
|
try:
|
2016-02-21 10:13:50 +01:00
|
|
|
os.unlink(VERSION_FILE)
|
2012-05-23 18:08:25 +02:00
|
|
|
except OSError: # Does not exist
|
|
|
|
pass
|
2016-02-21 10:13:50 +01:00
|
|
|
if version:
|
2019-02-23 00:10:10 +01:00
|
|
|
fd = open(os.path.join('src', 'version.py'), 'a')
|
2016-02-21 10:13:50 +01:00
|
|
|
fd.write("version = '%s'\n" % version)
|
|
|
|
fd.write('try: # For import from setup.py\n')
|
|
|
|
fd.write(' import supybot.utils.python\n')
|
|
|
|
fd.write(' supybot.utils.python._debug_software_version = version\n')
|
|
|
|
fd.write('except ImportError:\n')
|
|
|
|
fd.write(' pass\n')
|
|
|
|
fd.close()
|
2012-05-11 18:43:23 +02:00
|
|
|
|
2020-01-01 12:02:19 +01:00
|
|
|
if sys.version_info < (3, 4, 0):
|
|
|
|
sys.stderr.write("Limnoria requires Python 3.4 or newer.")
|
2013-01-30 20:10:48 +01:00
|
|
|
sys.stderr.write(os.linesep)
|
|
|
|
sys.exit(-1)
|
|
|
|
|
2013-08-25 21:51:34 +02:00
|
|
|
|
|
|
|
import textwrap
|
|
|
|
|
|
|
|
clean = False
|
|
|
|
while '--clean' in sys.argv:
|
|
|
|
clean = True
|
|
|
|
sys.argv.remove('--clean')
|
|
|
|
|
2013-01-30 20:10:48 +01:00
|
|
|
import glob
|
|
|
|
import shutil
|
|
|
|
import os
|
|
|
|
|
|
|
|
|
2019-02-23 00:10:10 +01:00
|
|
|
plugins = [s for s in os.listdir('plugins') if
|
2013-08-25 21:51:34 +02:00
|
|
|
os.path.exists(os.path.join('plugins', s, 'plugin.py'))]
|
2013-01-30 20:10:48 +01:00
|
|
|
|
2005-01-19 14:14:38 +01:00
|
|
|
def normalizeWhitespace(s):
|
|
|
|
return ' '.join(s.split())
|
|
|
|
|
2013-08-25 21:51:34 +02:00
|
|
|
try:
|
|
|
|
from distutils.core import setup
|
|
|
|
from distutils.sysconfig import get_python_lib
|
|
|
|
except ImportError as e:
|
|
|
|
s = normalizeWhitespace("""Supybot requires the distutils package to
|
|
|
|
install. This package is normally included with Python, but for some
|
|
|
|
unfathomable reason, many distributions to take it out of standard Python
|
|
|
|
and put it in another package, usually caled 'python-dev' or python-devel'
|
|
|
|
or something similar. This is one of the dumbest things a distribution can
|
|
|
|
do, because it means that developers cannot rely on *STANDARD* Python
|
|
|
|
modules to be present on systems of that distribution. Complain to your
|
|
|
|
distribution, and loudly. If you how much of our time we've wasted telling
|
|
|
|
people to install what should be included by default with Python you'd
|
|
|
|
understand why we're unhappy about this. Anyway, to reiterate, install the
|
|
|
|
development package for Python that your distribution supplies.""")
|
|
|
|
sys.stderr.write(os.linesep*2)
|
|
|
|
sys.stderr.write(textwrap.fill(s))
|
|
|
|
sys.stderr.write(os.linesep*2)
|
|
|
|
sys.exit(-1)
|
2013-04-27 16:05:11 +02:00
|
|
|
|
2005-05-04 03:39:28 +02:00
|
|
|
|
2013-08-25 21:51:34 +02:00
|
|
|
if clean:
|
|
|
|
previousInstall = os.path.join(get_python_lib(), 'supybot')
|
|
|
|
if os.path.exists(previousInstall):
|
|
|
|
try:
|
|
|
|
print('Removing current installation.')
|
|
|
|
shutil.rmtree(previousInstall)
|
|
|
|
except Exception as e:
|
|
|
|
print('Couldn\'t remove former installation: %s' % e)
|
|
|
|
sys.exit(-1)
|
2005-01-19 14:14:38 +01:00
|
|
|
|
|
|
|
packages = ['supybot',
|
2012-12-26 15:43:35 +01:00
|
|
|
'supybot.locales',
|
2005-01-27 07:59:08 +01:00
|
|
|
'supybot.utils',
|
2005-01-19 14:14:38 +01:00
|
|
|
'supybot.drivers',
|
|
|
|
'supybot.plugins',] + \
|
2005-02-02 07:59:08 +01:00
|
|
|
['supybot.plugins.'+s for s in plugins] + \
|
2009-03-16 04:02:47 +01:00
|
|
|
[
|
|
|
|
'supybot.plugins.Dict.local',
|
|
|
|
'supybot.plugins.Math.local',
|
|
|
|
]
|
2005-01-19 14:14:38 +01:00
|
|
|
|
2019-02-23 00:10:10 +01:00
|
|
|
package_dir = {'supybot': 'src',
|
|
|
|
'supybot.utils': 'src/utils',
|
|
|
|
'supybot.locales': 'locales',
|
|
|
|
'supybot.plugins': 'plugins',
|
|
|
|
'supybot.drivers': 'src/drivers',
|
|
|
|
'supybot.plugins.Dict.local': 'plugins/Dict/local',
|
|
|
|
'supybot.plugins.Math.local': 'plugins/Math/local',
|
|
|
|
}
|
|
|
|
|
|
|
|
package_data = {'supybot.locales': [s for s in os.listdir('locales/')]}
|
2010-10-09 11:36:22 +02:00
|
|
|
|
2005-01-19 14:14:38 +01:00
|
|
|
for plugin in plugins:
|
2019-09-15 08:03:12 +02:00
|
|
|
plugin_name = 'supybot.plugins.' + plugin
|
|
|
|
package_dir[plugin_name] = 'plugins/' + plugin
|
|
|
|
pot_path = 'plugins/' + plugin + 'messages.pot'
|
2012-12-26 15:43:35 +01:00
|
|
|
locales_path = 'plugins/' + plugin + '/locales/'
|
2019-09-15 08:03:12 +02:00
|
|
|
|
|
|
|
files = []
|
|
|
|
|
|
|
|
if os.path.exists(pot_path):
|
|
|
|
files.append('messages.pot')
|
|
|
|
|
2012-12-26 15:43:35 +01:00
|
|
|
if os.path.exists(locales_path):
|
2019-09-15 08:03:12 +02:00
|
|
|
files.extend(['locales/'+s for s in os.listdir(locales_path)])
|
|
|
|
|
|
|
|
if files:
|
|
|
|
package_data.update({plugin_name: files})
|
2005-01-19 14:14:38 +01:00
|
|
|
|
|
|
|
setup(
|
|
|
|
# Metadata
|
2013-01-21 20:28:42 +01:00
|
|
|
name='limnoria',
|
2013-01-21 20:33:09 +01:00
|
|
|
provides=['supybot'],
|
2005-01-19 14:14:38 +01:00
|
|
|
version=version,
|
2013-01-21 20:28:42 +01:00
|
|
|
author='Valentin Lorentz',
|
|
|
|
url='https://github.com/ProgVal/Limnoria',
|
|
|
|
author_email='progval+limnoria@progval.net',
|
2017-02-24 20:36:09 +01:00
|
|
|
download_url='https://pypi.python.org/pypi/limnoria',
|
2014-04-05 22:54:51 +02:00
|
|
|
description='A modified version of Supybot (an IRC bot and framework)',
|
2013-10-11 02:37:12 +02:00
|
|
|
platforms=['linux', 'linux2', 'win32', 'cygwin', 'darwin'],
|
2005-01-19 14:14:38 +01:00
|
|
|
long_description=normalizeWhitespace("""A robust, full-featured Python IRC
|
|
|
|
bot with a clean and flexible plugin API. Equipped with a complete ACL
|
|
|
|
system for specifying user permissions with as much as per-command
|
|
|
|
granularity. Batteries are included in the form of numerous plugins
|
|
|
|
already written."""),
|
|
|
|
classifiers = [
|
2015-11-11 10:08:09 +01:00
|
|
|
'Development Status :: 5 - Production/Stable',
|
2005-01-19 14:14:38 +01:00
|
|
|
'Environment :: Console',
|
|
|
|
'Environment :: No Input/Output (Daemon)',
|
|
|
|
'Intended Audience :: End Users/Desktop',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'License :: OSI Approved :: BSD License',
|
|
|
|
'Natural Language :: English',
|
2014-01-12 15:52:10 +01:00
|
|
|
'Natural Language :: Finnish',
|
|
|
|
'Natural Language :: French',
|
|
|
|
'Natural Language :: Hungarian',
|
|
|
|
'Natural Language :: Italian',
|
2005-01-19 14:14:38 +01:00
|
|
|
'Operating System :: OS Independent',
|
|
|
|
'Operating System :: POSIX',
|
|
|
|
'Operating System :: Microsoft :: Windows',
|
2014-01-12 15:52:10 +01:00
|
|
|
'Programming Language :: Python :: 3.4',
|
2016-02-04 21:05:31 +01:00
|
|
|
'Programming Language :: Python :: 3.5',
|
2016-11-05 00:49:36 +01:00
|
|
|
'Programming Language :: Python :: 3.6',
|
2020-01-01 12:02:19 +01:00
|
|
|
'Programming Language :: Python :: 3.7',
|
2015-11-11 10:08:09 +01:00
|
|
|
'Topic :: Communications :: Chat :: Internet Relay Chat',
|
|
|
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
2005-01-19 14:14:38 +01:00
|
|
|
],
|
|
|
|
|
|
|
|
# Installation data
|
|
|
|
packages=packages,
|
|
|
|
|
2019-02-23 00:10:10 +01:00
|
|
|
package_dir=package_dir,
|
|
|
|
|
2010-10-09 11:36:22 +02:00
|
|
|
package_data=package_data,
|
|
|
|
|
2005-01-19 14:14:38 +01:00
|
|
|
scripts=['scripts/supybot',
|
2005-01-20 00:12:50 +01:00
|
|
|
'scripts/supybot-test',
|
2005-02-03 15:55:31 +01:00
|
|
|
'scripts/supybot-botchk',
|
2005-01-19 14:14:38 +01:00
|
|
|
'scripts/supybot-wizard',
|
|
|
|
'scripts/supybot-adduser',
|
2019-01-15 21:13:24 +01:00
|
|
|
'scripts/supybot-reset-password',
|
2005-04-01 03:18:54 +02:00
|
|
|
'scripts/supybot-plugin-doc',
|
2005-04-04 05:11:46 +02:00
|
|
|
'scripts/supybot-plugin-create',
|
2011-08-22 14:29:59 +02:00
|
|
|
],
|
2014-12-08 08:51:59 +01:00
|
|
|
data_files=[('share/man/man1', ['man/supybot.1']),
|
|
|
|
('share/man/man1', ['man/supybot-test.1']),
|
|
|
|
('share/man/man1', ['man/supybot-botchk.1']),
|
|
|
|
('share/man/man1', ['man/supybot-wizard.1']),
|
|
|
|
('share/man/man1', ['man/supybot-adduser.1']),
|
|
|
|
('share/man/man1', ['man/supybot-plugin-doc.1']),
|
|
|
|
('share/man/man1', ['man/supybot-plugin-create.1']),
|
2014-07-12 09:48:27 +02:00
|
|
|
],
|
2012-09-11 04:28:34 +02:00
|
|
|
|
2005-01-19 14:14:38 +01:00
|
|
|
)
|
|
|
|
|
2016-02-23 20:11:47 +01:00
|
|
|
if sys.version_info < (2, 7, 9):
|
2016-02-24 17:25:51 +01:00
|
|
|
warnings.warn('Running Limnoria on Python older than 2.7.9 is not '
|
|
|
|
'recommended because it does not support SSL '
|
|
|
|
'certificate verification. For more informations, see: '
|
|
|
|
'<http://doc.supybot.aperio.fr/en/latest/use/security.html#ssl-python-versions>',
|
|
|
|
DeprecationWarning)
|
|
|
|
elif sys.version_info < (3, 0):
|
2019-01-02 10:55:36 +01:00
|
|
|
pass
|
2016-02-24 17:25:51 +01:00
|
|
|
elif sys.version_info < (3, 4):
|
|
|
|
warnings.warn('Running Limnoria on Python 3.2 or 3.3 is not '
|
|
|
|
'recommended because these versions do not support SSL '
|
|
|
|
'certificate verification. For more informations, see: '
|
|
|
|
'<http://doc.supybot.aperio.fr/en/latest/use/security.html#ssl-python-versions>',
|
|
|
|
DeprecationWarning)
|
2005-01-19 14:14:38 +01:00
|
|
|
|
2019-01-02 10:55:36 +01:00
|
|
|
if sys.version_info < (3, 0):
|
|
|
|
warnings.warn('You are installing Limnoria for Python 2. While Python 2 '
|
|
|
|
'is currently supported by Limnoria, this may change in the near '
|
|
|
|
'future. If there is anything preventing you frorm upgrading to '
|
2019-01-02 11:26:55 +01:00
|
|
|
'Python 3 (incompatible third-party plugin, ...), please open a '
|
2019-01-02 10:55:36 +01:00
|
|
|
'bug at <https://github.com/ProgVal/Limnoria/issues> and we\'ll '
|
|
|
|
'see together what we can do about it.',
|
|
|
|
DeprecationWarning)
|
2019-10-05 22:29:00 +02:00
|
|
|
if sys.version_info < (3, 3):
|
|
|
|
warnings.warn('You are installing Limnoria for Python < 3.3, which is '
|
|
|
|
'only partially support. Limnoria requires Python 3.4 or later '
|
|
|
|
'to be fully stable.',
|
|
|
|
DeprecationWarning)
|
2019-01-02 10:55:36 +01:00
|
|
|
|
2006-02-11 16:52:51 +01:00
|
|
|
# vim:set shiftwidth=4 softtabstop=4 expandtab textwidth=79:
|