Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 180141 Details for
Bug 259601
Missing man page for hgignore, missing examples, missing CGI, etc.
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
Patch to setup.py to get contrib/ subtree installed
mercurial-install-contrib.patch (text/x-patch), 1.65 KB, created by
Jonathan S. Shapiro
on 2007-08-30 00:24:27 UTC
(
hide
)
Description:
Patch to setup.py to get contrib/ subtree installed
Filename:
MIME Type:
Creator:
Jonathan S. Shapiro
Created:
2007-08-30 00:24:27 UTC
Size:
1.65 KB
patch
obsolete
>diff -ruN mercurial-0.9.4.orig/setup.py mercurial-0.9.4.new/setup.py >--- mercurial-0.9.4.orig/setup.py 2007-06-25 22:18:18.000000000 -0400 >+++ mercurial-0.9.4.new/setup.py 2007-08-29 19:17:36.000000000 -0400 >@@ -54,6 +54,21 @@ > mercurial.version.remember_version(version) > cmdclass = {'install_data': install_package_data} > >+# We want to install the contrib/ directory, but it isn't immediately >+# clear where to do that on some platforms. As a temporary expedient, >+# assemble that part of the setup manifest only if we are running on >+# a posix platform. This is no worse than the current state, and people >+# who understand the respective target platforms can improve it over >+# time. >+ >+contrib_files = [] # default >+if os.name in ['posix']: >+ contrib_files = [(os.path.join('/usr/share/mercurial', root), >+ [os.path.join(root, file_) for file_ in files]) >+ for root, dirs, files in os.walk('contrib')] >+ contrib_files = contrib_files + [('/usr/share/mercurial', >+ ['hgwebdir.cgi', 'hgweb.cgi'])] >+ > setup(name='mercurial', > version=mercurial.version.get_version(), > author='Matt Mackall', >@@ -67,7 +82,8 @@ > Extension('mercurial.base85', ['mercurial/base85.c'])], > data_files=[(os.path.join('mercurial', root), > [os.path.join(root, file_) for file_ in files]) >- for root, dirs, files in os.walk('templates')], >+ for root, dirs, files in os.walk('templates')] + >+ contrib_files, > cmdclass=cmdclass, > scripts=['hg', 'hgmerge'], > options=dict(py2exe=dict(packages=['hgext']),
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 259601
: 180141 |
180161