From 69ed48b6f589f9de5ff3519d801c4da1d9ea9fa2 Mon Sep 17 00:00:00 2001 From: steven_q Date: Tue, 9 May 2023 16:55:22 +0800 Subject: [PATCH] fix bundle.json Signed-off-by: steven_q Change-Id: Iedbc276cb7a022e7504b8f47658a2fab0c1d71f6 --- bundle.json | 24 +++++++++++++++++------- 1 file changed, 17 insertions(+), 7 deletions(-) diff --git a/bundle.json b/bundle.json index b5488302..95c13fea 100644 --- a/bundle.json +++ b/bundle.json @@ -1,28 +1,38 @@ { - "name": "@ohos/selinux", + "name": "@ohos/thirdparty_selinux", "description": "The CI now uses GitHub Actions to run tests and the SELinux testsuite in a virtual machine. Replace the Travis CI badge with the ones for these workflows.", "version": "3.1", - "license": "GNU GENERAL PUBLIC LICENSE", + "license": [ + "GPL V2.0", + "Public Domain", + "LGPL V2.1", + "BSD 2-Clause License" + ], "publishAs": "code-segment", "segment": { "destPath": "third_party/selinux" }, "dirs": {}, "scripts": {}, - "licensePath": "libselinux/LICENSE", + "licensePath": [ + "libselinux/LICENSE", + "checkpolicy/COPYING", + "libsepol/COPYING", + "secilc/COPYING" + ], "component": { "name": "thirdparty_selinux", - "subsystem": "", + "subsystem": "thirdparty", "syscap": [], "features": [], "adapted_system_type": [ "standard" ], - "rom": "", - "ram": "", + "rom": "1024KB", + "ram": "1024KB", "deps": { "components": [], - "third_party": [] + "third_party": [ "pcre2" ] }, "build": { "sub_component": [], -- Gitee