diff options
author | Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org> | 2009-03-20 03:25:56 +0000 |
---|---|---|
committer | Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org> | 2009-03-20 03:25:56 +0000 |
commit | 0c76e88f284808a8f17ee826b61691fe3f184daf (patch) | |
tree | 7aedcecf3d19ddbd05a279dd1511f45d24f1a496 /app-emulation/spim | |
parent | Removing compnerd as a maintainer since he was retired. (diff) | |
download | gentoo-2-0c76e88f284808a8f17ee826b61691fe3f184daf.tar.gz gentoo-2-0c76e88f284808a8f17ee826b61691fe3f184daf.tar.bz2 gentoo-2-0c76e88f284808a8f17ee826b61691fe3f184daf.zip |
Removing compnerd as a maintainer since he was retired. Fixed some QA warnings.
(Portage version: 2.2_rc25/cvs/Linux x86_64)
Diffstat (limited to 'app-emulation/spim')
-rw-r--r-- | app-emulation/spim/ChangeLog | 9 | ||||
-rw-r--r-- | app-emulation/spim/metadata.xml | 5 | ||||
-rw-r--r-- | app-emulation/spim/spim-7.2.1-r2.ebuild | 36 | ||||
-rw-r--r-- | app-emulation/spim/spim-7.2.1-r3.ebuild | 38 | ||||
-rw-r--r-- | app-emulation/spim/spim-7.3.ebuild | 22 |
5 files changed, 57 insertions, 53 deletions
diff --git a/app-emulation/spim/ChangeLog b/app-emulation/spim/ChangeLog index bffbfdaf179a..bd99a737b249 100644 --- a/app-emulation/spim/ChangeLog +++ b/app-emulation/spim/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-emulation/spim -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/spim/ChangeLog,v 1.44 2008/01/11 20:55:19 grobian Exp $ +# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/spim/ChangeLog,v 1.45 2009/03/20 03:25:55 jmbsvicetto Exp $ + + 20 Mar 2009; Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org> + metadata.xml, spim-7.2.1-r2.ebuild, spim-7.2.1-r3.ebuild, spim-7.3.ebuild: + Removing compnerd as a maintainer since he was retired. Fixed some QA + warnings. 11 Jan 2008; Fabian Groffen <grobian@gentoo.org> spim-7.2.1-r2.ebuild, spim-7.2.1-r3.ebuild, spim-7.3.ebuild: diff --git a/app-emulation/spim/metadata.xml b/app-emulation/spim/metadata.xml index 9fa47c74a668..e6e7d6368a80 100644 --- a/app-emulation/spim/metadata.xml +++ b/app-emulation/spim/metadata.xml @@ -3,9 +3,8 @@ <pkgmetadata> <herd>no-herd</herd> <maintainer> - <email>compnerd@gentoo.org</email> - <name>Saleem Abdulrasool</name> - </maintainer> + <email>maintainer-needed@gentoo.org</email> + </maintainer> <longdescription lang="en"> A self-contained simulator that will run MIPS32 assembly language programs. It also provides a simple debugger and a minimal set of diff --git a/app-emulation/spim/spim-7.2.1-r2.ebuild b/app-emulation/spim/spim-7.2.1-r2.ebuild index d08acb3f4359..2676e4659be8 100644 --- a/app-emulation/spim/spim-7.2.1-r2.ebuild +++ b/app-emulation/spim/spim-7.2.1-r2.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/spim/spim-7.2.1-r2.ebuild,v 1.5 2008/01/11 20:55:19 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/spim/spim-7.2.1-r2.ebuild,v 1.6 2009/03/20 03:25:56 jmbsvicetto Exp $ inherit eutils toolchain-funcs @@ -23,23 +23,23 @@ DEPEND="${RDEPEND} src_unpack() { unpack ${A} - cd ${S} + cd "${S}" # Patches from eradicator submitted upstream. Fixes amd64 and others... - epatch ${FILESDIR}/${PN}-7.2.1-envvar-exception.patch - epatch ${FILESDIR}/${PN}-7.2.1-c99.patch - epatch ${FILESDIR}/${PN}-7.2.1-ptrsize.patch - epatch ${FILESDIR}/${PN}-7.2.1-string-stream.patch - epatch ${FILESDIR}/${PN}-7.2.1-multiple-exception.patch + epatch "${FILESDIR}/${PN}-7.2.1-envvar-exception.patch" + epatch "${FILESDIR}/${PN}-7.2.1-c99.patch" + epatch "${FILESDIR}/${PN}-7.2.1-ptrsize.patch" + epatch "${FILESDIR}/${PN}-7.2.1-string-stream.patch" + epatch "${FILESDIR}/${PN}-7.2.1-multiple-exception.patch" # Fix documentation files - cd ${S}/Documentation + cd "${S}/Documentation" mv spim.man spim.1 mv xspim.man xspim.1 } src_compile() { - cd ${S}/spim + cd "${S}/spim" ./Configure || die "Configure Failed!" @@ -56,7 +56,7 @@ src_compile() { emake CC="$(tc-getCC)" || die if use X ; then - cd ${S}/xspim + cd "${S}/xspim" ./Configure || die "Configure Failed!" @@ -74,7 +74,7 @@ src_compile() { } src_test() { - cd ${S}/spim + cd "${S}/spim" make test || die "Failed to pass tests!" } @@ -83,21 +83,21 @@ src_install() { dodir /usr/share/man dodir /var/lib/spim - cd ${S}/spim - make install DESTDIR=${D} || die "Unable to install spim" + cd "${S}/spim" + make install DESTDIR="${D}" || die "Unable to install spim" if use X ; then - cd ${S}/xspim - make DESTDIR=${D} install || die "Unable to install xspim" + cd "${S}/xspim" + make DESTDIR="${D}" install || die "Unable to install xspim" fi - cd ${S}/Documentation + cd "${S}/Documentation" doman spim.1 use X && doman xspim.1 dohtml SPIM.html dodoc BLURB - cd ${S} + cd "${S}" dodoc README VERSION ChangeLog } diff --git a/app-emulation/spim/spim-7.2.1-r3.ebuild b/app-emulation/spim/spim-7.2.1-r3.ebuild index 941a73492308..a21fb01b3b67 100644 --- a/app-emulation/spim/spim-7.2.1-r3.ebuild +++ b/app-emulation/spim/spim-7.2.1-r3.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/spim/spim-7.2.1-r3.ebuild,v 1.6 2008/01/11 20:55:19 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/spim/spim-7.2.1-r3.ebuild,v 1.7 2009/03/20 03:25:56 jmbsvicetto Exp $ inherit eutils toolchain-funcs @@ -23,26 +23,26 @@ DEPEND="${RDEPEND} src_unpack() { unpack ${A} - cd ${S} + cd "${S}" # Patches from eradicator submitted upstream. Fixes amd64 and others... - epatch ${FILESDIR}/${PN}-7.2.1-envvar-exception.patch - epatch ${FILESDIR}/${PN}-7.2.1-c99.patch - epatch ${FILESDIR}/${PN}-7.2.1-ptrsize.patch - epatch ${FILESDIR}/${PN}-7.2.1-string-stream.patch - epatch ${FILESDIR}/${PN}-7.2.1-multiple-exception.patch + epatch "${FILESDIR}/${PN}-7.2.1-envvar-exception.patch" + epatch "${FILESDIR}/${PN}-7.2.1-c99.patch" + epatch "${FILESDIR}/${PN}-7.2.1-ptrsize.patch" + epatch "${FILESDIR}/${PN}-7.2.1-string-stream.patch" + epatch "${FILESDIR}/${PN}-7.2.1-multiple-exception.patch" # Fix string handling on multiple exceptions patch - epatch ${FILESDIR}/${PN}-7.2.1-string-handling-fix.patch + epatch "${FILESDIR}/${PN}-7.2.1-string-handling-fix.patch" # Fix documentation files - cd ${S}/Documentation + cd "${S}/Documentation" mv spim.man spim.1 mv xspim.man xspim.1 } src_compile() { - cd ${S}/spim + cd "${S}/spim" ./Configure || die "Configure Failed!" @@ -59,7 +59,7 @@ src_compile() { emake CC="$(tc-getCC)" || die if use X ; then - cd ${S}/xspim + cd "${S}/xspim" ./Configure || die "Configure Failed!" @@ -77,7 +77,7 @@ src_compile() { } src_test() { - cd ${S}/spim + cd "${S}/spim" make test || die "Failed to pass tests!" } @@ -86,21 +86,21 @@ src_install() { dodir /usr/share/man dodir /var/lib/spim - cd ${S}/spim - make install DESTDIR=${D} || die "Unable to install spim" + cd "${S}/spim" + make install DESTDIR="${D}" || die "Unable to install spim" if use X ; then - cd ${S}/xspim - make DESTDIR=${D} install || die "Unable to install xspim" + cd "${S}/xspim" + make DESTDIR="${D}" install || die "Unable to install xspim" fi - cd ${S}/Documentation + cd "${S}/Documentation" doman spim.1 use X && doman xspim.1 dohtml SPIM.html dodoc BLURB - cd ${S} + cd "${S}" dodoc README VERSION ChangeLog } diff --git a/app-emulation/spim/spim-7.3.ebuild b/app-emulation/spim/spim-7.3.ebuild index a57a6eb7cec8..13400b573f19 100644 --- a/app-emulation/spim/spim-7.3.ebuild +++ b/app-emulation/spim/spim-7.3.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/spim/spim-7.3.ebuild,v 1.7 2008/01/11 20:55:19 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/spim/spim-7.3.ebuild,v 1.8 2009/03/20 03:25:56 jmbsvicetto Exp $ inherit eutils toolchain-funcs @@ -23,16 +23,16 @@ DEPEND="${RDEPEND} src_unpack() { unpack ${A} - cd ${S} + cd "${S}" # Fix documentation files - cd ${S}/Documentation + cd "${S}/Documentation" mv spim.man spim.1 mv xspim.man xspim.1 } src_compile() { - cd ${S}/spim + cd "${S}/spim" ./Configure || die "Configure Failed!" @@ -49,7 +49,7 @@ src_compile() { emake CC="$(tc-getCC)" || die if use X ; then - cd ${S}/xspim + cd "${S}/xspim" ./Configure || die "Configure Failed!" @@ -67,7 +67,7 @@ src_compile() { } src_test() { - cd ${S}/spim + cd "${S}/spim" make test || die "Failed to pass tests!" } @@ -76,21 +76,21 @@ src_install() { dodir /usr/share/man dodir /var/lib/spim - cd ${S}/spim + cd "${S}/spim" make install DESTDIR="${D}" || die "Unable to install spim" if use X ; then - cd ${S}/xspim + cd "${S}/xspim" make DESTDIR="${D}" install || die "Unable to install xspim" fi - cd ${S}/Documentation + cd "${S}/Documentation" doman spim.1 use X && doman xspim.1 dohtml SPIM.html dodoc BLURB - cd ${S} + cd "${S}" dodoc README VERSION ChangeLog } |