##// END OF EJS Templates
merge with crew-stable
Bryan O'Sullivan -
r18761:8cc8715b merge default
parent child Browse files
Show More
@@ -149,7 +149,8 b' def runhg(cmd, env):'
149 # a missing __init__.py in mercurial/locale, we also ignore that.
149 # a missing __init__.py in mercurial/locale, we also ignore that.
150 err = [e for e in err.splitlines()
150 err = [e for e in err.splitlines()
151 if not e.startswith(b('Not trusting file')) \
151 if not e.startswith(b('Not trusting file')) \
152 and not e.startswith(b('warning: Not importing'))]
152 and not e.startswith(b('warning: Not importing')) \
153 and not e.startswith(b('obsolete feature not enabled'))]
153 if err:
154 if err:
154 print >> sys.stderr, "stderr from '%s':" % (' '.join(cmd))
155 print >> sys.stderr, "stderr from '%s':" % (' '.join(cmd))
155 print >> sys.stderr, '\n'.join([' ' + e for e in err])
156 print >> sys.stderr, '\n'.join([' ' + e for e in err])
@@ -519,11 +520,36 b" if sys.platform == 'darwin' and os.path."
519
520
520 setup(name='mercurial',
521 setup(name='mercurial',
521 version=setupversion,
522 version=setupversion,
522 author='Matt Mackall',
523 author='Matt Mackall and many others',
523 author_email='mpm@selenic.com',
524 author_email='mercurial@selenic.com',
524 url='http://mercurial.selenic.com/',
525 url='http://mercurial.selenic.com/',
525 description='Scalable distributed SCM',
526 download_url='http://mercurial.selenic.com/release/',
526 license='GNU GPLv2+',
527 description=('Fast scalable distributed SCM (revision control, version '
528 'control) system'),
529 long_description=('Mercurial is a distributed SCM tool written in Python.'
530 ' It is used by a number of large projects that require'
531 ' fast, reliable distributed revision control, such as '
532 'Mozilla.'),
533 license='GNU GPLv2 or any later version',
534 classifiers=[
535 'Development Status :: 6 - Mature',
536 'Environment :: Console',
537 'Intended Audience :: Developers',
538 'Intended Audience :: System Administrators',
539 'License :: OSI Approved :: GNU General Public License (GPL)',
540 'Natural Language :: Danish',
541 'Natural Language :: English',
542 'Natural Language :: German',
543 'Natural Language :: Italian',
544 'Natural Language :: Japanese',
545 'Natural Language :: Portuguese (Brazilian)',
546 'Operating System :: Microsoft :: Windows',
547 'Operating System :: OS Independent',
548 'Operating System :: POSIX',
549 'Programming Language :: C',
550 'Programming Language :: Python',
551 'Topic :: Software Development :: Version Control',
552 ],
527 scripts=scripts,
553 scripts=scripts,
528 packages=packages,
554 packages=packages,
529 py_modules=pymodules,
555 py_modules=pymodules,
General Comments 0
You need to be logged in to leave comments. Login now