sound-juicer-vl.spec 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306
  1. Name: sound-juicer
  2. Summary: Clean and lean CD ripper
  3. Summary(ja): シンプルで簡単なCDリッピングツール
  4. Version: 3.20.0
  5. Release: 1%{?_dist_release}
  6. License: GPL
  7. Group: Applications/Multimedia
  8. Source0: http://ftp.gnome.org/pub/GNOME/sources/sound-juicer/3.20/%{name}-%{version}.tar.xz
  9. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  10. Requires: cdparanoia
  11. BuildRequires: libgnome-media-profiles-devel >= 3.0.0
  12. BuildRequires: glib2-devel >= 2.26.0
  13. BuildRequires: gstreamer1-devel
  14. BuildRequires: gstreamer1-plugins-base-devel
  15. BuildRequires: gstreamer1-plugins-good-flac
  16. BuildRequires: brasero-devel
  17. BuildRequires: gsettings-desktop-schemas-devel
  18. BuildRequires: libcanberra-gtk3-devel
  19. BuildRequires: libmusicbrainz5-devel
  20. BuildRequires: libdiscid-devel
  21. BuildRequires: iso-codes
  22. BuildRequires: yelp-tools
  23. Requires(postun,posttrans): glib2
  24. # http://bugzilla.gnome.org/show_bug.cgi?id=157772
  25. ExcludeArch: s390 s390x
  26. Vendor: Project Vine
  27. Distribution: Vine Linux
  28. Packager: Takemikaduchi
  29. %description
  30. GStreamer-based CD ripping tool. Saves audio CDs to Ogg/vorbis.
  31. %description -l ja
  32. Sound Juicer は GStreamer ベースの CD リッピングツールです。
  33. CD を Ogg/vorbis に変換します。
  34. %prep
  35. %setup -q
  36. %build
  37. %configure \
  38. --with-gtk=3.0 \
  39. --disable-scrollkeeper \
  40. --disable-schemas-install \
  41. --disable-scrollkeeper
  42. %__make AM_CFLAGS=-export-dynamic
  43. %install
  44. rm -rf $RPM_BUILD_ROOT
  45. export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1;
  46. make install DESTDIR=$RPM_BUILD_ROOT
  47. unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL
  48. rm -rf $RPM_BUILD_ROOT%{_localstatedir}/scrollkeeper
  49. rm -rf $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/icon-theme.cache
  50. %find_lang %{name} --all-name --with-gnome
  51. %clean
  52. rm -rf $RPM_BUILD_ROOT
  53. %post
  54. touch --no-create %{_datadir}/icons/hicolor
  55. if [ -x /usr/bin/gtk-update-icon-cache ]; then
  56. /usr/bin/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor ||:
  57. fi
  58. %postun
  59. touch --no-create %{_datadir}/icons/hicolor
  60. if [ -x /usr/bin/gtk-update-icon-cache ]; then
  61. /usr/bin/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor ||:
  62. fi
  63. glib-compile-schemas %{_datadir}/glib-2.0/schemas ||:
  64. %posttrans
  65. glib-compile-schemas %{_datadir}/glib-2.0/schemas ||:
  66. %files -f sound-juicer.lang
  67. %defattr(-, root, root)
  68. %doc AUTHORS COPYING ChangeLog README NEWS
  69. %{_bindir}/sound-juicer
  70. %{_datadir}/GConf/gsettings/sound-juicer.convert
  71. %{_datadir}/appdata/sound-juicer.appdata.xml
  72. %{_datadir}/applications/sound-juicer.desktop
  73. %{_datadir}/glib-2.0/schemas/org.gnome.sound-juicer.gschema.xml
  74. %{_datadir}/icons/hicolor/*
  75. %{_datadir}/sound-juicer
  76. %{_mandir}/man1/*
  77. %changelog
  78. * Mon Jul 18 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.20.0-1
  79. - new upstream release
  80. * Fri Nov 20 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.18.1-1
  81. - new upstream release
  82. * Sun Nov 01 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.18.0-1
  83. - new upstream release
  84. * Sun Apr 19 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.16.1-1
  85. - new upstream release
  86. * Sun Mar 29 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.16.0-1
  87. - new upstream release
  88. * Tue Oct 28 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.14.0-1
  89. - new upstream release
  90. - remove BuildRequires: hal-devel
  91. - add BuildRequires: yelp-tools, gsettings-desktop-schemas-devel, iso-codes
  92. * Sun Jan 05 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.5.0-2
  93. - rebuild with VineSeed environment
  94. * Sun Sep 30 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.5.0-1
  95. - new upstream release
  96. - change BuildRequires: gstreamer1-devel instead of gstreamer-devel
  97. - change BuildRequires: gstreamer1-plugins-base-devel instead of gstreamer-plugins-base-devel
  98. - change BuildRequires: libmusicbrainz5-devel instead of libmusicbrainz3-devel
  99. - add BuildRequires: libdiscid-devel
  100. - add Patch0 (sound-juicer-3.5.0-gstreamer1.patch)
  101. * Thu Apr 19 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.4.0-1
  102. - new upstream release
  103. - remove Patch0
  104. - remove Source1
  105. * Wed Aug 17 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.32.0-2
  106. - add configure option: --with-gtk=3.0
  107. - change BuildRequires: libgnome-media-profiles-devel instead of gnome-media-devel
  108. - change BuildRequires: libcanberra-gtk3-devel instead of libcanberra-devel
  109. - add Patch0 (sound-juicer-2.32.0-git20110523.patch)
  110. - add Source1 (sound-juicer-256.png)
  111. - add BuildRequires: gnome-common
  112. * Sun Oct 03 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.32.0-1
  113. - new upstream release
  114. - add BuildRequires: libmusicbrainz3-devel
  115. - remove BuildRequires: libgnomeui-devel
  116. - fix BuildRequires: gnome-media-devel instead of gnome-media
  117. * Sun Apr 25 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.28.2-1
  118. - new upstream release
  119. * Sat Jan 16 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.28.1-1
  120. - new upstream release
  121. - remove configure option: --enable-hal (unrecognized option)
  122. - add BuildRequires: gstreamer-plugins-base-devel >= 0.10.5
  123. - add BuildRequires: gstreamer-plugins-good-flac
  124. * Sat Apr 25 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.26.1-1
  125. - new upstream release
  126. * Tue Apr 07 2009 Shu KONNO <owa@bg.wakwak.com> 2.26.0-2
  127. - add BR: libcanberra-devel
  128. * Mon Mar 23 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.26.0-1
  129. - new upstream release
  130. - add BR: brasero-devel instead of nautilus-cd-burner
  131. - add BR: gnome-doc-utils
  132. - add Requires(pre,post,postun): GConf2
  133. - remove unneeded Requires:
  134. * Sat Oct 25 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.24.0-1vl5
  135. - new upstream release
  136. * Sat Oct 11 2008 Shu KONNO <owa@bg.wakwak.com> 2.16.4-1vl5
  137. - applied new versioning policy, spec in utf-8
  138. * Thu May 17 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.16.4-0vl2
  139. - rebuild with new environment/toolchain
  140. * Sat Apr 28 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.16.4-0vl1
  141. - new upstream release
  142. * Sun Jun 04 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.4-0vl1
  143. - new upstream release
  144. * Sat Apr 15 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.2-0vl1
  145. - new upstream release
  146. * Tue Apr 05 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.10.1-0vl1
  147. - initial build for Vine Linux based on FC package
  148. - new upstream release
  149. * Wed Mar 23 2005 John (J5) Palmieri <johnp@redhat.com> 2.10.0-2
  150. - Rebuild for libmusicbrainz-2.1.1
  151. * Fri Mar 11 2005 John (J5) Palmieri <johnp@redhat.com> 2.10.0-1
  152. - Update to upstream version 2.10.0
  153. * Tue Mar 08 2005 John (J5) Palmieri <johnp@redhat.com> 2.9.91-3
  154. - Build in rawhide
  155. - Disable build on s390 and s390x
  156. * Fri Feb 25 2005 John (J5) Palmieri <johnp@redhat.com> 2.9.91-2
  157. - Reenabled BuildRequires for hal-devel >= 0.5.0
  158. - Added (Build)Requires for nautilus-cd-burner(-devel) >= 2.9.6
  159. * Wed Feb 23 2005 John (J5) Palmieri <johnp@redhat.com> 2.9.91-1
  160. - New upstream version (version jump resulted from sound-juicer using gnome
  161. versioning scheme)
  162. * Fri Feb 04 2005 Colin Walters <walters@redhat.com> 0.6.0-1
  163. - New upstream version
  164. - Remove obsoleted sound-juicer-idle-safety.patch
  165. - BR latest gnome-media
  166. * Fri Nov 12 2004 Warren Togami <wtogami@redhat.com> 0.5.14-5
  167. - minor spec cleanups
  168. - req cdparanoia and gstreamer-plugins
  169. * Tue Nov 09 2004 Colin Walters <walters@redhat.com> 0.5.14-4
  170. - Add sound-juicer-idle-safety.patch (bug 137847)
  171. * Wed Oct 27 2004 Colin Walters <walters@redhat.com> 0.5.14-2
  172. - Actually enable HAL
  173. - BR hal-devel
  174. * Wed Oct 13 2004 Colin Walters <walters@redhat.com> 0.5.14-1
  175. - New upstream
  176. - This release fixes corruption on re-read, upstream 153085
  177. - Remove upstreamed sound-juicer-0.5.13-prefs-crash.patch
  178. * Mon Oct 04 2004 Colin Walters <walters@redhat.com> 0.5.13-2
  179. - Apply patch to avoid prefs crash
  180. * Tue Sep 28 2004 Colin Walters <walters@redhat.com> 0.5.13-1
  181. - New upstream 0.5.13
  182. * Mon Sep 27 2004 Colin Walters <walters@redhat.com> 0.5.12.cvs20040927-1
  183. - New upstream CVS snapshot, 20040927
  184. * Mon Sep 20 2004 Colin Walters <walters@redhat.com> 0.5.12-1
  185. - New upstream version 0.5.12
  186. - Delete upstreamed patch sound-juicer-0.5.9-pref-help.patch
  187. - Delete upstreamed patch sound-juicer-0.5.10-gstreamer.patch
  188. - Delete call to autoconf
  189. * Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
  190. - rebuilt
  191. * Tue Mar 16 2004 Jeremy Katz <katzj@redhat.com> 0.5.10.1-8
  192. - rebuild for new gstreamer
  193. * Thu Mar 11 2004 Brent Fox <bfox@redhat.com> 0.5.10.1-5
  194. - rebuild
  195. * Fri Feb 27 2004 Brent Fox <bfox@redhat.com> 0.5.10.1-3
  196. - rebuild
  197. * Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
  198. - rebuilt
  199. * Thu Feb 5 2004 Brent Fox <bfox@redhat.com> 0.5.10.1-1
  200. - new version
  201. * Wed Jan 28 2004 Alexander Larsson <alexl@redhat.com> 0.5.9-4
  202. - rebuild to use new gstreamer
  203. * Fri Jan 16 2004 Brent Fox <bfox@redhat.com> 0.5.9-3
  204. - add %preun to clean up GConf entries on uninstall
  205. * Wed Jan 14 2004 Brent Fox <bfox@redhat.com> 0.5.9-2
  206. - create init patch to make help work
  207. * Tue Jan 13 2004 Brent Fox <bfox@redhat.com> 0.5.9-1
  208. - update to 0.5.9
  209. * Mon Dec 15 2003 Christopher Blizzard <blizzard@redhat.com> 0.5.8-1
  210. - Add upstream patch that fixes permissions of created directories.
  211. * Wed Dec 03 2003 Christopher Blizzard <blizzard@redhat.com> 0.5.8-0
  212. - Update to 0.5.8
  213. * Tue Oct 21 2003 Brent Fox <bfox@redhat.com> 0.5.5-1
  214. - update to 0.5.5-1
  215. * Mon Sep 1 2003 Jonathan Blandford <jrb@redhat.com>
  216. - warning dialog fix
  217. - add a quality option
  218. * Fri Aug 29 2003 Elliot Lee <sopwith@redhat.com> 0.5.2-5
  219. - scrollkeeper stuff should be removed
  220. * Wed Aug 27 2003 Brent Fox <bfox@redhat.com> 0.5.2-4
  221. - remove ExcludeArches since libmusicbrainz is building on all arches now
  222. * Wed Aug 27 2003 Brent Fox <bfox@redhat.com> 0.5.2-3
  223. - bump relnum
  224. * Wed Aug 27 2003 Brent Fox <bfox@redhat.com> 0.5.2-2
  225. - spec file cleanups
  226. - add exclude arch for ia64, x86_64, ppc64, and s390x
  227. - add %file macros
  228. - remove Requires for gstreamer-cdparanoia and gstreamer-vorbis
  229. * Tue Apr 22 2003 Frederic Crozat <fcrozat@mandrakesoft.com>
  230. - Use more macros
  231. * Sun Apr 20 2003 Ronald Bultje <rbultje@ronald.bitfreak.net>
  232. - Make spec file for sound-juicer (based on netRB spec file)