cleanup spec and drop debug package 07/8807/4 accepted/tizen/20130912.092134 accepted/tizen/20130912.095821 accepted/tizen/20130912.111932 accepted/tizen/20130912.145722 accepted/tizen/20130912.191832 accepted/tizen/20130912.195933 submit/tizen/20130830.185029 submit/tizen/20130912.075916 submit/tizen/20130912.090225
authorAnas Nashif <anas.nashif@intel.com>
Tue, 27 Aug 2013 12:40:26 +0000 (08:40 -0400)
committerAnas Nashif <anas.nashif@intel.com>
Tue, 27 Aug 2013 20:33:06 +0000 (16:33 -0400)
- Install license using %license
- Do not override gloabl ARM opt flags in spec
- Remove debug sub-package, we will use debuginfo instead
- Reset permissions of files in repository

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
Change-Id: I93bb575fdb6259bbf56aaa3f42968cb5ba988e69

CMakeLists.txt [changed mode: 0755->0644]
LICENSE.APLv2.0 [changed mode: 0755->0644]
NOTICE [changed mode: 0755->0644]
osp-json.manifest [changed mode: 0755->0644]
osp-json.pc.in [changed mode: 0755->0644]
packaging/osp-json.spec

old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
diff --git a/NOTICE b/NOTICE
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
index 7906adb..d3731ff 100755 (executable)
@@ -1,58 +1,40 @@
-%define debug_package %{nil}
-%define __strip /bin/true
-
-Name:          osp-json
-Summary:       osp json library
-Version:       1.2.1.0
-Release:       2
-Group:         System/Libraries
-License:       TO_BE/FILLED_IN
-Source0:       %{name}-%{version}.tar.gz
+Name:           osp-json
+Version:        1.2.1.0
+Release:        2
+License:        Apache-2.0
+Summary:        OSP JSON Library
+Group:          System/Libraries
+Source0:        %{name}-%{version}.tar.gz
 BuildRequires:  cmake
-BuildRequires:  pkgconfig(osp-appfw)
 BuildRequires:  osp-appfw-internal-devel
-
-# runtime requires
-Requires: osp-appfw 
+BuildRequires:  pkgconfig(osp-appfw)
+Requires:       osp-appfw
 
 %description
-osp json library
+OSP json library
 
 %package devel
-Summary:    osp json library (Development)
-Group:      TO_BE/FILLED_IN
-Requires:   %{name} = %{version}-%{release}
+Summary:        osp json library (Development)
+Requires:       %{name} = %{version}
 
 %description devel
 osp json library (DEV)
 
-%package debug
-Summary:    osp json library (Development)
-Group:      TO_BE/FILLED_IN
-Requires:   %{name} = %{version}-%{release}
-
-%description debug
-osp json library (DEV)
 
 %prep
 %setup -q
 
-%build 
+%build
 MAJORVER=`echo %{version} | awk 'BEGIN {FS="."}{print $1}'`
 %ifarch %{ix86}
-CXXFLAGS="$CXXFLAGS -D_OSP_DEBUG_ -D_SECURE_LOG -D_OSP_X86_ -D_OSP_EMUL_" cmake . -DCMAKE_INSTALL_PREFIX=%{_prefix} -DFULLVER=%{version} -DMAJORVER=${MAJORVER}
+CXXFLAGS="$CXXFLAGS -D_OSP_DEBUG_ -D_SECURE_LOG -D_OSP_X86_ -D_OSP_EMUL_" %cmake . -DFULLVER=%{version} -DMAJORVER=${MAJORVER}
 %else
-CXXFLAGS="-O2 -g -pipe -Wall -fno-exceptions -Wformat -Wformat-security -Wl,--as-needed -fmessage-length=0 -march=armv7-a -mtune=cortex-a8 -mlittle-endian -mfpu=neon -mfloat-abi=softfp -D__SOFTFP__ -mthumb -Wa,-mimplicit-it=thumb -funwind-tables -D_OSP_DEBUG_ -D_SECURE_LOG -D_OSP_ARMEL_" cmake . -DCMAKE_INSTALL_PREFIX=%{_prefix} -DFULLVER=%{version} -DMAJORVER=${MAJORVER}
+CXXFLAGS="$CXXFLAGS -D_OSP_DEBUG_ -D_SECURE_LOG -D_OSP_ARMEL_" %cmake .  -DFULLVER=%{version} -DMAJORVER=${MAJORVER}
 %endif
 
-# Call make instruction with smp support
-make %{?jobs:-j%jobs}
+make %{?_smp_mflags}
 
 %install
-rm -rf %{buildroot}
-mkdir -p %{buildroot}/usr/share/license
-cat %{_builddir}/%{name}-%{version}/LICENSE.APLv2.0 >> %{buildroot}/usr/share/license/%{name}
-
 %make_install
 
 %post -p /sbin/ldconfig
@@ -61,12 +43,9 @@ cat %{_builddir}/%{name}-%{version}/LICENSE.APLv2.0 >> %{buildroot}/usr/share/li
 
 %files
 %manifest osp-json.manifest
-/usr/share/license/%{name}
+%license LICENSE.APLv2.0
 %{_libdir}/osp/libosp-json.so*
 
 %files devel
 %{_includedir}/osp/*.h
 %{_libdir}/pkgconfig/osp-json.pc
-
-%files debug
-%{_libdir}/osp/debug/libosp-json.so.*