Skip to content

Commit dda20e7

Browse files
committed
Initial Debian release
1 parent 1caac0c commit dda20e7

14 files changed

+161
-0
lines changed

debian/changelog

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
librdkafka (0.8~wip20130807-1) unstable; urgency=low
2+
3+
* Initial release. (Closes: #710271)
4+
5+
-- Faidon Liambotis <[email protected]> Wed, 07 Aug 2013 19:55:39 +0300

debian/compat

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
9

debian/control

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
Source: librdkafka
2+
Priority: optional
3+
Maintainer: Faidon Liambotis <[email protected]>
4+
Build-Depends: debhelper (>= 9), zlib1g-dev
5+
Standards-Version: 3.9.4
6+
Section: libs
7+
Homepage: https://github.com/edenhill/librdkafka
8+
Vcs-Git: git://github.com/paravoid/librdkafka.git
9+
Vcs-Browser: https://github.com/paravoid/librdkafka
10+
11+
Package: librdkafka1
12+
Architecture: any
13+
Depends: ${shlibs:Depends}, ${misc:Depends}
14+
Description: library implementing the Apache Kafka protocol
15+
librdkafka is a C implementation of the Apache Kafka protocol, containing both
16+
Producer and Consumer support.
17+
.
18+
More information about Apache Kafka can be found at http://kafka.apache.org/
19+
20+
Package: librdkafka-dev
21+
Section: libdevel
22+
Architecture: any
23+
Depends: librdkafka1 (= ${binary:Version}), ${misc:Depends}
24+
Description: library implementing the Apache Kafka protocol (development headers)
25+
librdkafka is a C implementation of the Apache Kafka protocol, containing both
26+
Producer and Consumer support.
27+
.
28+
More information about Apache Kafka can be found at http://kafka.apache.org/
29+
.
30+
This package contains the development headers.

debian/copyright

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
2+
Upstream-Name: librdkafka
3+
Source: https://github.com/edenhill/librdkafka
4+
5+
License: BSD-2-clause
6+
Redistribution and use in source and binary forms, with or without
7+
modification, are permitted provided that the following conditions are met:
8+
.
9+
1. Redistributions of source code must retain the above copyright notice,
10+
this list of conditions and the following disclaimer.
11+
2. Redistributions in binary form must reproduce the above copyright notice,
12+
this list of conditions and the following disclaimer in the documentation
13+
and/or other materials provided with the distribution.
14+
.
15+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
16+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18+
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
19+
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20+
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21+
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22+
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23+
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24+
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
25+
POSSIBILITY OF SUCH DAMAGE.
26+
27+
Files: *
28+
Copyright: 2012-2013, Magnus Edenhill
29+
License: BSD-2-clause
30+
31+
Files: rdcrc32.c rdcrc32.h
32+
Copyright: 2006-2012, Thomas Pircher <[email protected]>
33+
License: MIT
34+
Permission is hereby granted, free of charge, to any person obtaining a copy
35+
of this software and associated documentation files (the "Software"), to deal
36+
in the Software without restriction, including without limitation the rights
37+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
38+
copies of the Software, and to permit persons to whom the Software is
39+
furnished to do so, subject to the following conditions:
40+
.
41+
The above copyright notice and this permission notice shall be included in
42+
all copies or substantial portions of the Software.
43+
.
44+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
45+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
46+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
47+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
48+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
49+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
50+
THE SOFTWARE.
51+
52+
Files: debian/*
53+
Copyright: 2013 Faidon Liambotis <[email protected]>
54+
License: BSD-2-clause

debian/docs

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
README.md

debian/gbp.conf

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[git-buildpackage]
2+
upstream-tree=branch
3+
upstream-branch=0.8-wip
4+
debian-branch=debian
5+
#no-create-orig = True
6+
tarball-dir = ../tarballs
7+
export-dir = ../build-area

debian/librdkafka-dev.dirs

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
usr/lib
2+
usr/include

debian/librdkafka-dev.examples

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
examples/*

debian/librdkafka-dev.install

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
usr/include/*
2+
usr/lib/lib*.a
3+
usr/lib/lib*.so

debian/librdkafka1.dirs

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
usr/lib

debian/librdkafka1.install

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
usr/lib/lib*.so.*

debian/librdkafka1.symbols

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
librdkafka.so.1 librdkafka1 #MINVER#
2+
* Build-Depends-Package: librdkafka-dev
3+
rd_kafka_broker_destroy@Base 0.8~wip20130807
4+
rd_kafka_broker_find_by_nodeid@Base 0.8~wip20130807
5+
rd_kafka_brokers_add@Base 0.8~wip20130807
6+
rd_kafka_brokers_init@Base 0.8~wip20130807
7+
rd_kafka_conf_set@Base 0.8~wip20130807
8+
rd_kafka_defaultconf_set@Base 0.8~wip20130807
9+
rd_kafka_destroy@Base 0.8~wip20130807
10+
rd_kafka_dump@Base 0.8~wip20130807
11+
rd_kafka_err2str@Base 0.8~wip20130807
12+
rd_kafka_log0@Base 0.8~wip20130807
13+
rd_kafka_log_print@Base 0.8~wip20130807
14+
rd_kafka_log_syslog@Base 0.8~wip20130807
15+
rd_kafka_msg_destroy@Base 0.8~wip20130807
16+
rd_kafka_msg_new@Base 0.8~wip20130807
17+
rd_kafka_msg_partitioner@Base 0.8~wip20130807
18+
rd_kafka_msg_partitioner_random@Base 0.8~wip20130807
19+
rd_kafka_msgq_age_scan@Base 0.8~wip20130807
20+
rd_kafka_name@Base 0.8~wip20130807
21+
rd_kafka_new@Base 0.8~wip20130807
22+
rd_kafka_op_destroy@Base 0.8~wip20130807
23+
rd_kafka_op_new@Base 0.8~wip20130807
24+
rd_kafka_op_reply0@Base 0.8~wip20130807
25+
rd_kafka_op_reply2@Base 0.8~wip20130807
26+
rd_kafka_op_reply@Base 0.8~wip20130807
27+
rd_kafka_outq_len@Base 0.8~wip20130807
28+
rd_kafka_poll@Base 0.8~wip20130807
29+
rd_kafka_produce@Base 0.8~wip20130807
30+
rd_kafka_q_pop@Base 0.8~wip20130807
31+
rd_kafka_q_serve@Base 0.8~wip20130807
32+
rd_kafka_set_log_level@Base 0.8~wip20130807
33+
rd_kafka_set_logger@Base 0.8~wip20130807
34+
rd_kafka_topic_assign_uas@Base 0.8~wip20130807
35+
rd_kafka_topic_conf_set@Base 0.8~wip20130807
36+
rd_kafka_topic_defaultconf_set@Base 0.8~wip20130807
37+
rd_kafka_topic_destroy0@Base 0.8~wip20130807
38+
rd_kafka_topic_destroy@Base 0.8~wip20130807
39+
rd_kafka_topic_leader_query@Base 0.8~wip20130807
40+
rd_kafka_topic_name@Base 0.8~wip20130807
41+
rd_kafka_topic_new@Base 0.8~wip20130807
42+
rd_kafka_topic_partition_cnt_update@Base 0.8~wip20130807
43+
rd_kafka_topic_update@Base 0.8~wip20130807
44+
rd_kafka_toppar_deq_msg@Base 0.8~wip20130807
45+
rd_kafka_toppar_destroy0@Base 0.8~wip20130807
46+
rd_kafka_toppar_enq_msg@Base 0.8~wip20130807
47+
rd_kafka_toppar_insert_msg@Base 0.8~wip20130807

debian/rules

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/usr/bin/make -f
2+
3+
# Uncomment this to turn on verbose mode.
4+
#export DH_VERBOSE=1
5+
6+
%:
7+
dh $@

debian/source/format

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.0 (quilt)

0 commit comments

Comments
 (0)