From 5caedfc3ca929d8033a4762ecbed92308111b910 Mon Sep 17 00:00:00 2001 From: Ronan Le Martret Date: Tue, 27 Jun 2017 15:18:45 +0200 Subject: Change debian files packaging * rename package app-framework-binder to agl-app-framework-binder. * move packaging to conf.d/packaging as other packages Change-Id: Ia207345836fe3c44aef4d237c5785c537a725a81 Signed-off-by: Ronan Le Martret --- conf.d/packaging/agl-app-framework-binder.dsc | 19 ++++ conf.d/packaging/agl-app-framework-binder.spec | 102 +++++++++++++++++++++ .../debian.agl-app-framework-binder-bin.install | 14 +++ .../debian.agl-app-framework-binder-dev.install | 3 + conf.d/packaging/debian.changelog | 5 + conf.d/packaging/debian.compat | 1 + conf.d/packaging/debian.control | 26 ++++++ conf.d/packaging/debian.rules | 87 ++++++++++++++++++ 8 files changed, 257 insertions(+) create mode 100644 conf.d/packaging/agl-app-framework-binder.dsc create mode 100644 conf.d/packaging/agl-app-framework-binder.spec create mode 100644 conf.d/packaging/debian.agl-app-framework-binder-bin.install create mode 100644 conf.d/packaging/debian.agl-app-framework-binder-dev.install create mode 100644 conf.d/packaging/debian.changelog create mode 100644 conf.d/packaging/debian.compat create mode 100644 conf.d/packaging/debian.control create mode 100644 conf.d/packaging/debian.rules (limited to 'conf.d') diff --git a/conf.d/packaging/agl-app-framework-binder.dsc b/conf.d/packaging/agl-app-framework-binder.dsc new file mode 100644 index 00000000..96612fbe --- /dev/null +++ b/conf.d/packaging/agl-app-framework-binder.dsc @@ -0,0 +1,19 @@ +Format: 1.0 +Source: agl-app-framework-binder +Binary: agl-app-framework-binder-bin, agl-app-framework-binder-dev +Architecture: any +Version: 2.0-0 +Maintainer: unknown +Standards-Version: 3.8.2 +Homepage: https://gerrit.automotivelinux.org/gerrit/#/admin/projects/src/app-framework-binder +Build-Depends: debhelper (>= 5), + dpkg-dev, + libmicrohttpd-dev (>= 0.9.54), + cmake, + libsystemd-dev (>= 222), + libssl-dev, + uuid-dev, + libgcrypt20-dev, + libjson-c-dev, + libmagic-dev +Debtransform-Tar: agl-app-framework-binder_2.0.orig.tar.gz diff --git a/conf.d/packaging/agl-app-framework-binder.spec b/conf.d/packaging/agl-app-framework-binder.spec new file mode 100644 index 00000000..cc920a0c --- /dev/null +++ b/conf.d/packaging/agl-app-framework-binder.spec @@ -0,0 +1,102 @@ +# +# spec file for package app-framework-binder +# + +%define _prefix /opt/AGL +%define __cmake cmake + +Name: agl-app-framework-binder +Version: 2.0 +Release: 0 +License: GPL-2.0 +Summary: app-framework-binder +Group: Development/Libraries/C and C++ +Url: https://gerrit.automotivelinux.org/gerrit/#/admin/projects/src/app-framework-binder +Source: %{name}_%{version}.orig.tar.gz +#BuildRequires: gdb +BuildRequires: pkgconfig(libmicrohttpd) >= 0.9.54 +BuildRequires: make +BuildRequires: cmake +BuildRequires: pkgconfig(libsystemd) >= 222 +BuildRequires: pkgconfig(openssl) +BuildRequires: pkgconfig(uuid) +BuildRequires: libgcrypt-devel +BuildRequires: pkgconfig(gnutls) +BuildRequires: pkgconfig(json-c) +BuildRequires: file-devel + +BuildRoot: %{_tmppath}/%{name}-%{version}-build + +%description +app-framework-binder + +%package devel +Summary: app-framework-binder-devel +Group: Development/Libraries/C and C++ +Requires: %{name} = %{version} +Provides: pkgconfig(%{name}) = %{version} + +%description devel +app-framework-binder-devel + +%prep +%setup -q + +%build +export PKG_CONFIG_PATH=%{_libdir}/pkgconfig +%cmake +%__make %{?_smp_mflags} + + +%install +[ -d build ] && cd build +%make_install + +mkdir -p %{buildroot}%{_sysconfdir}/profile.d +cat << EOF > %{buildroot}%{_sysconfdir}/profile.d/AGL_%{name}.sh +#---------- AGL %{name} options Start ---------" +# Object: AGL cmake option for binder/bindings +export LD_LIBRARY_PATH=%{_libdir}:\${LD_LIBRARY_PATH} +export LIBRARY_PATH=%{_libdir}:\${LIBRARY_PATH} +export PKG_CONFIG_PATH=%{_libdir}/pkgconfig:\${PKG_CONFIG_PATH} +export PATH=%{_bindir}:\$PATH +#---------- AGL options End --------- +EOF + +%post + +%postun + +%files +%defattr(-,root,root) +%dir %{_bindir} +%{_bindir}/afb-client-demo +%{_bindir}/afb-daemon +%{_bindir}/afb-genskel +%{_bindir}/afb-exprefs +%{_bindir}/afb-json2c + +%dir %{_libdir} +%dir %{_libdir}/afb +%{_libdir}/afb/afb-dbus-binding.so +%{_libdir}/afb/authLogin.so +%{_libdir}/libafbwsc.so.1 +%{_libdir}/libafbwsc.so.1.0 + +#app-framework-binder demo +%{_libdir}/afb/demoContext.so +%{_libdir}/afb/demoPost.so +%{_libdir}/afb/helloWorld.so +%{_libdir}/afb/tic-tac-toe.so + +%{_sysconfdir}/profile.d/AGL_%{name}.sh + +%files devel +%defattr(-,root,root) +%dir %{_prefix} +%{_libdir}/libafbwsc.so +%dir %{_includedir} +%dir %{_includedir}/afb +%{_includedir}/afb/*.h +%dir %{_libdir}/pkgconfig +%{_libdir}/pkgconfig/*.pc diff --git a/conf.d/packaging/debian.agl-app-framework-binder-bin.install b/conf.d/packaging/debian.agl-app-framework-binder-bin.install new file mode 100644 index 00000000..3faebfb3 --- /dev/null +++ b/conf.d/packaging/debian.agl-app-framework-binder-bin.install @@ -0,0 +1,14 @@ +/opt/AGL/lib/*/libafbwsc.so.1.0 +/opt/AGL/lib/*/libafbwsc.so.1 +/opt/AGL/lib/*/afb/authLogin.so +/opt/AGL/lib/*/afb/demoPost.so +/opt/AGL/lib/*/afb/afb-dbus-binding.so +/opt/AGL/lib/*/afb/tic-tac-toe.so +/opt/AGL/lib/*/afb/helloWorld.so +/opt/AGL/lib/*/afb/demoContext.so +/opt/AGL/bin/afb-json2c +/opt/AGL/bin/afb-daemon +/opt/AGL/bin/afb-exprefs +/opt/AGL/bin/afb-client-demo +/opt/AGL/bin/afb-genskel +/etc/profile.d/AGL_app-framework-binder.sh diff --git a/conf.d/packaging/debian.agl-app-framework-binder-dev.install b/conf.d/packaging/debian.agl-app-framework-binder-dev.install new file mode 100644 index 00000000..2d1a4016 --- /dev/null +++ b/conf.d/packaging/debian.agl-app-framework-binder-dev.install @@ -0,0 +1,3 @@ +/opt/AGL/include/afb/*.h +/opt/AGL/lib/*/pkgconfig/*.pc +/opt/AGL/lib/*/libafbwsc.so diff --git a/conf.d/packaging/debian.changelog b/conf.d/packaging/debian.changelog new file mode 100644 index 00000000..131bac4b --- /dev/null +++ b/conf.d/packaging/debian.changelog @@ -0,0 +1,5 @@ +agl-app-framework-binder (2.0-0) unstable; urgency=low + + * init build + + -- Ronan Le Martret Mon, 25 Dec 2007 10:50:38 +0100 diff --git a/conf.d/packaging/debian.compat b/conf.d/packaging/debian.compat new file mode 100644 index 00000000..45a4fb75 --- /dev/null +++ b/conf.d/packaging/debian.compat @@ -0,0 +1 @@ +8 diff --git a/conf.d/packaging/debian.control b/conf.d/packaging/debian.control new file mode 100644 index 00000000..948f3fe1 --- /dev/null +++ b/conf.d/packaging/debian.control @@ -0,0 +1,26 @@ +Priority: optional +Maintainer: unknown +Source: agl-app-framework-binder +Build-Depends: debhelper (>= 5), + libmicrohttpd-dev (>= 0.9.54), + cmake, + libsystemd-dev (>= 222), + libssl-dev, + uuid-dev, + libgcrypt20-dev, + libjson-c-dev, + libmagic-dev +Standards-Version: 3.8.2 +Homepage: https://gerrit.automotivelinux.org/gerrit/#/admin/projects/src/app-framework-binder + +Package: agl-app-framework-binder-bin +Section: libs +Architecture: any +Description: agl-app-framework-binder + +Package: agl-app-framework-binder-dev +Section: libs +Architecture: any +Depends: agl-app-framework-binder-bin +Description: agl-app-framework-binder-devel + diff --git a/conf.d/packaging/debian.rules b/conf.d/packaging/debian.rules new file mode 100644 index 00000000..4fcc791c --- /dev/null +++ b/conf.d/packaging/debian.rules @@ -0,0 +1,87 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Uncomment this to turn on verbose mode. +export DH_VERBOSE=1 + +# These are used for cross-compiling and for saving the configure script +# from having to guess our platform (since we know it already) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif +ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) + INSTALL_PROGRAM += -s +endif + +configure: configure-stamp +configure-stamp: + dh_testdir + # + touch configure-stamp + +build: build-stamp +build-stamp: configure-stamp + dh_testdir + mkdir -p build + export PKG_CONFIG_PATH=/opt/AGL/lib/$(DEB_HOST_MULTIARCH)/pkgconfig;cd build;cmake ../ -DCMAKE_INSTALL_PREFIX:PATH=/opt/AGL -DCMAKE_INSTALL_LIBDIR:PATH=lib/$(DEB_HOST_MULTIARCH);$(MAKE) + touch build-stamp + +clean: + #dh_testdir + dh_testroot + rm -f configure-stamp build-stamp + [ ! -f Makefile ] || $(MAKE) distclean + #dh_clean + +install: build + dh_testdir + dh_testroot + dh_prep + dh_installdirs + # Add here commands to install the package into debian/tmp + cd build;make install DESTDIR=/usr/src/packages/BUILD/debian/tmp + mkdir -p debian/tmp/etc/profile.d + echo '#---------- AGL app-framework-binder options Start ---------" ' > debian/tmp/etc/profile.d/AGL_app-framework-binder.sh + echo '# Object: AGL cmake option for binder/bindings' >> debian/tmp/etc/profile.d/AGL_app-framework-binder.sh + echo 'export LD_LIBRARY_PATH=/opt/AGL/lib/$(DEB_HOST_MULTIARCH):$${LD_LIBRARY_PATH}' >> debian/tmp/etc/profile.d/AGL_app-framework-binder.sh + echo 'export LIBRARY_PATH=/opt/AGL/lib/$(DEB_HOST_MULTIARCH):$${LIBRARY_PATH}' >> debian/tmp/etc/profile.d/AGL_app-framework-binder.sh + echo 'export PKG_CONFIG_PATH=/opt/AGL/lib/$(DEB_HOST_MULTIARCH)/pkgconfig:$${PKG_CONFIG_PATH}' >> debian/tmp/etc/profile.d/AGL_app-framework-binder.sh + echo 'export PATH=/opt/AGL/bin:$${PATH}' >> debian/tmp/etc/profile.d/AGL_app-framework-binder.sh + echo '#---------- AGL options End ---------' >> debian/tmp/etc/profile.d/AGL_app-framework-binder.sh + # Move all files in their corresponding package + dh_install --list-missing -s --sourcedir=debian/tmp + # empty dependency_libs in .la files + #sed -i "/dependency_libs/ s/'.*'/''/" `find debian/ -name '*.la'` + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_installexamples + dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms + dh_makeshlibs -V + dh_installdeb + #dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install -- cgit 1.2.3-korg