/usr/share/zypp/schema/yum/deltainfo.rng is in libzypp-common 15.3.0-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | <?xml version="1.0" encoding="UTF-8"?>
<grammar xmlns="http://relaxng.org/ns/structure/1.0">
<include href="common-inc.rng"/>
<start>
<element name="deltainfo">
<zeroOrMore>
<element name="newpackage">
<attribute name="name"/>
<attribute name="arch">
<ref name="private.archenum"/>
</attribute>
<attribute name="version"/>
<attribute name="release"/>
<oneOrMore>
<element name="delta">
<attribute name="oldepoch">
<ref name="private.nonnegative"/>
</attribute>
<!-- two different formats, with different attribute names with same data -->
<choice>
<group>
<attribute name="oldversion"/>
<attribute name="oldrelease"/>
</group>
<group>
<attribute name="ver"/>
<attribute name="rel"/>
</group>
</choice>
<element name="filename">
<text/>
</element>
<element name="sequence">
<text/>
</element>
<element name="size">
<ref name="private.size"/>
</element>
<element name="checksum">
<ref name="private.checksum"/>
</element>
</element>
</oneOrMore>
</element>
</zeroOrMore>
</element>
</start>
</grammar>
|