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

Revision 12555, 31.1 KB checked in by tomop, 3 years ago (diff)

updated 7 packages

ImageMagick?-6.9.12.1-1

cmake-3.19.6-1

double-conversion-3.1.5-5

emacs-27.1-1

inkscape-1.0.2-1

potrace-1.16-1

pstoedit-3.75-2

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