Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 586042
Collapse All | Expand All

(-)a/ebuild-test/minorsyn-quoting-multiline/metadata.xml (+26 lines)
Line 0 Link Here
1
<?xml version="1.0" encoding="UTF-8"?>
2
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
3
<!--
4
# $Id$
5
6
This is the example metadata file.
7
The root element of this file is <pkgmetadata>. Within this element a
8
number of subelements are allowed, the most common being maintainer.
9
10
For a full description look at:
11
https://devmanual.gentoo.org/ebuild-writing/misc-files/metadata/
12
13
Before committing, please remove the comments from this file. They are
14
not relevant for general metadata.xml files.
15
-->
16
<pkgmetadata>
17
<maintainer type="person">
18
	<email>exampledev@gentoo.org</email>
19
	<description>Primary maintainer</description>
20
</maintainer>
21
<maintainer type="project">
22
	<email>exampleproject@gentoo.org</email>
23
	<name>Gentoo Example Project</name>
24
</maintainer>
25
<longdescription>Test for ???</longdescription>
26
</pkgmetadata>
(-)a/ebuild-test/minorsyn-quoting-multiline/minorsyn-quoting-multiline-0.ebuild (+21 lines)
Line 0 Link Here
1
# Copyright 1999-2016 Gentoo Foundation
2
# Distributed under the terms of the GNU General Public License v2
3
# $Id$
4
5
EAPI=6
6
7
DESCRIPTION="Check that multiline quoted variables are processed correctly"
8
HOMEPAGE="http://example.com/"
9
10
LICENSE="BSD"
11
SLOT="0"
12
KEYWORDS="~amd64"
13
14
pkg_postinst() {
15
	MESSAGE="
16
		${CATEGORY}/${PN}-${PVR} doesn't install files to ${EPREFIX}/,
17
		doesn't use temporary directory ${T}, or build directory ${S},
18
		there are no patches in ${FILESDIR} too.
19
	"
20
	einfo ${MESSAGE}
21
}

Return to bug 586042