source: projects/specs/trunk/b/babl/babl-vl.spec @ 12005

Revision 12005, 4.1 KB checked in by tomop, 5 years ago (diff)

Merge branch 'tomop'

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