libplist-vl.spec 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. Name: libplist
  2. Summary: Library for manipulating Apple Binary and XML Property Lists
  3. Summary(ja): AppleのバイナリおよびXMLプロパティリストを操作するライブラリ
  4. Version: 1.11
  5. Release: 1%{?_dist_release}
  6. Group: System Environment/Libraries
  7. License: LGPLv2+
  8. URL: http://www.libimobiledevice.org/
  9. Source0: http://www.libimobiledevice.org/downloads/%{name}-%{version}.tar.bz2
  10. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  11. BuildRequires: libxml2-devel
  12. BuildRequires: glib2-devel
  13. BuildRequires: python-devel
  14. BuildRequires: Cython
  15. Vendor: Project Vine
  16. Distribution: Vine Linux
  17. Packager: daisuke
  18. %description
  19. libplist is a library for manipulating Apple Binary and XML Property Lists
  20. %description -l ja
  21. libplistはAppleのバイナリおよびXMLプロパティリストを操作するライブラリ
  22. %package devel
  23. Summary: Development package for libplist
  24. Group: Development/Libraries
  25. Requires: %{name} = %{version}-%{release}
  26. %description devel
  27. %{name}, development headers and libraries.
  28. %package python
  29. Summary: Python package for libplist
  30. Group: Development/Libraries
  31. Requires: %{name} = %{version}-%{release}
  32. Requires: python
  33. %description python
  34. %{name}, python libraries and support
  35. %prep
  36. %setup -q
  37. %build
  38. %configure --disable-static --with-cython
  39. make V=1
  40. %install
  41. make install DESTDIR=$RPM_BUILD_ROOT
  42. find $RPM_BUILD_ROOT -type f -name "*.la" -delete
  43. %clean
  44. rm -rf $RPM_BUILD_ROOT
  45. %post -p /sbin/ldconfig
  46. %postun -p /sbin/ldconfig
  47. %files
  48. %defattr(-,root,root,-)
  49. %doc AUTHORS COPYING.LESSER README
  50. %{_bindir}/plistutil
  51. %{_libdir}/libplist.so.*
  52. %{_libdir}/libplist++.so.*
  53. %files devel
  54. %defattr(-,root,root,-)
  55. %{_libdir}/pkgconfig/libplist.pc
  56. %{_libdir}/pkgconfig/libplist++.pc
  57. %{_libdir}/libplist.so
  58. %{_libdir}/libplist++.so
  59. %{_includedir}/plist
  60. %files python
  61. %defattr(-,root,root,-)
  62. %{python_sitearch}/plist*
  63. %changelog
  64. * Tue Jul 08 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 1.11-1
  65. - update to 1.11
  66. * Sat Jan 04 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.10-2
  67. - rebuild with VineSeed environment
  68. * Thu Mar 21 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.10-1
  69. - new upstream release
  70. * Sun Apr 15 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.8-1
  71. - new upstream release
  72. - add BuildRequires: Cython
  73. * Thu Feb 16 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.4-2
  74. - rebuild with python-2.7.2
  75. * Fri Apr 15 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 1.4-1
  76. - new upstream release
  77. * Tue Sep 21 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.3-2
  78. - rebuilt with rpm-4.8.1 for pkg-config
  79. * Thu Apr 29 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 1.3-1
  80. - initial build for Vine Linux
  81. * Tue Apr 20 2010 Peter Robinson <pbrobinson@gmail.com> 1.3-1
  82. - Upstream stable 1.3 release
  83. * Sat Jan 23 2010 Peter Robinson <pbrobinson@gmail.com> 1.2-1
  84. - Upstream stable 1.2 release
  85. * Sat Jan 9 2010 Peter Robinson <pbrobinson@gmail.com> 1.0.0-5
  86. - Updated to the new python sysarch spec file reqs
  87. * Mon Dec 7 2009 Peter Robinson <pbrobinson@gmail.com> 1.0.0-4
  88. - and once more with feeling
  89. * Mon Dec 7 2009 Peter Robinson <pbrobinson@gmail.com> 1.0.0-3
  90. - Further updated fixes for the spec file
  91. * Mon Dec 7 2009 Peter Robinson <pbrobinson@gmail.com> 1.0.0-2
  92. - Drop upstreamed patch
  93. * Mon Dec 7 2009 Peter Robinson <pbrobinson@gmail.com> 1.0.0-1
  94. - Upstream stable 1.0.0 release
  95. * Thu Oct 29 2009 Peter Robinson <pbrobinson@gmail.com> 0.16-3
  96. - Actually add patch for python
  97. * Thu Oct 29 2009 Peter Robinson <pbrobinson@gmail.com> 0.16-2
  98. - Add python patch and c++ bindings
  99. * Thu Oct 29 2009 Peter Robinson <pbrobinson@gmail.com> 0.16-1
  100. - New upstream 0.16 release
  101. * Tue Oct 20 2009 Peter Robinson <pbrobinson@gmail.com> 0.15-1
  102. - New upstream 0.15 release
  103. * Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.13-2
  104. - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
  105. * Mon May 11 2009 Peter Robinson <pbrobinson@gmail.com> 0.13-1
  106. - New upstream 0.13 release
  107. * Mon May 11 2009 Peter Robinson <pbrobinson@gmail.com> 0.12-2
  108. - Further review updates
  109. * Sun May 10 2009 Peter Robinson <pbrobinson@gmail.com> 0.12-1
  110. - Update to official tarball release, some review fixes
  111. * Sun May 10 2009 Peter Robinson <pbrobinson@gmail.com> 0.12.0-0.1
  112. - Initial package