Remove tag processing from module 68/57868/7 accepted/tizen/mobile/20160212.002405 accepted/tizen/mobile/20160212.050022 accepted/tizen/tv/20160212.002418 accepted/tizen/tv/20160212.050038 accepted/tizen/wearable/20160212.002445 accepted/tizen/wearable/20160212.050043 submit/tizen/20160211.093134 submit/tizen/20160212.012608
authorLukasz Wartalowicz <l.wartalowic@samsung.com>
Mon, 25 Jan 2016 11:55:42 +0000 (12:55 +0100)
committerTomasz Iwanek <t.iwanek@samsung.com>
Thu, 11 Feb 2016 09:10:23 +0000 (10:10 +0100)
Requires:
       - https://review.tizen.org/gerrit/#/c/57505/
       - https://review.tizen.org/gerrit/#/c/57506/
       - https://review.tizen.org/gerrit/#/c/57334/
       - https://review.tizen.org/gerrit/#/c/57241/

Change-Id: I257c54d7bc47368ac68e4ef55bf54b54eb47f0c7

parser/pkgmgr_parser.c

index 13e683a..b672cf3 100644 (file)
@@ -2137,7 +2137,6 @@ API int pkgmgr_parser_process_manifest_x_for_installation(manifest_x* mfx, const
        retvm_if(ret == PMINFO_R_ERROR, PMINFO_R_ERROR, "DB Insert failed");
        _LOGD("DB Insert Success\n");
 
-       __ps_process_tag_parser(mfx, manifest, ACTION_INSTALL);
        ret = __ps_process_metadata_parser(mfx, ACTION_INSTALL);
        if (ret == -1)
                _LOGD("Creating metadata parser failed\n");
@@ -2161,7 +2160,6 @@ API int pkgmgr_parser_process_usr_manifest_x_for_installation(manifest_x* mfx, c
        retvm_if(ret == PMINFO_R_ERROR, PMINFO_R_ERROR, "DB Insert failed");
        _LOGD("DB Insert Success\n");
 
-       __ps_process_tag_parser(mfx, manifest, ACTION_INSTALL);
        ret = __ps_process_metadata_parser(mfx, ACTION_INSTALL);
        if (ret == -1)
                _LOGD("Creating metadata parser failed\n");
@@ -2345,7 +2343,6 @@ API int pkgmgr_parser_process_manifest_x_for_upgrade(manifest_x* mfx, const char
        retvm_if(ret == PMINFO_R_ERROR, PMINFO_R_ERROR, "DB Insert failed");
        _LOGD("DB Update Success\n");
 
-       __ps_process_tag_parser(mfx, manifest, ACTION_UPGRADE);
        ret = __ps_process_metadata_parser(mfx, ACTION_UPGRADE);
        if (ret == -1){
                _LOGD("Upgrade metadata parser failed\n");
@@ -2376,7 +2373,6 @@ API int pkgmgr_parser_process_usr_manifest_x_for_upgrade(manifest_x* mfx, const
        retvm_if(ret == PMINFO_R_ERROR, PMINFO_R_ERROR, "DB Insert failed");
        _LOGD("DB Update Success\n");
 
-       __ps_process_tag_parser(mfx, manifest, ACTION_UPGRADE);
        ret = __ps_process_metadata_parser(mfx, ACTION_UPGRADE);
        if (ret == -1)
                _LOGD("Upgrade metadata parser failed\n");
@@ -2475,7 +2471,6 @@ API int pkgmgr_parser_process_manifest_x_for_uninstallation(manifest_x* mfx, con
 
        int ret = -1;
        xmlInitParser();
-       __ps_process_tag_parser(mfx, manifest, ACTION_UNINSTALL);
 
        ret = __ps_process_metadata_parser(mfx, ACTION_UNINSTALL);
        if (ret == -1)
@@ -2503,8 +2498,6 @@ API int pkgmgr_parser_process_usr_manifest_x_for_uninstallation(manifest_x* mfx,
        int ret = -1;
        xmlInitParser();
 
-       __ps_process_tag_parser(mfx, manifest, ACTION_UNINSTALL);
-
        ret = __ps_process_metadata_parser(mfx, ACTION_UNINSTALL);
        if (ret == -1)
                _LOGD("Removing metadata parser failed\n");