source: projects/specs/trunk/lib/libg/libgee/libgee-vl.spec @ 11443

Revision 11443, 6.5 KB checked in by tomop, 6 years ago (diff)

libgee-0.20.0-1

Line 
1Summary:        GObject collection library
2Summary(ja):    GObject コレクションライブラリ
3Name:           libgee
4Version:        0.20.0
5Release:        1%{?_dist_release}
6
7Group:          System Environment/Libraries
8License:        LGPLv2+
9URL:            http://live.gnome.org/Libgee
10Source0:        http://download.gnome.org/sources/%{name}/0.18/%{name}-%{version}.tar.xz
11BuildRoot:      %{_tmppath}/%{name}-%{version}-root
12
13BuildRequires:  glib2-devel >= 2.12.0
14BuildRequires:  gobject-introspection-devel
15BuildRequires:  vala
16
17Vendor:         Project Vine
18Distribution:   Vine Linux
19Packager:       Takemikaduchi
20
21
22%description
23libgee is a collection library providing GObject-based interfaces and
24classes for commonly used data structures.
25
26libgee provides the following interfaces:
27
28        * Iterable
29          * Collection
30            * List
31            * Set
32        * Iterator
33        * Map
34
35The ArrayList, HashSet, and HashMap classes provide a reasonable sample
36implementation of the List, Set, and Map interfaces. ReadOnlyCollection,
37ReadOnlyList, ReadOnlySet, and ReadOnlyMap are read-only wrapper classes
38that prevent modification of the underlying collection.
39
40libgee is written in Vala and can be used like any GObject-based C library.
41It's planned to provide bindings for further languages.
42
43
44%package        devel
45Summary:        Development files for %{name}
46Summary(ja):    %{name} の開発ファイル
47Group:          Development/Libraries
48Requires:       %{name} = %{version}-%{release}
49Requires:       gobject-introspection-devel
50# The Vala API binding is only one file; seems superfluous to have a subpackage
51Requires:       pkgconfig
52
53%description    devel
54The %{name}-devel package contains libraries and header files for
55developing applications that use %{name}.
56
57
58%package                vala
59Summary:                Vala bindings for %{name}
60Summary(ja):    %{name} の Vala バインディング
61Group:                  Development/Libraries
62Requires:               %{name} = %{version}-%{release}
63Requires:               vala
64
65%description    vala
66Vala bindings for %{name}.
67
68
69%prep
70%setup -q
71
72%build
73%configure --disable-static
74make %{?_smp_mflags}
75
76%check
77
78%install
79rm -rf $RPM_BUILD_ROOT
80make install DESTDIR=$RPM_BUILD_ROOT
81find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
82
83
84%clean
85rm -rf $RPM_BUILD_ROOT
86
87
88%post -p /sbin/ldconfig
89
90%postun -p /sbin/ldconfig
91
92
93%files
94%defattr(-,root,root,-)
95%doc AUTHORS ChangeLog COPYING MAINTAINERS NEWS README
96%{_libdir}/*.so.*
97%{_libdir}/girepository-1.0/*.typelib
98
99%files devel
100%defattr(-,root,root,-)
101%{_includedir}/*
102%{_libdir}/*.so
103%{_libdir}/pkgconfig/gee-0.8.pc
104%{_datadir}/gir-1.0/*.gir
105
106%files vala
107%defattr(-,root,root,-)
108%{_datadir}/vala/vapi/gee-0.8.vapi
109
110
111%changelog
112* Sat Jan 27 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 0.20.0-1
113- new upstream release.
114
115* Sun Mar 29 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 0.18.0-1
116- new upstream release
117
118* Sun Oct 26 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 0.16.1-1
119- new upstream release
120
121* Sat Mar 29 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 0.14.0-1
122- new upstream release
123
124* Tue Dec 31 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 0.12.0-2
125- rebuild with VineSeed environment
126
127* Sat Oct 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 0.12.0-1
128- new upstream release
129
130* Tue Aug 27 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 0.10.4-1
131- new upstream release
132
133* Sun Aug 11 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 0.10.3-1
134- new upstream release
135
136* Mon Jul 15 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 0.10.2-1
137- new upstream release
138
139* Wed Apr 17 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 0.10.1-1
140- new upstream release
141- add BuildRequires: vala
142- create %%{name}-vala subpackage
143
144* Sun Mar 10 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 0.8.5-1
145- new upstream release
146
147* Sun Mar 03 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 0.8.4-1
148- new upstream release
149
150* Wed Jan 02 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 0.8.3-1
151- new upstream release
152
153* Sun Nov 11 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 0.8.2-1
154- new upstream release
155
156* Mon Oct 15 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 0.8.1-1
157- new upstream release
158
159* Thu Sep 27 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 0.8.0-1
160- new upstream release
161
162* Sat Aug 18 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 0.6.5-1
163- new upstream release
164
165* Thu Feb 09 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.6.4-1
166- new upstream release
167
168* Sun Nov 13 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.6.3-1
169- new upstream release
170
171* Fri Sep 23 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.6.2.1-1
172- new upstream release
173
174* Sun Jan 30 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.6.1-1
175- new upstream release
176
177* Sat Oct 02 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.6.0-1
178- new upstream release
179- fix %files
180
181* Mon Sep 27 2010 Shu KONNO <owa@bg.wakwak.com> 0.5.3-2
182- rebuilt with rpm-4.8.1 for pkg-config
183
184* Fri Sep 17 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.5.3-1
185- new upstream release
186- changed BuildRequires:  glib2-devel >= 2.12.0
187
188* Fri Aug 27 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.5.2-2
189- added BuildRequires:  gobject-introspection-devel
190
191* Tue Aug 3 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.5.2-1
192- new upstream release
193
194* Sun Jun 20 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.5.1-1
195- new upstream release
196
197* Wed Dec 30 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.5.0-1
198- intial build for VineSeed
199
200* Sat Oct  3 2009 Michel Salim <salimma@fedoraproject.org> - 0.5.0-1
201- Update to 0.5.0
202
203* Thu Aug 20 2009 Michel Salim <salimma@fedoraproject.org> - 0.3.0-1
204- Update to 0.3.0
205
206* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.5-2
207- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
208
209* Mon Mar  2 2009 Michel Salim <salimma@fedoraproject.org> - 0.1.5-1
210- Update to 0.1.5
211
212* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.4-3
213- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
214
215* Sat Dec 13 2008 Michel Salim <salimma@fedoraproject.org> - 0.1.4-2
216- Run unit tests only on releases with glib2 >= 2.16
217
218* Sat Dec 13 2008 Michel Salim <salimma@fedoraproject.org> - 0.1.4-1
219- Update to 0.1.4
220
221* Mon Aug 25 2008 Michel Salim <salimma@fedoraproject.org> - 0.1.3-1
222- Update to 0.1.3
223
224* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.1.1-3
225- Autorebuild for GCC 4.3
226
227* Sun Jan 27 2008 Michel Salim <michel.sylvan@gmail.com> - 0.1.1-2
228- Move pkgconfig requirement to -devel subpackage
229
230* Sat Jan 26 2008 Michel Salim <michel.sylvan@gmail.com> - 0.1.1-1
231- Initial Fedora package
Note: See TracBrowser for help on using the repository browser.