Skip to content

Commit

Permalink
Merge pull request grpc#840 from jtattermusch/debian_version
Browse files Browse the repository at this point in the history
fix the version of debian package builder script
  • Loading branch information
a11r committed Feb 26, 2015
2 parents 62d637c + 28ab96c commit b9943ed
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions tools/distpackages/build_deb_packages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@
deb_dest="deb_out"
mkdir -p $deb_dest

version='0.8.0.0'
version='0.5.0.0'
pkg_version='0.5.0'

if [ -f /.dockerinit ]; then
# We're in Docker where uname -p returns "unknown".
Expand Down Expand Up @@ -97,7 +98,7 @@ do
# Build the debian package
fakeroot dpkg-deb --build $tmp_dir/$pkg_name || { echo "dpkg-deb failed"; exit 1; }

deb_path=$deb_dest/${pkg_name}_amd64.deb
deb_path=$deb_dest/${pkg_name}_${pkg_version}_amd64.deb

# Copy the .deb file to destination dir
cp $tmp_dir/$pkg_name.deb $deb_path
Expand Down
2 changes: 1 addition & 1 deletion tools/distpackages/templates/libgrpc-dev/DEBIAN/control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: libgrpc-dev
Version: 0.8.0
Version: 0.5.0
Architecture: amd64
Maintainer: Jan Tattermusch <jtattermusch@google.com>
Depends: libgrpc, libc6-dev | libc-dev
Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion tools/distpackages/templates/libgrpc/DEBIAN/control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: libgrpc
Version: 0.8.0
Version: 0.5.0
Architecture: amd64
Maintainer: Jan Tattermusch <jtattermusch@google.com>
Depends: libc6
Expand Down
Binary file not shown.

0 comments on commit b9943ed

Please sign in to comment.