apel-vl.spec 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  1. %define _noVersionedDependencies 1
  2. %define origver 10.8
  3. %define origname apel
  4. Summary: A Portable Emacs Library
  5. Summary(ja): Emacs 用の 基礎的な関数を提供するライブラリ
  6. Name: %{origname}
  7. Version: %{origver}
  8. Release: 3%{?_dist_release}
  9. Source0: http://kanji.zinbun.kyoto-u.ac.jp/~tomo/lemi/dist/apel/apel-%{origver}.tar.gz
  10. Source1: apel-install.sh
  11. Source2: apel-remove.sh
  12. Source3: apel-init.el
  13. Patch0: apel-10.8-20120427.patch
  14. Patch1: apel-10.8-ikazuhiro-branch.patch
  15. Patch2: apel-10.8-prevent-fontset-error.patch
  16. Patch3: apel-10.8-use-new-style-backquotes.patch
  17. License: 1993-1999 Free Software Foundation, Inc., Dan Rich, Morioka Tomohiko, Kobayashi Shuhei
  18. Group: Applications/Editors/Emacs
  19. Url: http://git.chise.org/elisp/apel/
  20. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  21. BuildArch: noarch
  22. Requires: emacsen
  23. Requires(post,preun): emacsen emacsen-common
  24. Obsoletes: %{origname}-el
  25. Conflicts: semi <= 1.14.5-0vl2
  26. Vendor: Project Vine
  27. Distribution: Vine Linux
  28. Packager: shaolin, daisuke
  29. %description
  30. This package contains following .el files for emacsen:
  31. APEL %{origver}
  32. APEL stands for "A Portable Emacs Library".
  33. It provides basic functions and macros for emacsen.
  34. Note: in order to rebuild this SRPM package, you need emacsen
  35. and emacsen-common installed.
  36. %description -l ja
  37. このパッケージは GNU Emacs %{emacsver} 上で使用する
  38. 以下の elisp を収めています.
  39. APEL %{origver}
  40. APEL は "A Portable Emacs Library" の略です.
  41. Emacs 環境のための基礎的な関数やマクロを提供します.
  42. 注意:この SRPM パッケージを rebuild するには、emacsen と emacsen-common が
  43. インストールされている必要があります.
  44. %prep
  45. %setup -q -n %{origname}-%{origver}
  46. %patch0 -p1
  47. %patch1 -p1
  48. %patch2 -p1
  49. %patch3 -p1
  50. %install
  51. [ "${RPM_BUILD_ROOT}" != "/" ] && rm -rf ${RPM_BUILD_ROOT}
  52. [ "${RPM_BUILD_ROOT}" != "/" ] && mkdir -p ${RPM_BUILD_ROOT}
  53. mkdir -p $RPM_BUILD_ROOT/%{_datadir}/emacs/site-lisp/%{origname}
  54. mkdir -p $RPM_BUILD_ROOT/%{_prefix}/lib/emacsen-common/packages/install
  55. mkdir -p $RPM_BUILD_ROOT/%{_prefix}/lib/emacsen-common/packages/remove
  56. #
  57. # install el files
  58. #
  59. cp Makefile EMU-* APEL-* *.el %{SOURCE3} \
  60. ${RPM_BUILD_ROOT}/usr/share/emacs/site-lisp/%{origname}
  61. #
  62. # install script( bytecompile el and install elc , remove )
  63. #
  64. %_installemacsenscript %{origname} %{SOURCE1}
  65. %_removeemacsenscript %{origname} %{SOURCE2}
  66. %post
  67. #
  68. # bytecompile and install
  69. #
  70. if [ "$1" = 2 ]; then
  71. %_emacsenPackageRemove %{origname}
  72. fi
  73. %_addemacsenlist %{origname}
  74. %_emacsenPackageInstall %{origname}
  75. %preun
  76. if [ "$1" = 0 ]; then
  77. %_emacsenPackageRemove %{origname}
  78. %_removeemacsenlist %{origname}
  79. fi
  80. %triggerpostun -- apel-el
  81. %_emacsenPackageInstall %{origname}
  82. %clean
  83. [ "${RPM_BUILD_ROOT}" != "/" ] && rm -rf ${RPM_BUILD_ROOT}
  84. %files
  85. %defattr(-,root,root)
  86. %doc ChangeLog README*
  87. /usr/share/emacs/site-lisp/%{origname}/
  88. /usr/lib/emacsen-common/packages/install/%{origname}
  89. /usr/lib/emacsen-common/packages/remove/%{origname}
  90. %changelog
  91. * Tue May 06 2014 Daisuke SUZUKI <daisuke@linux.or.jp> 10.8-3
  92. - add patch0 for (original) git master
  93. - add patch1 to update to ikazuhiro's branch (2014-03-15)
  94. https://github.com/ikazuhiro/apel/commits/master
  95. - add patch2 from debian package
  96. (Prevent an error of fontset-pixel-size for Emacs 23.)
  97. - add patch3 from debian package
  98. (use new style backquotes to use on emacs-24.3.90)
  99. * Fri Apr 22 2011 IWAI, Masaharu <iwai@alib.jp> 10.8-2
  100. - drop defining prereq_ge macro: using Requires(post,preun) tag
  101. - add Requires: emacsen
  102. * Tue Jun 15 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 10.8-1
  103. - new upstream release
  104. * Sun Mar 29 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 10.7-2
  105. - spec in utf8
  106. * Fri May 2 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 10.7-1
  107. - applied new versioning policy
  108. * Fri Dec 7 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 10.7-0vl1
  109. - updated to 10.7
  110. * Mon Sep 11 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 10.6-0vl3
  111. - changed Group to Appliations/Editors/Emacs <BTS:VineLinux:163>
  112. * Wed Dec 24 2003 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 10.6-0vl2
  113. - rebuilt
  114. * Tue Jul 8 2003 Hiroaki Irokawa <irorin@terra.dti.ne.jp> 10.6-0vl1
  115. - updated to new upstream version 10.6
  116. * Mon Jun 09 2003 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 10.5-0vl1
  117. - updated to new upstream version 10.5
  118. * Mon May 19 2003 Hiroaki Irokawa <irorin@terra.dti.ne.jp> 10.4-0vl1
  119. - update.
  120. - Tag Changed(Copyright -> License)
  121. * Fri Jan 11 2002 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 10.3-0vl9
  122. - Obsoletes: apel-el now, instead of Conflicts:
  123. - added %%triggerpostun -- apel-el
  124. * Fri Dec 28 2001 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 10.3-0vl8
  125. - package name changed apel-el -> apel again
  126. - added Source3 for forthcoming site-start mechanism
  127. * Thu Dec 06 2001 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 10.3-0vl7
  128. - activate file-detect and atype (Patch10), especially for xemacs
  129. * Thu Dec 06 2001 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 10.3-0vl6
  130. - fixed the target directory for emu modules to be installed
  131. - included missing documents again
  132. - cleanup the spec file
  133. * Wed Jul 18 2001 Kazuhisa TAKEI <takei@vinelinux.org>
  134. - emacsenize
  135. * Wed Jul 11 2001 MATSUBAYASHI 'Shaolin' Kohji <shaolin@vinelinux.org>
  136. - 1.14.3-0vl2
  137. - back to Requires: emacs = 20.7 -> emacs >= 20.7 (for emacs-beta)
  138. * Wed Jul 11 2001 MATSUBAYASHI 'Shaolin' Kohji <shaolin@vinelinux.org>
  139. - 1.14.3-0vl1
  140. - updated to apel-10.3, flim-1.14.3, semi-1.14.3, emh-1.14.1
  141. * Fri Aug 25 2000 MATSUBAYASHI 'Shaolin' Kohji
  142. - 1.13.7-8
  143. - added %define _noVersionedDependencies 1
  144. * Fri Aug 25 2000 MATSUBAYASHI 'Shaolin' Kohji
  145. - 1.13.7-7
  146. - modified %files section to handle compressed man page(s)
  147. * Wed May 10 2000 MATSUBAYASHI 'Shaolin' Kohji
  148. - 1.13.7-6
  149. - apel updated to 10.2
  150. * Mon Jan 24 2000 MATSUBAYASHI 'Shaolin' Kohji
  151. - 1.13.7-5
  152. - added patch (see emacs-mime-ja: 00303) to format texinfo correctly
  153. * Fri Dec 24 1999 MATSUBAYASHI 'Shaolin' Kohji
  154. - 1.13.7-4
  155. - updated in sync with apel-10.0 / clime-1.13.6 release
  156. * Wed Dec 1 1999 MATSUBAYASHI 'Shaolin' Kohji
  157. - 1.13.7-3
  158. - change Group to Applications/Editors/EmacsLisp
  159. * Mon Nov 29 1999 MATSUBAYASHI 'Shaolin' Kohji
  160. - 1.13.7-2
  161. - added patches (see emacs-mime-ja:00183, emacs-mime-ja:00184)
  162. - now emh-1.10.1 and rmail-mime-1.13.0 are also included
  163. - documentation files are properly stored under /usr/doc directory
  164. * Wed Nov 3 1999 MATSUBAYASHI 'Shaolin' Kohji
  165. - 1.13.7-1
  166. - updated to apel-9.23 / clime-1.13.5 / semi-1.13.7 release
  167. - added Japanese / English info files to be installed