-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/bin/bash | ||
# | ||
# Maintainer script for publishing releases. | ||
|
||
set -e | ||
|
||
source=$(dpkg-parsechangelog -S Source) | ||
version=$(dpkg-parsechangelog -S Version) | ||
|
||
OS=debian DIST=jessie ARCH=armhf pbuilder-ev3dev build | ||
OS=debian DIST=jessie ARCH=armel PBUILDER_OPTIONS="--binary-arch" pbuilder-ev3dev build | ||
OS=raspbian DIST=jessie ARCH=armhf pbuilder-ev3dev build | ||
|
||
debsign ~/pbuilder-ev3dev/debian/jessie-armhf/${source}_${version}_armhf.changes | ||
debsign ~/pbuilder-ev3dev/debian/jessie-armel/${source}_${version}_armel.changes | ||
debsign ~/pbuilder-ev3dev/raspbian/jessie-armhf/${source}_${version}_armhf.changes | ||
|
||
dput ev3dev-debian ~/pbuilder-ev3dev/debian/jessie-armhf/${source}_${version}_armhf.changes | ||
dput ev3dev-debian ~/pbuilder-ev3dev/debian/jessie-armel/${source}_${version}_armel.changes | ||
dput ev3dev-raspbian ~/pbuilder-ev3dev/raspbian/jessie-armhf/${source}_${version}_armhf.changes | ||
|
||
gbp buildpackage --git-tag-only |