summaryrefslogtreecommitdiff
path: root/Utilities/cmlibarchive/README-CMake.txt
blob: 45cb0939e76efe4ff8514d1c0954b2c43a19cd65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
The Utilities/cmlibarchive directory contains a reduced distribution
of the libarchive source tree with only the library source code and
CMake build system.  It is not a submodule; the actual content is part
of our source tree and changes can be made and committed directly.

We update from upstream using Git's "subtree" merge strategy.  A
special branch contains commits of upstream libarchive snapshots and
nothing else.  No Git ref points explicitly to the head of this
branch, but it is merged into our history.

Update libarchive from upstream as follows.  Create a local branch to
explicitly reference the upstream snapshot branch head:

 git branch libarchive-upstream 4f4fe6e5

Use a temporary directory to checkout the branch:

 mkdir libarchive-tmp
 cd libarchive-tmp
 git init
 git pull .. libarchive-upstream
 rm -rf *

Now place the (reduced) libarchive content in this directory.  See
instructions shown by

 git log 4f4fe6e5

for help extracting the content from the upstream svn repo.  Then run
the following commands to commit the new version.  Substitute the
appropriate date and version number:

 git add --all

 GIT_AUTHOR_NAME='LibArchive Upstream' \
 GIT_AUTHOR_EMAIL='libarchive-discuss@googlegroups.com' \
 GIT_AUTHOR_DATE='2011-12-31 13:54:34 -0500' \
 git commit -m 'libarchive 3.0.2-r4051 (reduced)' &&
 git commit --amend

Edit the commit message to describe the procedure used to obtain the
content.  Then push the changes back up to the main local repository:

 git push .. HEAD:libarchive-upstream
 cd ..
 rm -rf libarchive-tmp

Create a topic in the main repository on which to perform the update:

 git checkout -b update-libarchive master

Merge the libarchive-upstream branch as a subtree:

 git merge -s recursive -X subtree=Utilities/cmlibarchive \
           libarchive-upstream

If there are conflicts, resolve them and commit.  Build and test the
tree.  Commit any additional changes needed to succeed.

Finally, run

 git rev-parse --short=8 libarchive-upstream

to get the commit from which the libarchive-upstream branch must be started
on the next update.  Edit the "git branch libarchive-upstream" line above to
record it, and commit this file.