From a83aafaa1b5a16e04906598c287cf0e1f2339191 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Feb 25 2016 11:44:55 +0000 Subject: Adjust the documentation in the front page --- diff --git a/mdapi/index.html b/mdapi/index.html index 9053b57..b938ee8 100644 --- a/mdapi/index.html +++ b/mdapi/index.html @@ -109,6 +109,47 @@ So for example, for the kernel in rawhide: /rawhide/changelog/kernel +Retrieve the packages having a specific property +------------------------------------------------ + +You can retrieve the list of packages having a specific property. These +properties can be any of: + requires, provides, obsoletes, conflicts, enhances, recommends, suggests, supplements. + + /{property}/{package name} + +For example to retrieve the list of packages that require a specific package: + + /requires/{package name} + +Few examples: + + packages requiring R in rawhide: + /rawhide/requires/R + + packages providing perl(SetupLog) in rawhide: + /rawhide/provides/perl(SetupLog) + + packages obsoleting cabal2spec in rawhide: + rawhide/obsoletes/cabal2spec + + packages conflicting with mariadb in rawhide: + rawhide/conflicts/mariadb + + packages enhancing vagrant in rawhide: + rawhide/enhances/vagrant + + packages recommending python3-dateutils in rawhide: + rawhide/recommends/python3-dateutils + + packages suggesting tag in rawhide: + rawhide/suggests/tar + + packages supplementing `(hunspell and langpacks-fr)` in rawhide: + rawhide/supplements/(hunspell and langpacks-fr) + + + |‾|