Codebase list rust-libslirp / 699de4a
Add an option to upload to experimental Sylvestre Ledru 5 years ago
2 changed file(s) with 8 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
3636
3737 ::
3838
39 ./release.sh <rust-crate-name> # or
40 ./release.sh <rust-crate-name> <old-version> # as appropriate
39 ./release.sh <rust-crate-name> # or
40 ./release.sh <rust-crate-name> <old-version> # as appropriate
41 DISTRO=experimental ./release.sh <rust-crate-name> # to target another distro
4142
4243 This prepares the necessary Debian files in ``build/``, and creates a git
4344 branch to manage the packaging until it is accepted in Debian itself. You need
4848
4949 ( cd "$PKGDIR"
5050 sed -i -e s/UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO/UNRELEASED/ debian/changelog
51 dch -m -r -D unstable ""
51 if test -z "$DISTRO"; then
52 # To upload to other distro like experimental
53 DISTRO=unstable
54 fi
55 dch -m -r -D $DISTRO ""
5256 git add debian/changelog
5357 )
5458