* [gentoo-commits] gentoo-x86 commit in app-editors/emacs: ChangeLog emacs-22.3-r1.ebuild
@ 2008-11-29 20:38 Ulrich Mueller (ulm)
0 siblings, 0 replies; 10+ messages in thread
From: Ulrich Mueller (ulm) @ 2008-11-29 20:38 UTC (permalink / raw
To: gentoo-commits
ulm 08/11/29 20:38:52
Modified: ChangeLog
Added: emacs-22.3-r1.ebuild
Log:
Add site initialisation for Info. Rename site-init file.
(Portage version: 2.2_rc16/cvs/Linux 2.6.27-gentoo-r4 i686)
Revision Changes Path
1.288 app-editors/emacs/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/ChangeLog?rev=1.288&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/ChangeLog?rev=1.288&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/ChangeLog?r1=1.287&r2=1.288
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/emacs/ChangeLog,v
retrieving revision 1.287
retrieving revision 1.288
diff -u -r1.287 -r1.288
--- ChangeLog 26 Nov 2008 21:11:49 -0000 1.287
+++ ChangeLog 29 Nov 2008 20:38:52 -0000 1.288
@@ -1,6 +1,13 @@
# ChangeLog for app-editors/emacs
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/ChangeLog,v 1.287 2008/11/26 21:11:49 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/ChangeLog,v 1.288 2008/11/29 20:38:52 ulm Exp $
+
+*emacs-22.3-r1 (29 Nov 2008)
+
+ 29 Nov 2008; Ulrich Mueller <ulm@gentoo.org> +emacs-22.3-r1.ebuild:
+ Add site initialisation for Info, so that Emacs' dir is first in list;
+ this will also help to get the right documentation if Emacs is started
+ as emacs-${SLOT}. Rename site-init file to 20${PN}-${SLOT}-gentoo.el.
26 Nov 2008; Ulrich Mueller <ulm@gentoo.org> emacs-21.4-r17.ebuild,
emacs-22.3.ebuild:
1.1 app-editors/emacs/emacs-22.3-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild?rev=1.1&content-type=text/plain
Index: emacs-22.3-r1.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild,v 1.1 2008/11/29 20:38:52 ulm Exp $
inherit autotools elisp-common eutils flag-o-matic
DESCRIPTION="The extensible, customizable, self-documenting real-time display editor"
HOMEPAGE="http://www.gnu.org/software/emacs/"
SRC_URI="mirror://gnu/emacs/${P}.tar.gz"
LICENSE="GPL-3 FDL-1.2 BSD as-is X11"
SLOT="22"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
IUSE="alsa gif gtk gzip-el hesiod jpeg kerberos motif png spell sound source tiff toolkit-scroll-bars X Xaw3d xpm"
RESTRICT="strip"
RDEPEND="!<app-editors/emacs-cvs-22.1
sys-libs/ncurses
>=app-admin/eselect-emacs-1.2
net-libs/liblockfile
hesiod? ( net-dns/hesiod )
kerberos? ( virtual/krb5 )
spell? ( || ( app-text/ispell app-text/aspell ) )
alsa? ( media-libs/alsa-lib )
X? (
x11-libs/libXmu
x11-libs/libXt
x11-misc/xbitmaps
x11-misc/emacs-desktop
gif? ( media-libs/giflib )
jpeg? ( media-libs/jpeg )
tiff? ( media-libs/tiff )
png? ( media-libs/libpng )
xpm? ( x11-libs/libXpm )
gtk? ( =x11-libs/gtk+-2* )
!gtk? (
Xaw3d? ( x11-libs/Xaw3d )
!Xaw3d? ( motif? ( x11-libs/openmotif ) )
)
)"
DEPEND="${RDEPEND}
alsa? ( dev-util/pkgconfig )
X? ( gtk? ( dev-util/pkgconfig ) )
gzip-el? ( app-arch/gzip )"
# FULL_VERSION keeps the full version number, which is needed in order to
# determine some path information correctly for copy/move operations later on
FULL_VERSION="${PV}"
SITEFILE="20${PN}-${SLOT}-gentoo.el"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/emacs-22.1-Xaw3d-headers.patch"
epatch "${FILESDIR}/emacs-22.3-freebsd-sparc.patch"
# SuperH support (bug 238210)
epatch "${FILESDIR}/emacs-22.2-sh.patch"
# Fix sporadic segmentation faults in unexec (bug 236579)
epatch "${FILESDIR}/emacs-22.3-linux-random-heap.patch"
sed -i -e "s:/usr/lib/crtbegin.o:$(`tc-getCC` -print-file-name=crtbegin.o):g" \
-e "s:/usr/lib/crtend.o:$(`tc-getCC` -print-file-name=crtend.o):g" \
"${S}"/src/s/freebsd.h || die "unable to sed freebsd.h settings"
if ! use alsa; then
# ALSA is detected even if not requested by its USE flag.
# Suppress it by supplying pkg-config with a wrong library name.
sed -i -e "/ALSA_MODULES=/s/alsa/DiSaBlEaLsA/" configure.in \
|| die "unable to sed configure.in"
fi
if ! use gzip-el; then
# Emacs' build system automatically detects the gzip binary and
# compresses el files. We don't want that so confuse it with a
# wrong binary name
sed -i -e "s/ gzip/ PrEvEnTcOmPrEsSiOn/" configure.in \
|| die "unable to sed configure.in"
fi
eautoreconf
}
src_compile() {
export SANDBOX_ON=0 # for the unbelievers, see Bug #131505
ALLOWED_FLAGS=""
strip-flags
#unset LDFLAGS
if use hppa; then # bug #193703
replace-flags -O[2-9] -O
else
replace-flags -O[3-9] -O2
fi
sed -i -e "s/-lungif/-lgif/g" configure* src/Makefile* || die
local myconf
if use alsa && ! use sound; then
echo
einfo "Although sound USE flag is disabled you chose to have alsa,"
einfo "so sound is switched on anyway."
echo
myconf="${myconf} --with-sound"
else
myconf="${myconf} $(use_with sound)"
fi
if use X; then
myconf="${myconf} --with-x"
myconf="${myconf} $(use_with toolkit-scroll-bars)"
myconf="${myconf} $(use_with jpeg) $(use_with tiff)"
myconf="${myconf} $(use_with gif) $(use_with png)"
myconf="${myconf} $(use_with xpm)"
# GTK+ is the default toolkit if USE=gtk is chosen with other
# possibilities. Emacs upstream thinks this should be standard
# policy on all distributions
if use gtk; then
einfo "Configuring to build with GIMP Toolkit (GTK+)"
myconf="${myconf} --with-x-toolkit=gtk"
elif use Xaw3d; then
einfo "Configuring to build with Xaw3d (Athena) toolkit"
myconf="${myconf} --with-x-toolkit=athena"
myconf="${myconf} --without-gtk"
elif use motif; then
einfo "Configuring to build with Motif toolkit"
myconf="${myconf} --with-x-toolkit=motif"
myconf="${myconf} --without-gtk"
else
einfo "Configuring to build with no toolkit"
myconf="${myconf} --with-x-toolkit=no"
myconf="${myconf} --without-gtk"
fi
local f tk=
for f in gtk Xaw3d motif; do
use ${f} || continue
[ "${tk}" ] \
&& ewarn "USE flag \"${f}\" ignored (superseded by \"${tk}\")"
tk="${tk}${tk:+ }${f}"
done
else
myconf="${myconf} --without-x"
fi
myconf="${myconf} $(use_with hesiod)"
myconf="${myconf} $(use_with kerberos) $(use_with kerberos kerberos5)"
econf \
--program-suffix=-emacs-${SLOT} \
--infodir=/usr/share/info/emacs-${SLOT} \
--without-carbon \
${myconf} || die "econf emacs failed"
emake CC="$(tc-getCC)" || die "emake failed"
}
src_install () {
local i m
emake install DESTDIR="${D}" || die "make install failed"
rm "${D}"/usr/bin/emacs-${FULL_VERSION}-emacs-${SLOT} \
|| die "removing duplicate emacs executable failed"
mv "${D}"/usr/bin/emacs-emacs-${SLOT} "${D}"/usr/bin/emacs-${SLOT} \
|| die "moving Emacs executable failed"
# move info documentation to the correct place
for i in "${D}"/usr/share/info/emacs-${SLOT}/*; do
mv "${i}" "${i}.info" || die "mv info failed"
done
# move man pages to the correct place
for m in "${D}"/usr/share/man/man1/* ; do
mv "${m}" "${m%.1}-emacs-${SLOT}.1" || die "mv man failed"
done
# avoid collision between slots, see bug #169033 e.g.
rm "${D}"/usr/share/emacs/site-lisp/subdirs.el
rm "${D}"/var/lib/games/emacs/{snake,tetris}-scores
keepdir /usr/share/emacs/site-lisp
keepdir /var/lib/games/emacs
local c=";;"
if use source; then
insinto /usr/share/emacs/${FULL_VERSION}/src
# This is not meant to install all the source -- just the
# C source you might find via find-function
doins src/*.[ch]
c=""
fi
sed 's/^X//' >"${SITEFILE}" <<-EOF
X
;;; ${PN}-${SLOT} site-lisp configuration
X
(when (string-match "\\\\\`${FULL_VERSION//./\\\\.}\\\\>" emacs-version)
X ${c}(setq find-function-C-source-directory
X ${c} "/usr/share/emacs/${FULL_VERSION}/src")
X (let ((path (getenv "INFOPATH"))
X (dir "/usr/share/info/emacs-${SLOT}"))
X (and path
X ;; move Emacs Info dir to beginning of list
X (setq Info-directory-list
X (cons dir (delete dir (split-string path ":" t)))))))
EOF
elisp-site-file-install "${SITEFILE}" || die
dodoc AUTHORS BUGS CONTRIBUTE README || die "dodoc failed"
}
emacs-infodir-rebuild() {
# Depending on the Portage version, the Info dir file is compressed
# or removed. It is only rebuilt by Portage if our directory is in
# INFOPATH, which is not guaranteed. So we rebuild it ourselves.
local infodir=/usr/share/info/emacs-${SLOT} f
[ -d "${ROOT}"${infodir} ] || return # may occur with FEATURES=noinfo
einfo "Regenerating Info directory index in ${infodir} ..."
rm -f "${ROOT}"${infodir}/dir{,.*}
for f in "${ROOT}"${infodir}/*.info*; do
[[ ${f##*/} != *[0-9].info* && -e ${f} ]] \
&& install-info --info-dir="${ROOT}"${infodir} "${f}" &>/dev/null
done
rmdir "${ROOT}"${infodir} 2>/dev/null # remove dir if it is empty
echo
}
pkg_postinst() {
[ -f "${ROOT}"/usr/share/emacs/site-lisp/subdirs.el ] \
|| cp "${ROOT}"/usr/share/emacs{/${FULL_VERSION},}/site-lisp/subdirs.el
local f
for f in "${ROOT}"/var/lib/games/emacs/{snake,tetris}-scores; do
[ -e "${f}" ] || touch "${f}"
done
elisp-site-regen
emacs-infodir-rebuild
if [[ $(readlink "${ROOT}"/usr/bin/emacs) == emacs.emacs-${SLOT}* ]]; then
# transition from pre-eselect revision
eselect emacs set emacs-${SLOT}
else
eselect emacs update ifunset
fi
echo
elog "You can set the version to be started by /usr/bin/emacs through"
elog "the Emacs eselect module, which also redirects man and info pages."
elog "Therefore, several Emacs versions can be installed at the same time."
elog "\"man emacs.eselect\" for details."
}
pkg_postrm() {
elisp-site-regen
emacs-infodir-rebuild
eselect emacs update ifunset
}
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-editors/emacs: ChangeLog emacs-22.3-r1.ebuild
@ 2009-01-26 13:01 Ferris McCormick (fmccor)
0 siblings, 0 replies; 10+ messages in thread
From: Ferris McCormick (fmccor) @ 2009-01-26 13:01 UTC (permalink / raw
To: gentoo-commits
fmccor 09/01/26 13:01:40
Modified: ChangeLog emacs-22.3-r1.ebuild
Log:
Sparc stable, Bug #256382 (been around some time now).
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Revision Changes Path
1.293 app-editors/emacs/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/ChangeLog?rev=1.293&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/ChangeLog?rev=1.293&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/ChangeLog?r1=1.292&r2=1.293
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/emacs/ChangeLog,v
retrieving revision 1.292
retrieving revision 1.293
diff -u -r1.292 -r1.293
--- ChangeLog 23 Jan 2009 16:53:41 -0000 1.292
+++ ChangeLog 26 Jan 2009 13:01:40 -0000 1.293
@@ -1,6 +1,9 @@
# ChangeLog for app-editors/emacs
# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/ChangeLog,v 1.292 2009/01/23 16:53:41 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/ChangeLog,v 1.293 2009/01/26 13:01:40 fmccor Exp $
+
+ 26 Jan 2009; Ferris McCormick <fmccor@gentoo.org> emacs-22.3-r1.ebuild:
+ Sparc stable, Bug #256382 (been around some time now).
*emacs-18.59-r6 (23 Jan 2009)
1.3 app-editors/emacs/emacs-22.3-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild?r1=1.2&r2=1.3
Index: emacs-22.3-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- emacs-22.3-r1.ebuild 25 Jan 2009 17:43:40 -0000 1.2
+++ emacs-22.3-r1.ebuild 26 Jan 2009 13:01:40 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild,v 1.2 2009/01/25 17:43:40 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild,v 1.3 2009/01/26 13:01:40 fmccor Exp $
inherit autotools elisp-common eutils flag-o-matic
@@ -10,7 +10,7 @@
LICENSE="GPL-3 FDL-1.2 BSD as-is X11"
SLOT="22"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh sparc ~sparc-fbsd ~x86 ~x86-fbsd"
IUSE="alsa gif gtk gzip-el hesiod jpeg kerberos motif png spell sound source tiff toolkit-scroll-bars X Xaw3d xpm"
RESTRICT="strip"
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-editors/emacs: ChangeLog emacs-22.3-r1.ebuild
@ 2009-01-26 15:04 Tiago Cunha (tcunha)
0 siblings, 0 replies; 10+ messages in thread
From: Tiago Cunha (tcunha) @ 2009-01-26 15:04 UTC (permalink / raw
To: gentoo-commits
tcunha 09/01/26 15:04:27
Modified: ChangeLog emacs-22.3-r1.ebuild
Log:
stable amd64, bug 256382
(Portage version: 2.1.6.4/cvs/Linux 2.6.27-gentoo-r8 x86_64)
Revision Changes Path
1.294 app-editors/emacs/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/ChangeLog?rev=1.294&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/ChangeLog?rev=1.294&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/ChangeLog?r1=1.293&r2=1.294
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/emacs/ChangeLog,v
retrieving revision 1.293
retrieving revision 1.294
diff -u -r1.293 -r1.294
--- ChangeLog 26 Jan 2009 13:01:40 -0000 1.293
+++ ChangeLog 26 Jan 2009 15:04:27 -0000 1.294
@@ -1,6 +1,9 @@
# ChangeLog for app-editors/emacs
# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/ChangeLog,v 1.293 2009/01/26 13:01:40 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/ChangeLog,v 1.294 2009/01/26 15:04:27 tcunha Exp $
+
+ 26 Jan 2009; Tiago Cunha <tcunha@gentoo.org> emacs-22.3-r1.ebuild:
+ stable amd64, bug 256382
26 Jan 2009; Ferris McCormick <fmccor@gentoo.org> emacs-22.3-r1.ebuild:
Sparc stable, Bug #256382 (been around some time now).
1.4 app-editors/emacs/emacs-22.3-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild?r1=1.3&r2=1.4
Index: emacs-22.3-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- emacs-22.3-r1.ebuild 26 Jan 2009 13:01:40 -0000 1.3
+++ emacs-22.3-r1.ebuild 26 Jan 2009 15:04:27 -0000 1.4
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild,v 1.3 2009/01/26 13:01:40 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild,v 1.4 2009/01/26 15:04:27 tcunha Exp $
inherit autotools elisp-common eutils flag-o-matic
@@ -10,7 +10,7 @@
LICENSE="GPL-3 FDL-1.2 BSD as-is X11"
SLOT="22"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh sparc ~sparc-fbsd ~x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh sparc ~sparc-fbsd ~x86 ~x86-fbsd"
IUSE="alsa gif gtk gzip-el hesiod jpeg kerberos motif png spell sound source tiff toolkit-scroll-bars X Xaw3d xpm"
RESTRICT="strip"
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-editors/emacs: ChangeLog emacs-22.3-r1.ebuild
@ 2009-01-26 16:14 Brent Baude (ranger)
0 siblings, 0 replies; 10+ messages in thread
From: Brent Baude (ranger) @ 2009-01-26 16:14 UTC (permalink / raw
To: gentoo-commits
ranger 09/01/26 16:14:24
Modified: ChangeLog emacs-22.3-r1.ebuild
Log:
stable ppc64, bug 256382
(Portage version: 2.1.6.6/cvs/Linux 2.6.24-gentoo-r3-g5-64 ppc64)
Revision Changes Path
1.295 app-editors/emacs/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/ChangeLog?rev=1.295&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/ChangeLog?rev=1.295&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/ChangeLog?r1=1.294&r2=1.295
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/emacs/ChangeLog,v
retrieving revision 1.294
retrieving revision 1.295
diff -u -r1.294 -r1.295
--- ChangeLog 26 Jan 2009 15:04:27 -0000 1.294
+++ ChangeLog 26 Jan 2009 16:14:24 -0000 1.295
@@ -1,6 +1,9 @@
# ChangeLog for app-editors/emacs
# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/ChangeLog,v 1.294 2009/01/26 15:04:27 tcunha Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/ChangeLog,v 1.295 2009/01/26 16:14:24 ranger Exp $
+
+ 26 Jan 2009; Brent Baude <ranger@gentoo.org> emacs-22.3-r1.ebuild:
+ stable ppc64, bug 256382
26 Jan 2009; Tiago Cunha <tcunha@gentoo.org> emacs-22.3-r1.ebuild:
stable amd64, bug 256382
1.5 app-editors/emacs/emacs-22.3-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild?r1=1.4&r2=1.5
Index: emacs-22.3-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- emacs-22.3-r1.ebuild 26 Jan 2009 15:04:27 -0000 1.4
+++ emacs-22.3-r1.ebuild 26 Jan 2009 16:14:24 -0000 1.5
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild,v 1.4 2009/01/26 15:04:27 tcunha Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild,v 1.5 2009/01/26 16:14:24 ranger Exp $
inherit autotools elisp-common eutils flag-o-matic
@@ -10,7 +10,7 @@
LICENSE="GPL-3 FDL-1.2 BSD as-is X11"
SLOT="22"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh sparc ~sparc-fbsd ~x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ppc64 ~s390 ~sh sparc ~sparc-fbsd ~x86 ~x86-fbsd"
IUSE="alsa gif gtk gzip-el hesiod jpeg kerberos motif png spell sound source tiff toolkit-scroll-bars X Xaw3d xpm"
RESTRICT="strip"
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-editors/emacs: ChangeLog emacs-22.3-r1.ebuild
@ 2009-02-01 16:07 Tobias Klausmann (klausman)
0 siblings, 0 replies; 10+ messages in thread
From: Tobias Klausmann (klausman) @ 2009-02-01 16:07 UTC (permalink / raw
To: gentoo-commits
klausman 09/02/01 16:07:35
Modified: ChangeLog emacs-22.3-r1.ebuild
Log:
Stable on alpha, bug #256382
(Portage version: 2.1.6.7/cvs/Linux x86_64)
Revision Changes Path
1.296 app-editors/emacs/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/ChangeLog?rev=1.296&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/ChangeLog?rev=1.296&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/ChangeLog?r1=1.295&r2=1.296
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/emacs/ChangeLog,v
retrieving revision 1.295
retrieving revision 1.296
diff -u -r1.295 -r1.296
--- ChangeLog 26 Jan 2009 16:14:24 -0000 1.295
+++ ChangeLog 1 Feb 2009 16:07:35 -0000 1.296
@@ -1,6 +1,9 @@
# ChangeLog for app-editors/emacs
# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/ChangeLog,v 1.295 2009/01/26 16:14:24 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/ChangeLog,v 1.296 2009/02/01 16:07:35 klausman Exp $
+
+ 01 Feb 2009; Tobias Klausmann <klausman@gentoo.org> emacs-22.3-r1.ebuild:
+ Stable on alpha, bug #256382
26 Jan 2009; Brent Baude <ranger@gentoo.org> emacs-22.3-r1.ebuild:
stable ppc64, bug 256382
1.6 app-editors/emacs/emacs-22.3-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild?r1=1.5&r2=1.6
Index: emacs-22.3-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- emacs-22.3-r1.ebuild 26 Jan 2009 16:14:24 -0000 1.5
+++ emacs-22.3-r1.ebuild 1 Feb 2009 16:07:35 -0000 1.6
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild,v 1.5 2009/01/26 16:14:24 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild,v 1.6 2009/02/01 16:07:35 klausman Exp $
inherit autotools elisp-common eutils flag-o-matic
@@ -10,7 +10,7 @@
LICENSE="GPL-3 FDL-1.2 BSD as-is X11"
SLOT="22"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ppc64 ~s390 ~sh sparc ~sparc-fbsd ~x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ~ppc ppc64 ~s390 ~sh sparc ~sparc-fbsd ~x86 ~x86-fbsd"
IUSE="alsa gif gtk gzip-el hesiod jpeg kerberos motif png spell sound source tiff toolkit-scroll-bars X Xaw3d xpm"
RESTRICT="strip"
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-editors/emacs: ChangeLog emacs-22.3-r1.ebuild
@ 2009-02-01 19:26 Gysbert Wassenaar (nixnut)
0 siblings, 0 replies; 10+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2009-02-01 19:26 UTC (permalink / raw
To: gentoo-commits
nixnut 09/02/01 19:26:29
Modified: ChangeLog emacs-22.3-r1.ebuild
Log:
ppc stable #256382
(Portage version: 2.1.6.7/cvs/Linux ppc)
Revision Changes Path
1.297 app-editors/emacs/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/ChangeLog?rev=1.297&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/ChangeLog?rev=1.297&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/ChangeLog?r1=1.296&r2=1.297
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/emacs/ChangeLog,v
retrieving revision 1.296
retrieving revision 1.297
diff -u -r1.296 -r1.297
--- ChangeLog 1 Feb 2009 16:07:35 -0000 1.296
+++ ChangeLog 1 Feb 2009 19:26:28 -0000 1.297
@@ -1,6 +1,9 @@
# ChangeLog for app-editors/emacs
# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/ChangeLog,v 1.296 2009/02/01 16:07:35 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/ChangeLog,v 1.297 2009/02/01 19:26:28 nixnut Exp $
+
+ 01 Feb 2009; nixnut <nixnut@gentoo.org> emacs-22.3-r1.ebuild:
+ ppc stable #256382
01 Feb 2009; Tobias Klausmann <klausman@gentoo.org> emacs-22.3-r1.ebuild:
Stable on alpha, bug #256382
1.7 app-editors/emacs/emacs-22.3-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild?r1=1.6&r2=1.7
Index: emacs-22.3-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- emacs-22.3-r1.ebuild 1 Feb 2009 16:07:35 -0000 1.6
+++ emacs-22.3-r1.ebuild 1 Feb 2009 19:26:28 -0000 1.7
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild,v 1.6 2009/02/01 16:07:35 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild,v 1.7 2009/02/01 19:26:28 nixnut Exp $
inherit autotools elisp-common eutils flag-o-matic
@@ -10,7 +10,7 @@
LICENSE="GPL-3 FDL-1.2 BSD as-is X11"
SLOT="22"
-KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ~ppc ppc64 ~s390 ~sh sparc ~sparc-fbsd ~x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 ~s390 ~sh sparc ~sparc-fbsd ~x86 ~x86-fbsd"
IUSE="alsa gif gtk gzip-el hesiod jpeg kerberos motif png spell sound source tiff toolkit-scroll-bars X Xaw3d xpm"
RESTRICT="strip"
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-editors/emacs: ChangeLog emacs-22.3-r1.ebuild
@ 2009-02-01 21:12 Markus Meier (maekke)
0 siblings, 0 replies; 10+ messages in thread
From: Markus Meier (maekke) @ 2009-02-01 21:12 UTC (permalink / raw
To: gentoo-commits
maekke 09/02/01 21:12:01
Modified: ChangeLog emacs-22.3-r1.ebuild
Log:
x86 stable, bug #256382
(Portage version: 2.1.6.7/cvs/Linux x86_64)
Revision Changes Path
1.298 app-editors/emacs/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/ChangeLog?rev=1.298&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/ChangeLog?rev=1.298&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/ChangeLog?r1=1.297&r2=1.298
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/emacs/ChangeLog,v
retrieving revision 1.297
retrieving revision 1.298
diff -u -r1.297 -r1.298
--- ChangeLog 1 Feb 2009 19:26:28 -0000 1.297
+++ ChangeLog 1 Feb 2009 21:12:01 -0000 1.298
@@ -1,6 +1,9 @@
# ChangeLog for app-editors/emacs
# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/ChangeLog,v 1.297 2009/02/01 19:26:28 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/ChangeLog,v 1.298 2009/02/01 21:12:01 maekke Exp $
+
+ 01 Feb 2009; Markus Meier <maekke@gentoo.org> emacs-22.3-r1.ebuild:
+ x86 stable, bug #256382
01 Feb 2009; nixnut <nixnut@gentoo.org> emacs-22.3-r1.ebuild:
ppc stable #256382
1.8 app-editors/emacs/emacs-22.3-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild?r1=1.7&r2=1.8
Index: emacs-22.3-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- emacs-22.3-r1.ebuild 1 Feb 2009 19:26:28 -0000 1.7
+++ emacs-22.3-r1.ebuild 1 Feb 2009 21:12:01 -0000 1.8
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild,v 1.7 2009/02/01 19:26:28 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild,v 1.8 2009/02/01 21:12:01 maekke Exp $
inherit autotools elisp-common eutils flag-o-matic
@@ -10,7 +10,7 @@
LICENSE="GPL-3 FDL-1.2 BSD as-is X11"
SLOT="22"
-KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 ~s390 ~sh sparc ~sparc-fbsd ~x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 ~s390 ~sh sparc ~sparc-fbsd x86 ~x86-fbsd"
IUSE="alsa gif gtk gzip-el hesiod jpeg kerberos motif png spell sound source tiff toolkit-scroll-bars X Xaw3d xpm"
RESTRICT="strip"
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-editors/emacs: ChangeLog emacs-22.3-r1.ebuild
@ 2009-02-05 19:10 Raul Porcel (armin76)
0 siblings, 0 replies; 10+ messages in thread
From: Raul Porcel (armin76) @ 2009-02-05 19:10 UTC (permalink / raw
To: gentoo-commits
armin76 09/02/05 19:10:46
Modified: ChangeLog emacs-22.3-r1.ebuild
Log:
arm/ia64/s390/sh stable wrt #256382
(Portage version: 2.1.6.4/cvs/Linux 2.6.26-gentoo-r2 ia64)
Revision Changes Path
1.299 app-editors/emacs/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/ChangeLog?rev=1.299&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/ChangeLog?rev=1.299&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/ChangeLog?r1=1.298&r2=1.299
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/emacs/ChangeLog,v
retrieving revision 1.298
retrieving revision 1.299
diff -u -r1.298 -r1.299
--- ChangeLog 1 Feb 2009 21:12:01 -0000 1.298
+++ ChangeLog 5 Feb 2009 19:10:46 -0000 1.299
@@ -1,6 +1,9 @@
# ChangeLog for app-editors/emacs
# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/ChangeLog,v 1.298 2009/02/01 21:12:01 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/ChangeLog,v 1.299 2009/02/05 19:10:46 armin76 Exp $
+
+ 05 Feb 2009; Raúl Porcel <armin76@gentoo.org> emacs-22.3-r1.ebuild:
+ arm/ia64/s390/sh stable wrt #256382
01 Feb 2009; Markus Meier <maekke@gentoo.org> emacs-22.3-r1.ebuild:
x86 stable, bug #256382
1.9 app-editors/emacs/emacs-22.3-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild?r1=1.8&r2=1.9
Index: emacs-22.3-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- emacs-22.3-r1.ebuild 1 Feb 2009 21:12:01 -0000 1.8
+++ emacs-22.3-r1.ebuild 5 Feb 2009 19:10:46 -0000 1.9
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild,v 1.8 2009/02/01 21:12:01 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild,v 1.9 2009/02/05 19:10:46 armin76 Exp $
inherit autotools elisp-common eutils flag-o-matic
@@ -10,7 +10,7 @@
LICENSE="GPL-3 FDL-1.2 BSD as-is X11"
SLOT="22"
-KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 ~s390 ~sh sparc ~sparc-fbsd x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 arm ~hppa ia64 ppc ppc64 s390 sh sparc ~sparc-fbsd x86 ~x86-fbsd"
IUSE="alsa gif gtk gzip-el hesiod jpeg kerberos motif png spell sound source tiff toolkit-scroll-bars X Xaw3d xpm"
RESTRICT="strip"
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-editors/emacs: ChangeLog emacs-22.3-r1.ebuild
@ 2009-02-06 3:53 Jeroen Roovers (jer)
0 siblings, 0 replies; 10+ messages in thread
From: Jeroen Roovers (jer) @ 2009-02-06 3:53 UTC (permalink / raw
To: gentoo-commits
jer 09/02/06 03:53:12
Modified: ChangeLog emacs-22.3-r1.ebuild
Log:
Stable for HPPA (bug #256382).
(Portage version: 2.2_rc23/cvs/Linux i686)
Revision Changes Path
1.300 app-editors/emacs/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/ChangeLog?rev=1.300&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/ChangeLog?rev=1.300&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/ChangeLog?r1=1.299&r2=1.300
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/emacs/ChangeLog,v
retrieving revision 1.299
retrieving revision 1.300
diff -u -r1.299 -r1.300
--- ChangeLog 5 Feb 2009 19:10:46 -0000 1.299
+++ ChangeLog 6 Feb 2009 03:53:12 -0000 1.300
@@ -1,6 +1,9 @@
# ChangeLog for app-editors/emacs
# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/ChangeLog,v 1.299 2009/02/05 19:10:46 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/ChangeLog,v 1.300 2009/02/06 03:53:12 jer Exp $
+
+ 06 Feb 2009; Jeroen Roovers <jer@gentoo.org> emacs-22.3-r1.ebuild:
+ Stable for HPPA (bug #256382).
05 Feb 2009; Raúl Porcel <armin76@gentoo.org> emacs-22.3-r1.ebuild:
arm/ia64/s390/sh stable wrt #256382
1.10 app-editors/emacs/emacs-22.3-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild?r1=1.9&r2=1.10
Index: emacs-22.3-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- emacs-22.3-r1.ebuild 5 Feb 2009 19:10:46 -0000 1.9
+++ emacs-22.3-r1.ebuild 6 Feb 2009 03:53:12 -0000 1.10
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild,v 1.9 2009/02/05 19:10:46 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild,v 1.10 2009/02/06 03:53:12 jer Exp $
inherit autotools elisp-common eutils flag-o-matic
@@ -10,7 +10,7 @@
LICENSE="GPL-3 FDL-1.2 BSD as-is X11"
SLOT="22"
-KEYWORDS="alpha amd64 arm ~hppa ia64 ppc ppc64 s390 sh sparc ~sparc-fbsd x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 sh sparc ~sparc-fbsd x86 ~x86-fbsd"
IUSE="alsa gif gtk gzip-el hesiod jpeg kerberos motif png spell sound source tiff toolkit-scroll-bars X Xaw3d xpm"
RESTRICT="strip"
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-editors/emacs: ChangeLog emacs-22.3-r1.ebuild
@ 2009-02-17 19:43 Ulrich Mueller (ulm)
0 siblings, 0 replies; 10+ messages in thread
From: Ulrich Mueller (ulm) @ 2009-02-17 19:43 UTC (permalink / raw
To: gentoo-commits
ulm 09/02/17 19:43:10
Modified: ChangeLog emacs-22.3-r1.ebuild
Log:
Prefer aspell over ispell, following upstream.
(Portage version: 2.2_rc23/cvs/Linux i686)
Revision Changes Path
1.302 app-editors/emacs/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/ChangeLog?rev=1.302&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/ChangeLog?rev=1.302&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/ChangeLog?r1=1.301&r2=1.302
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/emacs/ChangeLog,v
retrieving revision 1.301
retrieving revision 1.302
diff -u -r1.301 -r1.302
--- ChangeLog 6 Feb 2009 07:28:08 -0000 1.301
+++ ChangeLog 17 Feb 2009 19:43:10 -0000 1.302
@@ -1,6 +1,9 @@
# ChangeLog for app-editors/emacs
# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/ChangeLog,v 1.301 2009/02/06 07:28:08 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/ChangeLog,v 1.302 2009/02/17 19:43:10 ulm Exp $
+
+ 17 Feb 2009; Ulrich Mueller <ulm@gentoo.org> emacs-22.3-r1.ebuild:
+ Prefer aspell over ispell, following upstream.
06 Feb 2009; Ulrich Mueller <ulm@gentoo.org> -emacs-22.3.ebuild:
Remove old.
1.11 app-editors/emacs/emacs-22.3-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild?r1=1.10&r2=1.11
Index: emacs-22.3-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- emacs-22.3-r1.ebuild 6 Feb 2009 03:53:12 -0000 1.10
+++ emacs-22.3-r1.ebuild 17 Feb 2009 19:43:10 -0000 1.11
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild,v 1.10 2009/02/06 03:53:12 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-22.3-r1.ebuild,v 1.11 2009/02/17 19:43:10 ulm Exp $
inherit autotools elisp-common eutils flag-o-matic
@@ -20,7 +20,7 @@
net-libs/liblockfile
hesiod? ( net-dns/hesiod )
kerberos? ( virtual/krb5 )
- spell? ( || ( app-text/ispell app-text/aspell ) )
+ spell? ( || ( app-text/aspell app-text/ispell ) )
alsa? ( media-libs/alsa-lib )
X? (
x11-libs/libXmu
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2009-02-17 19:43 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-26 13:01 [gentoo-commits] gentoo-x86 commit in app-editors/emacs: ChangeLog emacs-22.3-r1.ebuild Ferris McCormick (fmccor)
-- strict thread matches above, loose matches on Subject: below --
2009-02-17 19:43 Ulrich Mueller (ulm)
2009-02-06 3:53 Jeroen Roovers (jer)
2009-02-05 19:10 Raul Porcel (armin76)
2009-02-01 21:12 Markus Meier (maekke)
2009-02-01 19:26 Gysbert Wassenaar (nixnut)
2009-02-01 16:07 Tobias Klausmann (klausman)
2009-01-26 16:14 Brent Baude (ranger)
2009-01-26 15:04 Tiago Cunha (tcunha)
2008-11-29 20:38 Ulrich Mueller (ulm)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox