source: projects/specs/trunk/e/emacs/emacs26-vl.spec @ 12302

Revision 12302, 31.0 KB checked in by ara_t, 5 years ago (diff)

emacs: rebuild under current VineSeed environment

Line 
1%define emacsversion 26.3
2#% define gitcommit 20110817
3#%define emacsrelease 1.rc2%{?gitcommit:.%gitcommit}%{?_dist_release}
4%define emacsrelease 3%{?_dist_release}
5%define vine_default_major_version %(echo %_dist_release|%__sed s/vl//)
6
7%define _noVersionedDependencies 1
8%define prereq_ge()  %(LC_ALL="C" rpm -q --queryformat 'PreReq:%%{NAME} >= %%{VERSION}' %1| grep -v "is not")
9
10%define infodir %{_infodir}/emacs-%{emacsversion}
11
12%define menutreeelversion 0.97
13
14Summary:      GNU Emacs editor
15Summary(ja):  GNU Emacs エディタ
16Name:         emacs
17#Name:         emacs26
18#Provides:     emacs-snapshot
19Version:      %{emacsversion}
20Release:      %{emacsrelease}
21Source0:      ftp://ftp.gnu.org/pub/gnu/emacs/emacs-%{version}.tar.xz
22#Source0:      ftp://ftp.gnu.org/pub/gnu/emacs/emacs-%{version}%{?gitcommit:.git%gitcommit}.tar.xz
23#Source0:      ftp://alpha.gnu.org/gnu/emacs/pretest/emacs-%{emacsversion}-rc2.tar.xz
24#Source1:      emacs-snapshot.sh
25
26Source10:     site-start.el.emacs26
27
28## local settings for local system
29Source20:     emacs26-local.el
30
31# desktop file
32Source50:     emacs26.desktop.in
33
34## Enable Japanese Menu
35## http://www11.atwiki.jp/s-irie/pages/13.html
36# Source100:    menu-tree-el-%{menutreeelversion}.tar.gz
37# Source101:    menu-tree-init.el.emacs25
38Source102:    coding-system-init.el.emacs26
39
40## default settings for Vine Linux
41Source150:    vine-default-base.el
42
43## Vine Patch(es)
44Patch11:      emacs-24.3.90-locallisppath.patch
45#Patch20:      emacs-23.1.90-fixed-resolution.patch
46Patch30:      emacs-24.0.90-libs-termcap.patch
47
48# patches from Fedora
49# rhbz#713600
50Patch107: emacs-spellchecker.patch
51
52# security patches (from Debian)
53
54#Patch1001:    emacs-21.1-bzip2.patch.bz2
55
56License:      GPLv3+
57Group:        Applications/Editors/Emacs
58
59Distribution: Vine Linux
60Vendor:       Project Vine
61Packager:     munepi, daisuke
62
63BuildRoot:    %{_tmppath}/%{name}-%{version}-root
64# Requires:     tamago >= 4.0.6
65Obsoletes:    mule-base, mule-canna, mule-wnn6, mule, emacs-beta
66Obsoletes:    emacs21 <= 21.2-0vl7
67Obsoletes:    emacs22 <= 22.1
68Obsoletes:    emacs23 <= 23.1
69Obsoletes:    emacs24 <= 24.1
70# Obsoletes:    emacs25 <= 25.1
71Provides:     emacs26 = %{version}
72Provides:     emacsen = 0.1
73#% prereq_ge    emacsen-common
74Requires(post):    emacsen-common
75Requires(postun):    emacsen-common
76
77BuildRequires: autoconf
78BuildRequires: xz
79BuildRequires: atk-devel
80BuildRequires: dbus-devel GConf2-devel
81BuildRequires: alsa-lib-devel
82BuildRequires: gnutls-devel
83%if %{?_dist_release} >= "vl7"
84BuildRequires: gtk3-devel
85%else
86BuildRequires: gtk2-devel
87%endif
88BuildRequires: cairo-devel
89BuildRequires: freetype2-devel, fontconfig-devel
90BuildRequires: libpng-devel, libjpeg-devel, libtiff-devel, libungif-devel
91BuildRequires: librsvg2-devel, libotf-devel
92BuildRequires: ImageMagick-devel
93BuildRequires: libxml2-devel > 2.6.17
94BuildRequires: m17n-lib-devel
95BuildRequires: libX11-devel, libXau-devel, libXdmcp-devel, libXrender-devel
96BuildRequires: libSM-devel, libXt-devel, libXpm-devel, ncurses-devel
97BuildRequires: xorg-x11-proto-devel, zlib-devel
98BuildRequires: texinfo
99BuildRequires: nkf
100
101%description
102GNU Emacs is the extensible, customizable, self-documenting real-time
103display editor.
104
105%description -l ja
106GNU Emacs は拡張性が高く、さまざまなカスタマイズが可能な高機能エディタです。
107
108
109%prep
110
111%setup -q -n emacs-%{version}
112
113%patch11 -p1
114#%patch20 -p1
115#%patch30 -p1
116
117%patch107 -p1 -b .spellchecker
118
119#%patch1001 -p1
120
121
122# Avoid trademark issues
123grep -v "tetris.elc" lisp/Makefile.in > lisp/Makefile.in.new \
124   && %__mv lisp/Makefile.in.new lisp/Makefile.in || exit 1
125%__rm -f lisp/play/tetris.el lisp/play/tetris.elc || exit 1
126
127#autoconf
128autoreconf -i -I m4
129
130%build
131export CFLAGS="-DMAIL_USE_LOCKF $RPM_OPT_FLAGS"
132#to find installinfo
133export PATH="$PATH:/sbin:/usr/sbin"
134
135%configure --with-pop --with-sound \
136    --libexecdir=%{_libdir} --infodir=%{infodir} \
137    --disable-rename \
138%if %{?_dist_release} >= "vl7"
139    --with-x-toolkit=gtk3 \
140%else
141    --with-x-toolkit=gtk \
142%endif
143    --with-freetype --with-xft \
144    --enable-font-backend \
145    --without-gpm \
146    --with-libotf \
147    --with-m17n-flt \
148    --with-dbus --with-gconf \
149    --disable-libsystemd \
150    ;
151
152%__make bootstrap
153%__make %{?_smp_mflags}
154
155
156%install
157[ "${RPM_BUILD_ROOT}" != "/" ] && %__rm -rf ${RPM_BUILD_ROOT}
158
159%makeinstall libexecdir=$RPM_BUILD_ROOT%{_libdir} \
160        infodir=${RPM_BUILD_ROOT}%{infodir}
161
162# systemd files
163%__rm -rf $RPM_BUILD_ROOT%{_libdir}/systemd
164
165## This is a duplicate of the file in FLAVOR/site-lisp
166%__rm -f $RPM_BUILD_ROOT%{_datadir}/emacs/site-lisp/subdirs.el || exit 1
167
168# (cd $RPM_BUILD_ROOT%{_mandir}/man1/; %__mv ctags.1 gctags.1)
169# (cd $RPM_BUILD_ROOT%{_bindir}/; %__mv ctags gctags)
170
171%__mkdir_p  $RPM_BUILD_ROOT%{_datadir}/emacs-%{version}/etc
172%__mkdir_p  $RPM_BUILD_ROOT%{_datadir}/emacs-%{version}/site-lisp
173# %__tar zxvf %{SOURCE100}
174# %__cp -a menu-tree-el-%{menutreeelversion}/menu-tree.el $RPM_BUILD_ROOT%{_datadir}/emacs-%{version}/site-lisp/
175# nkf -w --overwrite $RPM_BUILD_ROOT%{_datadir}/emacs-%{version}/site-lisp/menu-tree.el
176
177## vine default
178%__cp -a %{SOURCE150} \
179    $RPM_BUILD_ROOT%{_datadir}/emacs-%{version}/site-lisp/
180
181# The elisp reference manual
182#bzcat %{SOURCE13} | tar xf -
183#pushd elisp-manual-21-2.8
184#install -m 644 elisp elisp-? elisp-?? $RPM_BUILD_ROOT/%{infodir}
185#popd
186
187# some modifications of installed files
188
189#rm -f $RPM_BUILD_ROOT%{infodir}/dir
190#gzip -9nf $RPM_BUILD_ROOT%{infodir}/*
191
192%__install -m 644 %{SOURCE10} \
193        $RPM_BUILD_ROOT/%{_datadir}/emacs-%{version}/site-lisp/site-start.el
194%__sed -i -e 's/EMACS_VERSION/%{version}/g' \
195          -e 's/VINE_DEFAULT_MAJOR_VERSION/%{vine_default_major_version}/g' \
196        $RPM_BUILD_ROOT/%{_datadir}/emacs-%{version}/site-lisp/site-start.el
197
198## create site-start.d directory
199%__install -m 755 -d ${RPM_BUILD_ROOT}/etc/emacs-%{version}/site-start.d
200
201# install coding-system init.el
202# %__install -m644 %{SOURCE101} \
203#     $RPM_BUILD_ROOT/%{_datadir}/emacs-%{version}/site-lisp/menu-tree-init.el
204# %__ln_s -f %{_datadir}/emacs-%{version}/site-lisp/menu-tree-init.el \
205#     ${RPM_BUILD_ROOT}/etc/emacs-%{version}/site-start.d/60menu-tree-init.el
206%__install -m644 %{SOURCE102} \
207    $RPM_BUILD_ROOT/%{_datadir}/emacs-%{version}/site-lisp/coding-system-init.el
208%__ln_s -f %{_datadir}/emacs-%{version}/site-lisp/coding-system-init.el \
209    ${RPM_BUILD_ROOT}/etc/emacs-%{version}/site-start.d/60coding-system-init.el
210
211## install system-wide configure file
212%__install -m755 -d ${RPM_BUILD_ROOT}/etc/emacs
213%__install -m644 %{SOURCE20} ${RPM_BUILD_ROOT}/etc/emacs/emacs26-local.el
214%__sed -i -e 's/EMACS_VERSION/%{version}/g' \
215    ${RPM_BUILD_ROOT}/etc/emacs/emacs26-local.el
216
217## Python mode, php mode and rpm-spec mode
218
219## make file list
220strip $RPM_BUILD_ROOT%{_bindir}/* || :
221
222# install appdata
223%__mkdir_p $RPM_BUILD_ROOT%{_datadir}/appdata
224%__cp -a etc/emacs.appdata.xml \
225    $RPM_BUILD_ROOT%{_datadir}/appdata/
226
227# install desktop file
228%__mkdir_p $RPM_BUILD_ROOT%{_datadir}/applications
229%__sed -e "s/@@EMACS_VERSION@@/%{emacsversion}/g" %{SOURCE50} > \
230    $RPM_BUILD_ROOT%{_datadir}/applications/$(basename %{SOURCE50} .in)
231[ -f $RPM_BUILD_ROOT%{_datadir}/applications/emacs.desktop ] && \
232    %__rm -f $RPM_BUILD_ROOT%{_datadir}/applications/emacs.desktop || exit 1
233
234# install icons
235%__mkdir_p $RPM_BUILD_ROOT%{_datadir}/icons
236%__cp -a etc/images/icons/hicolor $RPM_BUILD_ROOT%{_datadir}/icons/
237## remove historical icons
238find $RPM_BUILD_ROOT%{_datadir}/icons/ -type f -name '*emacs22*' -exec rm -f {} \;
239find $RPM_BUILD_ROOT%{_datadir}/icons/ -type f -name '*emacs23*' -exec rm -f {} \;
240find $RPM_BUILD_ROOT%{_datadir}/icons/ -type f -name '*emacs-document23*' -exec rm -f {} \;
241
242## remove man files
243%__rm -f $RPM_BUILD_ROOT/%{_mandir}/man1/* || exit 1
244
245## Remove ctags
246#rm -f $RPM_BUILD_ROOT/usr/bin/ctags
247#rm -f $RPM_BUILD_ROOT/%{_mandir}/man1/*ctags*
248#rm -f $RPM_BUILD_ROOT/%{_datadir}/emacs/%{version}/etc/ctags*
249
250DIR="${RPM_BUILD_ROOT}%{_datadir}/emacs \
251     ${RPM_BUILD_ROOT}%{_datadir}/emacs-%{version}"
252BIN=${RPM_BUILD_ROOT}%{_bindir}
253LIB=${RPM_BUILD_ROOT}%{_libdir}
254EL="*.el"
255
256## prepare file list for emacs
257echo "/usr/bin/ctags
258/usr/bin/ebrowse
259/usr/bin/etags
260/usr/bin/emacs
261/usr/bin/emacsclient
262/usr/share/appdata/emacs.appdata.xml
263/usr/share/icons/hicolor/scalable/apps/emacs.svg
264/usr/share/icons/hicolor/scalable/mimetypes/emacs-document.svg" |
265    %__sed -e "s#[^\n]*#mv ${RPM_BUILD_ROOT}\0 ${RPM_BUILD_ROOT}\0.emacs-%{version}#"|
266    awk '{system($_)}'
267
268find $DIR $BIN $LIB -type d |
269  %__sed -e "s#^${RPM_BUILD_ROOT}#%dir #" > rpm-files
270
271find $DIR $BIN $LIB -type f -o -type l |
272  %__sed -e "
273    s#^${RPM_BUILD_ROOT}\(.*movemail\)#%attr(2755, root, mail) \1#
274    s#^${RPM_BUILD_ROOT}##
275  " >> rpm-files
276
277
278%clean
279[ "${RPM_BUILD_ROOT}" != "/" ] && %__rm -rf ${RPM_BUILD_ROOT}
280
281
282%define info_files ccmode cl dired-x ediff emacs forms gnus info message mh-e reftex sc vip viper widget
283
284
285%pre
286
287if [ -L %{_datadir}/emacs-%{version}/site-lisp ] ; then
288    %__rm -f %{_datadir}/emacs-%{version}/site-lisp
289fi
290
291if [ -d %{_datadir}/emacs/%{version}/site-lisp ] ; then
292    find %{_datadir}/emacs/%{version}/site-lisp/* -maxdepth 0 | grep -v subdirs.el | \
293        xargs %__rm -rf
294fi
295
296
297%post
298touch --no-create %{_datadir}/icons/hicolor
299if [ -x %{_bindir}/gtk-update-icon-cache ]; then
300   %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor
301fi
302%{_bindir}/update-desktop-database %{_datadir}/applications &>/dev/null ||:
303
304if [ "$1" = 1 ]; then
305
306%_addflavorslist emacs-%{version}
307
308export PRIORITY=50
309
310%_installemacs emacs-%{version}
311
312unset PRIORITY
313fi
314
315if [ "$1" = 2 ]; then
316
317#  export PRIORITY=50
318 
319#  %_installemacs emacs-%{version}
320 
321#  unset PRIORITY
322   
323  echo emacs-%{version} >  /var/lib/emacsen-common/doinstaflavor-emacs
324   
325fi
326
327
328%postun
329%{_bindir}/update-desktop-database %{_datadir}/applications &>/dev/null ||:
330touch --no-create %{_datadir}/icons/hicolor
331if [ -x %{_bindir}/gtk-update-icon-cache ]; then
332  %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor
333fi
334
335if [ $1 = 1 ]; then
336# run upgrade install time
337
338# old version uninstall
339
340%_removeflavorslist emacs-%{version}
341
342%_removeemacs emacs-%{version}
343
344#new version install
345if [ -f /var/lib/emacsen-common/doinstaflavor-emacs ] ; then
346
347NEWFLAVOR=$(cat /var/lib/emacsen-common/doinstaflavor-emacs)
348
349%_addflavorslist $NEWFLAVOR
350
351export PRIORITY=50
352
353%_installemacs $NEWFLAVOR
354
355unset PRIORITY
356
357%__rm -rf /var/lib/emacsen-common/doinstaflavor-emacs
358
359fi
360
361fi
362
363
364%preun
365if [ $1 = 0 ]; then
366
367%_removeflavorslist emacs-%{version}
368
369%_removeemacs emacs-%{version}
370
371fi
372
373
374%triggerpostun -- emacs23 < %{version}-%{release}
375
376%_addflavorslist emacs-%{version}
377
378export PRIORITY=50
379
380%_installemacs emacs-%{version}
381
382unset PRIORITY
383
384
385%files -f rpm-files
386%defattr(-,root,root)
387%doc INSTALL README BUGS ChangeLog COPYING
388#%doc INSTALL.BZR
389%dir %{_sysconfdir}/emacs-%{version}
390%dir %{_sysconfdir}/emacs-%{version}/site-start.d
391%{_sysconfdir}/emacs-%{version}/site-start.d/*.el
392%config(noreplace) %{_sysconfdir}/emacs/emacs26-local.el
393%{_infodir}/*
394# %{_mandir}/*/*
395%{_datadir}/applications/emacs26.desktop
396%{_datadir}/appdata/emacs.appdata.xml.emacs-%{version}
397%{_datadir}/icons/hicolor/*
398# %{_datadir}/emacs-%{version}/site-lisp
399#%dir %{_localstatedir}/games/emacs
400#%{_localstatedir}/games/emacs/*
401
402
403%changelog
404* Tue Oct 29 2019 Toshiaki Ara <ara_t@384.jp> 26.3-3
405- rebuild with OpenEXR-libs-2.4.0 (required by ImageMagick)
406
407* Sun Sep 08 2019 Toshiaki Ara <ara_t@384.jp> 26.3-2
408- rebuild with giflib-5
409
410* Tue Sep 03 2019 Toshiaki Ara <ara_t@384.jp> 26.3-1
411- update to 26.3
412
413* Mon Jun  4 2018 IWAI, Masaharu <iwaim.sub@gmail.com> 26.1-1
414- update to 26.1
415- build with GTK3 for VineSeed
416- add '--disable-libsystemd' option
417- drop games dir; upstream deleted
418
419* Tue May 29 2018 IWAI, Masaharu <iwaim.sub@gmail.com> 25.3-1
420- update to 25.3
421- add appdata file
422
423* Mon Aug 22 2016 Munehiro Yamamoto <munepi@vinelinux.org> 25.1-1.rc2-1
424- update to Emacs 25.1 Release Candidate 2
425
426* Mon Feb  8 2016 Munehiro Yamamoto <munepi@vinelinux.org> 25.0.90-1
427- update to 25.0.90
428
429* Sun Apr 12 2015 Munehiro Yamamoto <munepi@vinelinux.org> 24.5-1
430- new upstream release
431
432* Mon Mar  9 2015 Munehiro Yamamoto <munepi@vinelinux.org> 24.4.91-1
433- update to 24.4.91
434
435* Fri Mar  6 2015 Munehiro Yamamoto <munepi@vinelinux.org> 24.4.90-1
436- update to 24.4.90
437
438* Thu Oct 23 2014 Munehiro Yamamoto <munepi@vinelinux.org> 24.4-1
439- new upstream release
440
441* Fri Aug 15 2014 Munehiro Yamamoto <munepi@vinelinux.org> 24.3.93-1
442- updated to 24.3.93
443
444* Sun Jul  6 2014 Munehiro Yamamoto <munepi@vinelinux.org> 24.3.92-1
445- updated to 24.3.92
446
447* Wed Jul 02 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 24.3.91-2
448- rebuild with ImageMagick-6.8.9.5
449
450* Mon May 12 2014 Munehiro Yamamoto <munepi@vinelinux.org> 24.3.91-1
451- updated to 24.3.91
452
453* Sun Apr 27 2014 Munehiro Yamamoto <munepi@vinelinux.org> 24.3.90-1
454- updated to 24.3.90
455
456* Tue Feb 25 2014 NAKAMURA Kenta <kenta@vinelinux.org> 24.3-5
457- rebuilt with gnutls-3.2
458
459* Mon Jan 13 2014 Munehiro Yamamoto <munepi@vinelinux.org> 24.3-4
460- rebuilt
461
462* Wed Aug 14 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 24.3-3
463- rebuild with ImageMagick-6.8.6.8
464
465* Sat May 11 2013 Munehiro Yamamoto <munepi@vinelinux.org> 24.3-2
466- dropped some obsolete patches
467- disable menu-tree-el
468  - added coding-system-init.el instead of menu-tree-init.el
469
470* Sat Mar 30 2013 Munehiro Yamamoto <munepi@vinelinux.org> 24.3-1
471- new upstream release
472
473* Thu Feb  7 2013 Munehiro Yamamoto <munepi@vinelinux.org> 24.2.93-1
474- updated to 24.2.93 (24.3 pretest)
475
476* Mon Jan 14 2013 Munehiro Yamamoto <munepi@vinelinux.org> 24.2.92-1
477- updated to 24.2.92 (24.3 pretest)
478
479* Sun Nov 25 2012 Munehiro Yamamoto <munepi@vinelinux.org> 24.2.90-1
480- updated to 24.2.90 (24.3 pretest)
481
482* Mon Aug 27 2012 Munehiro Yamamoto <munepi@vinelinux.org> 24.2-1
483- new upstream release
484
485* Sun Jun 10 2012 Munehiro Yamamoto <munepi@vinelinux.org> 24.1-1
486- new upstream release
487
488* Sat May 19 2012 Munehiro Yamamoto <munepi@vinelinux.org> 24.0.97-1
489- updated to 24.0.97 (24.1 pretest)
490
491* Sun Apr 29 2012 Munehiro Yamamoto <munepi@vinelinux.org> 24.0.96-1
492- updated to 24.0.96 (24.1 pretest)
493
494* Mon Apr  2 2012 Munehiro Yamamoto <munepi@vinelinux.org> 24.0.95-1
495- updated to 24.0.95 (24.1 pretest)
496
497* Sun Mar 11 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 24.0.94-2
498- rebuild with ImageMagick-6.7.5.10
499
500* Mon Feb 27 2012 Munehiro Yamamoto <munepi@vinelinux.org> 24.0.94-1
501- updated to 24.0.94 (24.1 pretest)
502
503* Tue Feb 14 2012 Munehiro Yamamoto <munepi@vinelinux.org> 24.0.93-2
504- use gtk as X toolkit (for vl6)
505
506* Mon Jan 30 2012 Munehiro Yamamoto <munepi@vinelinux.org> 24.0.93-1
507- updated to 24.0.93 (24.1 pretest)
508
509* Thu Dec  1 2011 Munehiro Yamamoto <munepi@vinelinux.org> 24.0.92-1
510- updated to 24.0.92 (24.1 pretest)
511
512* Wed Nov  2 2011 Munehiro Yamamoto <munepi@vinelinux.org> 24.0.91-1
513- updated to 24.0.91 (24.1 pretest)
514
515* Thu Oct  6 2011 Munehiro Yamamoto <munepi@vinelinux.org> 24.0.90-2
516- set --with-x-toolkit=gtk3 (%%configure)
517  - added BuildRequires: gtk3-devel
518
519* Mon Sep 26 2011 Munehiro Yamamoto <munepi@vinelinux.org> 24.0.90-1
520- updated to 24.0.90 (24.1 pretest)
521- applied emacs-24.0.90-libs-termcap.patch
522
523* Sat Jul 09 2011 Munehiro Yamamoto <munepi@vinelinux.org> 24.0.50-10.20110817
524- emacs24 24.0.50 (20110817) snapshot
525- added BuildRequires: ImageMagick-devel, libSM-devel, libxml2-devel > 2.6.17
526
527* Sun Jun 05 2011 Munehiro Yamamoto <munepi@vinelinux.org> 24.0.50-9.20110604
528- emacs24 24.0.50 (20110604) snapshot
529
530* Wed Apr 13 2011 Munehiro Yamamoto <munepi@vinelinux.org> 24.0.50-8.20110413
531- emacs24 24.0.50 (20110413) snapshot
532
533* Tue Apr 05 2011 Munehiro Yamamoto <munepi@vinelinux.org> 24.0.50-7.20110318
534- updated site-start.el
535  - defined vine-default-major-version, vine-default-minor-version,
536    vine-default-version
537  - set "ibus-el" to emacs-ime as default
538  - added ", modified for Vine Linux" to the end of emacs-build-system
539  - set "Vine _at_mark_ vinelinux.org" to report-emacs-bug-address
540
541* Sun Apr 03 2011 Munehiro Yamamoto <munepi@vinelinux.org> 24.0.50-6.20110318
542- fixed site-start.el
543  - do not use the macro loop (contained in the common lisp)
544
545* Tue Feb 22 2011 Munehiro Yamamoto <munepi@vinelinux.org> 24.0.50-5.20110318
546- emacs24 24.0.50 (20110318) snapshot
547
548* Tue Feb 22 2011 Munehiro Yamamoto <munepi@vinelinux.org> 24.0.50-4.20110222
549- emacs24 24.0.50 (20110222) snapshot
550- updated site-start.el
551  - defined the function drop-vine-default-from-load-path (regex)
552
553* Sat Jan 22 2011 Munehiro Yamamoto <munepi@vinelinux.org> 24.0.50-3.20110128
554- emacs24 24.0.50 (20110128) snapshot
555
556* Sun Jan 02 2011 Munehiro Yamamoto <munepi@vinelinux.org> 24.0.50-2.20110101
557- emacs24 24.0.50 (20110101) snapshot
558
559* Sun Dec 05 2010 Munehiro Yamamoto <munepi@vinelinux.org> 24.0.50-1.20101203
560- emacs24 24.0.50 (20101203) snapshot
561- applied new vine-default system
562  - updated site-start.el
563  - updated vine-default-{base,faces}.el
564  - dropped showvdefaultemacs
565    - merged to emacsen-common package as show-vine-default.sh
566  - renamed local wide configration file to emacs24-local.el
567- updated menu-tree.el to version 0.97
568- added Provides: emacs-snapshot
569
570* Sat Oct 30 2010 Munehiro Yamamoto <munepi@vinelinux.org> 23.2-4
571- updated vine-default-base.el
572  - changed the variable next-line-add-newlines to nil (default)
573
574* Thu Sep 23 2010 Munehiro Yamamoto <munepi@vinelinux.org> 23.2-3
575- updated menu-tree.el to version 0.96
576
577* Sat Jul 03 2010 Munehiro Yamamoto <munepi@vinelinux.org> 23.2-2
578- applied some patches from Fedora
579  - Fixed handling of dual spacing fonts rhbz#599437
580  - Add patch to fix rhbz#595546 hideshow library matches wrong parenthesis
581    under certain circumstances
582  - Added a patch fixing m17n and libotf version checking (m17ncheck)
583- updated menu-tree.el to version 0.95
584- merged emacs23-vl.spec of Vine Linux 5.1
585#* Thu Apr 01 2010 Munehiro Yamamoto <munepi@vinelinux.org> 23.1-9
586#- applied security fix emacs23-CVE-2010-0825-fix-movemail-race.diff from Ubuntu
587#
588#* Fri Feb 09 2010 Munehiro Yamamoto <munepi@vinelinux.org> 23.1-8
589#- added Requires(post): emacsen-common, Requires(postun): emacsen-common
590#
591#* Fri Feb 05 2010 Munehiro Yamamoto <munepi@vinelinux.org> 23.1-7
592#- dropped BuildRequires: m17n-lib-devel
593#- added --without-m17n-flt in %%configure
594
595* Mon May 31 2010 Munehiro Yamamoto <munepi@vinelinux.org> 23.2-1
596- new upstream release
597- updated menu-tree.el to version 0.94
598- updated menu-tree-init.el.emacs23
599  - used prefer-coding-system
600
601* Wed Apr 21 2010 Munehiro Yamamoto <munepi@vinelinux.org> 23.1.96-1
602- updated to 23.1.96 (23.2 pretest)
603
604* Sun Apr 18 2010 Munehiro Yamamoto <munepi@vinelinux.org> 23.1.95-2
605- removed /usr/share/emacs/site-lisp/subdirs.el
606
607* Sat Apr 03 2010 Munehiro Yamamoto <munepi@vinelinux.org> 23.1.95-1
608- updated to 23.1.95 (23.2 pretest)
609- added BuildRequires:
610  - atk-devel
611  - dbus-devel
612  - GConf2-devel
613  - alsa-lib-devel
614- added some configure options:
615  --with-libotf --with-m17n-flt --with-dbus --with-gconf
616
617* Sun Mar 21 2010 Munehiro Yamamoto <munepi@vinelinux.org> 23.1.94-1
618- updated to 23.1.94
619
620* Thu Mar 04 2010 Munehiro Yamamoto <munepi@vinelinux.org> 23.1.93-1
621- updated to 23.1.93 alpha
622
623* Sat Feb 13 2010 Munehiro Yamamoto <munepi@vinelinux.org> 23.1.92-2
624- added Requires(post): emacsen-common, Requires(postun): emacsen-common
625
626* Tue Feb 02 2010 Munehiro Yamamoto <munepi@vinelinux.org> 23.1.92-1
627- update to 23.1.92 alpha
628
629* Sun Jan 17 2010 Munehiro Yamamoto <munepi@vinelinux.org> 23.1-6
630- added BuildRequires:
631  - librsvg2-devel
632  - m17n-lib-devel
633  - libotf-devel
634
635* Sun Jan 17 2010 Munehiro Yamamoto <munepi@vinelinux.org> 23.1-5
636- changed License to GPLv3+
637- renamed emacs23.desktop to emacs23.desktop.in
638- updated vine-default-base.el (See [vine-users:079919])
639- fixed in upstream CVS (from Fedora)
640  - fix #543046 - Using scroll bar in emacs highlights/selects text
641  - fix #542657 - emacs does not display indic text
642  - Fixed rhbz#545398 - ETags messes up filenames
643
644* Tue Sep 01 2009 Munehiro Yamamoto <munepi@vinelinux.org> 23.1-4
645- rebuilt to add signature
646
647* Wed Aug 19 2009 Munehiro Yamamoto <munepi@vinelinux.org> 23.1-3
648- added BuildRequires: nkf
649- updated menu-tree-init.el.emacs23
650  - fixed menu-tree encoding <BTS:VineLinux:766>
651- set Exec=emacs-@@EMACS_VERSION@@ in emacs23.desktop
652
653* Wed Aug 19 2009 Munehiro Yamamoto <munepi@vinelinux.org> 23.1-2
654- replaced BR: libungif-devel with BR: giflib-devel
655
656* Sat Aug 01 2009 Munehiro Yamamoto <munepi@vinelinux.org> 23.1-1
657- new upstream release
658
659* Sat Jul 25 2009 Munehiro Yamamoto <munepi@vinelinux.org> 23.0.96-2.20090714
660- updated vine-default-faces.el to sync with emacs22
661
662* Tue Jul 14 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 23.0.96-1.20090714
663- update to 23.0.96 (20090714) snapshot
664- update vine-default-faces.el
665  - use bash to call gconftool-2
666
667* Sat Jun 27 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 23.0.94-4.20090527
668- update vine-default-faces.el
669  - added \'font in default-frame-alist
670    (if \'font is already in default-frame-alist, overwrited it)
671
672* Wed Jun 10 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 23.0.94-3.20090527
673- update vine-default-faces.el:
674  - use set-frame-font
675    bacause set-default-font function is obsolete since Emacs 23.1
676    (See M-x describe-function RET set-default-font)
677
678* Sun Jun 07 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 23.0.94-2.20090527
679- update vine-default-faces.el:
680  - set desktop-gnome-interface-monospace-font-name
681    from /desktop/gnome/interface/monospace_font_name
682  - automatically set set-default-font
683    with desktop-gnome-interface-monospace-font-name
684
685* Wed May 27 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 23.0.94-1.20090527
686- update to emacs-23.0.94 (20090527) snapshot
687- add --without-gpm to configure
688
689* Thu May 21 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 23.0.92-7.20090422
690- defined show-vine-default function in site-start.el
691  - added showvdefaultemacs script
692
693* Wed May 20 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 23.0.92-6.20090422
694- set PRIORITY=40
695
696* Wed May 06 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 23.0.92-5.20090422
697- changed menu-tree-init.el from hard copy to symbolic link
698  on /etc/emacs-23.0.92/site-start.d
699- added %%{_mandir}/*/* in %%files section
700
701* Sat May 02 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 23.0.92-4.20090422
702- updated menu-tree.el to v0.93
703
704* Fri May 01 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 23.0.92-3.20090422
705- returned alternatives priority to 30
706  (emacs: 30, emacs22: 30)
707
708* Sun Apr 26 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 23.0.92-2.20090422
709- installed system-wide configure file in /etc/emacs
710- updated vine-default-base.el
711- changed alternatives priority from 30 to 50
712  (emacs: 50, emacs22: 30)
713
714* Wed Apr 22 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 23.0.92-1.20090422
715- update to emacs 23.0.92 (20090422) snapshot
716- add %%triggerpostun to fix alternatives
717
718* Tue Apr 21 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 23.0.91-3.20090325
719- renamed from emacs23 to emacs (emacs-22.x would be renamed to emacs22)
720- updated default settings for Vine Linux
721  - dropped vine-default-mouse.el, vine-default-misc.el
722
723* Sat Apr 11 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 23.0.91-2.20090325
724- enable default settings for Vine Linux
725  - added site-start.el.emacs23
726  - updated site-start.el
727  - added vine-default-base.el, vine-default-faces.el, vine-default-mouse.el,
728    vine-default-misc.el
729
730* Wed Mar 25 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 23.0.91-1.20090325
731- emacs23 23.0.91 snapshot
732
733* Tue Sep 09 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 23.0.60-2.20080908
734- drop patch10
735- s/emacsrelese/emacsrelease/
736
737* Mon Sep 08 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 23.0.60-1.20080908
738- emacs23 23.0.60 snapshot
739
740* Sun Sep 07 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 22.3-1
741- new upstream release
742
743* Mon Aug 25 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 22.2-3
744- import security fixes from Debian
745  CVE-2008-2142: fix insecure setting of fast-lock-cache-directories
746  CVE-2008-1694: fix insecure temporary file creation in vcdiff script
747                 leading to possible symlink attacks
748
749* Wed Jun 25 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 22.2-2
750- update menu-tree.el
751- add 60menu-tree-init.el to sed coding-system and load menu-tree
752- build with xorg-x11-7.3
753  - update BuildRequires
754
755* Sun Mar 30 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 22.2-1
756- new upstream release
757
758* Wed Nov 28 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 22.1-0vl2
759- add Patch10000 to fix local variable processing security bypass
760  vulnerability.
761  - http://www.frsirt.com/english/advisories/2007/3715
762  - http://bugs.debian.org/449008
763
764* Mon Jun 04 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 22.1-0vl1
765- new upstream release
766- rename to emacs from emacs22 (emacs-21.x would be renameed to emacs21)
767- drop emcws support
768
769* Sun May 20 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 22.0.50-0.20060403vl3
770- rebuilt with new toolchain
771
772* Sat May 06 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 22.0.50-0.20060403vl2
773- changed Group:
774
775* Mon Apr 03 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 22.0.50-0.20060403vl1
776- update to CVS-20060403
777- update emacs22.desktop
778
779* Wed Sep 28 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 22.0.50-0.20050927vl2
780- fix site-start.el
781
782* Tue Sep 27 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 22.0.50-0.20050927vl1
783- update to CVS-20050927
784
785* Thu Sep  8 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 22.0.50-0.20050907vl1
786- initial build for Vine Linux based on emacs package.
787  - emacs-22.0.50 on CVS-20050907
788
789* Sat Sep  3 2005 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 21.4-0vl3
790- create site-start.d directory on %install
791
792* Thu Feb 17 2005 Hiroaki Irokawa <irorin@terra.dti.ne.jp> 21.4-0vl2
793- included leim-21.4
794- update emcws-21.3-20031213.gz
795
796* Wed Feb 16 2005 Hiroaki Irokawa <irorin@terra.dti.ne.jp> 21.4-0vl1
797- update
798
799* Sat Jul 24 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 21.3-0vl7
800- rebuild with Xaw3d, add BuildRequires: Xaw3d-devel
801
802* Fri Jul 23 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 21.3-0vl6
803- add Patch20 to fix display resolutions. (set to 96dpi)
804  (do not compute dynamically from display's size)
805
806* Tue Mar 16 2004 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 21.3-0vl5
807- rebuilt with new toolchain environment
808
809* Thu Jul 17 2003 Hiroaki Irokawa <irorin@terra.dti.ne.jp> 21.3-0vl4
810- use site-start.el(reading /etc/emacs-21.3/site-start.d/*.el)
811
812* Wed May  7 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 21.3-0vl3
813- add BuildPrereq: libpng >= 1.2.5
814
815* Tue Apr 15 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 21.3-0vl2
816- fixed %%pre script
817
818* Tue Mar 25 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 21.3-0vl1
819- new upstream release
820- remove patch14 whick included in upstream
821
822* Thu Jan 16 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 21.2-0vl11
823- add patch14 to fix frame title text encoding.
824  - http://tsukuba.m17n.org/mule-ja-archive/2002-10/msg00004.html
825
826* Tue Dec 10 2002 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 21.2-0vl10
827- autoconf-2.13, not autoconf in %%setup section
828- BuildPreReq: autoconf213
829
830* Mon Dec  9 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 21.2-0vl9
831- modifiy rpm scripts.
832
833* Mon Dec  9 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 21.2-0vl8
834- rename to emacs
835- obsoletes emacs21 <= 21.2-0vl7, provides emacs21 = %%{version}
836
837* Sun Dec  1 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 21.2-0vl7
838- enable menubar fontset patch (Patch103)
839
840* Sat Nov 30 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 21.2-0vl6
841- add requires/buildprereq tags.
842
843* Sat Nov 30 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 21.2-0vl5
844- add emcws-20021014
845
846* Sun Jul 21 2002 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 21.2-0vl4
847- removed *-mode
848
849* Sat Jul 20 2002 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 21.2-0vl3
850- python-mode was made pending
851- some additional *.el files was moved from "emacs/site-lisp" to
852  "emacs-(version)/site-lisp"
853
854* Sat Jul 13 2002 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 21.2-0vl2
855- added some sources and patches from rawhide 21.2-11 and mandrake 21.2-7mdk
856
857* Sat May 11 2002 Hiroaki Irokawa <irorin@terra.dti.ne.jp> 21.2-0vl1
858- update.
859- Package Name emacs-beta -> emacs21
860- Add Patch100,101,102, Source100(default = Disable)
861- (from http://phe.phyas.aichi-edu.ac.jp/~cyamauch/pl2.html#emacs21)
862- --infodir=%{_infodir}/emacs-21.2(VineSeed-Plus:00723)
863
864* Thu Dec 27 2001 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 21.1-0vl7
865- site-lisp moved under /usr/share/emacs-21.1/ (Patch11 and %%pre section)
866
867* Thu Dec 06 2001 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 21.1-0vl5
868- move /tmp -> /var/lib/emacsen-common (IP(package)C file)
869
870* Fri Nov 02 2001 Tomoya TAKA <tomoya@olive.plala.or.jp> 21.1-0vl4
871- replace patch10 with patch11, posted to gnu.emacs.bug
872  Message-Id: <jebsiza3db.fsf@sykes.suse.de>
873  (reported by ABE Yuji <cbo46560@pop12.odn.ne.jp>)
874
875* Fri Oct 26 2001 Kazuhisa TAKEI <takei@vinelinux.org> 21.1-0vl3
876- fixed build to fail in alpha( only apply patch0 to ppc)
877
878* Tue Oct 23 2001 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 21.1-0vl2
879- added Patch10 (thanks Kitame-san)
880
881* Mon Oct 22 2001 Kazuhisa TAKEI <takei@vinelinux.org> 21.1-0vl1
882- update to 21.1
883
884* Sun Sep 9 2001 Kazuhisa TAKEI <takei@vinelinux.org> 21.0.104-0vl14
885- support  shared installing otheremacsen.
886
887* Mon Jul 23 2001 Kazuhisa TAKEI <takei@vinelinux.org> 21.0.104-0vl3
888- update 21.0.104
889
890* Thu Jul 19 2001 Kazuhisa TAKEI <takei@vinelinux.org> 21.0.103-0vl2
891- support emacsen-common
892
893* Wed May 16 2001 MATSUBAYASHI 'Shaolin' Kohji <shaolin@vinelinux.org>
894- 21.0.103-0vl1
895- updated to 21.0.103
896- revamped and cleaned up spec file :-)
897- Requires: tamago >= 4.0.6 (...is it reasonable? Mmm...)
898
899* Mon Jan 22 2001 Kazuhisa TAKEI <takei@vinelinux.org> 21.0.95-0vl2
900- fixed .spec bugs( _libdir)
901
902* Fri Jan 12 2001 Kazuhisa TAKEI <takei@vinelinux.org> 21.0.95-0vl1
903- updated to 21.0.95
904
905* Wed Dec 20 2000 Kazuhisa TAKEI <takei@vinelinux.org> 21.0.93-0vl3
906- fixed emacs-beta.spec
907
908* Sat Dec 16 2000 Kazuhisa TAKEI <takei@vinelinux.org> 21.0.93-0vl2
909- 21.0.93 test packaging.
910
911* Fri Jun 30 2000 T.R. Kobayashi <tkoba@ike-dyn.ritsumei.ac.jp>
912- added linespace-patch
913
914* Mon Jun 19 2000 MACHINO, Satoshi <mac@netfort.gr.jp>
915- updated to emacs 20.7
916
917* Thu Apr 20 2000 Yasuyuki Furukawa <furukawa@vinelinux.org>
918- updated to emacs 20.6
919
920* Mon Feb 28 2000 kenji KITAYAMA <kenji@gandalf.doshisha.ac.jp>
921- [emacs-20.5a-2]
922- Modified reference of Emacs Info
923
924* Sun Jan 23 2000 MATSUBAYASHI 'Shaolin' Kohji <shaolin@rhythmaning.org>
925- [emacs-20.5a-2]
926- added ppc patch
927
928* Fri Jan  7 2000 MATSUBAYASHI 'Shaolin' Kohji <shaolin@rins.st.ryukoku.ac.jp>
929- [emacs-20.5a-1]
930- change version from 20.5 to 20.5a
931- added Mule-4.1 patch
932
933* Fri Jan  7 2000 Yasuyuki Furukawa <yasu@on.cs.keio.ac.jp>
934- [emacs-20.5-1]
935- add desktop-link files for desktop menu.
936
937* Fri Dec 24 1999 MATSUBAYASHI 'Shaolin' Kohji <shaolin@rins.st.ryukoku.ac.jp>
938- [emacs-20.4-16]
939- replaced Y2K savvy timezone.{el,elc} with one from brand-new apel-10.0
940
941* Tue Dec 21 1999 Jun Nishii <jun@vinelinux.org>
942- added documents
943- strip bins
944
945* Wed Dec  1 1999 MATSUBAYASHI 'Shaolin' Kohji <shaolin@rins.st.ryukoku.ac.jp>
946- [emacs-20.4-14]
947- Change Group to Applications/Editors/Emacs
948
949* Sat Nov  6 1999 MATSUBAYASHI 'Shaolin' Kohji <shaolin@rins.st.ryukoku.ac.jp>
950- [emacs-20.4-13]
951- included Y2K savvy timezone.{el,elc},
952  modified by Mr. Youichi Teranishi <teranishi@gohome.org>
953
954* Tue Oct 12 1999 Yasuhide OOMORI <dasen@typhoon.co.jp>
955- [emacs-20.4-12]
956- Modified info-dir.
957- Removed -c option from %setup.
958
959* Mon Sep 20 1999 Kazuhisa TAKEI<takei@hh.iij4u.or.jp>
960- fixed XIM support patch
961* Sun Sep 19 1999 Kazuhisa TAKEI<takei@hh.iij4u.or.jp>
962- fixed postinst bug and fontset patch
963* Sun Jul 18 1999 Kazuhisa TAKEI<takei@hh.iij4u.or.jp>
964- first build
Note: See TracBrowser for help on using the repository browser.