conandata.yml is a YAML file to provide declarative data for the recipe (which is imperative). This is a built-in Conan feature (available since 1.22.0) without a fixed structure, but ConanCenter has a specific format to ensure quality of recipes.
In the context of ConanCenterIndex, this file is mandatory and consists of two main sections that will be explained in the next sections with more detail:
sources
: Library sources origin with their verification checksums.patches
: A list of patches to apply and supporting information. See the Patching Policy for the criteria.
sources
is a top level dictionary, containing entries of sources and checksums for each of the supported versions.
This is the entry that contains all the items that are downloaded from the internet and used in a recipe. This section contains one entry per version and each version should declare its own sources.
Note: For deciding which source to pick, see Picking Sources guide.
This is a basic example of a regular library, it should satisfy most of the use cases:
sources:
"1.2.11":
url: "..."
sha256: "..."
"1.2.12":
url: "..."
sha256: "..."
Every entry for a version consists in a dictionary with the url
and the hashing algorithm of the artifact. sha256
is required, but others like sha1
or md5
can be used as well.
Sometimes it is useful to declare mirrors, use a list in the url
field. Conan will try to download the artifacts from any of those mirrors.
sources:
"1.2.11":
url:
- "https://zlib.net/zlib-1.2.11.tar.gz",
- "https://downloads.sourceforge.net/project/libpng/zlib/1.2.11/zlib-1.2.11.tar.gz",
sha256: "c3e5e9fdd5004dcb542feda5ee4f0ff0744628baf8ed2dd5d66f8ca1197cb1a1"
Keep in mind all the mirrors have to provide the exactly same source (e.g. no repackaging), thus using the same hash sum.
It's rare but some projects ship archives missing files that are required to build or specifically to ConanCenter requirements.
You can name each asset and download them in the conanfile.py
's source()
referring to the names.
sources:
"10.12.2":
"sources":
url: https://github.com/approvals/ApprovalTests.cpp/releases/download/v.10.12.2/ApprovalTests.v.10.12.2.hpp
sha256: 4c43d0ea98669e3d6fbb5810cc47b19adaf88cabb1421b488aa306b08c434131
"license":
url: "https://raw.githubusercontent.com/approvals/ApprovalTests.cpp/v.10.12.2/LICENSE"
sha256: c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4
You can list as many assets you need and reference them by their index. But make sure you keep them in order if there is any specific logic about handling.
sources:
"10.12.2":
- url: https://github.com/approvals/ApprovalTests.cpp/releases/download/v.10.12.2/ApprovalTests.v.10.12.2.hpp
sha256: 4c43d0ea98669e3d6fbb5810cc47b19adaf88cabb1421b488aa306b08c434131
- url: "https://raw.githubusercontent.com/approvals/ApprovalTests.cpp/v.10.12.2/LICENSE"
sha256: c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4
This is the most advanced and sophisticated use-case, but not so common. Some projects may provide different sources for different platforms, it could be expressed as:
sources:
"0066":
"Macos": # Operating system
"x86": # Architecture
- url: "https://naif.jpl.nasa.gov/pub/naif/misc/toolkit_N0066/C/MacIntel_OSX_AppleC_32bit/packages/cspice.tar.Z"
sha256: "9a4b5f674ea76821c43aa9140829da4091de646ef3ce40fd5be1d09d7c37b6b3"
"x86_64":
- url: "https://naif.jpl.nasa.gov/pub/naif/misc/toolkit_N0066/C/MacIntel_OSX_AppleC_64bit/packages/cspice.tar.Z"
sha256: "f5d48c4b0d558c5d71e8bf6fcdf135b0943210c1ff91f8191dfc447419a6b12e"
This approach requires a special code within build method to handle.
url
contains a string specifying URI where to download released sources.
Usually, url
has a https scheme, but other schemes, such as ftp are accepted as well.
sha256 is a preferred method to specify hash sum for the released sources. It allows to check the integrity of sources downloaded.
You may use an online service to compute sha256
sum for the given file located at url
.
If you're using linux you can run wget -q -O - url | sha256sum
to get the hash which uses the sha256sum command (windows you can use PowerShell).
Sometimes sources provided by project require patching for various reasons. The conandata.yml
file is the right place to indicate this information as well.
Note: Under our mission to ensure quality, patches undergo extra scrutiny. Make sure to review our Patching Policy to understand the requirements before adding any.
This section follows the same pattern as the sources
above - one entry per version with a list of patches to apply.
patches:
"1.2.0":
- patch_file: "patches/1.2.0-002-link-core-with-find-library.patch"
patch_description: "Link CoreFoundation and CoreServices with find_library"
patch_type: "portability"
patch_source: "https://a-url-to-a-pull-request-mail-list-topic-issue-or-question"
Theres are necessary for Conan to work as well as provide key information to reviewers and consumers which need to understand the reasoning behind patches.
Required
Patch file that are committed to the ConanCenterIndex, go into the patches
sub-directory (next to the conanfile.py
). Such patch files usually have either .diff
or .patch
extension. The recommended way to generate such patches is git format-patch. The path to the patch is relative to the directory containing conandata.yml
and conanfile.py
.
Required
patch_description
is an arbitrary text describing the following aspects of the patch:
- What does patch do (example -
add missing unistd.h header
) - Why is it necessary (example -
port to Android
) - How exactly does patch achieve that (example -
update configure.ac
)
An example of a full patch description could be: port to Android: update configure.ac adding missing unistd.h header
.
Required
The patch_type
field specifies the type of the patch. In ConanCenterIndex we currently accept only several kind of patches:
patch_type: official
indicates the patch is distributed with source code itself. usually, this happens if release managers
failed to include a critical fix to the release, but it's too much burden for them to make a new release just because of that single fix.
example (notice the coroutine
patch). The patch_source
field shall point to the official distribution of the patch.
patch_type: vulnerability
: Indicates a patch that addresses the security issue. The patch description should include the index of CVE
or CWE the patch addresses. Usually, original library projects do new releases fixing vulnerabilities for this kind of issues, but in some
cases they are either abandoned or inactive. The patch_source
must be a commit to the official fix of the vulnerability.
patch_type: portability
: Indicates a patch that improves the portability of the library, e.g. adding supports of new architectures (ARM, Sparc, etc.), operating systems (FreeBSD, Android, etc.), compilers (Intel, MinGW, etc.), and other types of configurations which are not originally supported by the project.
In such cases, the patch could be adopted from another package repository (e.g. MSYS packages, Debian packages, Homebrew, FreeBSD ports, etc.).
Patches of this kind are preferred to be submitted upstream to the original project repository first, but it's not always possible.
Some projects simply do not accept patches for platforms they don't have a build/test infrastructure, or maybe they are just either abandoned or inactive.
patch_type: conan
: Indicates a patch that is Conan-specific, patches of such kind are usually not welcomed upstream at all, because they provide zero value outside of Conan.
Examples of such a patches may include modifications of build system files to allow dependencies provided by Conan instead of dependencies provided by projects themselves (e.g. as submodule or just 3rd-party sub-directory) or by the system package manager (rpm/deb).
Such patches may contain variables and targets generated only by Conan, but not generated normally by the build system (e.g. CONAN_INCLUDE_DIRS
).
Warning: These will undergo extra scrutiny during review as they may modify the source code.
patch_type: bugfix
: Indicates a patch that backports an existing bug fix from the newer release or master branch (or equivalent, such as main/develop/trunk/etc). The patch_source
may be a pull request, or bug within the project's issue tracker.
Backports are accepted only for bugs that break normal execution flow, never for feature requests.
Usually, the following kind of problems are good candidates for backports:
- Program doesn't start at all.
- Crash (segmentation fault or access violation).
- Hang up or deadlock.
- Memory leak or resource leak in general.
- Garbage output.
- Abnormal termination without a crash (e.g. just exit code 1 at very beginning of the execution).
- Data corruption.
- Use of outdated or deprecated API or library.
Recommended
patch_source
is the URL from where patch was taken from. https scheme is preferred, but other URLs (e.g. git/svn/hg) are also accepted if there is no alternative. Types of patch sources are:
- Link to the public commit in project hosting like GitHub/GitLab/BitBucket/Savanha/SourceForge/etc.
- Link to the Pull Request or equivalent (e.g. gerrit review).
- Link to the bug tracker (such as JIRA, BugZilla, etc.).
- Link to the mail list discussion.
- Link to the patch itself in another repository (e.g. MSYS, Debian, etc.).
For the patch_type: portability
there might be no patch source matching the definition above. Although we encourage contributors to submit all such portability fixes upstream first, it's not always possible (e.g. for projects no longer maintained). In that case, a link to the Conan issue is a valid patch source (if there is no issue, you may create one).
For the patch_type: conan
, it doesn't make sense to submit patch upstream, so there will be no patch source.