--- /dev/null
+grpc (0.11.1-1) unstable; urgency=low
+
+ * New upstream release
+ * debian/control: update maintainer with upstream address, add myself as
+ uploader
+
+ -- Andrew Pollock <apollock@debian.org> Thu, 24 Sep 2015 11:33:03 +1000
+
+grpc (0.11.0.0-1) unstable; urgency=low
+
+ * New upstream release
+
+ -- Andrew Pollock <apollock@debian.org> Wed, 09 Sep 2015 13:05:55 +1000
+
+grpc (0.10.2-1) unstable; urgency=medium
+
+ * New upstream release (closes: #795766)
+
+ -- Andrew Pollock <apollock@debian.org> Fri, 28 Aug 2015 09:26:25 +1000
+
+grpc (0.10.0-1) unstable; urgency=low
+
+ * Initial release (Closes: #786375)
+
+ -- Andrew Pollock <apollock@debian.org> Thu, 07 May 2015 13:28:11 +1000
--- /dev/null
+client.prof
+server.prof
--- /dev/null
+Source: grpc
+Priority: optional
+Maintainer: gRPC Package Maintainers <grpc-packages@google.com>
+Uploaders: Andrew Pollock <apollock@debian.org>, Laszlo Boszormenyi (GCS) <gcs@debian.org>
+Build-Depends: debhelper (>= 9), zlib1g-dev, libssl-dev, libprotobuf-dev, protobuf-compiler, libgflags-dev, libgtest-dev, libgoogle-perftools-dev, python
+Standards-Version: 3.9.6
+Section: libs
+Homepage: http://www.grpc.io/
+Vcs-Git: https://github.com/grpc/grpc.git
+Vcs-Browser: https://github.com/grpc/grpc
+
+Package: libgrpc-dev
+Section: libdevel
+Architecture: any
+Depends: libgrpc0 (= ${binary:Version}), ${misc:Depends}
+Description: high performance general RPC framework (development)
+ A modern, open source remote procedure call (RPC) framework that can
+ run anywhere. It enables client and server applications to communicate
+ transparently, and makes it easier to build connected systems.
+ .
+ This package contains the headers and the static library for libgrpc0.
+
+Package: libgrpc0
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: high performance general RPC framework
+ A modern, open source remote procedure call (RPC) framework that can
+ run anywhere. It enables client and server applications to communicate
+ transparently, and makes it easier to build connected systems.
+ .
+ This package provides the gRPC C bindings.
--- /dev/null
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: grpc
+Source: https://github.com/grpc/grpc
+
+Files: *
+Copyright: Copyright 2015, Google Inc.
+License: BSD-3-clause
+ Copyright 2015, Google Inc.
+ All rights reserved.
+ .
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are
+ met:
+ .
+ * Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ * Redistributions in binary form must reproduce the above
+ copyright notice, this list of conditions and the following disclaimer
+ in the documentation and/or other materials provided with the
+ distribution.
+ * Neither the name of Google Inc. nor the names of its
+ contributors may be used to endorse or promote products derived from
+ this software without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+Files: debian/*
+Copyright: 2015 Andrew Pollock <apollock@debian.org>
+License: GPL-2+
+ This package is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This package is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>
+ .
+ On Debian systems, the complete text of the GNU General
+ Public License version 2 can be found in "/usr/share/common-licenses/GPL-2".
--- /dev/null
+usr/lib
+usr/include
--- /dev/null
+usr/include/grpc/
+usr/lib/libgpr.a
+usr/lib/libgpr.so
+usr/lib/libgrpc.a
+usr/lib/libgrpc.so
--- /dev/null
+usr/lib/libgpr.so.*
+usr/lib/libgrpc.so.*
--- /dev/null
+possible-gpl-code-linked-with-openssl
--- /dev/null
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+# output every command that modifies files on the build system.
+#DH_VERBOSE = 1
+
+DPKG_EXPORT_BUILDFLAGS = 1
+include /usr/share/dpkg/default.mk
+
+export DEB_BUILD_MAINT_OPTIONS = hardening=+all
+
+# package maintainers to append CFLAGS
+#export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic
+# package maintainers to append LDFLAGS
+#export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
+
+override_dh_auto_build:
+ make shared_c prefix=/usr
+
+override_dh_auto_test:
+ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
+ make test_c
+endif
+
+override_dh_auto_install:
+ make install_c prefix=$(CURDIR)/debian/tmp/usr
+
+%:
+ dh $@ --parallel
--- /dev/null
+3.0 (quilt)