source: projects/specs/trunk/lib/libp/libpeas/libpeas-vl.spec @ 8119

Revision 8119, 6.8 KB checked in by Takemikaduchi, 10 years ago (diff)

rebuild or new upstream release

Line 
1Name:           libpeas
2Version:        1.8.1
3Release:        2%{?_dist_release}
4Summary:        Plug-ins implementation convenience library
5
6Group:          System Environment/Libraries
7License:        LGPLv2+
8URL:            http://ftp.acc.umu.se/pub/GNOME/sources/libpeas/
9Source0:        http://ftp.acc.umu.se/pub/GNOME/sources/%{name}/1.8/%{name}-%{version}.tar.xz
10
11Patch0:         libpeas-1.8.1-gjs-1.36.x.patch
12Patch1:         libpeas-1.8.1-gjs-plugin-loader.patch
13
14BuildRequires:  gtk3-devel >= 2.99.3
15BuildRequires:  pygobject3-devel
16BuildRequires:  python-devel
17BuildRequires:  gjs-devel
18BuildRequires:  seed-devel
19BuildRequires:  gobject-introspection-devel
20BuildRequires:  intltool
21BuildRequires:  libtool
22
23# For the girepository-1.0 directory
24Requires:       gobject-introspection
25
26Vendor: Project Vine
27Distribution: Vine Linux
28
29%description
30libpeas is a convenience library making adding plug-ins support
31to GTK+ and glib-based applications.
32
33%package devel
34Summary:        Development files for libpeas
35Group:          Development/Libraries
36Requires:       %{name} = %{version}-%{release}
37Requires:       gtk-doc
38Requires:       gobject-introspection-devel
39
40%description devel
41This package contains development libraries and header files
42that are needed to write applications that use libpeas.
43
44%prep
45%setup -q
46%patch0 -p1
47%patch1 -p1
48
49%build
50%configure --disable-static
51
52# FIXME rpath disabling is disabled because it breaks the creation of the GIR files
53# Remove rpath as per https://fedoraproject.org/wiki/Packaging/Guidelines#Beware_of_Rpath
54#sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
55#sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
56
57make %{?_smp_mflags}
58
59%install
60make install DESTDIR=$RPM_BUILD_ROOT
61
62rm $RPM_BUILD_ROOT/%{_libdir}/lib*.la   \
63        $RPM_BUILD_ROOT/%{_libdir}/libpeas-1.0/loaders/lib*.la
64
65%find_lang libpeas
66
67%post
68/sbin/ldconfig
69touch --no-create %{_datadir}/icons/hicolor >&/dev/null || :
70
71%postun
72/sbin/ldconfig
73if [ $1 -eq 0 ]; then
74  touch --no-create %{_datadir}/icons/hicolor >&/dev/null || :
75  gtk-update-icon-cache %{_datadir}/icons/hicolor >&/dev/null || :
76fi
77
78%posttrans
79gtk-update-icon-cache %{_datadir}/icons/hicolor >&/dev/null || :
80
81%files -f libpeas.lang
82%defattr(-,root,root,-)
83%doc AUTHORS
84%{_libdir}/libpeas*-1.0.so.*
85%dir %{_libdir}/libpeas-1.0/
86%dir %{_libdir}/libpeas-1.0/loaders
87%{_libdir}/libpeas-1.0/loaders/libgjsloader.so
88%{_libdir}/libpeas-1.0/loaders/libpythonloader.so
89%{_libdir}/libpeas-1.0/loaders/libseedloader.so
90%{_libdir}/girepository-1.0/*.typelib
91%{_datadir}/icons/hicolor/*/actions/libpeas-plugin.*
92
93%files devel
94%defattr(-,root,root,-)
95%{_bindir}/peas-demo
96%{_includedir}/libpeas-1.0/
97%{_libdir}/peas-demo/
98%{_datadir}/gtk-doc/html/libpeas/
99%{_libdir}/libpeas*-1.0.so
100%{_datadir}/gir-1.0/*.gir
101%{_libdir}/pkgconfig/*.pc
102
103%changelog
104* Sat Jan 04 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.8.1-2
105- rebuild with VineSeed environment
106- add Patch0 (libpeas-1.8.1-gjs-1.36.x.patch)
107- add Patch1 (libpeas-1.8.1-gjs-plugin-loader.patch)
108
109* Mon Jul 15 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.8.1-1
110- new upstream release
111
112* Sun Apr 21 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.8.0-1
113- new upstream release
114
115* Thu Jan 03 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.6.2-1
116- new upstream release
117
118* Tue Oct 16 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.6.1-1
119- new upstream release
120
121* Sat Sep 29 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.6.0-1
122- new upstream release
123
124* Sun Apr 08 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.4.0-1
125- new upstream release
126
127* Wed Feb 15 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.2.0-2
128- rebuild with python-2.7.2
129
130* Thu Sep 29 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.2.0-1
131- new upstream release
132
133* Fri Sep 23 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.1.4-1
134- new upstream release
135- add BuildRequires: gjs-devel
136
137* Sat Sep 03 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.1.3-1
138- new upstream release
139- change BuildRequires: pygobject3-devel instead of pygobject-devel
140
141* Mon Aug 15 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.1.1-1
142- initial build for Vine Linux
143
144
145* Mon Apr  4 2011 Christopher Aillon <caillon@redhat.com> 1.0.0-1
146- Update to 1.0.0
147
148* Sun Mar 27 2011 Bastien Nocera <bnocera@redhat.com> 0.9.0-1
149- Update to 0.9.0
150
151* Thu Mar 10 2011 Bastien Nocera <bnocera@redhat.com> 0.7.4-1
152- Update to 0.7.4
153
154* Tue Feb 22 2011 Matthias Clasen <mclasen@redhat.com> 0.7.3-1
155- Update to 0.7.3
156- Drop unneeded dependencies
157
158* Mon Feb 21 2011 Bastien Nocera <bnocera@redhat.com> 0.7.2-1
159- Update to 0.7.2
160
161* Thu Feb 10 2011 Matthias Clasen <mclasen@redhat.com> 0.7.1-7
162- Rebuild
163
164* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.1-6
165- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
166
167* Wed Feb  2 2011 Matthias Clasen <mclasen@redhat.com> 0.7.1-5
168- Rebuild against newer gtk
169
170* Fri Jan 28 2011 Bastien Nocera <bnocera@redhat.com> 0.7.1-4
171- Update to real 0.7.1 release
172
173* Fri Jan  7 2011 Matthias Clasen <mclasen@redhat.com> - 0.7.1-3.gita2f98e
174- Rebuild against newer gtk
175
176* Fri Dec  3 2010 Matthias Clasen <mclasen@redhat.com> - 0.7.1-2.gita2f98e
177- Rebuild against newer gtk
178
179* Thu Nov 11 2010 Dan Williams <dcbw@redhat.com> - 0.7.1-1.gita2f98e
180- Update to 0.7.1
181- Fix some crashes with missing introspection data
182
183* Mon Nov  1 2010 Matthias Clasen <mclasen@redhat.com> 0.7.0-2
184- Rebuild against newer gtk3
185
186* Mon Oct 04 2010 Bastien Nocera <bnocera@redhat.com> 0.7.0-1
187- Update to 0.7.0
188
189* Tue Sep 21 2010 Matthias Clasen <mclasen@redhat.com> - 0.5.5-2
190- Rebuild against newer gobject-introspection
191
192* Thu Aug 19 2010 Matthias Clasen <mclasen@redhat.com> - 0.5.5-1
193- Update to 0.5.5
194
195* Thu Aug  5 2010 Matthias Clasen <mclasen@redhat.com> - 0.5.4-1
196- Update to 0.5.4
197
198* Tue Jul 27 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> 0.5.3-2
199- Rebuild against python 2.7
200
201* Fri Jul 23 2010 Bastien Nocera <bnocera@redhat.com> 0.5.3-1
202- Update to 0.5.3
203
204* Thu Jul 22 2010 Bastien Nocera <bnocera@redhat.com> 0.5.2-5
205- Fix post scriplet (#615021)
206
207* Thu Jul 15 2010 Colin Walters <walters@verbum.org> - 0.5.2-4
208- Rebuild with new gobject-introspection
209
210* Tue Jul 13 2010 Matthias Clasen <mclasen@redhat.com> 0.5.2-3
211- Rebuild
212
213* Mon Jul 12 2010 Colin Walters <walters@verbum.org> - 0.5.2-2
214- Rebuild against new gobject-introspection
215
216* Mon Jul 12 2010 Matthias Clasen <mclasen@redhat.com> 0.5.2-1
217- Update to 0.5.2
218
219* Thu Jul  8 2010 Matthias Clasen <mclasen@redhat.com> 0.5.1-2
220- Rebuild
221
222* Mon Jun 28 2010 Bastien Nocera <bnocera@redhat.com> 0.5.1-1
223- Update to 0.5.1
224
225* Thu Jun 24 2010 Bastien Nocera <bnocera@redhat.com> 0.5.0-4
226- Document rpath work-arounds disabling, and remove verbose build
227
228* Fri Jun 18 2010 Bastien Nocera <bnocera@redhat.com> 0.5.0-3
229- Fix a number of comments from review request
230
231* Mon Jun 14 2010 Bastien Nocera <bnocera@redhat.com> 0.5.0-2
232- Call ldconfig when installing the package
233
234* Mon Jun 14 2010 Bastien Nocera <bnocera@redhat.com> 0.5.0-1
235- First package
236
Note: See TracBrowser for help on using the repository browser.