Gentoo Archives: gentoo-dev

From: "Robin H. Johnson" <robbat2@g.o>
To: gentoo-dev@l.g.o
Subject: [gentoo-dev] [PATCH] metadata: add vcs tag
Date: Wed, 12 Oct 2016 16:46:14
Message-Id: 20161012164441.32591-2-robbat2@gentoo.org
In Reply to: [gentoo-dev] RFC: VCS element in metadata.xml by "Robin H. Johnson"
1 Signed-off-by: Robin H. Johnson <robbat2@g.o>
2 ---
3 metadata.dtd | 4 +++-
4 1 file changed, 3 insertions(+), 1 deletion(-)
5
6 diff --git a/metadata.dtd b/metadata.dtd
7 index d7ef81c..380fdbd 100644
8 --- a/metadata.dtd
9 +++ b/metadata.dtd
10 @@ -35,7 +35,7 @@
11 <!ATTLIST flag name CDATA #REQUIRED >
12
13 <!-- upstream metadata information (maintainers, upstream docs,..) -->
14 - <!ELEMENT upstream (maintainer|changelog|doc|bugs-to|remote-id)* >
15 + <!ELEMENT upstream (maintainer|changelog|doc|bugs-to|remote-id|vcs)* >
16 <!-- Due to the limitation of DTD this will also allow a status
17 attribute for the package maintainer element. Please note that
18 the usage of the status attribute is nevertheless _only_ allowed
19 @@ -52,6 +52,8 @@
20 <!-- specify a type of package identification tracker -->
21 <!ELEMENT remote-id (#PCDATA)>
22 <!ATTLIST remote-id type (bitbucket|cpan|cpan-module|cpe|cran|ctan|freecode|freshmeat|gentoo|github|gitlab|gitorious|google-code|launchpad|pear|pecl|pypi|rubyforge|rubygems|sourceforge|sourceforge-jp|vim) #REQUIRED>
23 + <!-- URL where upstream code may be found -->
24 + <!ELEMENT vcs (#PCDATA)>
25
26 <!-- category/package information for cross-linking in descriptions
27 and useflag descriptions -->
28 --
29 2.9.0

Replies

Subject Author
Re: [gentoo-dev] [PATCH] metadata: add vcs tag Gilles Dartiguelongue <eva@g.o>