commit: 1f044715a9459c7d0f724d4a7c5e18b274254ae2
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 14 20:11:01 2021 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Mar 14 20:11:01 2021 +0000
URL: https://gitweb.gentoo.org/data/xml-schema.git/commit/?id=1f044715
metadata.xsd: Add <maintainer proxied=""/> attribute
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
metadata.xsd | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/metadata.xsd b/metadata.xsd
index db243ab..d2e3d4f 100644
--- a/metadata.xsd
+++ b/metadata.xsd
@@ -127,6 +127,8 @@
</xs:choice>
<xs:attribute name='type' type='maintainerTypeAttrType'
use='required'/>
+ <xs:attribute name='proxied' type='maintainerProxiedAttrType'
+ default='no'/>
<xs:attribute name='restrict' type='restrictAttrType'
default=''/>
</xs:complexType>
@@ -138,6 +140,14 @@
</xs:restriction>
</xs:simpleType>
+ <xs:simpleType name='maintainerProxiedAttrType'>
+ <xs:restriction base='xs:token'>
+ <xs:enumeration value='yes'/>
+ <xs:enumeration value='no'/>
+ <xs:enumeration value='proxy'/>
+ </xs:restriction>
+ </xs:simpleType>
+
<xs:complexType name='upstreamMaintainerType'>
<xs:all>
<xs:element name='email' type='emailType'