rpms/xemacs-sumo/FC-4 xemacs-sumo-20051208-hypb-posix.patch, NONE, 1.1 xemacs-sumo-20051208-latin-unity-kludge.patch, NONE, 1.1 xemacs-sumo-20051208-pydoc-path.patch, NONE, 1.1 .cvsignore, 1.6, 1.7 sources, 1.6, 1.7 xemacs-sumo.spec, 1.10, 1.11

Ville Skytta (scop) fedora-extras-commits at redhat.com
Fri Dec 23 21:22:19 UTC 2005


Author: scop

Update of /cvs/extras/rpms/xemacs-sumo/FC-4
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv6379/FC-4

Modified Files:
	.cvsignore sources xemacs-sumo.spec 
Added Files:
	xemacs-sumo-20051208-hypb-posix.patch 
	xemacs-sumo-20051208-latin-unity-kludge.patch 
	xemacs-sumo-20051208-pydoc-path.patch 
Log Message:
Sync with devel (package repocopied from devel too).

xemacs-sumo-20051208-hypb-posix.patch:

--- NEW FILE xemacs-sumo-20051208-hypb-posix.patch ---
--- xemacs-packages/lisp/hyperbole/smart-clib-sym	27 Jun 2003 05:11:53 -0000	1.1.1.1
+++ xemacs-packages/lisp/hyperbole/smart-clib-sym	8 Dec 2005 19:08:52 -0000
@@ -1,4 +1,4 @@
-#!/bin/csh -f
+#!/bin/sh
 #
 # SUMMARY:      Test whether symbol appears within a set of C libraries.
 # USAGE:        <script-name> <symbol-string>
@@ -26,37 +26,26 @@
 #
 # DESCRIP-END.
 
-# Perl script used to tell whether one file is newer than another.
-#
-set fn = "file-newer"
-
 # Create this file and place in the file the full path for each C, C++ or
 # Objective-C library that you want scanned for symbol names.  One filename
 # per line.  Do not quote the filenames.
 #
-set clib_list = "~/.CLIBS-LIST"
-
+clib_list="$HOME/.CLIBS-LIST"
 
 # This file will automatically be created to cache the symbol names.
 # Remove it if you ever want to rebuild the symbol table.
 #
-set clib_symbols = "~/.clibs-symbols"
-
-# Try to locate 'perl' and 'file-newer' script for use.
-
-which perl >& /dev/null
-if ($status) unset fn
+clib_symbols="$HOME/.clibs-symbols"
 
-set st = 0 rebuild = 0
-if (-e $clib_list) then
-   if (! -e $clib_symbols || -z $clib_symbols) set rebuild = 1
-   if (! $rebuild  && $?fn) @ rebuild = `perl $fn $clib_list $clib_symbols`
-   if ($rebuild) then
-      nm -g `cat $clib_list` | grep '^[0-9 ].* _[A-Za-z]' | sed -e 's/^[^_][^_]*_//g' | sort | uniq > $clib_symbols
-   endif
-   fgrep -sx $1 $clib_symbols >& /dev/null
-   @ st = ! $status
-endif
+st=0
+if [ -s $clib_list ] ; then
+    if [ ! -s $clib_symbols ] || \
+       [ -n "`find $clib_list -prune -newer $clib_symbols`" ] ; then
+        nm -gP `cat $clib_list` 2>/dev/null | grep '^_[A-Za-z]' \
+        | sed -e 's/^_//' -e 's/ .*//' | sort -u > $clib_symbols
+    fi
+    grep -Fx "$1" $clib_symbols >/dev/null 2>&1 && st=1
+fi
 
 echo $st
 exit $st

xemacs-sumo-20051208-latin-unity-kludge.patch:

--- NEW FILE xemacs-sumo-20051208-latin-unity-kludge.patch ---
--- mule-packages/lisp/latin-unity/ChangeLog	10 Apr 2005 13:50:28 -0000	1.41
+++ mule-packages/lisp/latin-unity/ChangeLog	17 Dec 2005 11:16:50 -0000
@@ -1,0 +1,5 @@
+2005-12-17  Ville Skyttä  <scop at xemacs.org>
+
+	* latin-unity.el (latin-unity-sanity-check): Mimic `write-region's
+	kludgy feature where the region's start offset is a string.
+
--- mule-packages/lisp/latin-unity/latin-unity.el	15 Feb 2005 22:22:48 -0000	1.12
+++ mule-packages/lisp/latin-unity/latin-unity.el	17 Dec 2005 11:16:51 -0000
@@ -551,11 +551,14 @@
 setting `buffer-file-coding-system' to nil or 'no-conversion or 'binary.
 
 This function is intended for use as a `write-region-pre-hook'.  It does
-nothing except return nil if `write-region' handlers are inhibited."
+nothing except return nil if `write-region' handlers are inhibited, or if
+BEGIN is a string (to support the corresponding \"kludgy feature\" of
+`write-region')."
 
   ;; don't do anything if we're in a `write-region' handler
   ;; #### is nil the right return value if we are?
-  (if (eq inhibit-file-name-operation 'write-region)
+  ;; Bypass also on `write-region's "klugdy feature" where BEGIN is a string
+  (if (or (eq inhibit-file-name-operation 'write-region) (stringp begin))
       nil
     (prog1
     (let ((buffer-default

xemacs-sumo-20051208-pydoc-path.patch:

--- NEW FILE xemacs-sumo-20051208-pydoc-path.patch ---
--- xemacs-packages/lisp/python-modes/pydoc.el	18 Sep 2002 06:04:19 -0000	1.1
+++ xemacs-packages/lisp/python-modes/pydoc.el	9 Dec 2005 22:16:38 -0000
@@ -383,18 +383,23 @@
 
 (defun pydoc-initialize()
   (message "Please wait a moment while the Python help system is initialized...")
-  (let (output-buf)
+  (let ((output-buf)
+	(pydir (locate-data-directory "python-modes")))
     (save-window-excursion
       ;; Start a Python interpreter if not already running.
       (py-shell)
       (pydoc-wait-for-output (current-buffer) 3.0)
       (setq output-buf
 	    (py-execute-string
-	     "if not vars().has_key('pydoc_lisp'):
+	     (format
+	      "if not vars().has_key('pydoc_lisp'):
+    import sys
+    if not '%s' in sys.path:
+        sys.path.append('%s')
     import pydoc_lisp
 
 pydoc_lisp.pydoc_output_lisp()
-"))
+" pydir pydir)))
       ;; current vintages of python-mode.el (4.6 at least)
       ;; no longer return a buffer [name].  We get t from the
       ;; final kill-buffer instead.  If we see t we use the


Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/xemacs-sumo/FC-4/.cvsignore,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- .cvsignore	23 Jul 2005 12:29:57 -0000	1.6
+++ .cvsignore	23 Dec 2005 21:22:18 -0000	1.7
@@ -1,2 +1,2 @@
-xemacs-mule-sumo-2005-07-15.tar.bz2
-xemacs-sumo-2005-07-15.tar.bz2
+xemacs-mule-sumo-2005-12-08.tar.bz2
+xemacs-sumo-2005-12-08.tar.bz2


Index: sources
===================================================================
RCS file: /cvs/extras/rpms/xemacs-sumo/FC-4/sources,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- sources	23 Jul 2005 12:29:57 -0000	1.6
+++ sources	23 Dec 2005 21:22:18 -0000	1.7
@@ -1,2 +1,2 @@
-016362256e4de4b150d6c2f8d686dd3f  xemacs-mule-sumo-2005-07-15.tar.bz2
-28b92fa2e0bcd0c8e81fd6286d37af30  xemacs-sumo-2005-07-15.tar.bz2
+553da38bc36b4365ab98e0565a0530b8  xemacs-mule-sumo-2005-12-08.tar.bz2
+1927c40affd04ff7c10b979ef24548d0  xemacs-sumo-2005-12-08.tar.bz2


Index: xemacs-sumo.spec
===================================================================
RCS file: /cvs/extras/rpms/xemacs-sumo/FC-4/xemacs-sumo.spec,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- xemacs-sumo.spec	23 Jul 2005 12:29:57 -0000	1.10
+++ xemacs-sumo.spec	23 Dec 2005 21:22:18 -0000	1.11
@@ -1,4 +1,4 @@
-%define sumo    2005-07-15
+%define sumo    2005-12-08
 %define pkgdir  %{_datadir}/xemacs
 
 Name:           xemacs-sumo
@@ -19,6 +19,9 @@
 Source15:       Emacs.ad.ko_KR.UTF-8
 Source16:       Emacs.ad.zh_CN.UTF-8
 Source17:       Emacs.ad.zh_TW.UTF-8
+Patch0:         %{name}-20051208-hypb-posix.patch
+Patch1:         %{name}-20051208-pydoc-path.patch
+Patch2:         %{name}-20051208-latin-unity-kludge.patch
 Patch6:         auctex-texsite-jlatex-detect-69129.patch
 Patch7:         auctex-texjp-platex.patch
 Patch8:         egg-wnn-host-unix-79826.patch
@@ -33,8 +36,10 @@
 BuildRequires:  xemacs-nox
 BuildRequires:  sed >= 3.95
 BuildRequires:  /sbin/install-info
+BuildRequires:  %{__python}
 Requires:       xemacs-common
-Provides:       apel-xemacs = 10.2
+# Fake release in this provision in order to avoid self-obsoletion (for now).
+Provides:       apel-xemacs = 10.6-6
 Provides:       ruby-mode-xemacs
 Obsoletes:      apel-xemacs < 10.6-6
 Obsoletes:      ruby-mode-xemacs
@@ -76,6 +81,15 @@
 
 %prep
 %setup -q -c -a1
+# get rid of csh dependency
+%patch0 -p0
+rm xemacs-packages/lisp/hyperbole/file-newer
+# find pydoc_lisp.py out-of-the-box
+%patch1 -p0
+install -dm 755 xemacs-packages/etc/python-modes
+mv xemacs-packages/{lisp/python-modes/pydoc_lisp.py,etc/python-modes}
+# support write-region's kludge in latin-unity
+%patch2 -p0
 # fix jlatex autodetection
 %patch6 -p0
 # use ptex rather jtex by default for Japanese
@@ -94,7 +108,9 @@
 %patch15 -p0
 
 sed -i -e "s|/usr/local/bin/perl5\\?|/usr/bin/perl|g" \
-  xemacs-packages/{lisp/hyperbole/file-newer,etc/bbdb/*.pl}
+  xemacs-packages/etc/bbdb/*.pl
+
+chmod -c -x xemacs-packages/lisp/edit-utils/crm.el
 
 # remove game we shouldn't ship
 rm xemacs-packages/lisp/games/tetris.el*
@@ -155,7 +171,7 @@
 find $RPM_BUILD_ROOT%{pkgdir} -type f -name '*.info*' | xargs gzip -9
 
 # separate files
-rm -f *.files base-files el-files info-files
+rm -f *.files
 echo "%%defattr(-,root,root,-)" > base-files
 echo "%%defattr(-,root,root,-)" > el-files
 echo "%%defattr(-,root,root,-)" > info-files
@@ -163,15 +179,21 @@
 find $RPM_BUILD_ROOT%{pkgdir}/* \
   \( -type f -name '*.el.orig' -exec rm '{}' ';' \) -o \
   \( -type f -not -name '*.el' -fprint base-non-el.files \) -o \
-  \( -type d -name info -fprint info.files -prune \) -o \
-  \( -type d -fprintf dir.files "%%%%dir %%p\n" \) -o \
+  \( -type d -not -name info -fprintf dir.files "%%%%dir %%p\n" \) -o \
   \( -name '*.el' \( -exec test -e '{}'c \; -fprint el-bytecomped.files -o \
      -fprint base-el-not-bytecomped.files \) \)
 
 sed -i -e "s|$RPM_BUILD_ROOT||" *.files
-cat base-*.files dir.files >> base-files
-cat el-*.files   dir.files >> el-files
-cat info.files             >> info-files
+cat base-*.files dir.files | grep -v /info/ >> base-files
+cat el-*.files dir.files                    >> el-files
+cat base-non-el.files | grep /info/         >> info-files
+
+sed -i -e 's/^\(.*\(\.ja\|-ja\.texi\)\)$/%lang(ja) \1/' base-files
+sed -i -e 's/^\(.*[_-]ja\.info.*\)$/%lang(ja) \1/' info-files
+
+# in case redhat-rpm-config is not installed or doesn't do this for us:
+%{__python} -c "import compileall; compileall.compile_dir('$RPM_BUILD_ROOT%{pkgdir}/xemacs-packages/etc/python-modes', ddir='/', force=1)"
+%{__python} -O -c "import compileall; compileall.compile_dir('$RPM_BUILD_ROOT%{pkgdir}/xemacs-packages/etc/python-modes', ddir='/', force=1)"
 
 
 %clean
@@ -179,13 +201,27 @@
 
 
 %files -f base-files
+%{pkgdir}/xemacs-packages/etc/python-modes/*.pyc
+%ghost %{pkgdir}/xemacs-packages/etc/python-modes/*.pyo
 
 %files el -f el-files
 
 %files info -f info-files
+%dir %{pkgdir}/*-packages/info/
 
 
 %changelog
+* Sat Dec 17 2005 Ville Skyttä <ville.skytta at iki.fi> - 20051208-1
+- Patch to support write-region's kludge in latin-unity.
+
+* Fri Dec  9 2005 Ville Skyttä <ville.skytta at iki.fi>
+- 2005-12-08.
+- Patch hyperbole to not require csh.
+- Patch pydoc.el to find pydoc_lisp.py out of the box.
+- Include bytecompiled python files.
+- Set %%lang for various docs and info files.
+- Prune changelog entries from pre-xemacs-sumo times.
+
 * Sat Jul 16 2005 Ville Skyttä <ville.skytta at iki.fi> - 20050715-1
 - 2005-07-15; jde font-lock, sql-mode abbrev, w3 stylesheet and file
   permissions fixed upstream.
@@ -195,12 +231,12 @@
 - Remove mew and skk, they're in separate packages again (#162952).
 - Reformat specfile.
 
-* Thu Jun  2 2005 Ville Skyttä <ville.skytta at iki.fi> - 20050505-4.1
+* Thu Jun  2 2005 Ville Skyttä <ville.skytta at iki.fi> - 20050505-6
 - Make sure we're using files included in this package
   when byte-recompiling patched *.el; also allows the byte-compilation
   to actually happen even if no previous xemacs-sumo is installed.
 
-* Wed Jun  1 2005 Ville Skyttä <ville.skytta at iki.fi> - 20050505-4
+* Wed Jun  1 2005 Ville Skyttä <ville.skytta at iki.fi> - 20050505-5
 - Bundle upstream cc-mode package version 1.45 (contains cc-mode 5.30.10).
 - Fix JDEE font-lock warnings with import statements.
 
@@ -308,243 +344,3 @@
 * Mon May 12 2003 Jens Petersen <petersen at redhat.com> - 20030414-1
 - new package to separate xemacs-sumo and xemacs-mule-sumo from
   main xemacs package
-
-
-* Sat May 10 2003 Jens Petersen <petersen at redhat.com> - 21.4.12-11
-- build with system malloc on ppc64
-
-* Tue Apr 22 2003 Jens Petersen <petersen at redhat.com> - 21.4.12-10
-- obsoletes ruby-mode-xemacs (#84673)
-- move obsoletes xemacs-sumo-el to -el subpackage
-- fix links in jde html documentation (#89499)
-
-* Tue Apr 15 2003 Jens Petersen <petersen at redhat.com> - 21.4.12-8
-- comment out ja and ko menubar translations in X resource files for now,
-  to avoid startup hanging in utf-8 locale (#88860)
-- use default menubar font in ja and ko locale
-- in a UTF-8 locale set default coding systems to utf-8 (partly #77130
-  and #74227)
-- set Info-directory-list in site-start.el again
-- move psgml setup into site-start.el
-- move previous contents of "dotxemacs-init.el" to new "default.el"
-
-* Mon Mar 31 2003 Akira TAGOH <tagoh at redhat.com> 21.4.12-7
-- Rebuild against the latest Canna.
-
-* Thu Feb 20 2003 Jens Petersen <petersen at redhat.com> - 21.4.12-6
-- default browse-url to use htmlview and update psgml-html browser
-  defaults (#84262)
-
-* Tue Feb 11 2003 Jens Petersen <petersen at redhat.com> - 21.4.12-5
-- build with system-malloc on alpha and ia64
-- skip redundant check-features target
-
-* Thu Feb  6 2003 Jens Petersen <petersen at redhat.com> - 21.4.12-4
-- fix "libexec dir" to be under lib64 on multilib archs
-- set default ftp to be non-kerberos in site-start.el
-- update sumos to 2003-02-05
-- mspec patch and rpm-spec-mode update no longer needed
-- buildrequire autoconf213
-- add ".xemacs/init.el" to /etc/skel
-- skip redundant check-features target on s390 and s390x
-
-* Wed Jan 22 2003 Tim Powers <timp at redhat.com>
-- rebuilt
-
-* Tue Jan 21 2003 Jens Petersen <petersen at redhat.com> - 21.4.12-2
-- fix `paths-emacs-root-p' (find-paths.el) to look in share not lib
-- don't generate backup files when updating autoloads
-- try startup notification in desktop file
-- cleanup desktop file to use name XEmacs and add encoding key
-
-* Fri Jan 17 2003 Jens Petersen <petersen at redhat.com> 21.4.12-1
-- update to 21.4.12 bugfix release (21.4 series now declared stable branch)
-- renumbered sumo package patches to be greater than 100
-- install sumo packages by copying rather than moving
-- patch sh-script.el to append m?spec entry to auto-mode-alist
-- avoid ppc.ldscript and build on ppc
-- remove games that we shouldn't ship
-- update to latest rcs2log
-- update to latest rpm-spec-mode.el
-- use _smp_mflags for lib-src and src
-- run batch-update-directory and batch-byte-recompile-directory on sumo lisp
-  dirs
-- improve datadir/xemacs-version/ ownership
-
-* Sat Jan  4 2003 Jens Petersen <petersen at redhat.com> 21.4.11-1
-- update to 21.4.11
-- don't configure with union-type, since it causes runtime problems apparently
-- only do postun info dir deletions when uninstalling
-
-* Wed Jan  1 2003 Jens Petersen <petersen at redhat.com> 21.4.10-6
-- move apel to separate package and require it
-- renamed psgml-init.el-xemacs to xemacs-psgml-init.el
-- use datadir in site-start.el
-- really include the movemail mkstemp patch
-- use mapc to load site-start.d files
-
-* Tue Dec 31 2002 Ville Skyttä <scop at xemacs.org>
-- New Sumos (2002-12-30).
-- Use `construct-emacs-version-name' in `paths-emacs-root-p' (find-paths.el),
-  fixing "Couldn't find obvious default for XEmacs hierarchy" warnings
-  (as in XEmacs 21.5).
-- Move site-start stuff to site-packages.
-- Don't set Info-directory-list in site-start.el.
-- Don't use --pkgdir, it's ignored.  Don't pass pkgdir to makeinstall.
-- Fix source tarball URLs.
-- Don't override the defcustom in psgml-init.el, set its default value instead.
-- Add rpmbuild option: "--with debug" for building a debug-enabled XEmacs.
-
-* Sun Dec 29 2002 Jens Petersen <petersen at redhat.com>
-- updates package sumos to 2002-12-26 release
-
-* Mon Dec 23 2002 Jens Petersen <petersen at redhat.com> 21.4.10-5
-- patch find-paths.el to search in datadir
-- setup lisp packages under datadir not libdir
-- use buildroot macro instead of RPM_BUILD_ROOT
-- drop local configure macro
-- fix buildrequires and requires
-- list configure options one-per-line
-- improve psgml-init.el catalog setup
-- remove and add lisp packages with package-admin
-- rebyte-compile lisp packages
-- keep etags as etags.xemacs (#78106)
-- don't bother removing non-existent udp2tcp nor .cvsignore files
-- simply filelist generation to a single find search pass
-- put core .el files in -el package
-- put package info files into -info package
-- don't create backup files when patching in lisp packages tree
-- don't explicitly gzip lisp package info files
-- don't mark the applications files noreplace
-- exclude ppc, since __init_array_start undefined
-
-* Wed Dec 18 2002 Jens Petersen <petersen at redhat.com>
-- patch egg-wnn to default to unix domain socket (#79826)
-  [patch from ynakai at redhat.com]
-- add ia64 patch from SuSE
-- use mkstemp in movemail
-
-* Tue Nov 19 2002 Jens Petersen <petersen at redhat.com>
-- apply jlatex autodetect patch correctly and drop append to tex-site.el
-- default to pTeX and pLaTeX for Japanese TeX and LaTeX
-
-* Mon Nov 18 2002 Jens Petersen <petersen at redhat.com> 21.4.10-3
-- backout uncommenting of deactivate-mark (#77696)
-- update psgml dtd catalog path in psgml-init.el (#78022)
-  [reported by ville.skytta at iki.fi]
-- build with --use-union-type (#78024)
-  [suggested by ville.skytta at iki.fi]
-
-* Fri Nov 15 2002 Jens Petersen <petersen at redhat.com>
-- fix autodetection of jlatex (#69129)
-
-* Tue Nov 12 2002 Elliot Lee <sopwith at redhat.com> 21.4.10-2
-- build on x86_64
-
-* Mon Nov 11 2002 Jens Petersen <petersen at redhat.com> 21.4.10-1
-- update to 21.4.10
-- update sumos to 2002-09-19
-- no longer backout mule-ucs package
-- encode this file in utf-8
-- xemacs-21.1.14-xfs.patch no longer needed
-- use _libdir, _datadir, _bindir, _prefix
-- exclude x86_64 (requires Canna)
-- own /usr/lib/xemacs/{,mule-packages} and /usr/X11R6/lib/X11/<locale> (#73982)
-  [reported by enrico.scholz at informatik.tu-chemnitz.de]
-- fix default italic font size (#75275)
-  [reported with fix by ville.skytta at iki.fi]
-- update ja menubar translations in ja locale X resource file (#76068)
-  [from ynakai at redhat.com]
-- update ko locale X resource file (#76072) [from ynakai at redhat.com]
-- add pkgdir rpm macro for packages dir
-- uncomment deactivate-mark in simple.el (#77696)
-
-* Mon Aug 26 2002 Trond Eivind Glomsrød <teg at redhat.com> 21.4.8-16
-- some cleanups - and remove the info tarball, it's now part
-  of the base tarball. Wow, the package gets smaller. (#72480)
-
-* Mon Aug 19 2002 Trond Eivind Glomsrød <teg at redhat.com> 21.4.8-15
-- Bug in specfile from -14 gave bug on startup (#71743)
-
-* Thu Aug 15 2002 Trond Eivind Glomsrød <teg at redhat.com> 21.4.8-14
-- Use utf-8 by default for input/output (#71584 )
-- Make it not segfault when handling utf-8 (#71589)
-
-* Wed Aug  7 2002 Trond Eivind Glomsrød <teg at redhat.com> 21.4.8-13
-- Add openmotif-devel to buildrequires, as it will use it for widgets
-  if it finds it
-
-* Fri Aug  2 2002 Trond Eivind Glomsrød <teg at redhat.com> 21.4.8-12
-- Don't package po-mode separately, it's now in sumo
-- Compile with drag'n'drop support
-- Use the bundled rpm-spec-mode, it has some adaptions for XEmacs
-
-* Wed Jul 31 2002 Trond Eivind Glomsrød <teg at redhat.com> 21.4.8-11
-- Don't use a separate ispell.el file anymore - the included one is newer
-- Fix html-mode (#64826)
-
-* Tue Jul 23 2002 Trond Eivind Glomsrød <teg at redhat.com> 21.4.8-10
-- Update lisp tarballs
-- desktop file fixes (#69542)
-- Add bdb support (#65640)
-
-* Mon Jul  8 2002 Trond Eivind Glomsrød <teg at redhat.com> 21.4.8-9
-- Make it provide ruby-mode-xemacs (request from tagoh)
-
-* Fri Jun 21 2002 Tim Powers <timp at redhat.com>
-- automated rebuild
-
-* Mon Jun 17 2002 Trond Eivind Glomsrød <teg at redhat.com> 21.4.8-7
-- #66835
-
-* Wed May 29 2002 Trond Eivind Glomsrød <teg at redhat.com> 21.4.8-6
-- Make it build... Evil.
-- Exclude IA64
-- Upgrade sumo tarballs to 2002-05-22
-
-* Fri May 24 2002 Jens Petersen <petersen at xemacs.org> 21.4.8-5
-- Build using portable dumper, so that build with glibc-2.3 malloc is ok
-
-* Mon May 13 2002 Trond Eivind Glomsrød <teg at redhat.com> 21.4.8-2
-- Remove the s390 patches so it builds on s390 :)
-
-* Fri May 10 2002 Trond Eivind Glomsrød <teg at redhat.com> 21.4.8-1
-- 21.4.8
-
-* Tue May  7 2002 Trond Eivind Glomsrød <teg at redhat.com> 21.4.6-9
-- Rebuild... chmod -x pstogif to work around an rpm bug until
-  it's fixed (#64320)
-
-* Tue Apr 23 2002 Trond Eivind Glomsrød <teg at redhat.com> 21.4.6-8
-- New sumo packages
-
-* Thu Feb 21 2002 Trond Eivind Glomsrød <teg at redhat.com> 21.4.6-7
-- Rebuild
-
-* Tue Jan 29 2002 Jens Petersen <petersen at redhat.com> 21.4.6-6
-- Remove skk package, since it conflicts with ddskk-xemacs (newer)
-
-* Thu Jan 24 2002 Trond Eivind Glomsrød <teg at redhat.com> 21.4.6-5
-- New sumos
-
-* Wed Jan 09 2002 Tim Powers <timp at redhat.com>
-- automated rebuild
-
-* Wed Dec 19 2001 Jens Petersen <petersen at redhat.com> 21.4.6-3
-- Fix fontlist pattern in Emacs.ad.Japanese.
-- CHANGES-beta is now CHANGES-release.
-- Obsolete xemacs-sumo xemacs-sumo-el
-
-* Wed Dec 19 2001 Jens Petersen <petersen at redhat.com> 21.4.6-2
-- Don't obsolete flim.
-
-* Mon Dec 17 2001 Trond Eivind Glomsrød <teg at redhat.com> 21.4.6-1
-- 21.4.6
-- New sumo packages
-- disable alpha
-
-* Wed Nov 14 2001 Jens Petersen <petersen at redhat.com> 21.4.5-2
-- Add -znocombreloc configure option to override new ld default.
-
-* Tue Nov  6 2001 Trond Eivind Glomsrød <teg at redhat.com> 21.4.5-1
-- 21.4.5. It builds on IA64 and fixes #55578




More information about the fedora-extras-commits mailing list