110 lines
2.7 KiB
Python
110 lines
2.7 KiB
Python
# -*- python -*-
|
|
# vim: ft=python
|
|
config = {
|
|
"buildrequires": [
|
|
"javapackages-tools",
|
|
"platform",
|
|
],
|
|
"requires": [
|
|
"platform",
|
|
],
|
|
|
|
"bootstrap": False,
|
|
"full_refs": False,
|
|
"default_ref": "javapackages",
|
|
"include_build_deps": False,
|
|
"closure": False,
|
|
"filter_unused": True,
|
|
"topo_sort": True,
|
|
|
|
"api": [
|
|
"ant",
|
|
"ant-antlr",
|
|
"ant-apache-bcel",
|
|
"ant-apache-bsf",
|
|
"ant-apache-log4j",
|
|
"ant-apache-oro",
|
|
"ant-apache-regexp",
|
|
"ant-apache-resolver",
|
|
"ant-apache-xalan2",
|
|
"ant-commons-logging",
|
|
"ant-commons-net",
|
|
"ant-javamail",
|
|
"ant-jdepend",
|
|
"ant-jmf",
|
|
"ant-jsch",
|
|
"ant-junit",
|
|
"ant-junit5",
|
|
"ant-swing",
|
|
"ant-testutil",
|
|
"ant-xz",
|
|
],
|
|
"profiles": {
|
|
"default": ["ant"],
|
|
},
|
|
"filter": [
|
|
],
|
|
"includes": [
|
|
],
|
|
"excludes": [
|
|
"javapackages-tools",
|
|
"java-1.7.0-openjdk",
|
|
"java-1.8.0-openjdk",
|
|
],
|
|
"frozen_refs": [
|
|
],
|
|
"stream_override": {
|
|
"javapackages-tools": {
|
|
"1.10": "[201801]",
|
|
},
|
|
"platform": {
|
|
"1.10": "[]",
|
|
},
|
|
},
|
|
|
|
"macros": {
|
|
},
|
|
|
|
"summary": "Java build tool",
|
|
"description": """\
|
|
Apache Ant is a Java library and command-line tool whose mission
|
|
is to drive processes described in build files as targets and extension
|
|
points dependent upon each other. The main known usage of Ant is the
|
|
build of Java applications. Ant supplies a number of built-in tasks
|
|
allowing to compile, assemble, test and run Java applications. Ant can
|
|
also be used effectively to build non Java applications, for instance C
|
|
or C++ applications. More generally, Ant can be used to pilot any type
|
|
of process which can be described in terms of targets and tasks.
|
|
""",
|
|
|
|
"koji_config": {
|
|
"server": "https://koji.kjnet.xyz/kojihub",
|
|
"topurl": "https://koji.kjnet.xyz/kojifiles",
|
|
"multicall_chunk_size": 1000,
|
|
"tag_name": "hybrid",
|
|
},
|
|
"dependency": {
|
|
"repo_arch": "x86_64",
|
|
"resolve_for_arch": "x86_64",
|
|
"ignore_weak_deps": True,
|
|
"cache_l2_capacity": 2,
|
|
},
|
|
"directories": {
|
|
"cachedir": "/tmp/maven-modulemd-gen",
|
|
},
|
|
"logging": {
|
|
"version": 1,
|
|
"loggers": {
|
|
"": {
|
|
"level": "INFO",
|
|
"handlers": ["stderr"],
|
|
},
|
|
},
|
|
"handlers": {
|
|
"stderr": {
|
|
"class": "logging.StreamHandler",
|
|
"stream": "ext://sys.stderr"
|
|
},
|
|
},
|
|
},
|
|
}
|