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