From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-867565-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	by finch.gentoo.org (Postfix) with ESMTP id 5A0A159CA3
	for <garchives@archives.gentoo.org>; Sun,  6 Mar 2016 12:00:30 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id E5A3F21C040
	for <garchives@archives.gentoo.org>; Sun,  6 Mar 2016 12:00:29 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183])
	(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id B197AE07DA
	for <gentoo-commits@lists.gentoo.org>; Sat,  5 Mar 2016 23:35:20 +0000 (UTC)
Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52])
	(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 1687D34082B
	for <gentoo-commits@lists.gentoo.org>; Sat,  5 Mar 2016 23:35:19 +0000 (UTC)
Received: from localhost.localdomain (localhost [127.0.0.1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 0408418A5
	for <gentoo-commits@lists.gentoo.org>; Sat,  5 Mar 2016 23:35:17 +0000 (UTC)
From: "Tim Harder" <radhermit@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Tim Harder" <radhermit@gentoo.org>
Message-ID: <1457220669.1ab7dd1769b55665f791364548a4ed98538fa48b.radhermit@gentoo>
Subject: [gentoo-commits] proj/gentoo-syntax:master commit in: plugin/
X-VCS-Repository: proj/gentoo-syntax
X-VCS-Files: plugin/newmetadata.vim
X-VCS-Directories: plugin/
X-VCS-Committer: radhermit
X-VCS-Committer-Name: Tim Harder
X-VCS-Revision: 1ab7dd1769b55665f791364548a4ed98538fa48b
X-VCS-Branch: master
Date: Sat,  5 Mar 2016 23:35:17 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Archives-Salt: 866b5160-3e38-4386-877d-93b446fc7b42
X-Archives-Hash: d73ade0ddeb8538f820ce782ab7a204d

commit:     1ab7dd1769b55665f791364548a4ed98538fa48b
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 27 12:51:43 2016 +0000
Commit:     Tim Harder <radhermit <AT> gentoo <DOT> org>
CommitDate: Sat Mar  5 23:31:09 2016 +0000
URL:        https://gitweb.gentoo.org/proj/gentoo-syntax.git/commit/?id=1ab7dd17

newmetadata: Add type="" to <maintainer/> per GLEP67

 plugin/newmetadata.vim | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/plugin/newmetadata.vim b/plugin/newmetadata.vim
index 09acac8..905d5d3 100644
--- a/plugin/newmetadata.vim
+++ b/plugin/newmetadata.vim
@@ -72,7 +72,7 @@ fun! <SID>MakeNewMetadata()
             put ='<herd>' . l:herd . '</herd>'
         endif
         if l:email != "" || l:name != ""
-            put ='<maintainer>'
+            put ='<maintainer type=\"person\">'
             if l:email != ""
                 put ='<email>' . l:email . '</email>'
             endif