id3lib-vl.spec 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. Summary: A software library for manipulating ID3v1 and ID3v2 tags
  2. Summary(ja): ID3v1/v2 タグを扱うためのライブラリ
  3. Name: id3lib
  4. Version: 3.8.3
  5. Release: 1%{?_dist_release}
  6. License: LGPL
  7. Source: http://prdownloads.sourceforge.net/id3lib/id3lib-%{version}.tar.gz
  8. Patch0: http://prdownloads.sourceforge.net/easytag/patch_id3lib_3.8.3_UTF16_writing_bug.diff
  9. Patch1: id3lib-3.8.3-fix-id3v2-latest.patch
  10. Patch2: id3lib-3.8.3-mkstemp.patch
  11. URL: http://id3lib.sourceforge.net/
  12. Group: System Environment/Libraries
  13. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  14. BuildRequires: zlib-devel
  15. Vendor: Project Vine
  16. Distribution: Vine Linux
  17. %description
  18. This package provides a software library for manipulating ID3v1 and ID3v2 tags.
  19. It provides a convenient interface for software developers to include
  20. standards-compliant ID3v1/2 tagging capabilities in their applications.
  21. Features include identification of valid tags, automatic size conversions,
  22. (re)synchronisation of tag frames, seamless tag (de)compression, and optional
  23. padding facilities. Additionally, it can tell mp3 header info, like bitrate etc.
  24. %description -l ja
  25. ID3v1/v2 タグを扱うためのライブラリです。
  26. 標準に従った ID3v1/v2 タグ機能をアプリケーションに含めるための便利なイン
  27. ターフェイスを提供します。
  28. 含まれている機能には、有効なタグの識別、自動的なサイズ変換、タグフレーム
  29. の (再) 同期化、シームレスなタグの圧縮 (及び伸長) などがあります。
  30. %package devel
  31. Summary: Headers for developing programs that will use id3lib
  32. Summary(ja): id3lib を使うソフトウェアの開発用ヘッダーファイル
  33. Group: Development/Libraries
  34. Requires: %{name} = %{version}
  35. Requires: zlib-devel
  36. %description devel
  37. This package contains the headers that programmers will need to develop
  38. applications which will use id3lib, the software library for ID3v1 and ID3v2
  39. tag manipulation.
  40. %description -l ja devel
  41. このパッケージには id3lib を使うアプリケーションの開発に必要なヘッダー
  42. ファイルが含まれています。
  43. %prep
  44. %setup -q
  45. %patch0 -p1 -b .UTF-16
  46. %patch1 -p1 -b .id3v2-latest
  47. %patch2 -p1 -b .mkstemp
  48. %build
  49. %configure --enable-debug=no --enable-static=no
  50. %__make
  51. ( cd doc ; %__make index.html )
  52. %install
  53. %__rm -rf $RPM_BUILD_ROOT
  54. %makeinstall
  55. rm -f $RPM_BUILD_ROOT%{_libdir}/lib*.la
  56. %clean
  57. %__rm -rf $RPM_BUILD_ROOT
  58. %post -p /sbin/ldconfig
  59. %postun -p /sbin/ldconfig
  60. %files
  61. %defattr(-,root,root)
  62. %doc AUTHORS COPYING ChangeLog HISTORY NEWS README THANKS TODO
  63. %doc doc/*.html doc/*.css doc/*.gif doc/*.png doc/*.txt
  64. %{_bindir}/id3*
  65. %{_libdir}/*.so.*
  66. %files devel
  67. %defattr(-,root,root)
  68. %{_includedir}/id3*.h
  69. %{_includedir}/id3
  70. #{_libdir}/*.la
  71. #{_libdir}/*.a
  72. %{_libdir}/*.so
  73. %changelog
  74. * Sun Jun 15 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.8.3-1
  75. - applied new versioning policy
  76. - removed lib*.la files from devel package
  77. - spec in UTF-8
  78. * Wed Sep 05 2007 KAZUKI SHIMURA <ksh753@y5.dion.ne.jp> 3.8.3-0vl8
  79. - [SECURITY] add mktemp.patch (patch2)
  80. - fix insecure temporary file creation vulnerability (CVE-2007-4460)
  81. * Fri May 25 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 3.8.3-0vl7
  82. - rebuild with new environment/toolchain
  83. * Tue Oct 24 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.8.3-0vl6
  84. - rebuild
  85. * Tue Oct 24 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.8.3-0vl5
  86. - add UTF16_writing_bug.diff (patch0) to fix UTF-16 writing <Tracker:1016290>
  87. - add fix-id3v2-latest.patch (patch1) to read ID3v2.4.0 tags <Tracker:1500788>
  88. - add --enable-static=no option to %%configure
  89. * Thu Feb 02 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.8.3-0vl4
  90. - rebuild
  91. * Thu Nov 04 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.8.3-0vl3
  92. - add Requires: zlib-devel (id3lib-devel)
  93. * Tue Aug 03 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.8.3-0vl2
  94. - add BuildRequires: zlib-devel
  95. - add Summary, Description in Japanese
  96. * Thu Apr 08 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.8.3-0vl1
  97. - first build for Vine Linux
  98. * Sat Sep 08 2001 Cedric Tefft <cedric@earthling.net> 3.8.0pre2
  99. - Version 3.8.0pre2
  100. * Mon Nov 20 2000 Scott Thomas Haug <scott@id3.org> 3.8.0pre1-1
  101. - Version 3.8.0pre1
  102. * Thu Sep 14 2000 Scott Thomas Haug <scott@id3.org> 3.7.13-1
  103. - Version 3.7.13
  104. * Sat Aug 26 2000 Scott Thomas Haug <scott@id3.org> 3.7.12-2
  105. - Removed -mpreferred-stack-boundary option from RPM_OPT_FLAGS for RedHat 6.2
  106. * Fri Jul 07 2000 Scott Thomas Haug <scott@id3.org> 3.7.12-1
  107. - Version 3.7.12
  108. * Fri Jul 05 2000 Scott Thomas Haug <scott@id3.org> 3.7.11-1
  109. - Version 3.7.11
  110. * Fri Jun 23 2000 Scott Thomas Haug <scott@id3.org> 3.7.10-1
  111. - Version 3.7.10
  112. * Wed May 24 2000 Scott Thomas Haug <scott@id3.org> 3.7.9-1
  113. - Version 3.7.9
  114. * Wed May 10 2000 Scott Thomas Haug <scott@id3.org> 3.7.8-1
  115. - Version 3.7.8
  116. * Wed May 10 2000 Scott Thomas Haug <scott@id3.org> 3.7.7-1
  117. - Version 3.7.7
  118. * Wed May 03 2000 Scott Thomas Haug <scott@id3.org> 3.7.6-1
  119. - Version 3.7.6
  120. * Fri Apr 28 2000 Scott Thomas Haug <scott@id3.org> 3.7.5-1
  121. - Version 3.7.5
  122. * Wed Apr 26 2000 Scott Thomas Haug <scott@id3.org> 3.7.4-1
  123. - Version 3.7.4
  124. * Mon Apr 24 2000 Scott Thomas Haug <scott@id3.org> 3.7.3-1
  125. - Version 3.7.3
  126. - Added explicit RPM_OPT_FLAGS def based on arch, since -fno-exceptions and
  127. -fno-rtti are part of the default flags in rpmrc and we need both exceptions
  128. and rtti (exceptions uses rtti)
  129. * Fri Apr 21 2000 Scott Thomas Haug <scott@id3.org> 3.7.2-1
  130. - Version 3.7.2
  131. - More conditional blocks for noarch
  132. - More thorough cleaning of files for documentation
  133. - Updated html directory
  134. * Thu Apr 20 2000 Scott Thomas Haug <scott@id3.org> 3.7.1-2
  135. - Fixed date of changelog entry for 3.7.1-1
  136. - Added conditional blocks so docs only get built for noarch target
  137. * Wed Apr 19 2000 Scott Thomas Haug <scott@id3.org> 3.7.1-1
  138. - Version 3.7.1
  139. - Removed zlib-devel requirement from devel
  140. - Added doc package to distribute documentation
  141. - Added examples package to distribute binary examples (id3tag, id3info, ...)
  142. - Moved doc/ and examples/ source files from devel to doc package
  143. * Mon Apr 17 2000 Scott Thomas Haug <scott@id3.org> 3.7.0-1
  144. - First (s)rpm build