1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
armci-mpi upstream does not release tarballs. The code is accessed
from the upstream git repo at http://git.mpich.org/armci-mpi.git/
The upstream branch in the Debian git repo for armci-mpi has been
merged against the upstream repo (master branch).
If necessary to update the debian upstream branch,
1) create a remote to upstream:
git remote add -t master upstream http://git.mpich.org/armci-mpi.git/
2) checkout the debian upstream branch
git checkout upstream
3) update the record of upstream commits:
git fetch upstream
4) merge upstream commits to the debian upstream branch
git merge upstream/master
5) tag the upstream version
git tag upstream/0.0_git<datestamp>
(use the date stamp of the most recent commit in the upstream git repo)
After this you may merge the debian upstream branch to the debian
master branch. Use gbp buildpackage to build the package (it will
generate an orig source tarball).
|