Add packaging directory accepted/tizen/ivi/release accepted/tizen/ivi/stable accepted/tizen/mobile accepted/tizen_3.0.2014.q3_common accepted/tizen_3.0.m14.3_ivi accepted/tizen_3.0_common accepted/tizen_3.0_ivi accepted/tizen_4.0_unified accepted/tizen_5.0_unified accepted/tizen_common accepted/tizen_generic accepted/tizen_ivi accepted/tizen_ivi_panda accepted/tizen_mobile accepted/tizen_tv accepted/tizen_wearable tizen_3.0 tizen_3.0.2014.q3_common tizen_3.0.2014.q4_common tizen_3.0.2015.q1_common tizen_3.0.2015.q2_common tizen_3.0.m14.2_ivi tizen_3.0.m14.3_ivi tizen_3.0.m1_mobile tizen_3.0.m1_tv tizen_3.0.m2 tizen_3.0_ivi tizen_4.0 tizen_5.0 tizen_ivi_panda accepted/tizen/20131023.170912 accepted/tizen/20131105.191957 accepted/tizen/20131112.015251 accepted/tizen/3.0/common/20161114.111024 accepted/tizen/3.0/ivi/20161011.050515 accepted/tizen/4.0/unified/20170816.012548 accepted/tizen/4.0/unified/20170828.222941 accepted/tizen/5.0/unified/20181102.030352 accepted/tizen/ivi/20160218.025224 accepted/tizen/ivi/panda/20140403.014353 accepted/tizen/unified/20170309.035959 submit/tizen/20131023.011205 submit/tizen_3.0.m2/20170104.093753 submit/tizen_3.0_common/20161104.104000 submit/tizen_3.0_ivi/20161010.000004 submit/tizen_4.0/20170811.094300 submit/tizen_4.0/20170828.100006 submit/tizen_5.0/20181101.000007 submit/tizen_common/20151023.083358 submit/tizen_common/20151026.085049 submit/tizen_ivi/20160217.000000 submit/tizen_ivi/20160217.000006 submit/tizen_ivi_panda/20140403.012020 submit/tizen_mobile/20141120.000000 submit/tizen_unified/20170308.100414 tizen_3.0.2014.q3_common_release tizen_3.0.m14.2_ivi_release tizen_3.0.m14.3_ivi_release tizen_3.0.m1_mobile_release tizen_3.0.m1_tv_release tizen_3.0.m2.a1_mobile_release tizen_3.0.m2.a1_tv_release tizen_3.0_ivi_release tizen_4.0.IoT.p1_release tizen_4.0.IoT.p2_release tizen_4.0.m1_release tizen_4.0.m2_release
authorArron Wang <arron.wang@intel.com>
Mon, 21 Oct 2013 03:04:18 +0000 (11:04 +0800)
committerArron Wang <arron.wang@intel.com>
Wed, 23 Oct 2013 01:11:25 +0000 (09:11 +0800)
Change-Id: I6e0505cfcae0df47c1f1571ea8a7667107fa5ec6

.gbs.conf [new file with mode: 0644]
packaging/libnl3.changes [new file with mode: 0644]
packaging/libnl3.manifest [new file with mode: 0644]
packaging/libnl3.spec [new file with mode: 0644]

diff --git a/.gbs.conf b/.gbs.conf
new file mode 100644 (file)
index 0000000..99e7cc8
--- /dev/null
+++ b/.gbs.conf
@@ -0,0 +1,3 @@
+[general]
+upstream_branch = upstream
+upstream_tag = upstream/${upstreamversion}
diff --git a/packaging/libnl3.changes b/packaging/libnl3.changes
new file mode 100644 (file)
index 0000000..8b13789
--- /dev/null
@@ -0,0 +1 @@
+
diff --git a/packaging/libnl3.manifest b/packaging/libnl3.manifest
new file mode 100644 (file)
index 0000000..017d22d
--- /dev/null
@@ -0,0 +1,5 @@
+<manifest>
+ <request>
+    <domain name="_"/>
+ </request>
+</manifest>
diff --git a/packaging/libnl3.spec b/packaging/libnl3.spec
new file mode 100644 (file)
index 0000000..167e4f2
--- /dev/null
@@ -0,0 +1,79 @@
+Name:       libnl3
+Summary:    Library for netlink sockets
+Version:    3.2.22
+Release:    1
+Group:      System/Network
+License:    LGPL-2.1
+Source0:    %{name}-%{version}.tar.gz
+Source1001:    libnl3.manifest
+BuildRequires:  bison
+BuildRequires:  flex
+
+%description
+This is a library for applications dealing with netlink sockets.
+The library provides an interface for raw netlink messaging and various
+netlink family specific interfaces.
+
+%package devel
+Summary:    Development library and headers for libnl3
+Group:      Development/Libraries
+Requires:   %{name} = %{version}-%{release}
+
+%description devel
+This is a library for applications dealing with netlink sockets.
+The library provides an interface for raw netlink messaging and various
+netlink family specific interfaces.
+This package contains all files that are needed to build applications using
+libnl3.
+
+%package cli
+Summary:   Command line interface utils for libnl3
+Group:     Development/Libraries
+Requires:  %{name} = %{version}-%{release}
+
+%description cli
+This package contains various libnl3 utils and additional
+libraries on which they depend
+
+%prep
+%setup -q
+cp %{SOURCE1001} .
+
+
+%build
+chmod +x autogen.sh
+%autogen.sh
+%configure
+
+make -j1
+
+%install
+%make_install
+rm -f %{buildroot}/etc/libnl/pktloc
+
+%post -p /sbin/ldconfig
+%post cli -p /sbin/ldconfig
+%postun -p /sbin/ldconfig
+%postun cli -p /sbin/ldconfig
+
+%files
+%manifest %{name}.manifest
+%defattr(-,root,root,-)
+%license COPYING
+%{_libdir}/libnl*.so.*
+%exclude %{_libdir}/libnl-cli*.so.*
+%config(noreplace) %{_sysconfdir}/*
+
+%files devel
+%manifest %{name}.manifest
+%defattr(-,root,root,-)
+%{_includedir}/*
+%{_libdir}/pkgconfig/*
+%{_libdir}/libnl*.so
+
+%files cli
+%defattr(-,root,root,-)
+%{_libdir}/libnl-cli*.so.*
+%{_libdir}/libnl/
+%{_sbindir}/*
+%{_mandir}/man8/*