Bump to version 0.11 sandbox/kevinthierry/bump-0.11 tizen_3.0.2014.q4_common tizen_3.0.2015.q1_common tizen_3.0.2015.q2_common tizen_3.0.m1_mobile tizen_3.0.m1_tv tizen_3.0_ivi accepted/tizen/common/20141218.123316 accepted/tizen/ivi/20141220.084323 accepted/tizen/mobile/20141219.010224 accepted/tizen/tv/20141219.010128 accepted/tizen/wearable/20141219.010154 submit/tizen/20141217.021523 submit/tizen_common/20151015.190624 submit/tizen_common/20151019.135620 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
authorKévin THIERRY <kevin.thierry@open.eurogiciel.org>
Mon, 3 Nov 2014 14:17:15 +0000 (15:17 +0100)
committerKévin THIERRY <kevin.thierry@open.eurogiciel.org>
Mon, 3 Nov 2014 14:20:24 +0000 (15:20 +0100)
Use upstream git repo instead of pristin-tar.

Build with "-j1" to prevent an existing race condition.

Remove duplicate entry for "json_object_iterator.h" which leads to
installation failure.

Bug-Tizen: TC-1831
Change-Id: I6b548537816b1d2b95ccbcea9087050e970dfd5e
Signed-off-by: Kévin THIERRY <kevin.thierry@open.eurogiciel.org>
Makefile.am
packaging/json-c.spec

index b57d855..df56a69 100644 (file)
@@ -26,7 +26,6 @@ libjson_cinclude_HEADERS = \
        json_object.h \
        json_object_iterator.h \
        json_object_private.h \
-       json_object_iterator.h \
        json_tokener.h \
        json_util.h \
        linkhash.h \
index 1b04d6f..c050575 100644 (file)
@@ -1,13 +1,14 @@
 Name:           json-c
-Version:        0.10
+Version:        0.11
 Release:        0
 License:        MIT
 Summary:        JSON implementation in C
 Url:            http://oss.metaparadigm.com/%{name}
+#X-Vcs-Url:     https://github.com/json-c/json-c.git
 Group:          System/Libraries
 Source0:        http://oss.metaparadigm.com/json-c/json-c-%{version}.tar.gz
 Source1:        baselibs.conf
-Source1001:    json-c.manifest
+Source1001:     json-c.manifest
 BuildRequires:  libtool
 BuildRequires:  pkg-config
 
@@ -38,12 +39,12 @@ using the json-c library
 cp %{SOURCE1001} .
 
 %build
-autoreconf -fiv
-%configure --disable-static --with-pic
-make %{?_smp_mflags}
+%reconfigure --disable-static --with-pic
+# Build with "-j1" to prevent an existing race condition
+%__make -j1
 
 %check
-make %{?_smp_mflags} check
+%__make %{?_smp_mflags} check
 
 %install
 %make_install
@@ -56,13 +57,14 @@ make %{?_smp_mflags} check
 %manifest %{name}.manifest
 %defattr(-,root,root)
 %license COPYING
+%{_libdir}/libjson-c.so.*
 %{_libdir}/libjson.so.*
 
 %files -n libjson-devel
 %manifest %{name}.manifest
 %defattr(-,root,root)
+%{_libdir}/libjson-c.so
 %{_libdir}/libjson.so
+%{_includedir}/json-c
 %{_includedir}/json
 %{_libdir}/pkgconfig/*.pc
-
-%changelog