source: projects/specs/trunk/g/gobject-introspection/gobject-introspection-vl.spec @ 6890

Revision 6890, 6.2 KB checked in by Takemikaduchi, 12 years ago (diff)

GNOME-3.6.0 & Cinnamon-1.6.1

Line 
1%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
2%{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
3
4Name:           gobject-introspection
5Version:        1.34.0
6Release:        1%{?_dist_release}
7Summary:        Introspection system for GObject-based libraries
8
9Group:          Development/Libraries
10License:        GPLv2+, LGPLv2+, MIT
11URL:            http://live.gnome.org/GObjectIntrospection
12Source0:        ftp://ftp.gnome.org/pub/gnome/sources/%{name}/1.34/%{name}-%{version}.tar.xz
13
14BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
15
16Obsoletes:     gir-repository < 0.6.6
17
18BuildRequires:  glib2-devel
19BuildRequires:  python-devel >= 2.5
20BuildRequires:  gettext
21BuildRequires:  intltool
22BuildRequires:  gtk-doc
23BuildRequires:  flex
24BuildRequires:  bison
25BuildRequires:  libffi-devel
26BuildRequires:  mesa-libGL-devel
27BuildRequires:  cairo-devel >= 1.10.0
28BuildRequires:  libxml2-devel
29BuildRequires:  libXfixes-devel
30BuildRequires:  libX11-devel
31BuildRequires:  fontconfig-devel
32BuildRequires:  libXft-devel
33BuildRequires:  freetype2-devel
34BuildRequires:  gnome-common
35
36Vendor: Project Vine
37Distribution: Vine Linux
38Packager: Takemikaduchi
39
40%description
41GObject Introspection can scan C header and source files in order to
42generate introspection "typelib" files.  It also provides an API to examine
43typelib files, useful for creating language bindings among other
44things.
45
46%package devel
47Summary: Libraries and headers for gobject-introspection
48Summary(ja): %{name} の開発用ファイル
49Group: Development/Libraries
50Requires: %name = %{version}-%{release}
51Requires: glib2-devel
52Requires: libffi-devel
53Requires: pkgconfig
54Obsoletes: gir-repository-devel < 0.6.6
55
56%description devel
57Libraries and headers for gobject-introspection
58
59%prep
60%setup -q
61
62%build
63(if ! test -x configure; then NOCONFIGURE=1 ./autogen.sh; CONFIGFLAGS=--enable-gtk-doc; fi;
64 %configure $CONFIGFLAGS)
65make V=1 %{?_smp_mflags}
66
67%install
68rm -rf $RPM_BUILD_ROOT
69make install DESTDIR=$RPM_BUILD_ROOT
70
71# Die libtool, die.
72find $RPM_BUILD_ROOT -type f -name "*.la" -exec rm -f {} ';'
73find $RPM_BUILD_ROOT -type f -name "*.a" -exec rm -f {} ';'
74
75%clean
76rm -rf $RPM_BUILD_ROOT
77
78%post -p /sbin/ldconfig
79
80%postun -p /sbin/ldconfig
81
82%files
83%defattr(-,root,root,-)
84%doc COPYING
85
86%{_libdir}/lib*.so.*
87%dir %{_libdir}/girepository-1.0
88%{_libdir}/girepository-1.0/*.typelib
89
90%files devel
91%defattr(-,root,root)
92%{_libdir}/lib*.so
93%dir %{_libdir}/gobject-introspection
94%{_libdir}/gobject-introspection/*
95%{_libdir}/pkgconfig/*
96%{_includedir}/*
97%{_bindir}/g-ir-*
98%{_datadir}/gir-1.0
99%{_datadir}/aclocal/introspection.m4
100%{_datadir}/gobject-introspection-1.0/Makefile.introspection
101%{_datadir}/gobject-introspection-1.0/tests
102%{_datadir}/gobject-introspection-1.0/gdump.c
103%{_datadir}/gtk-doc/html/gi/*
104%{_mandir}/man1/*.gz
105
106%changelog
107* Wed Sep 26 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.34.0-1
108- new upstream release
109
110* Sat Apr 21 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.32.0-1
111- new upstream release
112- remove Source1
113
114* Fri Sep 23 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.30.0-1
115- new upstream release
116
117* Sat Sep 03 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.29.17-1
118- new upstream release
119- remove Patch0
120
121* Sun Aug 14 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.29.16-2
122- add Source1 (glib-2.0.c)
123- add Patch0 (gobject-introspection-fix-link.patch)
124
125* Sat Jul 30 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.29.16-1
126- new upstream release
127
128* Sat May 28 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.10.8-1
129- new upstream release
130
131* Thu Feb 24 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.10.3-1
132- new upstream release
133
134* Wed Feb 09 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.10.2-1
135- new upstream release
136
137* Sun Jan 23 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.10.1-1
138- new upstream release
139
140* Sat Nov 20 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.9.12-1
141- new upstream release
142
143* Sat Oct 02 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.9.8-1
144- new upstream release
145- add Obsoletes: gir-repository < 0.6.6
146- fix %files
147
148* Sat Sep 25 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.6.14-3
149- delete Patch0
150
151* Tue Sep 21 2010 IWAI, Masaharu <iwai@alib.jp> 0.6.14-2
152- build with rpm-4.8.1-1 for pkg-config file
153
154* Sun Jul 25 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.6.14-1
155- new upstream release
156
157* Thu Apr 29 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.6.10-1
158- new upstream release
159
160* Wed Mar 31 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.6.9-1
161- new upstream release
162- add Requires: libffi-devel (devel package)
163
164* Sun Mar 14 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.6.8-1
165- new upstream release
166
167* Sun Feb 28 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.6.7-1
168- new upstream release
169- add Patch0 for ppc
170
171* Wed Feb 03 2010 Shu KONNO <owa@bg.wakwak.com> 0.6.5-2
172- rebuilt with python-2.6.4
173
174* Sat Sep 26 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.6.5-1
175- initial build for Vine Linux
176
177* Fri Sep 11 2009 Colin Walters <walters@verbum.org> - 0.6.5-1
178- New upstream
179- Drop libtool dep
180
181* Fri Aug 28 2009 Colin Walters <walters@verbum.org> - 0.6.4-2
182- Add dep on libtool temporarily
183
184* Mon Aug 26 2009 Colin Walters <walters@verbum.org> - 0.6.4-1
185- New upstream 0.6.4
186- Drop upstreamed build fix patch
187
188* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.3-5
189- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
190
191* Mon Jul  6 2009 Peter Robinson <pbrobinson@gmail.com> - 0.6.3-4
192- Add upstream patch to fix a build crash
193
194* Thu Jul  2 2009 Peter Robinson <pbrobinson@gmail.com> - 0.6.3-3
195- Add -ggdb temporarily so it compiles on ppc64
196
197* Thu Jul  2 2009 Peter Robinson <pbrobinson@gmail.com> - 0.6.3-2
198- Add the new source file
199
200* Thu Jul  2 2009 Peter Robinson <pbrobinson@gmail.com> - 0.6.3-1
201- Update to 0.6.3
202
203* Mon Jun  1 2009 Dan Williams <dcbw@redhat.com> - 0.6.2-1
204- Update to 0.6.2
205
206* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.1-2
207- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
208
209* Thu Dec 11 2008 Colin Walters <walters@verbum.org> - 0.6.1-1
210- Update to 0.6.1
211
212* Fri Oct 31 2008 Colin Walters <walters@verbum.org> - 0.6.0-1
213- Create spec goo
Note: See TracBrowser for help on using the repository browser.