1- # See https://docs.ansible.com/ansible/latest/dev_guide/collections_galaxy_meta.html
1+ ---
22
3+ # ## REQUIRED
4+ # The namespace of the collection. This can be a company/brand/organization or product namespace under which all
5+ # content lives. May only contain alphanumeric lowercase characters and underscores. Namespaces cannot start with
6+ # underscores or numbers and cannot contain consecutive underscores
37namespace : community
8+
9+ # The name of the collection. Has the same character restrictions as 'namespace'
410name : sap_libs
5- version : 1.6.0
11+
12+ # The version of the collection. Must be compatible with semantic versioning
13+ version : 1.7.0
14+
15+ # The path to the Markdown (.md) readme file. This path is relative to the root of the collection
616readme : README.md
17+
18+ # A list of the collection's content authors. Can be just the name or in the format 'Full Name <email> (url)
719authors :
820 - Rainer Leber (github.com/rainerleber)
921 - Robert Kraemer (github.com/rkpobe)
1022 - Sean Freeman (github.com/sean-freeman)
11- description : SAP Module community collection for Ansible
12- license_file : LICENSE
23+ - Marcel Mamula (github.com/marcelmamula)
24+
25+ # ## OPTIONAL but strongly recommended
26+ # A short summary description of the collection
27+ description : Collection of Ansible Modules for SAP low-level activities
28+
29+ # Either a single license or a list of licenses for content inside of a collection. Ansible Galaxy currently only
30+ # accepts L(SPDX,https://spdx.org/licenses/) licenses. This key is mutually exclusive with 'license_file'
31+ license :
32+ - Apache-2.0
33+
34+ # The path to the license file for the collection. This path is relative to the root of the collection. This key is
35+ # mutually exclusive with 'license'
36+ license_file : ' '
37+
38+ # A list of tags you want to associate with the collection for indexing/searching. A tag name has the same character
39+ # requirements as 'namespace' and 'name'
1340tags :
41+ - application
1442 - sap
43+
44+ # Collections that this collection requires to be installed for it to be usable. The key of the dict is the
45+ # collection label 'namespace.name'. The value is a version range
46+ # L(specifiers,https://python-semanticversion.readthedocs.io/en/latest/#requirement-specification). Multiple version
47+ # range specifiers can be set and are separated by ','
48+ dependencies : {}
49+
50+ # The URL of the originating SCM repository
1551repository : https://github.com/sap-linuxlab/community.sap_libs
52+
53+ # The URL to any online docs
1654documentation : https://github.com/sap-linuxlab/community.sap_libs
55+
56+ # The URL to the homepage of the collection/project
1757homepage : https://github.com/sap-linuxlab/community.sap_libs
58+
59+ # The URL to the collection issue tracker
1860issues : https://github.com/sap-linuxlab/community.sap_libs
61+
62+ # A list of file glob-like patterns used to filter any files or directories that should not be included in the build
63+ # artifact. A pattern is matched from the relative path of the file or directory of the collection directory. This
64+ # uses 'fnmatch' to match the files or directories. Some directories and files like 'galaxy.yml', '*.pyc', '*.retry',
65+ # and '.git' are always filtered
1966build_ignore :
20- # https://docs.ansible.com/ansible/devel/dev_guide/developing_collections.html#ignoring-files-and-folders
2167 - .gitignore
22- - changelogs/.plugin-cache.yaml
68+ - changelogs/.plugin-cache.yaml
0 commit comments