public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-emacs/auctex: ChangeLog auctex-11.84-r3.ebuild
@ 2007-11-23 16:16 Ulrich Mueller (ulm)
  0 siblings, 0 replies; 6+ messages in thread
From: Ulrich Mueller (ulm) @ 2007-11-23 16:16 UTC (permalink / raw
  To: gentoo-commits

ulm         07/11/23 16:16:06

  Modified:             ChangeLog
  Added:                auctex-11.84-r3.ebuild
  Log:
  Move data files from site-lisp to etc directory. Other minor changes.
  (Portage version: 2.1.3.19)

Revision  Changes    Path
1.70                 app-emacs/auctex/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/auctex/ChangeLog?rev=1.70&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/auctex/ChangeLog?rev=1.70&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/auctex/ChangeLog?r1=1.69&r2=1.70

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emacs/auctex/ChangeLog,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -r1.69 -r1.70
--- ChangeLog	21 Nov 2007 12:06:29 -0000	1.69
+++ ChangeLog	23 Nov 2007 16:16:06 -0000	1.70
@@ -1,6 +1,14 @@
 # ChangeLog for app-emacs/auctex
 # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/auctex/ChangeLog,v 1.69 2007/11/21 12:06:29 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/auctex/ChangeLog,v 1.70 2007/11/23 16:16:06 ulm Exp $
+
+*auctex-11.84-r3 (23 Nov 2007)
+
+  23 Nov 2007; Ulrich Mueller <ulm@gentoo.org> +files/50auctex-gentoo.el,
+  +auctex-11.84-r3.ebuild:
+  Move data files from site-lisp to etc directory. Use "emake install" for
+  installation and remove ${D} from configure options. Don't use auctex.el
+  wrapper for startup, but require tex-site directly.
 
   21 Nov 2007; Raúl Porcel <armin76@gentoo.org> auctex-11.84-r2.ebuild:
   sparc stable wrt #199765



1.1                  app-emacs/auctex/auctex-11.84-r3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/auctex/auctex-11.84-r3.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/auctex/auctex-11.84-r3.ebuild?rev=1.1&content-type=text/plain

Index: auctex-11.84-r3.ebuild
===================================================================
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/auctex/auctex-11.84-r3.ebuild,v 1.1 2007/11/23 16:16:06 ulm Exp $

inherit elisp eutils latex-package

DESCRIPTION="An extensible package that supports writing and formatting TeX files"
HOMEPAGE="http://www.gnu.org/software/auctex/"
SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"

LICENSE="GPL-2 FDL-1.2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="preview-latex"

DEPEND="virtual/tetex
	preview-latex? ( !dev-tex/preview-latex
		app-text/dvipng
		virtual/ghostscript )"

src_unpack() {
	unpack ${A}
	cd "${S}"

	# skip XEmacs detection. this is a workaround for emacs23
	epatch "${FILESDIR}/${P}-configure.diff"
	# allow compilation of Japanese TeX files, fixed in upstream's CVS
	# not needed for next release (>=11.85)
	epatch "${FILESDIR}/${P}-japanes.patch"
}

src_compile() {
	# Don't install in the main tree, as this causes file collisions
	# with app-text/tetex, see bug #155944
	if use preview-latex; then
		local TEXMFPATH="$(kpsewhich -var-value=TEXMFSITE)"
		local TEXMFCONFIGFILE="$(kpsewhich texmf.cnf)"

		if [ -z "${TEXMFPATH}" ]; then
			eerror "You haven't defined the TEXMFSITE variable in your TeX config."
			eerror "Please do so in the file ${TEXMFCONFIGFILE:-/var/lib/texmf/web2c/texmf.cnf}"
			die "Define TEXMFSITE in TeX configuration!"
		else
			# go through the colon separated list of directories (maybe only one) provided in the variable
			# TEXMFPATH (generated from TEXMFSITE from TeX's config) and choose only the first entry.
			# All entries are separated by colons, even when defined with semi-colons, kpsewhich changes
			# the output to a generic format, so IFS has to be redefined.
			local IFS="${IFS}:"

			for strippedpath in ${TEXMFPATH}
			do
				if [ -d ${strippedpath} ]; then
					local PREVIEW_TEXMFDIR="${strippedpath}"
					break
				fi
			done

			# verify if an existing path was chosen to prevent from installing into the wrong directory
			if [ -z ${PREVIEW_TEXMFDIR} ]; then
				eerror "TEXMFSITE does not contain any existing directory."
				eerror "Please define an existing directory in your TeX config file"
				eerror "${TEXMFCONFIGFILE:-/var/lib/texmf/web2c/texmf.cnf} or create at least one of the there specified directories"
				die "TEXMFSITE variable did not contain an existing directory"
			fi

			dodir "${PREVIEW_TEXMFDIR}"
		fi
	fi

	econf --disable-build-dir-test \
		--with-auto-dir="/var/lib/auctex" \
		--with-lispdir="${SITELISP}/${PN}" \
		--with-packagelispdir="${SITELISP}/${PN}" \
		--with-packagedatadir="/usr/share/emacs/etc/${PN}" \
		--with-texmf-dir="${PREVIEW_TEXMFDIR}" \
		$(use_enable preview-latex preview) || die "econf failed"
	emake || die "emake failed"
	cd doc; emake tex-ref.pdf || die "creation of tex-ref.pdf failed"
}

src_install() {
	emake DESTDIR="${D}" install || die "emake install failed"
	elisp-site-file-install "${FILESDIR}/50${PN}-gentoo.el" || die
	if use preview-latex; then
		elisp-site-file-install "${FILESDIR}/60${PN}-gentoo.el" || die
	fi
	dodoc ChangeLog CHANGES README RELEASE TODO FAQ INSTALL* doc/tex-ref.pdf
}

pkg_postinst() {
	# rebuild TeX-inputfiles-database
	use preview-latex && latex-package_pkg_postinst
	elisp-site-regen
}

pkg_postrm(){
	use preview-latex && latex-package_pkg_postrm
	elisp-site-regen
}



-- 
gentoo-commits@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-emacs/auctex: ChangeLog auctex-11.84-r3.ebuild
@ 2007-11-24 21:11 Ulrich Mueller (ulm)
  0 siblings, 0 replies; 6+ messages in thread
From: Ulrich Mueller (ulm) @ 2007-11-24 21:11 UTC (permalink / raw
  To: gentoo-commits

ulm         07/11/24 21:11:52

  Modified:             ChangeLog auctex-11.84-r3.ebuild
  Log:
  Install TeX files in texmf-site; remove kpathsea workaround.
  (Portage version: 2.1.3.19)

Revision  Changes    Path
1.72                 app-emacs/auctex/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/auctex/ChangeLog?rev=1.72&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/auctex/ChangeLog?rev=1.72&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/auctex/ChangeLog?r1=1.71&r2=1.72

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emacs/auctex/ChangeLog,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -r1.71 -r1.72
--- ChangeLog	23 Nov 2007 21:46:46 -0000	1.71
+++ ChangeLog	24 Nov 2007 21:11:52 -0000	1.72
@@ -1,6 +1,9 @@
 # ChangeLog for app-emacs/auctex
 # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/auctex/ChangeLog,v 1.71 2007/11/23 21:46:46 corsair Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/auctex/ChangeLog,v 1.72 2007/11/24 21:11:52 ulm Exp $
+
+  24 Nov 2007; Ulrich Mueller <ulm@gentoo.org> auctex-11.84-r3.ebuild:
+  Install TeX files in texmf-site; remove kpathsea workaround.
 
   23 Nov 2007; Markus Rothe <corsair@gentoo.org> auctex-11.84-r2.ebuild:
   Stable on ppc64; bug #199765



1.2                  app-emacs/auctex/auctex-11.84-r3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/auctex/auctex-11.84-r3.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/auctex/auctex-11.84-r3.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/auctex/auctex-11.84-r3.ebuild?r1=1.1&r2=1.2

Index: auctex-11.84-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emacs/auctex/auctex-11.84-r3.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- auctex-11.84-r3.ebuild	23 Nov 2007 16:16:06 -0000	1.1
+++ auctex-11.84-r3.ebuild	24 Nov 2007 21:11:52 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2007 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/auctex/auctex-11.84-r3.ebuild,v 1.1 2007/11/23 16:16:06 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/auctex/auctex-11.84-r3.ebuild,v 1.2 2007/11/24 21:11:52 ulm Exp $
 
 inherit elisp eutils latex-package
 
@@ -18,6 +18,10 @@
 		app-text/dvipng
 		virtual/ghostscript )"
 
+# Don't install in the main tree, as this causes file collisions
+# with app-text/tetex, see bug #155944
+TEXMF="/usr/share/texmf-site"
+
 src_unpack() {
 	unpack ${A}
 	cd "${S}"
@@ -30,49 +34,12 @@
 }
 
 src_compile() {
-	# Don't install in the main tree, as this causes file collisions
-	# with app-text/tetex, see bug #155944
-	if use preview-latex; then
-		local TEXMFPATH="$(kpsewhich -var-value=TEXMFSITE)"
-		local TEXMFCONFIGFILE="$(kpsewhich texmf.cnf)"
-
-		if [ -z "${TEXMFPATH}" ]; then
-			eerror "You haven't defined the TEXMFSITE variable in your TeX config."
-			eerror "Please do so in the file ${TEXMFCONFIGFILE:-/var/lib/texmf/web2c/texmf.cnf}"
-			die "Define TEXMFSITE in TeX configuration!"
-		else
-			# go through the colon separated list of directories (maybe only one) provided in the variable
-			# TEXMFPATH (generated from TEXMFSITE from TeX's config) and choose only the first entry.
-			# All entries are separated by colons, even when defined with semi-colons, kpsewhich changes
-			# the output to a generic format, so IFS has to be redefined.
-			local IFS="${IFS}:"
-
-			for strippedpath in ${TEXMFPATH}
-			do
-				if [ -d ${strippedpath} ]; then
-					local PREVIEW_TEXMFDIR="${strippedpath}"
-					break
-				fi
-			done
-
-			# verify if an existing path was chosen to prevent from installing into the wrong directory
-			if [ -z ${PREVIEW_TEXMFDIR} ]; then
-				eerror "TEXMFSITE does not contain any existing directory."
-				eerror "Please define an existing directory in your TeX config file"
-				eerror "${TEXMFCONFIGFILE:-/var/lib/texmf/web2c/texmf.cnf} or create at least one of the there specified directories"
-				die "TEXMFSITE variable did not contain an existing directory"
-			fi
-
-			dodir "${PREVIEW_TEXMFDIR}"
-		fi
-	fi
-
 	econf --disable-build-dir-test \
 		--with-auto-dir="/var/lib/auctex" \
 		--with-lispdir="${SITELISP}/${PN}" \
 		--with-packagelispdir="${SITELISP}/${PN}" \
 		--with-packagedatadir="/usr/share/emacs/etc/${PN}" \
-		--with-texmf-dir="${PREVIEW_TEXMFDIR}" \
+		--with-texmf-dir="${TEXMF}" \
 		$(use_enable preview-latex preview) || die "econf failed"
 	emake || die "emake failed"
 	cd doc; emake tex-ref.pdf || die "creation of tex-ref.pdf failed"
@@ -84,6 +51,7 @@
 	if use preview-latex; then
 		elisp-site-file-install "${FILESDIR}/60${PN}-gentoo.el" || die
 	fi
+	keepdir /var/lib/auctex
 	dodoc ChangeLog CHANGES README RELEASE TODO FAQ INSTALL* doc/tex-ref.pdf
 }
 



-- 
gentoo-commits@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-emacs/auctex: ChangeLog auctex-11.84-r3.ebuild
@ 2007-12-01 15:40 Ulrich Mueller (ulm)
  0 siblings, 0 replies; 6+ messages in thread
From: Ulrich Mueller (ulm) @ 2007-12-01 15:40 UTC (permalink / raw
  To: gentoo-commits

ulm         07/12/01 15:40:35

  Modified:             ChangeLog auctex-11.84-r3.ebuild
  Log:
  Use SITEETC eclass variable.
  (Portage version: 2.1.4_rc4)

Revision  Changes    Path
1.74                 app-emacs/auctex/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/auctex/ChangeLog?rev=1.74&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/auctex/ChangeLog?rev=1.74&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/auctex/ChangeLog?r1=1.73&r2=1.74

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emacs/auctex/ChangeLog,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -r1.73 -r1.74
--- ChangeLog	27 Nov 2007 22:27:57 -0000	1.73
+++ ChangeLog	1 Dec 2007 15:40:34 -0000	1.74
@@ -1,6 +1,9 @@
 # ChangeLog for app-emacs/auctex
 # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/auctex/ChangeLog,v 1.73 2007/11/27 22:27:57 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/auctex/ChangeLog,v 1.74 2007/12/01 15:40:34 ulm Exp $
+
+  01 Dec 2007; Ulrich Mueller <ulm@gentoo.org> auctex-11.84-r3.ebuild:
+  Use SITEETC eclass variable.
 
   27 Nov 2007; Christoph Mende <angelos@gentoo.org> auctex-11.84-r2.ebuild:
   Stable on amd64 wrt bug #199765



1.3                  app-emacs/auctex/auctex-11.84-r3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/auctex/auctex-11.84-r3.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/auctex/auctex-11.84-r3.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/auctex/auctex-11.84-r3.ebuild?r1=1.2&r2=1.3

Index: auctex-11.84-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emacs/auctex/auctex-11.84-r3.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- auctex-11.84-r3.ebuild	24 Nov 2007 21:11:52 -0000	1.2
+++ auctex-11.84-r3.ebuild	1 Dec 2007 15:40:35 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2007 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/auctex/auctex-11.84-r3.ebuild,v 1.2 2007/11/24 21:11:52 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/auctex/auctex-11.84-r3.ebuild,v 1.3 2007/12/01 15:40:35 ulm Exp $
 
 inherit elisp eutils latex-package
 
@@ -38,7 +38,7 @@
 		--with-auto-dir="/var/lib/auctex" \
 		--with-lispdir="${SITELISP}/${PN}" \
 		--with-packagelispdir="${SITELISP}/${PN}" \
-		--with-packagedatadir="/usr/share/emacs/etc/${PN}" \
+		--with-packagedatadir="${SITEETC}/${PN}" \
 		--with-texmf-dir="${TEXMF}" \
 		$(use_enable preview-latex preview) || die "econf failed"
 	emake || die "emake failed"



-- 
gentoo-commits@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-emacs/auctex: ChangeLog auctex-11.84-r3.ebuild
@ 2008-01-22 17:21 Brent Baude (ranger)
  0 siblings, 0 replies; 6+ messages in thread
From: Brent Baude (ranger) @ 2008-01-22 17:21 UTC (permalink / raw
  To: gentoo-commits

ranger      08/01/22 17:21:40

  Modified:             ChangeLog auctex-11.84-r3.ebuild
  Log:
  Marking auctex-11.84-r3 ppc and ppc64 for bug 206992
  (Portage version: 2.1.3.19)

Revision  Changes    Path
1.79                 app-emacs/auctex/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/auctex/ChangeLog?rev=1.79&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/auctex/ChangeLog?rev=1.79&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/auctex/ChangeLog?r1=1.78&r2=1.79

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emacs/auctex/ChangeLog,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -r1.78 -r1.79
--- ChangeLog	22 Jan 2008 08:18:34 -0000	1.78
+++ ChangeLog	22 Jan 2008 17:21:39 -0000	1.79
@@ -1,6 +1,9 @@
 # ChangeLog for app-emacs/auctex
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/auctex/ChangeLog,v 1.78 2008/01/22 08:18:34 opfer Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/auctex/ChangeLog,v 1.79 2008/01/22 17:21:39 ranger Exp $
+
+  22 Jan 2008; Brent Baude <ranger@gentoo.org> auctex-11.84-r3.ebuild:
+  Marking auctex-11.84-r3 ppc and ppc64 for bug 206992
 
   22 Jan 2008; Christian Faulhammer <opfer@gentoo.org>
   auctex-11.84-r3.ebuild:



1.5                  app-emacs/auctex/auctex-11.84-r3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/auctex/auctex-11.84-r3.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/auctex/auctex-11.84-r3.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/auctex/auctex-11.84-r3.ebuild?r1=1.4&r2=1.5

Index: auctex-11.84-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emacs/auctex/auctex-11.84-r3.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- auctex-11.84-r3.ebuild	22 Jan 2008 08:14:18 -0000	1.4
+++ auctex-11.84-r3.ebuild	22 Jan 2008 17:21:39 -0000	1.5
@@ -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/app-emacs/auctex/auctex-11.84-r3.ebuild,v 1.4 2008/01/22 08:14:18 opfer Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/auctex/auctex-11.84-r3.ebuild,v 1.5 2008/01/22 17:21:39 ranger Exp $
 
 inherit elisp eutils latex-package
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2 FDL-1.2"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="amd64 ppc ppc64 ~sparc x86"
 IUSE="preview-latex"
 
 DEPEND="virtual/tetex



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



^ permalink raw reply	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-emacs/auctex: ChangeLog auctex-11.84-r3.ebuild
@ 2008-01-23 11:37 Raul Porcel (armin76)
  0 siblings, 0 replies; 6+ messages in thread
From: Raul Porcel (armin76) @ 2008-01-23 11:37 UTC (permalink / raw
  To: gentoo-commits

armin76     08/01/23 11:37:34

  Modified:             ChangeLog auctex-11.84-r3.ebuild
  Log:
  sparc stable wrt #206992
  (Portage version: 2.1.3.19)

Revision  Changes    Path
1.80                 app-emacs/auctex/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/auctex/ChangeLog?rev=1.80&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/auctex/ChangeLog?rev=1.80&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/auctex/ChangeLog?r1=1.79&r2=1.80

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emacs/auctex/ChangeLog,v
retrieving revision 1.79
retrieving revision 1.80
diff -u -r1.79 -r1.80
--- ChangeLog	22 Jan 2008 17:21:39 -0000	1.79
+++ ChangeLog	23 Jan 2008 11:37:33 -0000	1.80
@@ -1,6 +1,9 @@
 # ChangeLog for app-emacs/auctex
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/auctex/ChangeLog,v 1.79 2008/01/22 17:21:39 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/auctex/ChangeLog,v 1.80 2008/01/23 11:37:33 armin76 Exp $
+
+  23 Jan 2008; Raúl Porcel <armin76@gentoo.org> auctex-11.84-r3.ebuild:
+  sparc stable wrt #206992
 
   22 Jan 2008; Brent Baude <ranger@gentoo.org> auctex-11.84-r3.ebuild:
   Marking auctex-11.84-r3 ppc and ppc64 for bug 206992



1.6                  app-emacs/auctex/auctex-11.84-r3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/auctex/auctex-11.84-r3.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/auctex/auctex-11.84-r3.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/auctex/auctex-11.84-r3.ebuild?r1=1.5&r2=1.6

Index: auctex-11.84-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emacs/auctex/auctex-11.84-r3.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- auctex-11.84-r3.ebuild	22 Jan 2008 17:21:39 -0000	1.5
+++ auctex-11.84-r3.ebuild	23 Jan 2008 11:37:33 -0000	1.6
@@ -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/app-emacs/auctex/auctex-11.84-r3.ebuild,v 1.5 2008/01/22 17:21:39 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/auctex/auctex-11.84-r3.ebuild,v 1.6 2008/01/23 11:37:33 armin76 Exp $
 
 inherit elisp eutils latex-package
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2 FDL-1.2"
 SLOT="0"
-KEYWORDS="amd64 ppc ppc64 ~sparc x86"
+KEYWORDS="amd64 ppc ppc64 sparc x86"
 IUSE="preview-latex"
 
 DEPEND="virtual/tetex



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



^ permalink raw reply	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-emacs/auctex: ChangeLog auctex-11.84-r3.ebuild
@ 2008-05-06 14:48 Christian Faulhammer (opfer)
  0 siblings, 0 replies; 6+ messages in thread
From: Christian Faulhammer (opfer) @ 2008-05-06 14:48 UTC (permalink / raw
  To: gentoo-commits

opfer       08/05/06 14:48:31

  Modified:             ChangeLog
  Removed:              auctex-11.84-r3.ebuild
  Log:
  clean up
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.91                 app-emacs/auctex/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/auctex/ChangeLog?rev=1.91&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/auctex/ChangeLog?rev=1.91&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/auctex/ChangeLog?r1=1.90&r2=1.91

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emacs/auctex/ChangeLog,v
retrieving revision 1.90
retrieving revision 1.91
diff -u -r1.90 -r1.91
--- ChangeLog	5 May 2008 20:50:06 -0000	1.90
+++ ChangeLog	6 May 2008 14:48:31 -0000	1.91
@@ -1,6 +1,11 @@
 # ChangeLog for app-emacs/auctex
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/auctex/ChangeLog,v 1.90 2008/05/05 20:50:06 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/auctex/ChangeLog,v 1.91 2008/05/06 14:48:31 opfer Exp $
+
+  06 May 2008; Christian Faulhammer <opfer@gentoo.org>
+  -files/auctex-11.84-configure.diff, -files/auctex-11.84-japanes.patch,
+  -auctex-11.84-r3.ebuild:
+  clean up
 
   05 May 2008; Markus Meier <maekke@gentoo.org> auctex-11.85.ebuild:
   amd64 stable, bug #213992



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



^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2008-05-06 14:48 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-01-23 11:37 [gentoo-commits] gentoo-x86 commit in app-emacs/auctex: ChangeLog auctex-11.84-r3.ebuild Raul Porcel (armin76)
  -- strict thread matches above, loose matches on Subject: below --
2008-05-06 14:48 Christian Faulhammer (opfer)
2008-01-22 17:21 Brent Baude (ranger)
2007-12-01 15:40 Ulrich Mueller (ulm)
2007-11-24 21:11 Ulrich Mueller (ulm)
2007-11-23 16:16 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