Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deb: install build dependencies at build time #82

Merged
merged 1 commit into from
Nov 17, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions debs/trusty/archivematica-storage-service/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ cd $SOURCE
BRANCH="$(git branch | cut -d\ -f2-)"
COMMIT=$(git rev-parse HEAD)
cp -rf ${BASE}/debian-storage-service/* debian/
yes | mk-build-deps -i debian/control
pip download -d lib --no-binary :all: -r requirements.txt
dch -v 1:${VERSION}${RELEASE} commit: $(echo $COMMIT)
dch -v 1:${VERSION}${RELEASE} checkout: $(echo $BRANCH)
Expand Down
1 change: 1 addition & 0 deletions debs/trusty/archivematica/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ for i in dashboard MCPClient MCPServer archivematicaCommon
do
cd "${SOURCE}/$i/"
cp -rf $BASE/debian-$i/* debian/
yes | mk-build-deps -i debian/control
dch -v 1:${VERSION}${RELEASE} commit: $(echo $COMMIT)
dch -v 1:${VERSION}${RELEASE} checkout: $(echo $BRANCH)
dch -r --distribution trusty --urgency high ignored
Expand Down
2 changes: 2 additions & 0 deletions debs/xenial/archivematica-storage-service/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ cd $SOURCE
BRANCH="$(git branch | cut -d\ -f2-)"
COMMIT=$(git rev-parse HEAD)
cp -rf ${BASE}/debian-storage-service/* debian/
QUILT_PATCHES="debian/patches" quilt push -a || true
pip download -d lib --no-binary :all: -r requirements.txt
yes | mk-build-deps -i debian/control
dch -v 1:${VERSION}${RELEASE} commit: $(echo $COMMIT)
dch -v 1:${VERSION}${RELEASE} checkout: $(echo $BRANCH)
dch -r --distribution xenial --urgency high ignored
Expand Down
1 change: 1 addition & 0 deletions debs/xenial/archivematica/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ for i in dashboard MCPClient MCPServer archivematicaCommon
do
cd "${SOURCE}/$i/"
cp -rf $BASE/debian-$i/* debian/
yes | mk-build-deps -i debian/control
dch -v 1:${VERSION}${RELEASE} commit: $(echo $COMMIT)
dch -v 1:${VERSION}${RELEASE} checkout: $(echo $BRANCH)
dch -r --distribution xenial --urgency high ignored
Expand Down