Remove unused build dependencies 26/195426/3
authorSangyoon Jang <jeremy.jang@samsung.com>
Thu, 13 Dec 2018 10:19:20 +0000 (19:19 +0900)
committerSangyoon Jang <jeremy.jang@samsung.com>
Thu, 13 Dec 2018 11:26:53 +0000 (20:26 +0900)
Change-Id: I55bbaba24f7a8e126533e58e76f40f19cb81adec
Signed-off-by: Sangyoon Jang <jeremy.jang@samsung.com>
CMakeLists.txt
packaging/manifest-parser.spec
src/manifest_parser/CMakeLists.txt
src/manifest_parser/manifest-parser.pc.in
src/manifest_parser/manifest_parser_impl.h
src/manifest_parser/utils/w3c_languages.cc
src/unit_tests/CMakeLists.txt

index a20710980f2f7f7983ff00eb02aa4079cacc49b4..dc33c2c70ae6c21b8969befe48f7c0d341cbc1f4 100644 (file)
@@ -40,12 +40,8 @@ SET(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Mo
 INCLUDE(FindPkgConfig)
 INCLUDE(ApplyPkgConfig)
 
-PKG_CHECK_MODULES(PKGMGR_PARSER_DEPS REQUIRED pkgmgr-parser)
-PKG_CHECK_MODULES(PKGMGR_INFO_DEPS REQUIRED pkgmgr-info)
 PKG_CHECK_MODULES(LIBXML_DEPS REQUIRED libxml-2.0)
-PKG_CHECK_MODULES(VCONF_DEPS REQUIRED vconf)
 PKG_CHECK_MODULES(LIBIRI_DEPS REQUIRED libiri)
-PKG_CHECK_MODULES(XGDMIME_DEPS REQUIRED xdgmime)
 PKG_CHECK_MODULES(DLOG_DEPS REQUIRED dlog)
 
 FIND_PACKAGE(GTest REQUIRED)
index cfebeda037d1e9cbaa811995bb54b6e091c97233..0e58b9600be51c722bbf271bc6ec4fd3e4c1f140 100644 (file)
@@ -11,15 +11,10 @@ BuildRequires:  boost-devel
 BuildRequires:  cmake
 BuildRequires:  gtest-devel
 BuildRequires:  pkgconfig(dlog)
-BuildRequires:  pkgconfig(pkgmgr-parser)
-BuildRequires:  pkgconfig(pkgmgr-info)
 BuildRequires:  pkgconfig(libiri)
 BuildRequires:  pkgconfig(libxml-2.0)
-BuildRequires:  pkgconfig(vconf)
-BuildRequires:  pkgconfig(xdgmime)
 
 Requires: ca-certificates-tizen
-Requires: libtzplatform-config
 
 %description
 This is a meta package that installs manifest parser.
index 087b1d46b4dc642ba80c67d7c8ba7b5d02442d93..082d47522a28f880b8d1013b458ccae364f1bc61 100644 (file)
@@ -8,8 +8,6 @@ TARGET_INCLUDE_DIRECTORIES(${TARGET_LIBNAME_PARSER} PUBLIC "${CMAKE_CURRENT_SOUR
 # Target - deps
 APPLY_PKG_CONFIG(${TARGET_LIBNAME_PARSER} PUBLIC
   LIBXML_DEPS
-  PKGMGR_INFO_DEPS
-  VCONF_DEPS
   Boost
 )
 
index de2b8f8212288ec80d2e7d183631bae218be1aa5..45ca8e5e1ea471792554a5caa329393bdf8db992 100644 (file)
@@ -6,6 +6,6 @@ includedir=@INCLUDEDIR@
 Name: manifest-parser
 Description: Universal manifest parser
 Version: @FULLVER@
-Requires: libiri libxml-2.0 pkgmgr-info pkgmgr-parser vconf manifest-parser-utils
+Requires: libxml-2.0
 Libs: -L${libdir} -lmanifest-parser
 Cflags: -I${includedir}
index d0ec602f333c0c01dbe32809418044c114074217..8a310814dcb006bde11d4944101be702c77a0131 100644 (file)
@@ -6,7 +6,6 @@
 #define MANIFEST_PARSER_MANIFEST_PARSER_IMPL_H_
 
 #include <boost/filesystem/path.hpp>
-#include <pkgmgr/pkgmgr_parser.h>
 
 #include <map>
 #include <memory>
index 858b117cfc3608a6821a2aa4e9e7e46042810ecb..8c73b770b8c1ac03b78cf0af26d5de02ac43af78 100644 (file)
@@ -5,7 +5,6 @@
 #include "manifest_parser/utils/w3c_languages.h"
 
 #include <boost/filesystem.hpp>
-#include <tzplatform_config.h>
 #include <algorithm>
 #include <fstream>
 #include <vector>
index 479764a65e68e9a5ceef02d4c73828b6beec4b75..5ec4ffe07afb0b3c1fae1a0292243103f038d3f2 100644 (file)
@@ -32,10 +32,6 @@ INSTALL(DIRECTORY test_samples/ DESTINATION ${SHAREDIR}/${DESTINATION_DIR}/test_
 
 FOREACH(test ${TESTS})
 APPLY_PKG_CONFIG(${test} PUBLIC
-  LIBXML_DEPS
-  PKGMGR_INFO_DEPS
-  PKGMGR_PARSER_DEPS
-  VCONF_DEPS
   Boost
   GTEST
 )