Skip to content
This repository has been archived by the owner on Jan 16, 2020. It is now read-only.

Commit

Permalink
Merge pull request #15 from foglamp/1.6.0RC
Browse files Browse the repository at this point in the history
1.6.0RC to master
  • Loading branch information
praveen-garg committed May 23, 2019
2 parents ed088bd + 6a42cbc commit 900beaa
Show file tree
Hide file tree
Showing 8 changed files with 45 additions and 3 deletions.
1 change: 1 addition & 0 deletions Description
@@ -0,0 +1 @@
Kafka producer north plugin package for FogLAMP.
2 changes: 1 addition & 1 deletion LICENSE
Expand Up @@ -186,7 +186,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright 2018 Dianomic Systems
Copyright 2018 Dianomic Systems Inc

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
26 changes: 26 additions & 0 deletions Package
@@ -0,0 +1,26 @@
# A set of variables that define how we package this repository
#
plugin_name=kafka
plugin_type=north
plugin_install_dirname=Kafka

# Now build up the runtime requirements list. This has 3 components
# 1. Generic packages we depend on in all architectures and package managers
# 2. Architecture specific packages we depend on
# 3. Package manager specific packages we depend on
requirements="foglamp"

case "$arch" in
x86_64)
;;
armhf)
;;
aarch64)
;;
esac
case "$package_manager" in
deb)
;;
rpm)
;;
esac
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
1.5.2
1.6.0
2 changes: 1 addition & 1 deletion foglamp.version
@@ -1 +1 @@
foglamp_version>=1.5
foglamp_version>=1.6
3 changes: 3 additions & 0 deletions make_deb
Expand Up @@ -69,6 +69,9 @@ if [ "$(dpkg --print-architecture)" == "armhf" ]; then
elif [ "$(dpkg --print-architecture)" == "amd64" ]; then
echo "Building on amd64 architecture..."
architecture="x86_64"
elif [ "$(dpkg --print-architecture)" == "arm64" ]; then
echo "Building on arm64 architecture..."
architecture="arm64"
else
echo "The host architecture is not supported for this plugin!!"
exit 1
Expand Down
10 changes: 10 additions & 0 deletions packages/Debian/arm64/DEBIAN/control
@@ -0,0 +1,10 @@
Package: foglamp-north-kafka
Version: 1.0.0
Section: devel
Priority: optional
Architecture: arm64
Depends: foglamp
Conflicts:
Maintainer: Dianomic Systems, Inc. <info@dianomic.com>
Homepage: http://www.dianomic.com
Description: FogLAMP C++ Kafka north plugin
2 changes: 2 additions & 0 deletions requirements.sh
Expand Up @@ -29,3 +29,5 @@ cd librdkafka
./configure
make
sudo make install
cd ..
rm -rf librdkafka

0 comments on commit 900beaa

Please sign in to comment.