diff options
author | Repository QA checks <repo-qa-checks@gentoo.org> | 2018-03-14 10:43:09 +0000 |
---|---|---|
committer | Repository QA checks <repo-qa-checks@gentoo.org> | 2018-03-14 10:43:09 +0000 |
commit | da44ae5f5e230e120e45b13997509b0a24043cc2 (patch) | |
tree | 735e042be4dedfd251062362e16fec0f3a6f6dce /metadata/xml-schema | |
parent | Merge commit '793f55a973790885834aba0e183f5e3a41654ebe' (diff) | |
parent | metadata.xsd: Support <stabilize-allarches/>, GLEP 68 v1.1 (diff) | |
download | gentoo-da44ae5f5e230e120e45b13997509b0a24043cc2.tar.gz gentoo-da44ae5f5e230e120e45b13997509b0a24043cc2.tar.bz2 gentoo-da44ae5f5e230e120e45b13997509b0a24043cc2.zip |
Merge commit '8536b990542049f4c81e1e616dd8d5c909266a66'
Diffstat (limited to 'metadata/xml-schema')
-rw-r--r-- | metadata/xml-schema/metadata.xsd | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/metadata/xml-schema/metadata.xsd b/metadata/xml-schema/metadata.xsd index cad830485bbc..8b8ac0b56cd7 100644 --- a/metadata/xml-schema/metadata.xsd +++ b/metadata/xml-schema/metadata.xsd @@ -20,6 +20,10 @@ <xs:selector xpath='slots'/> <xs:field xpath='@lang'/> </xs:unique> + <xs:unique name='stabilizeAllArchesUniquityConstraint'> + <xs:selector xpath='stabilize-all-arches'/> + <xs:field xpath='@restrict'/> + </xs:unique> <xs:unique name='upstreamSingleConstraint'> <xs:selector xpath='upstream'/> <xs:field xpath='@fake-only-once'/> @@ -60,6 +64,7 @@ <xs:field xpath='@fake-only-once'/> </xs:unique> </xs:element> + <xs:element name='stabilize-allarches' type='stabilizeAllArchesType'/> <xs:element name='upstream' type='upstreamType'> <xs:unique name='upstreamMaintainerUniquityConstraint'> <xs:selector xpath='maintainer'/> @@ -203,6 +208,12 @@ </xs:restriction> </xs:simpleType> + <!-- stabilize-allarches --> + <xs:complexType name='stabilizeAllArchesType'> + <xs:attribute name='restrict' type='restrictAttrType' + default=''/> + </xs:complexType> + <!-- use flags --> <xs:complexType name='useType'> <xs:choice minOccurs='0' maxOccurs='unbounded'> |