diff options
author | Michał Górny <mgorny@gentoo.org> | 2021-03-14 21:19:46 +0100 |
---|---|---|
committer | Tim Harder <radhermit@gmail.com> | 2021-03-14 21:28:36 -0600 |
commit | cc7be6516d25cfa27b25b5c0ced6b8a8514d46e5 (patch) | |
tree | ade21429b0888c369674d77e1263fba9be9267fe /data | |
parent | ebuild.repo_objs: simplify setting upstream metadata (diff) | |
download | pkgcore-cc7be6516d25cfa27b25b5c0ced6b8a8514d46e5.tar.gz pkgcore-cc7be6516d25cfa27b25b5c0ced6b8a8514d46e5.tar.bz2 pkgcore-cc7be6516d25cfa27b25b5c0ced6b8a8514d46e5.zip |
data: Sync metadata.xsd for proxied="" attr
Diffstat (limited to 'data')
-rw-r--r-- | data/xml-schema/metadata.xsd | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/data/xml-schema/metadata.xsd b/data/xml-schema/metadata.xsd index db243abb..d2e3d4ff 100644 --- a/data/xml-schema/metadata.xsd +++ b/data/xml-schema/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' |