cherrytree-vl.spec 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293
  1. %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
  2. Summary: CherryTree - note taking application
  3. Summary(ja): CherryTree - ノート作成アプリケーション
  4. Name: cherrytree
  5. Version: 0.30.5
  6. Release: 1%{?_dist_release}
  7. License: GPLv2+
  8. Group: Applications/Productivity
  9. URL: http://www.giuspen.com/cherrytree/
  10. Source0: %{name}-%{version}.tar.xz
  11. #Patch0: setup.patch
  12. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  13. BuildArch: noarch
  14. BuildRequires: desktop-file-utils
  15. BuildRequires: gettext
  16. BuildRequires: python
  17. BuildRequires: python-devel
  18. BuildRequires: python-setuptools
  19. Requires: cairo
  20. Requires: pango
  21. Requires: python
  22. Requires: pygtk2
  23. Requires: gtksourceview2
  24. Requires: pygtksourceview
  25. Requires: python-enchant
  26. #Obsoletes: %name < %version
  27. %description
  28. A hierarchical note taking application, featuring rich text and syntax highlighting.
  29. Features:
  30. - rich text (foreground color, background color and bold)
  31. - syntax highlighting (only when the rich text is disabled in the current node)
  32. - find a node, find in current node, find in all nodes
  33. - replace in node names, replace in current node, replace in all nodes
  34. - iteration of the latest find, iteration of the latest replace
  35. %description -l ja
  36. 階層型ノートの作成アプリケーションで、リッチテキストや構文の強調表示を備えています。
  37. 特長:
  38. - リッチテキスト(前景色、背景色、太字)
  39. - 構文の強調表示(現在のノードではリッチテキストの場合だけ無効)
  40. - ノードの検出、現在のノードからの検索、すべてのノードからの検索
  41. - ノードの名前の置換、現在のノードで置換、すべてのノードで置換
  42. - 最新の検索・置換の繰り返し
  43. %prep
  44. %setup -q
  45. #%patch0 -p1
  46. #chmod +x setup.py
  47. sed -i 's|Comment=Hierarchical Note Taking|Comment=Hierarchical Note Taking\nComment[ja]=階層型ノートの作成|g' \
  48. linux/cherrytree.desktop
  49. %build
  50. %install
  51. rm -rf $RPM_BUILD_ROOT
  52. %{__python} setup.py install --prefix=$RPM_BUILD_ROOT%{_prefix}
  53. desktop-file-install --vendor="" \
  54. --add-category="Utility" \
  55. --dir %{buildroot}%_datadir/applications \
  56. %{buildroot}%_datadir/applications/%{name}.desktop
  57. %find_lang %{name}
  58. %clean
  59. rm -rf %{buildroot}
  60. %post
  61. update-desktop-database %{_datadir}/applications
  62. gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
  63. %postun
  64. update-desktop-database %{_datadir}/applications
  65. gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
  66. %files -f %{name}.lang
  67. %defattr(-,root,root)
  68. %doc license.txt
  69. %{_bindir}/%{name}
  70. %{_datadir}/application-registry/
  71. %{_datadir}/applications/
  72. %{_datadir}/%{name}
  73. %{_datadir}/icons/
  74. %{_datadir}/mime/packages/
  75. %{_datadir}/mime-info/
  76. %{_mandir}/man1/
  77. %{python_sitelib}/*
  78. %changelog
  79. * Fri Sep 06 2013 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.30.5-1
  80. - new upstream release
  81. - added Requires: python-enchant
  82. * Sat Mar 30 2013 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.29.4-1
  83. - new upstream release
  84. * Sat Mar 16 2013 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.29.3-1
  85. - new upstream release
  86. * Sat Jan 26 2013 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.29.2-1
  87. - new upstream release
  88. * Sat Jan 12 2013 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.29-1
  89. - new upstream release
  90. * Fri Nov 23 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.28.5-1
  91. - new upstream release
  92. * Fri Nov 09 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.28.3-1
  93. - new upstream release
  94. * Tue Oct 09 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.27.1-1
  95. - new upstream release
  96. * Sat Sep 22 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.27-1
  97. - new upstream release
  98. - changed source archive type to xz
  99. * Mon Jul 09 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.26.3-1
  100. - new upstream release
  101. * Sat Jun 16 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.26.2-1
  102. - new upstream release
  103. * Fri Jun 08 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.26.1-1
  104. - new upstream release
  105. * Fri May 18 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.26-1
  106. - new upstream release
  107. - changed source archive type to bz2
  108. * Sun Feb 26 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.25.4-1
  109. - new upstream release
  110. * Sun Feb 05 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.25.3-1
  111. - new upstream release
  112. * Wed Jan 25 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.25.1-1
  113. - new upstream release
  114. * Sat Jan 14 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.24-1
  115. - new upstream release
  116. * Fri Sep 23 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.23.1-1
  117. - new upstream release
  118. * Wed Sep 07 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.23-1
  119. - new upstream release
  120. * Wed Jul 20 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.22.2-1
  121. - new upstream release
  122. * Wed Jul 06 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.22.1-1
  123. - new upstream release
  124. * Sun Jun 12 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.22-1
  125. - new upstream release
  126. - added BuildRequires: desktop-file-utils, python-setuptools
  127. * Wed May 4 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.21.3-1
  128. - new upstream release
  129. * Fri Apr 29 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.21.1-1
  130. - new upstream release
  131. * Tue Jan 18 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.19.3-1
  132. - new upstream release
  133. * Fri Jan 14 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.19.1-1
  134. - new upstream release
  135. * Sun Jan 2 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.18.1-1
  136. - new upstream release
  137. - used python macro
  138. * Sat Dec 18 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.17.1-1
  139. - new upstream release
  140. * Thu Dec 2 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.16-1
  141. - new upstream release
  142. - dropt Patch0
  143. * Sat Oct 16 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.15-1
  144. - new upstream release
  145. - deleted unnecessary code in patch0
  146. * Mon Sep 20 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.14.2-1
  147. - new upstream release
  148. * Wed Sep 15 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.14.1-1
  149. - new upstream release
  150. - recreated patch0
  151. * Thu Sep 2 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.14-1
  152. - new upstream release
  153. * Fri Aug 20 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.13-1
  154. - new upstream release
  155. * Tue Jul 20 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.12-1
  156. - new upstream release
  157. * Tue Jul 6 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 0.11-1
  158. - new upstream release
  159. - changed URL
  160. - added patch0 to work around install error
  161. - dropt BuildRequires: ImageMagick
  162. - added BuildRequires: python, python-devel
  163. - modified install process
  164. - use setup.py in source
  165. - modified %%files
  166. - changed category to 'Utility'
  167. * Sun Jun 6 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 0.10-1
  168. - new upstream release
  169. - added Requires: cairo, pango
  170. * Tue May 4 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 0.9.6-1
  171. - new upstream release
  172. * Sat Mar 20 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 0.9.3-1
  173. - new upstream release
  174. - applied new naming policy to spec
  175. * Sun Mar 7 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 0.9.2-1
  176. - new upstream release
  177. - added BuildRequires: ImageMagick
  178. * Wed Feb 17 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 0.9.1-1
  179. - new upstream release
  180. * Mon Feb 15 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 0.9-1
  181. - new upstream release
  182. * Sat Feb 6 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.8.3-2
  183. - rebuilt with python-2.6.4
  184. * Thu Jan 21 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 0.8.3-1
  185. - new upstream release
  186. * Thu Jan 7 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 0.8.2-1
  187. - new upstream release
  188. * Wed Dec 23 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 0.8.1-1
  189. - new upstream release
  190. * Fri Dec 18 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 0.8-1
  191. - initial build for Vine Linux
  192. * Sun Dec 13 2009 slick50 <lxgator@gmail.com> 0.7.1-1pclos2010
  193. - 0.7.1
  194. * Sat Dec 12 2009 slick50 <lxgator@gmail.com> 0.7-1pclos2010
  195. - 0.7
  196. * Tue Dec 08 2009 slick50 <lxgator@gmail.com> 0.6.3-1pclos2010
  197. - 0.6.3
  198. * Sat Dec 05 2009 slick50 <lxgator@gmail.com> 0.6.2-1pclos2010
  199. - 0.6.2
  200. * Thu Nov 26 2009 slick50 <lxgator@gmail.com> 0.6-1pclos2010
  201. - 0.6
  202. * Fri Nov 20 2009 slick50 <lxgator@gmail.com> 0.5.1-1pclos2010
  203. - 0.5.1
  204. * Thu Nov 19 2009 slick50 <lxgator@gmail.com> 0.5-1pclos2010
  205. - 0.5
  206. * Thu Nov 12 2009 slick50 <lxgator@gmail.com> 0.4-1pclos2010
  207. - 0.4
  208. * Thu Nov 05 2009 slick50 <lxgator@gmail.com> 0.3-1pclos2010
  209. - 0.3
  210. * Fri Oct 30 2009 slick50 <lxgator@gmail.com> 0.2-1pclos2010
  211. - 0.2
  212. * Fri Oct 16 2009 Texstar <texstar at gmail.com> 0.1-2pclos2010
  213. - add missing dependency gnome-python-gtksourceview
  214. * Wed Oct 14 2009 slick50 <lxgator@gmail.com> 0.1-1pclos2010
  215. - initial pkg