source: projects/specs/trunk/e/emacs25/emacs25-vl.spec @ 12290

Revision 12290, 31.0 KB checked in by ara_t, 4 years ago (diff)

emacs25: rebuild under VineSeed environment

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