Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
setuptools
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jérome Perrin
setuptools
Commits
c46bdf7f
Commit
c46bdf7f
authored
May 12, 2013
by
Jason R. Coombs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update merge notes again to reflect revised technique
--HG-- branch : Setuptools-Distribute merge
parent
476342be
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
14 deletions
+21
-14
MERGE.txt
MERGE.txt
+21
-14
No files found.
MERGE.txt
View file @
c46bdf7f
...
@@ -31,27 +31,34 @@ There were both technical and philosophical differences between Setuptools
...
@@ -31,27 +31,34 @@ There were both technical and philosophical differences between Setuptools
and Distribute. To reconcile these differences in a manageable way, the
and Distribute. To reconcile these differences in a manageable way, the
following technique was undertaken:
following technique was undertaken:
In the 'distribute' branch, first remove code that is no longer relevant to
Create a 'Setuptools-Distribute merge' branch, based on a late release of
setuptools (such as the setuptools patching code)
.
Distribute (0.6.35). This was done with a00b441856c4
.
Next, in the 'distribute' branch, at the point where the fork occurred (such
In that branch, first remove code that is no longer relevant to
that the code is still essentially pristine setuptools), copy changes for a
Setuptools (such as the setuptools patching code).
Next, in the the merge branch, create another base from at the point where the
fork occurred (such that the code is still essentially an older but pristine
setuptools). This base can be found as 955792b069d0. This creates two heads
in the merge branch, each with a basis in the fork.
Then, repeatedly copy changes for a
single file or small group of files from a late revision of that file in the
single file or small group of files from a late revision of that file in the
'setuptools-0.6' branch (1aae1efe5733 was used) and commit those changes. This
'setuptools-0.6' branch (1aae1efe5733 was used) and commit those changes on
step creates a new head. That head is then merged. It is in this Mercurial
the setuptools-only head. That head is then merged with the head with
Distribute changes. It is in this Mercurial
merge operation that the fundamental differences between Distribute and
merge operation that the fundamental differences between Distribute and
Setuptools are reconciled, but since only a single file or small set of files
Setuptools are reconciled, but since only a single file or small set of files
are used, the scope is limited.
are used, the scope is limited.
Finally, once all files have been reconciled and merged, the tip of the
Finally, once all files have been reconciled and merged, the tip of the
'distribute' branch represents the merged code. It is then merged with the
merge branch represents the merged code.
'setuptools-0.6' branch, deferring to the 'distribute' branch::
Originally, jaraco attempted all of this using anonymous heads in the
hg update null
Distribute branch, but later realized this technique made for a somewhat
hg merge 1aae1efe5733
unclear merge process, so the changes were re-committed as described above
hg ci -m "New beginning in a default branch"
for clarity. In this way, the "distribute" and "setuptools" branches can
hg merge distribute --tool internal:other
continue to track the official "distribute" changesets.
hg ci -m "Merge with Distribute"
Concessions
Concessions
===========
===========
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment