aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRomain Forlot <romain.forlot@iot.bzh>2018-12-28 15:15:47 +0100
committerRomain Forlot <romain.forlot@iot.bzh>2019-01-03 15:59:15 +0100
commita1976ff1b2bccc8689182505828f7e3814d0d21b (patch)
treed1c3dabeb343f4709f789b967890f413f91eb685
parentf430407fd34ec2897359245a6e1ff951e5da5bc6 (diff)
Adding packaging files
Adding the necessary packaging files for the AGL supported distributions. OpenSUSE, Fedora, Ubuntu and Debian. Bug-AGL: SPEC-2097 Change-Id: I81fe9b614366c2d9f3337f18082ed221b8931e6a Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
-rw-r--r--packaging/deb/agl-libafb-helpers.dsc21
-rw-r--r--packaging/deb/debian.agl-libafb-helpers-bin.install1
-rw-r--r--packaging/deb/debian.agl-libafb-helpers-dev.install2
-rw-r--r--packaging/deb/debian.changelog5
-rw-r--r--packaging/deb/debian.compat1
-rw-r--r--packaging/deb/debian.control28
-rw-r--r--packaging/deb/debian.rules17
-rw-r--r--packaging/rpm/agl-libafb-helpers.spec72
8 files changed, 147 insertions, 0 deletions
diff --git a/packaging/deb/agl-libafb-helpers.dsc b/packaging/deb/agl-libafb-helpers.dsc
new file mode 100644
index 0000000..a03063b
--- /dev/null
+++ b/packaging/deb/agl-libafb-helpers.dsc
@@ -0,0 +1,21 @@
+Format: 1.0
+Source: agl-libafb-helpers
+Binary: agl-libafb-helpers-bin, agl-libafb-helpers-dev
+Architecture: any
+Version: 2.0-0
+Maintainer: romain.forlot <romain.forlot@iot.bzh>
+Standards-Version: 3.8.2
+Homepage: https://gerrit.automotivelinux.org/gerrit/src/libafb-helpers
+Build-Depends: debhelper (>= 5),
+ cmake,
+ dpkg-dev,
+ pkg-config,
+ libjson-c-dev,
+ libsystemd-dev,
+ libcurl4-openssl-dev,
+ libqt5websockets5-dev,
+ agl-app-framework-binder-bin,
+ agl-app-framework-binder-dev,
+DEBTRANSFORM-RELEASE: 1
+Files:
+ libafb-helpers_2.0.tar.gz
diff --git a/packaging/deb/debian.agl-libafb-helpers-bin.install b/packaging/deb/debian.agl-libafb-helpers-bin.install
new file mode 100644
index 0000000..8bd0adf
--- /dev/null
+++ b/packaging/deb/debian.agl-libafb-helpers-bin.install
@@ -0,0 +1 @@
+/opt/AGL/lib/*/libafb-helpers*.a
diff --git a/packaging/deb/debian.agl-libafb-helpers-dev.install b/packaging/deb/debian.agl-libafb-helpers-dev.install
new file mode 100644
index 0000000..005c650
--- /dev/null
+++ b/packaging/deb/debian.agl-libafb-helpers-dev.install
@@ -0,0 +1,2 @@
+/opt/AGL/lib/*/pkgconfig/*.pc
+/opt/AGL/include/*
diff --git a/packaging/deb/debian.changelog b/packaging/deb/debian.changelog
new file mode 100644
index 0000000..0336ba0
--- /dev/null
+++ b/packaging/deb/debian.changelog
@@ -0,0 +1,5 @@
+agl-libafb-helpers (2.0-0) unstable; urgency=low
+
+ * init build
+
+ -- Romain Forlot <romain.forlot@iot.bzh> Fri, 28 Dec 2018 10:50:38 +0100
diff --git a/packaging/deb/debian.compat b/packaging/deb/debian.compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/packaging/deb/debian.compat
@@ -0,0 +1 @@
+9
diff --git a/packaging/deb/debian.control b/packaging/deb/debian.control
new file mode 100644
index 0000000..60a8c59
--- /dev/null
+++ b/packaging/deb/debian.control
@@ -0,0 +1,28 @@
+Priority: optional
+Maintainer: romain.forlot <romain.forlot@iot.bzh>
+Source: agl-libafb-helpers
+Build-Depends:
+ debhelper (>= 5),
+ pkg-config,
+ cmake,
+ libjson-c-dev,
+ libsystemd-dev,
+ libcurl4-openssl-dev,
+ libqt5websockets5-dev,
+ agl-app-framework-binder-bin,
+ agl-app-framework-binder-dev,
+Standards-Version: 3.8.2
+Homepage: https://gerrit.automotivelinux.org/gerrit/#/admin/projects/apps/libafb-helpers
+
+Package: agl-libafb-helpers-bin
+Section: libs
+Architecture: any
+Description: libafb-helpers provides helpful functions to be used in a binding for the
+ Application Framework Binder
+
+Package: agl-libafb-helpers-dev
+Section: libs
+Architecture: any
+Depends: agl-libafb-helpers-bin
+Description: libafb-helpers provides helpful functions to be used in a binding for the
+ Application Framework Binder
diff --git a/packaging/deb/debian.rules b/packaging/deb/debian.rules
new file mode 100644
index 0000000..c4b4d59
--- /dev/null
+++ b/packaging/deb/debian.rules
@@ -0,0 +1,17 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+export VERSION=$(shell grep -E "^Version" ../*dsc | sed -r 's/^.*: (.*)-.*/\1/')
+
+%:
+ bash /etc/profile.d/AGL-app-framework-binder.sh
+ dh $@
+
+override_dh_auto_configure:
+ dh_auto_configure -- -DVERSION=${VERSION} -DAFB_HELPERS_QT=ON -DCMAKE_INSTALL_PREFIX=/opt/AGL -DCMAKE_INSTALL_LIBDIR:PATH=lib/${DEB_HOST_MULTIARCH}
+
+override_dh_auto_install:
+ dh_auto_install --destdir=/usr/src/packages/BUILD/debian/tmp
+
+override_dh_auto_test:
diff --git a/packaging/rpm/agl-libafb-helpers.spec b/packaging/rpm/agl-libafb-helpers.spec
new file mode 100644
index 0000000..ab2edd7
--- /dev/null
+++ b/packaging/rpm/agl-libafb-helpers.spec
@@ -0,0 +1,72 @@
+#
+# spec file for package libafb-helpers
+#
+
+%define _prefix /opt/AGL
+%define __cmake cmake
+
+%if 0%{?fedora_version}
+%global debug_package %{nil}
+%endif
+
+Name: agl-libafb-helpers
+# WARNING {name} is not used for tar file name in source nor for setup
+# Check hard coded values required to match git directory naming
+Version: 2.0
+Release: 0
+License: Apache-2.0
+Summary: AGL libafb-helpers
+Group: Development/Libraries/C and C++
+Url: https://gerrit.automotivelinux.org/gerrit/#/admin/projects/src/libafb-helpers
+Source: libafb-helpers-%{version}.tar.gz
+BuildRequires: cmake
+BuildRequires: curl
+BuildRequires: gcc-c++
+BuildRequires: pkgconfig(json-c)
+BuildRequires: pkgconfig(libcurl)
+BuildRequires: pkgconfig(afb-daemon)
+BuildRequires: pkgconfig(Qt5WebSockets)
+BuildRequires: pkgconfig(libsystemd) >= 222
+
+BuildRoot: %{_tmppath}/%{name}-%{version}-build
+
+%description
+libafb-helpers provides helpful functions to be used in a binding for the
+Application Framework Binder
+
+%package devel
+Group: Development/Libraries/C and C++
+Requires: %{name} = %{version}
+Provides: pkgconfig(%{name}) = %{version}
+Summary: AGL libafb-helpers-devel
+%description devel
+libafb-helpers provides helpful functions to be used in a binding for the
+Application Framework Binder
+
+%prep
+%setup -q -n libafb-helpers-%{version}
+
+%build
+export PKG_CONFIG_PATH=%{_libdir}/pkgconfig
+[ ! -d build ] && mkdir build
+cd build
+cmake -DCMAKE_INSTALL_PREFIX=/opt/AGL -DCMAKE_BUILD_TYPE=DEBUG -DVERSION=%{version} ..
+%__make %{?_smp_mflags}
+
+%install
+[ -d build ] && cd build
+%make_install
+
+%files
+
+%files devel
+%defattr(-,root,root)
+%dir %{_includedir}
+%dir %{_libdir}
+%{_includedir}/*
+%{_libdir}/*.a
+%{_libdir}/pkgconfig/*.pc
+
+%changelog
+* Fri Dec 28 2018 Romain Forlot
+- initial creation