Codebase list rust-stfu8 / ea8e55f
Remove shell-$-prefixes for easier c+p Ximin Luo 5 years ago
1 changed file(s) with 8 addition(s) and 8 deletion(s). Raw diff Collapse all Expand all
8181 If the source package is already in Debian and this version does not introduce
8282 new binaries, then you can just go ahead and directly dput the source package.
8383
84 $ dput ${DEBSRC}_${DEBVER}_source.changes
84 dput ${DEBSRC}_${DEBVER}_source.changes
8585
8686 If this is a NEW source package or introduces NEW binary packages not already
8787 in the Debian archive, you will need to build a binary package out of it. The
8888 recommended way is to run something like:
8989
90 $ cd build
91 $ ./sbuild-and-sign.sh $CRATE $VER
92 $ dput ${DEBSRC}_${DEBVER}_${DEB_HOST_ARCH}.changes
90 cd build
91 ./sbuild-and-sign.sh $CRATE $VER
92 dput ${DEBSRC}_${DEBVER}_${DEB_HOST_ARCH}.changes
9393
9494 See https://wiki.debian.org/sbuild for instructions on how to set it up. The
9595 other tools are from the 'devscripts' package.
104104 that other people see it's been uploaded. Then, checkout another branch like
105105 master to continue development on other packages.
106106
107 $ git push origin $RELBRANCH && git checkout master
107 git push origin $RELBRANCH && git checkout master
108108
109109 Merge the pending-release branch when ACCEPTED
110110 ==============================================
112112 When it's ACCEPTED by the Debian FTP masters, you may then merge this branch
113113 back into the master branch, delete it, and push these updates to origin.
114114
115 $ git checkout master && git merge $RELBRANCH && git branch -d $RELBRANCH
116 $ git push origin master :$RELBRANCH
115 git checkout master && git merge $RELBRANCH && git branch -d $RELBRANCH
116 git push origin master :$RELBRANCH
117117
118118 ----
119119
120120 The above assumes you are a Debian Developer with upload rights. If not, you
121121 should revert what I just did. To do that, run:
122122
123 $ git checkout master && git branch -D $RELBRANCH
123 git checkout master && git branch -D $RELBRANCH
124124
125125 Then ask a Debian Developer to re-run me ($*) on your behalf.
126126 eof