xcb-proto-vl.spec 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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.13
  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. %description
  17. XCB is a project to enable efficient language bindings to the X11 protocol.
  18. This package contains the protocol descriptions themselves. Language
  19. bindings use these protocol descriptions to generate code for marshalling
  20. the protocol.
  21. %prep
  22. %setup -q
  23. %build
  24. # Bit of a hack to get the pc file in /usr/share, no we can be noarch.
  25. %configure --libdir=%{_datadir}
  26. make %{?_smp_mflags}
  27. %install
  28. rm -rf $RPM_BUILD_ROOT
  29. make install DESTDIR=$RPM_BUILD_ROOT
  30. %clean
  31. rm -rf $RPM_BUILD_ROOT
  32. %files
  33. %defattr(-,root,root,-)
  34. %license COPYING
  35. %doc 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 Sep 05 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.13-1
  43. - new upstream release.
  44. * Fri Oct 31 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 1.11-1
  45. - new upstream release
  46. * Thu Dec 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.10-1
  47. - new upstream release
  48. * Mon Oct 08 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.8-1
  49. - new upstream release
  50. * Sat Mar 24 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.7.1-1
  51. - new upstream release
  52. * Sun Feb 19 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.7-2
  53. - rebuild with python-2.7.2
  54. * Sun Jan 29 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.7-1
  55. - new upstream release
  56. * Sun Sep 26 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.6-2
  57. - rebuild with rpm-4.8.1 for pkg-config file
  58. * Mon Mar 08 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 1.6-1
  59. - new upstream release
  60. * Wed Feb 03 2010 Shu KONNO <owa@bg.wakwak.com> 1.5-2
  61. - rebuilt with python-2.6.4
  62. * Tue Nov 17 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5-1
  63. - new upstream release
  64. * Wed Mar 18 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.4-1
  65. - new upstream release
  66. - add BR: python
  67. * Sun May 18 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1-1
  68. - new versioning policy
  69. * Sun Jan 13 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1-0vl1
  70. - initial build for Vine Linux
  71. * Mon Nov 12 2007 Adam Jackson <ajax@redhat.com> 1.1-1
  72. - xcb-proto 1.1
  73. * Fri Jun 29 2007 Adam Jackson <ajax@redhat.com> 1.0-1
  74. - Initial revision.