summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorBrian Evans <grknight@gentoo.org>2015-06-03 17:37:46 +0000
committerBrian Evans <grknight@gentoo.org>2015-06-03 17:37:46 +0000
commitfabd83d355d03db164f1a75da43c87ee65149873 (patch)
treed8bb1b85348338d6da7368ddeabdfb0f540e57b7 /eclass
parentAdd pypi to remote-id in metadata.xml (diff)
downloadgentoo-2-fabd83d355d03db164f1a75da43c87ee65149873.tar.gz
gentoo-2-fabd83d355d03db164f1a75da43c87ee65149873.tar.bz2
gentoo-2-fabd83d355d03db164f1a75da43c87ee65149873.zip
Fix missing comment character and case syntax error
Diffstat (limited to 'eclass')
-rw-r--r--eclass/ChangeLog5
-rw-r--r--eclass/s6.eclass6
2 files changed, 7 insertions, 4 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog
index 7b649991650c..522082c78c57 100644
--- a/eclass/ChangeLog
+++ b/eclass/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for eclass directory
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1635 2015/06/02 21:08:48 williamh Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1636 2015/06/03 17:37:46 grknight Exp $
+
+ 03 Jun 2015; <grknight@gentoo.org> s6.eclass:
+ Fix missing comment character and case syntax error
02 Jun 2015; William Hubbs <williamh@gentoo.org> +s6.eclass:
Add s6.eclass for handling s6 services
diff --git a/eclass/s6.eclass b/eclass/s6.eclass
index f44b4b5f28ff..bceb61b95594 100644
--- a/eclass/s6.eclass
+++ b/eclass/s6.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/s6.eclass,v 1.1 2015/06/02 21:08:48 williamh Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/s6.eclass,v 1.2 2015/06/03 17:37:46 grknight Exp $
# @ECLASS: s6.eclass
# @MAINTAINER:
@@ -16,7 +16,7 @@
# src_install() {
# ...
# s6_install_service myservice "${FILESDIR}"/run-s6 "${FILESDIR}"/finish-s6
- ...
+# ...
# If you want a service to be logged, install the log service as
# shown here.
# s6_install_service myservice/log "${FILESDIR}"/log-run-s6 \
@@ -27,7 +27,7 @@
case ${EAPI:-0} in
5) ;;
- *) die "${ECLASS}.eclass: API in EAPI ${EAPI} not yet established"
+ *) die "${ECLASS}.eclass: API in EAPI ${EAPI} not yet established" ;;
esac
# @FUNCTION: _s6_get_servicedir