diff options
author | Ulrich Müller <ulm@gentoo.org> | 2012-07-14 16:01:17 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2012-07-14 16:01:17 +0000 |
commit | e1c1f36ffd5970945f9b92794dc9b0f8595324b1 (patch) | |
tree | a344a0e11242bf52066583e59da5d6554bbbac96 /app-emacs | |
parent | Stable for amd64, wrt bug #426366 (diff) | |
download | gentoo-2-e1c1f36ffd5970945f9b92794dc9b0f8595324b1.tar.gz gentoo-2-e1c1f36ffd5970945f9b92794dc9b0f8595324b1.tar.bz2 gentoo-2-e1c1f36ffd5970945f9b92794dc9b0f8595324b1.zip |
Restrict test, bug 426546.
(Portage version: 2.1.11.7/cvs/Linux x86_64)
Diffstat (limited to 'app-emacs')
-rw-r--r-- | app-emacs/muse/ChangeLog | 8 | ||||
-rw-r--r-- | app-emacs/muse/muse-3.12.ebuild | 29 | ||||
-rw-r--r-- | app-emacs/muse/muse-3.20.ebuild | 15 |
3 files changed, 15 insertions, 37 deletions
diff --git a/app-emacs/muse/ChangeLog b/app-emacs/muse/ChangeLog index 1b175e83c331..88a7110f60a9 100644 --- a/app-emacs/muse/ChangeLog +++ b/app-emacs/muse/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-emacs/muse -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/muse/ChangeLog,v 1.30 2010/05/24 14:27:50 tove Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/muse/ChangeLog,v 1.31 2012/07/14 16:01:17 ulm Exp $ + + 14 Jul 2012; Ulrich Müller <ulm@gentoo.org> -muse-3.12.ebuild, + muse-3.20.ebuild: + Restrict test, bug 426546. 24 May 2010; Torsten Veller <tove@gentoo.org> metadata.xml: Remove wrobel from metadata.xml (#111816) diff --git a/app-emacs/muse/muse-3.12.ebuild b/app-emacs/muse/muse-3.12.ebuild deleted file mode 100644 index b766d84a7707..000000000000 --- a/app-emacs/muse/muse-3.12.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/muse/muse-3.12.ebuild,v 1.6 2010/03/03 13:21:30 ulm Exp $ - -inherit elisp - -DESCRIPTION="Muse-mode is similar to EmacsWikiMode, but more focused on publishing to various formats" -HOMEPAGE="http://mwolson.org/projects/EmacsMuse.html" -SRC_URI="http://download.gna.org/muse-el/${P}.tar.gz" - -LICENSE="GPL-3 FDL-1.2 GPL-2 MIT" -SLOT="0" -KEYWORDS="amd64 ~ppc sparc x86 ~x86-fbsd" -IUSE="" - -SITEFILE=50${PN}-gentoo.el - -src_compile() { - emake || die "emake failed" -} - -src_install() { - elisp-install ${PN} lisp/*.el lisp/*.elc - elisp-site-file-install "${FILESDIR}/${SITEFILE}" - doinfo texi/muse.info - dodoc AUTHORS NEWS README ChangeLog* || die "dodoc failed" - insinto /usr/share/doc/${PF} - doins -r contrib etc examples experimental scripts -} diff --git a/app-emacs/muse/muse-3.20.ebuild b/app-emacs/muse/muse-3.20.ebuild index 3c654ae12445..babb04fe4086 100644 --- a/app-emacs/muse/muse-3.20.ebuild +++ b/app-emacs/muse/muse-3.20.ebuild @@ -1,6 +1,8 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/muse/muse-3.20.ebuild,v 1.8 2010/05/23 18:21:21 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/muse/muse-3.20.ebuild,v 1.9 2012/07/14 16:01:17 ulm Exp $ + +EAPI=4 inherit elisp @@ -12,6 +14,7 @@ LICENSE="GPL-3 FDL-1.2 GPL-2 MIT" SLOT="0" KEYWORDS="amd64 ppc sparc x86 ~x86-fbsd" IUSE="test" +RESTRICT="test" #426546 DEPEND="test? ( app-emacs/htmlize )" RDEPEND="" @@ -19,14 +22,14 @@ RDEPEND="" SITEFILE="50${PN}-gentoo.el" src_compile() { - emake || die "emake failed" + default } src_install() { elisp-install ${PN} lisp/*.el lisp/*.elc || die elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die - doinfo texi/muse.info || die - dodoc AUTHORS NEWS README ChangeLog* || die "dodoc failed" + doinfo texi/muse.info + dodoc AUTHORS NEWS README ChangeLog* insinto /usr/share/doc/${PF} - doins -r contrib etc examples experimental scripts || die + doins -r contrib etc examples experimental scripts } |