This commit is contained in:
parent
06f7f043ec
commit
eb1300759a
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jul 9 17:05:56 CEST 2009 - coolo@novell.com
|
||||||
|
|
||||||
|
- avoid binutils crashing on emacs binaries in using a tool that
|
||||||
|
can really understand ELF and remove the .comment section so that
|
||||||
|
it appears stripped to strip(1)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jul 9 15:43:34 CEST 2009 - coolo@novell.com
|
||||||
|
|
||||||
|
- remove patched files after install
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Mar 31 16:35:32 CEST 2009 - werner@suse.de
|
Tue Mar 31 16:35:32 CEST 2009 - werner@suse.de
|
||||||
|
|
||||||
|
563
emacs.spec
563
emacs.spec
@ -19,12 +19,12 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: emacs
|
Name: emacs
|
||||||
BuildRequires: alsa-devel bind-devel fonts-config giflib-devel gtk2-devel krb5-devel libjpeg-devel libpng-devel libtiff-devel ncurses-devel nmh sendmail update-desktop-files xaw3d-devel xorg-x11-devel
|
BuildRequires: alsa-devel bind-devel elfutils fonts-config giflib-devel gtk2-devel krb5-devel libjpeg-devel libpng-devel libtiff-devel ncurses-devel nmh sendmail update-desktop-files xaw3d-devel xorg-x11-devel
|
||||||
Url: http://www.gnu.org/software/emacs/
|
Url: http://www.gnu.org/software/emacs/
|
||||||
License: GPL v2 or later
|
License: GPL v2 or later
|
||||||
Group: Productivity/Editors/Emacs
|
Group: Productivity/Editors/Emacs
|
||||||
Version: 22.3
|
Version: 22.3
|
||||||
Release: 5
|
Release: 6
|
||||||
Obsoletes: ge_exec ge_site emac_nox emacmisc emacsbin emacsger emacs-url Mule-UCS emacs-calc erc
|
Obsoletes: ge_exec ge_site emac_nox emacmisc emacsbin emacsger emacs-url Mule-UCS emacs-calc erc
|
||||||
Requires: emacs-info = %{version}
|
Requires: emacs-info = %{version}
|
||||||
Requires: emacs_program = %{version}-%{release}
|
Requires: emacs_program = %{version}-%{release}
|
||||||
@ -458,6 +458,7 @@ rm -vf %{buildroot}/usr/share/emacs/%{version}/lisp/fast-lock.el.flc
|
|||||||
rm -vf %{buildroot}/usr/share/emacs/%{version}/lisp/obsolete/fast-lock.el.flc
|
rm -vf %{buildroot}/usr/share/emacs/%{version}/lisp/obsolete/fast-lock.el.flc
|
||||||
rm -vf %{buildroot}/usr/share/emacs/%{version}/lisp/loaddefs.el.flc
|
rm -vf %{buildroot}/usr/share/emacs/%{version}/lisp/loaddefs.el.flc
|
||||||
rm -vf %{buildroot}/usr/share/emacs/%{version}/lisp/progmodes/python.el.python
|
rm -vf %{buildroot}/usr/share/emacs/%{version}/lisp/progmodes/python.el.python
|
||||||
|
rm -vf %{buildroot}/usr/share/emacs/%{version}/lisp/textmodes/flyspell.el.flyspell
|
||||||
unelc %{buildroot}/usr/share/emacs/%{version}/lisp/bindings.elc
|
unelc %{buildroot}/usr/share/emacs/%{version}/lisp/bindings.elc
|
||||||
unelc %{buildroot}/usr/share/emacs/%{version}/lisp/cus-start.elc
|
unelc %{buildroot}/usr/share/emacs/%{version}/lisp/cus-start.elc
|
||||||
unelc %{buildroot}/usr/share/emacs/%{version}/lisp/generic-x.elc
|
unelc %{buildroot}/usr/share/emacs/%{version}/lisp/generic-x.elc
|
||||||
@ -503,6 +504,11 @@ touch /tmp/estamp; sleep 3; sync
|
|||||||
rm /tmp/estamp /tmp/bstamp
|
rm /tmp/estamp /tmp/bstamp
|
||||||
##
|
##
|
||||||
##
|
##
|
||||||
|
## binutils' strip dies, so we better strip comments with a tool a bit smarter
|
||||||
|
## if it appears stripped, the tools won't touch it anymore
|
||||||
|
for bin in emacs-x11 emacs-gtk emacs-nox; do
|
||||||
|
eu-strip --remove-comment %{buildroot}/usr/bin/$bin -o $bin.new && mv $bin.new %{buildroot}/usr/bin/$bin
|
||||||
|
done
|
||||||
|
|
||||||
%post -n emacs-nox
|
%post -n emacs-nox
|
||||||
test -e usr/bin/emacs || ln -sf emacs-nox usr/bin/emacs
|
test -e usr/bin/emacs || ln -sf emacs-nox usr/bin/emacs
|
||||||
@ -3299,556 +3305,3 @@ done
|
|||||||
/usr/share/emacs/%{version}/lisp/xt-mouse.el.gz
|
/usr/share/emacs/%{version}/lisp/xt-mouse.el.gz
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Tue Mar 31 2009 werner@suse.de
|
|
||||||
- Add variable for signature separator if not defined for mail
|
|
||||||
messages (bnc#483563)
|
|
||||||
* Wed Oct 29 2008 werner@suse.de
|
|
||||||
- Do not overwrite common emacs settings (bnc#438601)
|
|
||||||
* Fri Oct 17 2008 werner@suse.de
|
|
||||||
- Enforce the correct binary version
|
|
||||||
* Wed Oct 01 2008 ro@suse.de
|
|
||||||
- drop texinfo from buildrequires (is guaranteed to be there)
|
|
||||||
* Fri Sep 19 2008 werner@suse.de
|
|
||||||
- Update to to emacs version 22.3
|
|
||||||
* Support for several obsolete platforms removed
|
|
||||||
* Support for systems without alloca will be removed.
|
|
||||||
* Support for VMS will be removed.
|
|
||||||
* Several security fixes added
|
|
||||||
* Wed Sep 10 2008 werner@suse.de
|
|
||||||
- Fix security bug in Emacs python mode (bnc#424340)
|
|
||||||
* Tue May 13 2008 werner@suse.de
|
|
||||||
- Add fix for fast-lock-mode arbitrary lips code execution (bnc#389154)
|
|
||||||
* Mon Mar 31 2008 werner@suse.de
|
|
||||||
- Update to emacs version 22.1
|
|
||||||
* Relicense all FSF files to GPLv3 or later.
|
|
||||||
* COPYING, info/COPYING: Switch to GPLv3.
|
|
||||||
* `describe-project' is renamed to `describe-gnu-project'.
|
|
||||||
* `view-todo' is renamed to `view-emacs-todo'.
|
|
||||||
* `find-name-dired' now uses -iname rather than -name
|
|
||||||
for case-insensitive filesystems.
|
|
||||||
* In Image mode, whenever the displayed image is wider and/or higher
|
|
||||||
than the window, the usual keys for moving the cursor cause the image
|
|
||||||
to be scrolled horizontally or vertically instead.
|
|
||||||
* Emacs can use stock icons in the tool bar when compiled with Gtk+.
|
|
||||||
However, this feature is disabled by default. To enable it, put
|
|
||||||
(setq icon-map-list '(x-gtk-stock-map))
|
|
||||||
in your .emacs or some other startup file. For more information, see
|
|
||||||
the documentation for the two variables icon-map-list and x-gtk-stock-map.
|
|
||||||
* Scrollbars follow the system theme on Windows XP and later.
|
|
||||||
Windows XP introduced themed scrollbars, but applications have to take
|
|
||||||
special steps to use them. Emacs now has the appropriate resources linked
|
|
||||||
in to make it use the scrollbars from the system theme.
|
|
||||||
* `bad-packages-alist' will warn about external packages that are known
|
|
||||||
to cause problems in this version of Emacs.
|
|
||||||
* The values of `dired-recursive-deletes' and `dired-recursive-copies'
|
|
||||||
have been changed to `top'. This means that the user is asked once,
|
|
||||||
before deleting/copying the indicated directory recursively.
|
|
||||||
* `browse-url-emacs' loads a URL into an Emacs buffer. Handy for *.el URLs.
|
|
||||||
* The command gdba has been removed as gdb works now for those cases where it
|
|
||||||
was needed. In text command mode, if you have problems before execution has
|
|
||||||
started, use M-x gud-gdb.
|
|
||||||
* desktop.el now detects conflicting uses of the desktop file.
|
|
||||||
* Compilation mode now correctly respects the value of
|
|
||||||
`compilation-scroll-output' between invocations.
|
|
||||||
* `font-lock-comment-face' no longer differs from the default on
|
|
||||||
displays with fewer than 16 colors and dark background (e.g. older
|
|
||||||
xterms and the Linux console).
|
|
||||||
* New Modes and Packages in Emacs 22.2
|
|
||||||
- bibtex-style-mode helps you write BibTeX's *.bst files.
|
|
||||||
- The new package css-mode.el provides a major mode for editing CSS files.
|
|
||||||
- The new package vera-mode.el provides a major mode for editing Vera files.
|
|
||||||
- The new package verilog-mode.el provides a major mode for editing Verilog files.
|
|
||||||
- The new package socks.el implements the SOCKS v5 protocol.
|
|
||||||
* VC
|
|
||||||
- VC backends can provide completion of revision names.
|
|
||||||
- VC backends can provide extra menu entries to the "Version Control" menu.
|
|
||||||
- VC has some support for Mercurial (Hg).
|
|
||||||
- VC has some support for Monotone (Mtn).
|
|
||||||
- VC has some support for Bazaar (Bzr).
|
|
||||||
- VC has some support for Git.
|
|
||||||
* Incompatible Lisp Changes in Emacs 22.2
|
|
||||||
- shell.el no longer defines the aliases `dirtrack-toggle' and
|
|
||||||
`dirtrack-mode' for `shell-dirtrack-mode'.
|
|
||||||
* Lisp Changes in Emacs 22.2.
|
|
||||||
- Frame-local variables are deprecated and are slated for removal.
|
|
||||||
- The function invisible-p returns non-nil if the character
|
|
||||||
after a specified position is invisible.
|
|
||||||
- inhibit-modification-hooks is bound to t while running modification hooks.
|
|
||||||
- New function `window-full-width-p' returns t if a window is as wide
|
|
||||||
as its frame.
|
|
||||||
- The new function `image-refresh' refreshes all images associated
|
|
||||||
with a given image specification.
|
|
||||||
- The new function `combine-and-quote-strings' concatenates a list of strings
|
|
||||||
using a specified separator.
|
|
||||||
- The new function `split-string-and-unquote' performs the inverse operation to
|
|
||||||
`combine-and-quote-strings', i.e. splits a single string into a list
|
|
||||||
of strings, undoing any quoting added by `combine-and-quote-strings'.
|
|
||||||
* Fri Jan 04 2008 werner@suse.de
|
|
||||||
- Fix app-defaults files (bug #351537)
|
|
||||||
* Thu Dec 20 2007 werner@suse.de
|
|
||||||
- Don't forget the arguments for the wrapper script
|
|
||||||
* Thu Dec 20 2007 werner@suse.de
|
|
||||||
- Suppress startup message in case of starting iconic (bug #342385)
|
|
||||||
* Tue Dec 18 2007 werner@suse.de
|
|
||||||
- Add workaround for conflict between GTK/GDK and KWin by using
|
|
||||||
Athena/Xaw3d toolkit in case of running within a KDE session.
|
|
||||||
this fix the bug #342385 as well as bug #345669
|
|
||||||
* Sun Dec 09 2007 schwab@suse.de
|
|
||||||
- Install all icon sizes.
|
|
||||||
* Thu Nov 22 2007 schwab@suse.de
|
|
||||||
- Fix buffer overflow in format [#342158].
|
|
||||||
- Remove obsolete patches.
|
|
||||||
* Mon Nov 05 2007 werner@suse.de
|
|
||||||
- Fix insufficient safe mode checks (bug #339033, CVE-2007-5795)
|
|
||||||
* Fri Sep 07 2007 schwab@suse.de
|
|
||||||
- Remove obsolete xterm.el.
|
|
||||||
* Mon Jul 23 2007 aj@suse.de
|
|
||||||
- Revert last change, it seems that sendmail is somehow used.
|
|
||||||
* Sun Jul 22 2007 aj@suse.de
|
|
||||||
- sendmail is not needed while building, remove it from
|
|
||||||
BuildRequires.
|
|
||||||
* Thu Jul 05 2007 schwab@suse.de
|
|
||||||
- Replace obsolete icon.
|
|
||||||
* Thu Jul 05 2007 coolo@suse.de
|
|
||||||
- fix name of rpmlintrc
|
|
||||||
- put desktop file and icon into the package
|
|
||||||
* Mon Jun 18 2007 werner@suse.de
|
|
||||||
- Use the app-default file macro, avoid empty MALLOC_CHECK_
|
|
||||||
* Mon Jun 04 2007 werner@suse.de
|
|
||||||
- Update ot final emacs version 22.1
|
|
||||||
* Mon Jun 04 2007 werner@suse.de
|
|
||||||
- Make UTF-8 default if request within X window text selections
|
|
||||||
* Fri Jun 01 2007 dmueller@suse.de
|
|
||||||
- fix buildrequires
|
|
||||||
* Fri May 25 2007 schwab@suse.de
|
|
||||||
- Fix the broken configure script instead.
|
|
||||||
* Thu May 24 2007 werner@suse.de
|
|
||||||
- Correct target cpu to become conform with RPM_OPT_FLAGS
|
|
||||||
- Add Workaround for bug in autoconf 2.61a
|
|
||||||
- No X11 no sound
|
|
||||||
* Tue May 22 2007 schwab@suse.de
|
|
||||||
- Add alsa-devel to BuildRequires.
|
|
||||||
- Obsolete emacs-url Mule-UCS emacs-calc erc elispman elisp-manual
|
|
||||||
elispint emacs-lisp-intro.
|
|
||||||
- Update list of info files.
|
|
||||||
* Tue May 22 2007 werner@suse.de
|
|
||||||
- Switch over to emacs 22.0.99 which used UFT-8 native
|
|
||||||
- Adopt the patches if not already applied
|
|
||||||
- Skip cweb and web mode due not compatible to new emacs and no
|
|
||||||
replacement was found
|
|
||||||
- Skip timecard mode due not compatible to new emacs and no
|
|
||||||
replacement was found
|
|
||||||
- Add rmime.el, update maple mode
|
|
||||||
- Adopt site-start.el to emacs 22.0.99
|
|
||||||
- Help s390x machine defines to win over common defines
|
|
||||||
- Avoid trouble with leim and implicit make dependencies on tmpfs
|
|
||||||
* Tue May 15 2007 werner@suse.de
|
|
||||||
- Use stdarg(3) instead of guessing argument pointers (bug #273211)
|
|
||||||
* Thu Mar 29 2007 aj@suse.de
|
|
||||||
- Add ncurses-devel to BuildRequires.
|
|
||||||
* Fri Jan 12 2007 werner@suse.de
|
|
||||||
- Make .gnu-emacs writable for the user (#229883)
|
|
||||||
* Fri Jan 12 2007 werner@suse.de
|
|
||||||
- Make emacs find its app-default file (bug #234026)
|
|
||||||
* Thu Dec 14 2006 schwab@suse.de
|
|
||||||
- Fix patterns for auto-mode-list additions.
|
|
||||||
* Sat Nov 11 2006 olh@suse.de
|
|
||||||
- remove ppc/ppc64 ld.scripts
|
|
||||||
fix elf handling on powerpc64
|
|
||||||
* Thu Aug 03 2006 werner@suse.de
|
|
||||||
- Make last change depending on X11 release version
|
|
||||||
- Do not use not initialized variables
|
|
||||||
* Wed Aug 02 2006 aj@suse.de
|
|
||||||
- Fix app-defaults path for X11 R7.
|
|
||||||
* Fri Jun 30 2006 werner@suse.de
|
|
||||||
- Update the ~/.gnu-emacs to newer auctex version
|
|
||||||
* Mon Jun 19 2006 dmueller@suse.de
|
|
||||||
- revert last change by package maintainer's request
|
|
||||||
* Thu Jun 15 2006 dmueller@suse.de
|
|
||||||
- build parallel
|
|
||||||
* Fri Apr 21 2006 werner@suse.de
|
|
||||||
- Re-enable the circular dependcies of emacs and emacs_program
|
|
||||||
- Handle emacs-x11 as an enhancement for xorg-x11-libs
|
|
||||||
* Wed Jan 25 2006 mls@suse.de
|
|
||||||
- converted neededforbuild to BuildRequires
|
|
||||||
* Wed Jan 11 2006 schwab@suse.de
|
|
||||||
- Don't strip binaries.
|
|
||||||
* Thu Oct 20 2005 werner@suse.de
|
|
||||||
- ~/.gnu-emacs: change order of sort functions date and subject,
|
|
||||||
add sort function number (bug #116279)
|
|
||||||
* Mon Oct 10 2005 werner@suse.de
|
|
||||||
- Adapt ppc linker script to new ppc binutils
|
|
||||||
* Mon Sep 26 2005 ro@suse.de
|
|
||||||
- list dot.gnu-emacs as source
|
|
||||||
* Mon Sep 26 2005 cthiel@suse.de
|
|
||||||
- Updated php-mode to 1.2.0
|
|
||||||
* Fri Apr 15 2005 werner@suse.de
|
|
||||||
- Get emacs back on ppc
|
|
||||||
- Block input on architectures which do not use system malloc
|
|
||||||
- Fix stupid multibyte bug in Fformat
|
|
||||||
- Avoid XIM status error of the xft
|
|
||||||
* Thu Apr 14 2005 werner@suse.de
|
|
||||||
- More on gcc4 warnings
|
|
||||||
- Break circular dependings
|
|
||||||
* Fri Apr 08 2005 uli@suse.de
|
|
||||||
- squelch GCC4 sentinel warnings
|
|
||||||
* Sat Feb 05 2005 schwab@suse.de
|
|
||||||
- Fix format string bug in movemail.
|
|
||||||
* Fri Feb 04 2005 werner@suse.de
|
|
||||||
- Security fix for movemail applied (bug #50237)
|
|
||||||
* Mon Dec 20 2004 werner@suse.de
|
|
||||||
- Enable leim, seems to be required even with autodetection.
|
|
||||||
* Wed Nov 17 2004 werner@suse.de
|
|
||||||
- Add emacs.png pixmap to file list
|
|
||||||
* Wed Oct 20 2004 werner@suse.de
|
|
||||||
- Remove file conflict between emacs base and x11 package
|
|
||||||
* Wed Oct 13 2004 werner@suse.de
|
|
||||||
- Add workaround for XKey modifier detection even if the keys
|
|
||||||
are not marked as modifiers (bug #47192)
|
|
||||||
* Thu Sep 16 2004 mmj@suse.de
|
|
||||||
- Add php-mode-1.1 [#40286]
|
|
||||||
* Mon Sep 13 2004 werner@suse.de
|
|
||||||
- Do not overwrite emacs binary with a sym link
|
|
||||||
- Make install-info work during build
|
|
||||||
* Thu Sep 09 2004 werner@suse.de
|
|
||||||
- Make emacs-x11/emacs-nox user save (bug #41961)
|
|
||||||
* Thu Aug 12 2004 coolo@suse.de
|
|
||||||
- removed postfix again and hard code the sendmail-program
|
|
||||||
* Wed Jun 30 2004 schwab@suse.de
|
|
||||||
- Add postfix to neededforbuild to get correct sendmail-program.
|
|
||||||
* Tue Jun 08 2004 ro@suse.de
|
|
||||||
- use -fno-strict-aliasing
|
|
||||||
- added returns to some non-void functions (most unreached)
|
|
||||||
* Fri Mar 19 2004 werner@suse.de
|
|
||||||
- Put the difference of timecard-mode.el to its original into
|
|
||||||
a comment to be able to satisfy the stupid no.orig rule.
|
|
||||||
* Mon Feb 02 2004 kukuk@suse.de
|
|
||||||
- Cleanup neededforbuild
|
|
||||||
* Tue Jan 20 2004 meissner@suse.de
|
|
||||||
- Fixed ppc(32) linker script.
|
|
||||||
* Sat Jan 10 2004 adrian@suse.de
|
|
||||||
- build as user
|
|
||||||
* Sat Aug 16 2003 adrian@suse.de
|
|
||||||
- install desktop file from kappfinder
|
|
||||||
* Thu Jul 24 2003 werner@suse.de
|
|
||||||
- Fix bug #27173: map ispell coding latin1 to latin9 if the
|
|
||||||
buffer coding is latin9.
|
|
||||||
* Wed Jul 23 2003 werner@suse.de
|
|
||||||
- Update to 21.3
|
|
||||||
- Port patches if required
|
|
||||||
- Fix ps-print for ISO-8859-15 aka latin9
|
|
||||||
* Fri Jun 20 2003 ro@suse.de
|
|
||||||
- remove unpackaged files from buildroot
|
|
||||||
* Fri May 16 2003 mfabian@suse.de
|
|
||||||
- split off locale.el from func-keys.el in order to get correct
|
|
||||||
i18n setup in terminals and not only under X11.
|
|
||||||
In case of terminals, func-keys.el was loaded after
|
|
||||||
before-init-hook, therefore adding something to this hook was
|
|
||||||
useless. Load the new locale.el at the end of site-start.el
|
|
||||||
because Mule-UCS apparently messes up the
|
|
||||||
terminal-coding-system again.
|
|
||||||
* Thu Apr 24 2003 ro@suse.de
|
|
||||||
- fix install_info --delete call and move from preun to postun
|
|
||||||
* Mon Mar 03 2003 schwab@suse.de
|
|
||||||
- Use %%install_info.
|
|
||||||
* Thu Feb 27 2003 werner@suse.de
|
|
||||||
- Encodings: do it the same as for xemacs
|
|
||||||
* Wed Feb 26 2003 werner@suse.de
|
|
||||||
- Fix bug #24299: Be able to use UTF-8 locale
|
|
||||||
* Thu Jan 02 2003 bg@suse.de
|
|
||||||
- Add support for hppa
|
|
||||||
- Fix alignment bug in pure_alloc with pure_float
|
|
||||||
* Thu Dec 19 2002 werner@suse.de
|
|
||||||
- Fix trouble with ansi-term mode (bug #22431)
|
|
||||||
* Wed Dec 18 2002 werner@suse.de
|
|
||||||
- Make fill-column in ~/.gnu-emacs work for emacs 21.x
|
|
||||||
* Wed Nov 20 2002 schwab@suse.de
|
|
||||||
- Add AC_CONFIG_LIBOBJ_DIR.
|
|
||||||
* Sat Oct 19 2002 schwab@suse.de
|
|
||||||
- Use BuildRoot and make it build non-privileged.
|
|
||||||
- Use predefined targets in lisp/Makefile.
|
|
||||||
* Thu Oct 17 2002 werner@suse.de
|
|
||||||
- Reintegrate ger-keys into site lisp
|
|
||||||
- Remove references from .gnu-emacs and site-start of removed files
|
|
||||||
* Wed Oct 16 2002 schwab@suse.de
|
|
||||||
- Remove all global key mappings from web-mode.el and cweb.el.
|
|
||||||
- Remove obsolete site-lisp files.
|
|
||||||
* Wed Sep 11 2002 kukuk@suse.de
|
|
||||||
- Provide splitaliasing for updating from old ge_exec
|
|
||||||
* Tue Sep 10 2002 adrian@suse.de
|
|
||||||
- remove obsoleting of itself
|
|
||||||
* Fri Aug 16 2002 schwab@suse.de
|
|
||||||
- Ported to PPC64.
|
|
||||||
* Thu Aug 15 2002 ro@suse.de
|
|
||||||
- fixed typo in specfile
|
|
||||||
* Thu Aug 15 2002 werner@suse.de
|
|
||||||
- Add pre-require fileutils for emacs-x11/nox (bug #17830/#17831)
|
|
||||||
* Fri Aug 09 2002 ro@suse.de
|
|
||||||
- dont include /usr/share/info/dir in filelist
|
|
||||||
* Thu Aug 08 2002 werner@suse.de
|
|
||||||
- Update to 21.2
|
|
||||||
* Fri Jul 26 2002 schwab@suse.de
|
|
||||||
- Remove obsolete bindings from term/func-keys.el.
|
|
||||||
* Tue May 21 2002 coolo@suse.de
|
|
||||||
- fixing the patch for s390x
|
|
||||||
* Fri May 17 2002 coolo@suse.de
|
|
||||||
- extending s390x patch to handle lib64
|
|
||||||
* Wed Apr 24 2002 schwab@suse.de
|
|
||||||
- Fix last change.
|
|
||||||
* Wed Apr 24 2002 aj@suse.de
|
|
||||||
- Handle lib64 in a cleaner way.
|
|
||||||
* Wed Apr 24 2002 aj@suse.de
|
|
||||||
- Fix X11 build.
|
|
||||||
* Mon Apr 22 2002 aj@suse.de
|
|
||||||
- Add support for x86-64.
|
|
||||||
* Mon Apr 01 2002 schwab@suse.de
|
|
||||||
- Fix configure script.
|
|
||||||
- Remove obsolete Xaw3d changes.
|
|
||||||
* Fri Mar 08 2002 kukuk@suse.de
|
|
||||||
- Add /usr/share/emacs/site-lisp to filelist
|
|
||||||
* Thu Feb 28 2002 werner@suse.de
|
|
||||||
- Switch from gnus-local-organization to message-user-organization
|
|
||||||
in site-start.el because previous one is obsolete.
|
|
||||||
* Fri Feb 22 2002 werner@suse.de
|
|
||||||
- Correct lisp macro description for line/screen mouse wheel
|
|
||||||
scrolling
|
|
||||||
* Fri Feb 22 2002 werner@suse.de
|
|
||||||
- Fix initializing of fontifying of Auc-TeX buffers
|
|
||||||
* Fri Feb 01 2002 ro@suse.de
|
|
||||||
- changed neededforbuild <libpng> to <libpng-devel-packages>
|
|
||||||
* Thu Nov 08 2001 werner@suse.de
|
|
||||||
- Make it build on PPC
|
|
||||||
- Use original paren instead of stig-paren
|
|
||||||
* Thu Nov 08 2001 werner@suse.de
|
|
||||||
- Update to Emacs 21.1
|
|
||||||
- Remove obsolete stuff from site-lisp path
|
|
||||||
- Port our patches to 21.1 if not already integrated
|
|
||||||
* Mon Oct 15 2001 mfabian@suse.de
|
|
||||||
- add emacs-20.5-linespace-patch
|
|
||||||
(adds the command-line option --line-space <number-of-pixels>
|
|
||||||
which can be used to increase the line spacing. Greatly
|
|
||||||
improves the readability of several popular Japanese fonts
|
|
||||||
like jiskan16)
|
|
||||||
- add emacs-20.7-mule-4.1a.patch to upgrade to mule version
|
|
||||||
4.1 (AOI). Contains a fix for the CCL interpreter and
|
|
||||||
a fix for the problem of invalid post-read-conversion with
|
|
||||||
decode-coding-string(), both by Miyashita Hisashi.
|
|
||||||
* Tue Sep 25 2001 werner@suse.de
|
|
||||||
- Use linker script of PowerPC to make it work
|
|
||||||
* Mon Sep 24 2001 werner@suse.de
|
|
||||||
- For PowerPC a -Xlinker is required to mask -znocombreloc
|
|
||||||
* Mon Sep 10 2001 aj@suse.de
|
|
||||||
- Remove extra space in LDFLAGS to allow building on PowerPC and
|
|
||||||
alpha.
|
|
||||||
* Wed Sep 05 2001 werner@suse.de
|
|
||||||
- FHS: /var/state/xemacs -> /var/lib/xemacs (bug #8678)
|
|
||||||
* Mon Sep 03 2001 aj@suse.de
|
|
||||||
- Don't sort relocation entries, otherwise dumping breaks.
|
|
||||||
* Thu Aug 02 2001 werner@suse.de
|
|
||||||
- Scroll up if button 5 aka wheel up is used
|
|
||||||
* Wed Jun 27 2001 mfabian@suse.de
|
|
||||||
- replace 6 Pixel fonts in app-defaults.Emacs by 7 Pixel fonts,
|
|
||||||
because 7 Pixel fonts are usually available but 6 Pixel fonts
|
|
||||||
are not.
|
|
||||||
* Wed Jun 13 2001 schwab@suse.de
|
|
||||||
- Fix for new autoconf.
|
|
||||||
* Tue Jun 12 2001 bk@suse.de
|
|
||||||
- updated s390 config to 20.7 version and added support for s390x
|
|
||||||
* Tue May 08 2001 werner@suse.de
|
|
||||||
- Move [S-home] and [S-end] to [C-home] and [C-end] to
|
|
||||||
be more common with WIN XY and xemacs.
|
|
||||||
* Mon May 07 2001 mfabian@suse.de
|
|
||||||
- bzip2 sources
|
|
||||||
* Fri Mar 30 2001 werner@suse.de
|
|
||||||
- Keybinding
|
|
||||||
Change [home] from beginning-of-buffer to beginning-of-line
|
|
||||||
Change [end] from end-of-buffer to end-of-line
|
|
||||||
Add [S-home] for beginning-of-buffer
|
|
||||||
Add [S-end] for end-of-buffer
|
|
||||||
- Basic wheel mouse support
|
|
||||||
* Thu Mar 22 2001 ro@suse.de
|
|
||||||
- added split-aliases as provides
|
|
||||||
* Wed Mar 14 2001 werner@suse.de
|
|
||||||
- Add post script to activate emacs-nox in the
|
|
||||||
case of being the only emacs progy
|
|
||||||
* Mon Mar 12 2001 werner@suse.de
|
|
||||||
- Make that configure knows about strerror/strsignal
|
|
||||||
- Split off two new packages emacs-x11 and emacs-nox
|
|
||||||
with the emacs program only.
|
|
||||||
* Tue Mar 06 2001 werner@suse.de
|
|
||||||
- Add forgotten /etc/skel/.gnu-emacs
|
|
||||||
* Tue Mar 06 2001 werner@suse.de
|
|
||||||
- Reintegrate ge_site into emacs package.
|
|
||||||
- Mark site-start.el als config file
|
|
||||||
- Use font-lock instead hilit19/hl319
|
|
||||||
- Rework a few el files
|
|
||||||
* Sat Jan 20 2001 violiet@suse.de
|
|
||||||
- changed bdf printing patch to patch also loaddefs.el, because
|
|
||||||
the default for the bdf-directory list comes from loaddefs.el
|
|
||||||
* Fri Jan 19 2001 violiet@suse.de
|
|
||||||
- improved ps-mule.el (use gulim font for Korean bdf printing)
|
|
||||||
* Wed Jan 17 2001 mfabian@suse.de
|
|
||||||
- some further tuning of app-defaults
|
|
||||||
* Tue Jan 16 2001 mfabian@suse.de
|
|
||||||
- added patches for dired.el:
|
|
||||||
M-x set-language-environment RET Japanese RET M-x dired
|
|
||||||
and
|
|
||||||
M-x set-language-environment RET Korean RET M-x dired
|
|
||||||
works now.
|
|
||||||
- added patch for ps-mule.el which makes Korean PostScript printing
|
|
||||||
work.
|
|
||||||
* Tue Jan 16 2001 mfabian@suse.de
|
|
||||||
- improved Emacs's app-defaults, using suggestions of
|
|
||||||
violiet@susekorea.net and added some further improvements
|
|
||||||
* Tue Jan 09 2001 mfabian@suse.de
|
|
||||||
- added patch which fixes the problems with XIM.
|
|
||||||
* Tue Nov 21 2000 werner@suse.de
|
|
||||||
- Remove swapping of kp-separator/kp-decimal because it's
|
|
||||||
done in xkbd map for german keyboards
|
|
||||||
* Thu Nov 16 2000 werner@suse.de
|
|
||||||
- Move package names
|
|
||||||
* from ge_exec to emacs
|
|
||||||
* from ge_lisp to emacs-el
|
|
||||||
* from ge_info to emacs-info
|
|
||||||
- Add kvt.el and gnome.el for the terminal kvt and gnome-terminal
|
|
||||||
- Assigne locale-translation-file-name dynamically
|
|
||||||
* Fri Sep 29 2000 schwab@suse.de
|
|
||||||
- Update ia64 patch.
|
|
||||||
* Wed Jun 21 2000 schwab@suse.de
|
|
||||||
- Add again some missing declarations.
|
|
||||||
* Fri Jun 16 2000 werner@suse.de
|
|
||||||
- New version 20.7 with security fix based on UNIX98 ptys
|
|
||||||
- Make patches comaptible
|
|
||||||
* Tue Jun 06 2000 uli@suse.de
|
|
||||||
- moved docs to %%{_docdir}
|
|
||||||
* Thu Jun 01 2000 kasal@suse.de
|
|
||||||
- Added app-default/Emacs to use fonts *-iso8859-* .
|
|
||||||
This way we find iso8859-2 fonts in Czech environment.
|
|
||||||
* Wed May 17 2000 schwab@suse.de
|
|
||||||
- Add some missing declarations.
|
|
||||||
* Tue Apr 04 2000 bk@suse.de
|
|
||||||
- s390 team added s390 support
|
|
||||||
* Wed Mar 22 2000 schwab@suse.de
|
|
||||||
- Add ia64 patches.
|
|
||||||
- Update config.{guess,sub} from automake.
|
|
||||||
* Wed Mar 08 2000 werner@suse.de
|
|
||||||
- Switch to bug fix release 20.6 (MULE, locale, Y2K, ...)
|
|
||||||
* Thu Feb 03 2000 werner@suse.de
|
|
||||||
- Type of ospeed is speed_t for linux
|
|
||||||
* Mon Jan 31 2000 kasal@suse.cz
|
|
||||||
- don't build etags and ctags, it's not in the filelist
|
|
||||||
- rename gctags to gnuctags (has no efect)
|
|
||||||
- in lib-src: use regex and getopt from glibc
|
|
||||||
* Wed Jan 19 2000 werner@suse.de
|
|
||||||
- The system is ${RPM_ARCH}-suse-linux even for sparc ;^)
|
|
||||||
- /usr/man -> /usr/share/man
|
|
||||||
- /usr/info -> /usr/share/info
|
|
||||||
* Fri Dec 31 1999 kukuk@suse.de
|
|
||||||
- Fix filelist in spec file
|
|
||||||
* Fri Dec 31 1999 kukuk@suse.de
|
|
||||||
- Use %%{_target_cpu}-suse-linux-gnu instead of
|
|
||||||
${RPM_ARCH}-suse-linux (necessary for SPARC)
|
|
||||||
* Tue Dec 21 1999 werner@suse.de
|
|
||||||
- New version
|
|
||||||
- Try to port my patches to this version
|
|
||||||
* Wed Dec 01 1999 werner@suse.de
|
|
||||||
- Fix pty handling: use glibc extension
|
|
||||||
* Thu Nov 11 1999 werner@suse.de
|
|
||||||
- Fix ctype expansion
|
|
||||||
* Wed Oct 20 1999 werner@suse.de
|
|
||||||
- Remove etags and ctags and set requires for ctags package
|
|
||||||
* Sun Oct 17 1999 ro@suse.de
|
|
||||||
- fixed neededforbuild
|
|
||||||
* Mon Sep 27 1999 bs@suse.de
|
|
||||||
- fixed requirements for sub packages
|
|
||||||
* Fri Sep 24 1999 werner@suse.de
|
|
||||||
- Add new and forgotten dif
|
|
||||||
* Fri Sep 24 1999 werner@suse.de
|
|
||||||
- Merging BETA and STABLE package
|
|
||||||
* Thu Sep 16 1999 uli@suse.de
|
|
||||||
- merged in Geoffrey Keating's PPC patch
|
|
||||||
* Mon Sep 13 1999 bs@suse.de
|
|
||||||
- ran old prepare_spec on spec file to switch to new prepare_spec.
|
|
||||||
* Mon Aug 16 1999 werner@suse.de
|
|
||||||
- The name is Andreas Schwab, sorry
|
|
||||||
* Fri Aug 13 1999 werner@suse.de
|
|
||||||
- Add bug fix of Andy Schwab
|
|
||||||
* Wed Aug 04 1999 werner@suse.de
|
|
||||||
- New version 20.4
|
|
||||||
* add SuSE fixes and enhancements
|
|
||||||
* make KOI8-R work again
|
|
||||||
* reanable ispell menu map rebuild on the fly
|
|
||||||
* Fri May 28 1999 ro@suse.de
|
|
||||||
- added patch from Wolfram Gloger to run on glibc-2.1
|
|
||||||
* Thu Apr 15 1999 werner@suse.de
|
|
||||||
- Fix stupid bug
|
|
||||||
* Wed Apr 14 1999 werner@suse.de
|
|
||||||
- Enable russian KOI encoding
|
|
||||||
* Mon Mar 08 1999 werner@suse.de
|
|
||||||
- Remove site-lisp/hacks/ispell.el* to use the dynamic
|
|
||||||
rebuild of the Spell menu of the ispell package
|
|
||||||
* Wed Mar 03 1999 ro@suse.de
|
|
||||||
- removed -egcs from spec: done automatically when gcc is specified
|
|
||||||
- added linkscr-patch from cristian gafton
|
|
||||||
- filelist use wildcard "*" for arch
|
|
||||||
* Wed Feb 24 1999 werner@suse.de
|
|
||||||
- Add locale handling
|
|
||||||
- Fix display-time bug
|
|
||||||
* Wed Jan 20 1999 werner@suse.de
|
|
||||||
- Fix ratio for memory allocation on alpha
|
|
||||||
* Wed Dec 09 1998 bs@suse.de
|
|
||||||
- removed /usr/info/dir from file list
|
|
||||||
* Tue Nov 17 1998 werner@suse.de
|
|
||||||
- Fix null pointer in command argument sorting
|
|
||||||
* Fri Nov 13 1998 bs@suse.de
|
|
||||||
- fixed spec file (double entry Summary)
|
|
||||||
* Thu Nov 12 1998 bs@suse.de
|
|
||||||
- fixed spec file for new rpm.
|
|
||||||
* Thu Sep 17 1998 werner@suse.de
|
|
||||||
- Some more fixes
|
|
||||||
* include cc-defs.el into all *.el which needs c-safe
|
|
||||||
* Mon Sep 07 1998 werner@suse.de
|
|
||||||
- Some fixes: lisp/browse-url.el, lisp/midnight.el,
|
|
||||||
lisp/repeat.el, lisp/emacs-lisp/find-func.el,
|
|
||||||
lisp/mail/mail-hist.el, src/coding.c, src/data.c,
|
|
||||||
src/lread.c and src/print.c.
|
|
||||||
* Wed Sep 02 1998 werner@suse.de
|
|
||||||
- Fix typo in speedstar.el and add a tab mapping
|
|
||||||
* Tue Sep 01 1998 werner@suse.de
|
|
||||||
- New version 20.3
|
|
||||||
- Port the previous changes to the new version 20.3
|
|
||||||
- Make de, de_DE, and so on working with LC_CTYPE, LC_ALL,
|
|
||||||
and LANG
|
|
||||||
- Do not overwrite default-enable-multibyte-characters
|
|
||||||
in func-keys.el
|
|
||||||
* Mon Jul 20 1998 werner@suse.de
|
|
||||||
- mktemp need six X
|
|
||||||
* Mon Jul 20 1998 werner@suse.de
|
|
||||||
- delsel ... hmmpf defcustom isn't very funny ... fixed
|
|
||||||
- mule ... now we set european display for the most languages
|
|
||||||
found under /usr/share/locale/ ... see locale.alias
|
|
||||||
* Fri Jul 10 1998 werner@suse.de
|
|
||||||
- Remove exploit in rcs2log and vcdiff
|
|
||||||
* Wed Jul 08 1998 werner@suse.de
|
|
||||||
- New version 20.2
|
|
||||||
- Many bug fixes included
|
|
||||||
* Tue Feb 10 1998 werner@suse.de
|
|
||||||
- Add a changed ispell.el for new ispell dictionaries
|
|
||||||
... make sure that menu bar is rebuild.
|
|
||||||
- Add missing setsid in callproc.c
|
|
||||||
* Mon Nov 10 1997 werner@suse.de
|
|
||||||
- ready for autobuild
|
|
||||||
* Sun Jun 01 1997 bs@suse.de
|
|
||||||
- removed usr/bin/ctags & usr/man/man1/ctags.1.gz (included in package ctags)
|
|
||||||
* Sat May 24 1997 werner@suse.de
|
|
||||||
- some changes in keycode under TERM=xterm (term/xterm.el)
|
|
||||||
- fix system-type: `rms' uses gnu/linux :-((
|
|
||||||
now dired-chown.program should work again.
|
|
||||||
* Tue Feb 04 1997 werner@suse.de
|
|
||||||
- Update auf gefixte Version 19.34b
|
|
||||||
- Drucken sollte jetzt möglich sein
|
|
||||||
- Aufräumen von term/linux.el und term/xterm.el
|
|
||||||
* Thu Jan 02 1997 werner@suse.de
|
|
||||||
- Neue Version von GNU Emacs: 19.34
|
|
||||||
- Anpassungen an TERM=linux, TERM=xterm
|
|
||||||
- Delete löscht Zeichen unter dem Cursor
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user