mirror of
https://gitee.com/iresty/apisix.git
synced 2024-12-14 08:51:29 +08:00
7440192f8f
If the Luarocks version is lower than "v2.4.3", it does not support the "--only-deps" parameter. Even if we set the "--only-deps" parameter, no error message will be given during runtime. We only wanted to install the dependencies in the deps directory, but the APISIX was also installed so that the test case might load the wrong version of the source code.
73 lines
2.3 KiB
Lua
73 lines
2.3 KiB
Lua
--
|
|
-- Licensed to the Apache Software Foundation (ASF) under one or more
|
|
-- contributor license agreements. See the NOTICE file distributed with
|
|
-- this work for additional information regarding copyright ownership.
|
|
-- The ASF licenses this file to You under the Apache License, Version 2.0
|
|
-- (the "License"); you may not use this file except in compliance with
|
|
-- the License. You may obtain a copy of the License at
|
|
--
|
|
-- http://www.apache.org/licenses/LICENSE-2.0
|
|
--
|
|
-- Unless required by applicable law or agreed to in writing, software
|
|
-- distributed under the License is distributed on an "AS IS" BASIS,
|
|
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
-- See the License for the specific language governing permissions and
|
|
-- limitations under the License.
|
|
--
|
|
|
|
package = "apisix"
|
|
version = "master-0"
|
|
supported_platforms = {"linux", "macosx"}
|
|
|
|
source = {
|
|
url = "git://github.com/apache/incubator-apisix",
|
|
branch = "master",
|
|
}
|
|
|
|
description = {
|
|
summary = "Apache APISIX(incubating) is a cloud-native microservices API gateway, delivering the ultimate performance, security, open source and scalable platform for all your APIs and microservices.",
|
|
homepage = "https://github.com/apache/incubator-apisix",
|
|
license = "Apache License 2.0",
|
|
}
|
|
|
|
dependencies = {
|
|
"lua-resty-template = 1.9",
|
|
"lua-resty-etcd = 0.9",
|
|
"lua-resty-balancer = 0.02rc5",
|
|
"lua-resty-ngxvar = 0.5",
|
|
"lua-resty-jit-uuid = 0.0.7",
|
|
"lua-resty-healthcheck-api7 = 2.2.0",
|
|
"lua-resty-jwt = 0.2.0",
|
|
"lua-resty-cookie = 0.1.0",
|
|
"lua-resty-session = 2.24",
|
|
"opentracing-openresty = 0.1",
|
|
"lua-resty-radixtree = 1.8",
|
|
"lua-protobuf = 0.3.1",
|
|
"lua-resty-openidc = 1.7.2-1",
|
|
"luafilesystem = 1.7.0-2",
|
|
"lua-tinyyaml = 0.1",
|
|
"lua-resty-prometheus = 1.0",
|
|
"jsonschema = 0.8",
|
|
"lua-resty-ipmatcher = 0.6",
|
|
"lua-resty-kafka = 0.07",
|
|
}
|
|
|
|
build = {
|
|
type = "make",
|
|
build_variables = {
|
|
CFLAGS="$(CFLAGS)",
|
|
LIBFLAG="$(LIBFLAG)",
|
|
LUA_LIBDIR="$(LUA_LIBDIR)",
|
|
LUA_BINDIR="$(LUA_BINDIR)",
|
|
LUA_INCDIR="$(LUA_INCDIR)",
|
|
LUA="$(LUA)",
|
|
},
|
|
install_variables = {
|
|
INST_PREFIX="$(PREFIX)",
|
|
INST_BINDIR="$(BINDIR)",
|
|
INST_LIBDIR="$(LIBDIR)",
|
|
INST_LUADIR="$(LUADIR)",
|
|
INST_CONFDIR="$(CONFDIR)",
|
|
},
|
|
}
|