babl-vl.spec 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. Summary: A dynamic, any to any, pixel format conversion library
  2. Name: babl
  3. Version: 0.1.78
  4. Release: 1%{?_dist_release}
  5. Group: system
  6. Vendor: Project Vine
  7. Distribution: Vine Linux
  8. # The gggl codes contained in this package are under the GPL, with exceptions allowing their use under libraries covered under the LGPL
  9. License: LGPLv3+ and GPLv3+
  10. URL: http://www.gegl.org/babl/
  11. Source0: https://download.gimp.org/pub/babl/0.1/%{name}-%{version}.tar.xz
  12. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  13. BuildRequires: w3m
  14. BuildRequires: meson
  15. BuildRequires: gobject-introspection-devel
  16. BuildRequires: vala-devel
  17. BuildRequires: lcms2-devel
  18. %description
  19. Babl is a dynamic, any to any, pixel format conversion library. It
  20. provides conversions between the myriad of buffer types images can be
  21. stored in. Babl doesn't only help with existing pixel formats, but also
  22. facilitates creation of new and uncommon ones.
  23. #'
  24. %package devel
  25. Summary: Headers for developing programs that will use %{name}
  26. Group: programming
  27. Requires: %{name} = %{version}-%{release}
  28. Requires: pkgconfig
  29. %description devel
  30. This package contains the libraries and header files needed for
  31. developing with %{name}.
  32. %prep
  33. %setup -q
  34. %build
  35. %meson \
  36. -Dwith-docs=false
  37. %meson_build
  38. %install
  39. %{__rm} -rf %{buildroot}
  40. %meson_install
  41. %{__mkdir_p} babl_docs babl_docs/html
  42. %{__cp} -pr docs/graphics docs/*.html docs/babl.css babl_docs/html
  43. %{__rm} -rf babl_docs/html/graphics/Makefile*
  44. #find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} \;
  45. %if 0
  46. %check
  47. pushd tests
  48. %{__rm} -f concurrency-stress-test
  49. cat << EOF > concurrency-stress-test
  50. #!/bin/sh
  51. echo Skipping test concurrency-stress-test
  52. EOF
  53. chmod +x concurrency-stress-test
  54. popd
  55. make check
  56. %endif
  57. %clean
  58. %{__rm} -rf %{buildroot}
  59. %post -p %{_syssbindir}/ldconfig
  60. %postun -p %{_syssbindir}/ldconfig
  61. %files
  62. %defattr(-, root, root, -)
  63. %license COPYING
  64. %doc AUTHORS README NEWS
  65. %{_libdir}/*.so.*
  66. %{_libdir}/babl-0.1/
  67. %dir %{_libdir}/girepository-1.0
  68. %{_libdir}/girepository-1.0/Babl-0.1.typelib
  69. %files devel
  70. %defattr(-, root, root, -)
  71. %doc babl_docs/html
  72. %{_includedir}/babl-0.1/babl/
  73. %{_libdir}/*.so
  74. %{_libdir}/pkgconfig/%{name}.pc
  75. %dir %{_datadir}/gir-1.0/
  76. %{_datadir}/gir-1.0/Babl-0.1.gir
  77. %dir %{_datadir}/vala
  78. %dir %{_datadir}/vala/vapi
  79. %{_datadir}/vala/vapi/babl-*
  80. %changelog
  81. * Fri Sep 04 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 0.1.78-1
  82. - new upstream release.
  83. * Fri Apr 17 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 0.1.74-1
  84. - new upstream release.
  85. * Fri Oct 25 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 0.1.72-1
  86. - new upstream release.
  87. * Mon Dec 31 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 0.1.60-1
  88. - new upstream release.
  89. * Tue Oct 02 2018 Toshiaki Ara <ara_t@384.jp> 0.1.56-1
  90. - new upstream release
  91. * Mon Jul 18 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.1.18-1
  92. - new upstream release
  93. * Sun May 10 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.1.10-3
  94. - remove *.la files
  95. * Sat Jul 12 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.1.10-2
  96. - rebuild with VineSeed environment
  97. - fix %%check (based on fedora package)
  98. * Sun May 06 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.1.10-1
  99. - new upstream release
  100. - remove BuildRequires: inkscape, ruby
  101. * Thu Apr 28 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.1.4-1
  102. - new upstream release
  103. * Sun Apr 17 2011 Shu KONNO <owa@bg.wakwak.com> 0.1.2-2
  104. - rebuilt with rpm-4.8.1-3
  105. * Sun Apr 18 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.1.2-1
  106. - new upstream release
  107. * Mon Oct 06 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.22-1
  108. - initial build for Vine Linux
  109. * Thu Jul 10 2008 Deji Akingunola <dakingun@gmail.com> - 0.0.22-1
  110. - Update to latest release
  111. * Thu Feb 28 2008 Deji Akingunola <dakingun@gmail.com> - 0.0.20-1
  112. - New release
  113. * Thu Jan 17 2008 Deji Akingunola <dakingun@gmail.com> - 0.0.18-2
  114. - Apply patch to fix extensions loading on 64bit systems
  115. * Thu Jan 10 2008 Deji Akingunola <dakingun@gmail.com> - 0.0.18-1
  116. - Update to 0.0.18
  117. * Mon Nov 26 2007 Deji Akingunola <dakingun@gmail.com> - 0.0.16-1
  118. - Update to 0.0.16 release
  119. - License change from GPLv2+ to GPLv3+
  120. * Mon Oct 22 2007 Deji Akingunola <dakingun@gmail.com> - 0.0.15-0.5.20071011svn
  121. - Update the License field
  122. * Fri Oct 12 2007 Deji Akingunola <dakingun@gmail.com> - 0.0.15-0.4.20071011svn
  123. - Package the extension libraries in the main package
  124. - Run 'make check'
  125. * Fri Oct 12 2007 Deji Akingunola <dakingun@gmail.com> - 0.0.15-0.3.20071011svn
  126. - Ensure timestamps are kept during install
  127. * Fri Oct 12 2007 Deji Akingunola <dakingun@gmail.com> - 0.0.15-0.2.20071011svn
  128. - Remove the use of inexistent source url (Package reviews)
  129. - Package the html docs
  130. * Thu Oct 11 2007 Deji Akingunola <dakingun@gmail.com> - 0.0.15-0.1.20071011svn
  131. - Initial packaging for Fedora