commit:     c22cdfedd52b4dc16588176b92cff9392ff93b70
Author:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Wed May 11 03:11:06 2016 +0000
Commit:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Wed May 11 03:23:21 2016 +0000
URL:        https://gitweb.gentoo.org/repo/proj/gen-b0rk.git/commit/?id=c22cdfed

ebuild-test/minorsyn: test for minor syntax errors

 ebuild-test/minorsyn/metadata.xml      | 26 ++++++++++++++++++++
 ebuild-test/minorsyn/minorsyn-0.ebuild | 44 ++++++++++++++++++++++++++++++++++
 2 files changed, 70 insertions(+)

diff --git a/ebuild-test/minorsyn/metadata.xml 
b/ebuild-test/minorsyn/metadata.xml
new file mode 100644
index 0000000..da7c4a8
--- /dev/null
+++ b/ebuild-test/minorsyn/metadata.xml
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd";>
+<!--
+# $Id$
+
+This is the example metadata file.
+The root element of this file is <pkgmetadata>. Within this element a
+number of subelements are allowed, the most common being maintainer.
+
+For a full description look at:
+https://devmanual.gentoo.org/ebuild-writing/misc-files/metadata/
+
+Before committing, please remove the comments from this file. They are
+not relevant for general metadata.xml files.
+-->
+<pkgmetadata>
+<maintainer type="person">
+       <email>example...@gentoo.org</email>
+       <description>Primary maintainer</description>
+</maintainer>
+<maintainer type="project">
+       <email>exampleproj...@gentoo.org</email>
+       <name>Gentoo Example Project</name>
+</maintainer>
+<longdescription>Test for ???</longdescription>
+</pkgmetadata>

diff --git a/ebuild-test/minorsyn/minorsyn-0.ebuild 
b/ebuild-test/minorsyn/minorsyn-0.ebuild
new file mode 100644
index 0000000..45c2609
--- /dev/null
+++ b/ebuild-test/minorsyn/minorsyn-0.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DESCRIPTION="Minor syntax errors"
+HOMEPAGE="http://example.com/";
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+
+ # leading space
+: trailing space 
+: unquoted variable: ${S}
+
+WANT_AUTOMAKE=latest
+
+src_unpack() {
+       # quoted ${A}
+       unpack "${A}"
+       epatch
+}
+
+src_compile() {
+       econf
+       built_with_use foo
+       useq foo
+       hasq foo
+}
+
+src_install() {
+       cd "${S}"
+       dodoc COPYING
+       preserve_old_lib foo
+       bindnow-flags foo
+}
+
+# blank line in the middle
+
+
+# blank line at the end
+

Reply via email to