public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Chris Gianelloni (wolf31o2)" <wolf31o2@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] gentoo-x86 commit in games-roguelike/nethack: nethack-3.4.3-r1.ebuild ChangeLog
Date: Fri, 07 Mar 2008 20:16:00 +0000	[thread overview]
Message-ID: <E1JXiz2-000630-51@stork.gentoo.org> (raw)

wolf31o2    08/03/07 20:16:00

  Modified:             nethack-3.4.3-r1.ebuild ChangeLog
  Log:
  QA cleanup: Fix quoting.
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.21                 games-roguelike/nethack/nethack-3.4.3-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-roguelike/nethack/nethack-3.4.3-r1.ebuild?rev=1.21&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-roguelike/nethack/nethack-3.4.3-r1.ebuild?rev=1.21&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-roguelike/nethack/nethack-3.4.3-r1.ebuild?r1=1.20&r2=1.21

Index: nethack-3.4.3-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-roguelike/nethack/nethack-3.4.3-r1.ebuild,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- nethack-3.4.3-r1.ebuild	14 Jan 2008 20:33:41 -0000	1.20
+++ nethack-3.4.3-r1.ebuild	7 Mar 2008 20:15:59 -0000	1.21
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-roguelike/nethack/nethack-3.4.3-r1.ebuild,v 1.20 2008/01/14 20:33:41 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-roguelike/nethack/nethack-3.4.3-r1.ebuild,v 1.21 2008/03/07 20:15:59 wolf31o2 Exp $
 
 inherit eutils toolchain-funcs flag-o-matic games
 
@@ -80,7 +80,7 @@
 	has_version =x11-libs/qt-3* \
 		&& qtver=3 \
 		|| qtver=2
-	cd ${S}/src
+	cd "${S}"/src
 	append-flags -I../include
 
 	emake \
@@ -96,7 +96,7 @@
 		CFLAGS="${CFLAGS}" \
 		LFLAGS="${lflags}" \
 		|| die "main build failed"
-	cd ${S}/util
+	cd "${S}"/util
 	emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" recover || die "util build failed"
 }
 
@@ -123,7 +123,7 @@
 	sed -i \
 		-e "s:^\(HACKDIR=\).*:\1${HACKDIR}:" \
 		"${D}${GAMES_BINDIR}/nethack" \
-		|| die "sed ${D}${GAMES_BINDIR}/nethack failed"
+		|| die "sed ${GAMES_BINDIR}/nethack failed"
 
 	doman doc/*.6
 	dodoc doc/*.txt
@@ -141,7 +141,7 @@
 		-e "s:GENTOO_WINDOWTYPES:${windowtypes}:" \
 		-e "s:GENTOO_DEFWINDOWTYPE:$1:" \
 		"${D}${HACKDIR}/dot.nethackrc" \
-		|| die "sed ${D}${HACKDIR}/dot.nethackrc failed"
+		|| die "sed ${HACKDIR}/dot.nethackrc failed"
 	insinto /etc/skel
 	newins "${D}/${HACKDIR}/dot.nethackrc" .nethackrc
 
@@ -153,7 +153,7 @@
 		insinto "${HACKDIR}/fonts"
 		doins *.pcf
 		cd "${D}/${HACKDIR}/fonts"
-		mkfontdir || die "The action mkfontdir ${D}${HACKDIR}/fonts failed"
+		mkfontdir || die "The action mkfontdir ${HACKDIR}/fonts failed"
 
 		# copy nethack x application defaults
 		cd "${S}/win/X11"
@@ -162,7 +162,7 @@
 		sed -i \
 			-e 's:^!\(NetHack.tile_file.*\):\1:' \
 			"${D}/etc/X11/app-defaults/NetHack" \
-			|| die "sed ${D}/etc/X11/app-defaults/NetHack failed"
+			|| die "sed /etc/X11/app-defaults/NetHack failed"
 	fi
 
 	local statedir="${GAMES_STATEDIR}/${PN}"



1.28                 games-roguelike/nethack/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-roguelike/nethack/ChangeLog?rev=1.28&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-roguelike/nethack/ChangeLog?rev=1.28&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-roguelike/nethack/ChangeLog?r1=1.27&r2=1.28

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-roguelike/nethack/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog	14 Jan 2008 20:33:41 -0000	1.27
+++ ChangeLog	7 Mar 2008 20:15:59 -0000	1.28
@@ -1,6 +1,10 @@
 # ChangeLog for games-roguelike/nethack
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-roguelike/nethack/ChangeLog,v 1.27 2008/01/14 20:33:41 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-roguelike/nethack/ChangeLog,v 1.28 2008/03/07 20:15:59 wolf31o2 Exp $
+
+  07 Mar 2008; Chris Gianelloni <wolf31o2@gentoo.org>
+  nethack-3.4.3-r1.ebuild:
+  QA cleanup: Fix quoting.
 
   14 Jan 2008; Fabian Groffen <grobian@gentoo.org> nethack-3.4.3-r1.ebuild:
   Dropped ppc-macos keyword, see you in prefix



-- 
gentoo-commits@lists.gentoo.org mailing list



             reply	other threads:[~2008-03-07 20:16 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-03-07 20:16 Chris Gianelloni (wolf31o2) [this message]
  -- strict thread matches above, loose matches on Subject: below --
2014-03-21  5:11 [gentoo-commits] gentoo-x86 commit in games-roguelike/nethack: nethack-3.4.3-r1.ebuild ChangeLog Jeroen Roovers (jer)
2008-06-05 19:55 Chris Gianelloni (wolf31o2)
2008-01-14 20:33 Fabian Groffen (grobian)

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=E1JXiz2-000630-51@stork.gentoo.org \
    --to=wolf31o2@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox