commit: 11115d50321813d153271eb1f478a7c0cc1513e9 Author: David Seifert <soap <AT> gentoo <DOT> org> AuthorDate: Thu Dec 13 22:26:14 2018 +0000 Commit: David Seifert <soap <AT> gentoo <DOT> org> CommitDate: Thu Dec 13 22:26:14 2018 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=11115d50
skel.metadata.xml: update for GLEP 67 Signed-off-by: David Seifert <soap <AT> gentoo.org> skel.metadata.xml | 36 ++++++++++++++++++++++++------------ 1 file changed, 24 insertions(+), 12 deletions(-) diff --git a/skel.metadata.xml b/skel.metadata.xml index 4c6550e76..42444c655 100644 --- a/skel.metadata.xml +++ b/skel.metadata.xml @@ -1,19 +1,31 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<!-- +This is the example metadata file. +The root element of this file is <pkgmetadata>. Within this element a +number of subelements are allowed, the most common being maintainer. + +For a full description look at: +https://devmanual.gentoo.org/ebuild-writing/misc-files/metadata/ + +Before committing, please remove the comments from this file. They are +not relevant for general metadata.xml files. +--> <pkgmetadata> -<herd>sci-blah</herd> -<maintainer> - <email>[email protected]</email> +<maintainer type="person"> + <email>[email protected]</email> + <description>Primary maintainer</description> </maintainer> - -<longdescription> - Long description of the package. Check the homepage. Make it useful - for users. -</longdescription> +<maintainer type="project"> + <email>[email protected]</email> + <name>Gentoo Example Project</name> +</maintainer> +<longdescription>Long description of the package</longdescription> <use> - <flag name="flag">Description of how USE='flag' affects this package</flag> + <flag name="aspell">Uses <pkg>app-text/aspell</pkg> for spell checking. + Requires an installed dictionary from <cat>app-dicts</cat></flag> + <flag name="flag">Description of how USE='flag' affects this package</flag> + <flag name="userland_GNU">Description of how USERLAND='GNU' affects this + package</flag> </use> -<upstream> - <remote-id type="blah">name-of-package-in-blah</remote-id> -</upstream> </pkgmetadata>
