mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-04-02 02:49:12 +00:00
Changelog: oas32: add basic OpenAPI 3.2.0 support Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
24 lines
1.0 KiB
BlitzBasic
24 lines
1.0 KiB
BlitzBasic
SUMMARY = "Visually render documentation for an API defined with the OpenAPI"
|
||
DESCRIPTION = "\
|
||
Swagger UI allows anyone — be it your development team or your end consumers — to visualize and \
|
||
interact with the API’s resources without having any of the implementation logic in place. \
|
||
It’s automatically generated from your OpenAPI (formerly known as Swagger) Specification, \
|
||
with the visual documentation making it easy for back end implementation and client side consumption. \
|
||
"
|
||
HOMEPAGE = "https://github.com/swagger-api/swagger-ui"
|
||
SECTION = "net"
|
||
LICENSE = "Apache-2.0"
|
||
LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"
|
||
|
||
SRC_URI = "git://github.com/swagger-api/swagger-ui;branch=master;protocol=https;tag=v${PV}"
|
||
|
||
SRCREV = "1b33a5976d8f5e02d3bc40de1deae3a4a3642e36"
|
||
|
||
CVE_STATUS[CVE-2016-1000229] = "fixed-version: fixed since 2.2.1"
|
||
|
||
|
||
do_install() {
|
||
install -d ${D}${localstatedir}/www/openapi/static
|
||
cp -r ${S}/dist/* ${D}${localstatedir}/www/openapi/static
|
||
}
|