Skip to content

Commit

Permalink
bump_version
Browse files Browse the repository at this point in the history
  • Loading branch information
yazgoo committed Dec 10, 2014
1 parent b6f96fb commit 08c2ca8
Show file tree
Hide file tree
Showing 4 changed files with 63 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packaging/debian.control
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Priority: optional
Maintainer: unknown <[email protected]>
Source: fusekafka
Build-Depends: debhelper (>= 5), python, libssl-dev, libfuse-dev, librdkafka-dev
Build-Depends: debhelper (>= 5), python, libssl-dev, libfuse-dev, libzookeeper-mt-dev, libjansson-dev, librdkafka-dev
Standards-Version: 3.8.2
Homepage:

Expand Down
10 changes: 10 additions & 0 deletions packaging/fuse_kafka-0.1.4.dsc
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
Format: 1.0
Source: fuse_kafka
Binary: fusekafka-bin, fusekafka--n
Architecture: any
Version: 0.1.4
Maintainer: unknown <[email protected]>
Standards-Version: 3.8.2
Homepage:
Build-Depends: debhelper (>= 5), python, openssl, libssl-dev, libfuse-dev, libzookeeper-mt-dev, libjansson-dev, librdkafka-dev
Files:
51 changes: 51 additions & 0 deletions packaging/fuse_kafka-0.1.4.spec
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
%global __os_install_post %{nil}

Summary: fuse overlay for kafka
Name: fuse_kafka
Version: 0.1.4
Release: 1%{?dist}
Source0: %{name}-%{version}.tar.gz
License: Apache License, Version 2.0
Group: Development/Tools

Requires(post): info
Requires(preun): info

BuildRequires: python, openssl-static, openssl-devel, fuse-devel, librdkafka-devel, zlib, libzookeeper, libzookeeper-devel, jansson-devel
Requires: librdkafka1, fuse, openssl, glibc, libzookeeper, jansson
# do not save library versions dependencies:
AutoReqProv: no
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)

%description
Intercepts all writes to specified directories and send them to
kafka brokers. It is quite suited for log centralization.

%prep
%setup -q

%build
./build.py

%install
rm -rf %{buildroot}
BUILDROOT=%{buildroot} ./build.py install

%post
/sbin/install-info %{_infodir}/%{name}.info %{_infodir}/dir || :

%preun
if [ $1 = 0] ; then
/sbin/install-info --delete %{_infodir}/%{name}.info %{_infodir}/dir || :
fi

%files -n %{name}
%defattr(-,root,root)
/usr/bin/fuse_kafka
/etc/init.d/fuse_kafka
/etc/fuse_kafka.conf

%changelog
* Thu Sep 11 2014 yazgoo <[email protected]> 0.1.3
- Initial version of the package
ORG-LIST-END-MARKER
2 changes: 1 addition & 1 deletion src/version.h
Original file line number Diff line number Diff line change
@@ -1 +1 @@
#define VERSION "0.1.3"
#define VERSION "0.1.4"

0 comments on commit 08c2ca8

Please sign in to comment.