xcb-proto-vl.spec 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(0)")}
  2. Summary: XCB protocol descriptions
  3. Name: xcb-proto
  4. Version: 1.10
  5. Release: 1%{?_dist_release}
  6. Group: Development/Libraries
  7. License: MIT
  8. URL: http://xcb.freedesktop.org/
  9. Source0: http://xcb.freedesktop.org/dist/%{name}-%{version}.tar.bz2
  10. BuildArch: noarch
  11. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  12. BuildRequires: python
  13. Requires: pkgconfig
  14. Vendor: Project Vine
  15. Distribution: Vine Linux
  16. Packager: Takemikaduchi
  17. %description
  18. XCB is a project to enable efficient language bindings to the X11 protocol.
  19. This package contains the protocol descriptions themselves. Language
  20. bindings use these protocol descriptions to generate code for marshalling
  21. the protocol.
  22. %prep
  23. %setup -q
  24. %build
  25. # Bit of a hack to get the pc file in /usr/share, no we can be noarch.
  26. %configure --libdir=%{_datadir}
  27. make %{?_smp_mflags}
  28. %install
  29. rm -rf $RPM_BUILD_ROOT
  30. make install DESTDIR=$RPM_BUILD_ROOT
  31. %clean
  32. rm -rf $RPM_BUILD_ROOT
  33. %files
  34. %defattr(-,root,root,-)
  35. %doc COPYING NEWS README TODO doc/xml-xcb.txt
  36. %{_datadir}/pkgconfig/xcb-proto.pc
  37. %dir %{_datadir}/xcb/
  38. %{_datadir}/xcb/*.xsd
  39. %{_datadir}/xcb/*.xml
  40. %{python_sitelib}/xcbgen
  41. %changelog
  42. * Thu Dec 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.10-1
  43. - new upstream release
  44. * Mon Oct 08 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.8-1
  45. - new upstream release
  46. * Sat Mar 24 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.7.1-1
  47. - new upstream release
  48. * Sun Feb 19 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.7-2
  49. - rebuild with python-2.7.2
  50. * Sun Jan 29 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.7-1
  51. - new upstream release
  52. * Sun Sep 26 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.6-2
  53. - rebuild with rpm-4.8.1 for pkg-config file
  54. * Mon Mar 08 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 1.6-1
  55. - new upstream release
  56. * Wed Feb 03 2010 Shu KONNO <owa@bg.wakwak.com> 1.5-2
  57. - rebuilt with python-2.6.4
  58. * Tue Nov 17 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5-1
  59. - new upstream release
  60. * Wed Mar 18 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.4-1
  61. - new upstream release
  62. - add BR: python
  63. * Sun May 18 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1-1
  64. - new versioning policy
  65. * Sun Jan 13 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1-0vl1
  66. - initial build for Vine Linux
  67. * Mon Nov 12 2007 Adam Jackson <ajax@redhat.com> 1.1-1
  68. - xcb-proto 1.1
  69. * Fri Jun 29 2007 Adam Jackson <ajax@redhat.com> 1.0-1
  70. - Initial revision.