Initial packaging. accepted/tizen_3.0.m14.3_ivi accepted/tizen_3.0_ivi accepted/tizen_4.0_unified accepted/tizen_ivi accepted/tizen_ivi_panda accepted/tizen_ivi_release accepted/tizen_unified devel/ivi protex_M14.3 protex_M14.4 tizen tizen_3.0 tizen_3.0.m14.2_ivi tizen_3.0.m14.3_ivi tizen_3.0.m2 tizen_3.0_ivi tizen_4.0 tizen_ivi_panda tizen_ivi_release accepted/tizen/3.0/ivi/20161011.053605 accepted/tizen/4.0/unified/20170816.015759 accepted/tizen/4.0/unified/20170828.222127 accepted/tizen/ivi/20140307.001049 accepted/tizen/ivi/20160321.115324 accepted/tizen/ivi/panda/20140403.014016 accepted/tizen/ivi/release/20140315.041611 accepted/tizen/unified/20170309.074727 accepted/tizen/unified/20170310.110240 submit/devel/ivi/20160126.011436 submit/tizen/20140306.233029 submit/tizen_3.0_ivi/20161010.000000 submit/tizen_3.0_ivi/20161010.000010 submit/tizen_4.0/20170811.094300 submit/tizen_4.0/20170814.115522 submit/tizen_4.0/20170828.100008 submit/tizen_4.0_unified/20170814.115522 submit/tizen_ivi/20160321.073004 submit/tizen_ivi_panda/20140403.012129 submit/tizen_ivi_release/20140315.041355 submit/tizen_unified/20170308.100418 submit/tizen_unified/20170309.100417 submit/tizen_unified/20170310.104248 tizen_3.0.m14.2_ivi_release tizen_3.0.m14.3_ivi_release tizen_3.0_ivi_release tizen_4.0.m1_release
authorOssama Othman <ossama.othman@intel.com>
Thu, 6 Mar 2014 21:52:48 +0000 (13:52 -0800)
committerOssama Othman <ossama.othman@intel.com>
Thu, 6 Mar 2014 23:04:44 +0000 (15:04 -0800)
Change-Id: Icb230d9938f3d9937b43f5eb118cc7e0d948dad9
Signed-off-by: Ossama Othman <ossama.othman@intel.com>
.gbs.conf [new file with mode: 0644]
.gitignore [new file with mode: 0644]
packaging/apr-util.changes [new file with mode: 0644]
packaging/apr-util.manifest [new file with mode: 0644]
packaging/apr-util.spec [new file with mode: 0644]

diff --git a/.gbs.conf b/.gbs.conf
new file mode 100644 (file)
index 0000000..fa9fdc5
--- /dev/null
+++ b/.gbs.conf
@@ -0,0 +1,3 @@
+[general]
+upstream_branch = upstream
+upstream_tag = ${upstreamversion}
diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..c58021f
--- /dev/null
@@ -0,0 +1,28 @@
+*.o
+*.lo
+*.la
+*.so*
+*.a
+*~
+*#*#
+config.log
+config.status
+Makefile
+Makefile.in
+.deps
+INSTALL
+missing
+aclocal.m4
+ar-lib
+autom4te.cache/
+compile
+configure
+depcomp
+install-sh
+libtool
+ltmain.sh
+.libs
+stamp*
+config.*
+core*
+
diff --git a/packaging/apr-util.changes b/packaging/apr-util.changes
new file mode 100644 (file)
index 0000000..a5e507f
--- /dev/null
@@ -0,0 +1,4 @@
+* Thu Mar 06 2014 Ossama Othman <ossama.othman@intel.com> bdfbb5c
+- Initial packaging.
+- Initial import.
+
diff --git a/packaging/apr-util.manifest b/packaging/apr-util.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/apr-util.spec b/packaging/apr-util.spec
new file mode 100644 (file)
index 0000000..50080c2
--- /dev/null
@@ -0,0 +1,62 @@
+Name:          apr-util
+Version:       1.5.3
+Release:       0
+Summary:       Apache Portable Runtime utility library
+License:       Apache-2.0
+Group:         Application Framework/Libraries
+URL:           http://apr.apache.org/
+Source:                %name-%version.tar.xz
+Source1001:    %{name}.manifest
+BuildRequires: autoconf >= 2.64, automake >= 1.11
+BuildRequires: libtool >= 2.2
+BuildRequires: pkgconfig(apr-1)
+BuildRequires: pkgconfig(expat)
+
+%description
+Software libraries that provide a predictable and consistent interface
+to underlying platform-specific implementations. The primary goal is
+to provide an API to which software developers may code and be assured
+of predictable if not identical behaviour regardless of the platform
+on which their software is built, relieving them of the need to code
+special-case conditions to work around or take advantage of
+platform-specific deficiencies or features.
+
+%package devel
+Summary:       Development files for the APR utility library
+Group:         Application Framework/Libraries
+Requires:       %name = %version
+Requires:       apr-devel
+Requires:       expat-devel
+
+%description devel
+Development files, including headers, for the APR utility library.
+
+%prep
+%setup -q
+cp %{SOURCE1001} .
+
+%build
+autoreconf
+%configure --disable-static --with-apr=/usr/bin/apr-1-config
+make %{?_smp_mflags}
+
+%install
+%make_install
+
+%post -p /sbin/ldconfig
+%postun -p /sbin/ldconfig
+
+%files
+%manifest %{name}.manifest
+%license LICENSE
+%defattr(-,root,root)
+%{_libdir}/*.so.*
+
+%files devel
+%manifest %{name}.manifest
+%defattr(-,root,root)
+%{_bindir}/apu-1-config
+%{_includedir}/*.h
+%{_libdir}/aprutil.exp
+%{_libdir}/*.so
+%{_libdir}/pkgconfig/*.pc
\ No newline at end of file