| 1 | Name: libgee |
|---|
| 2 | Version: 0.6.4 |
|---|
| 3 | Release: 1%{?_dist_release} |
|---|
| 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 |
|---|
| 15 | |
|---|
| 16 | Vendor: Project Vine |
|---|
| 17 | Distribution: Vine Linux |
|---|
| 18 | Packager: Takemikaduchi |
|---|
| 19 | |
|---|
| 20 | |
|---|
| 21 | %description |
|---|
| 22 | libgee is a collection library providing GObject-based interfaces and |
|---|
| 23 | classes for commonly used data structures. |
|---|
| 24 | |
|---|
| 25 | libgee provides the following interfaces: |
|---|
| 26 | |
|---|
| 27 | * Iterable |
|---|
| 28 | * Collection |
|---|
| 29 | * List |
|---|
| 30 | * Set |
|---|
| 31 | * Iterator |
|---|
| 32 | * Map |
|---|
| 33 | |
|---|
| 34 | The ArrayList, HashSet, and HashMap classes provide a reasonable sample |
|---|
| 35 | implementation of the List, Set, and Map interfaces. ReadOnlyCollection, |
|---|
| 36 | ReadOnlyList, ReadOnlySet, and ReadOnlyMap are read-only wrapper classes |
|---|
| 37 | that prevent modification of the underlying collection. |
|---|
| 38 | |
|---|
| 39 | libgee is written in Vala and can be used like any GObject-based C library. |
|---|
| 40 | It's planned to provide bindings for further languages. |
|---|
| 41 | |
|---|
| 42 | |
|---|
| 43 | %package devel |
|---|
| 44 | Summary: Development files for %{name} |
|---|
| 45 | Summary(ja): %{name} の開発ファイル |
|---|
| 46 | Group: Development/Libraries |
|---|
| 47 | Requires: %{name} = %{version}-%{release} |
|---|
| 48 | Requires: gobject-introspection-devel |
|---|
| 49 | # The Vala API binding is only one file; seems superfluous to have a subpackage |
|---|
| 50 | Requires: vala, pkgconfig |
|---|
| 51 | |
|---|
| 52 | %description devel |
|---|
| 53 | The %{name}-devel package contains libraries and header files for |
|---|
| 54 | developing applications that use %{name}. |
|---|
| 55 | |
|---|
| 56 | |
|---|
| 57 | %prep |
|---|
| 58 | %setup -q |
|---|
| 59 | |
|---|
| 60 | %build |
|---|
| 61 | %configure --disable-static |
|---|
| 62 | make %{?_smp_mflags} |
|---|
| 63 | |
|---|
| 64 | %check |
|---|
| 65 | |
|---|
| 66 | %install |
|---|
| 67 | rm -rf $RPM_BUILD_ROOT |
|---|
| 68 | make install DESTDIR=$RPM_BUILD_ROOT |
|---|
| 69 | find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' |
|---|
| 70 | |
|---|
| 71 | |
|---|
| 72 | %clean |
|---|
| 73 | rm -rf $RPM_BUILD_ROOT |
|---|
| 74 | |
|---|
| 75 | |
|---|
| 76 | %post -p /sbin/ldconfig |
|---|
| 77 | |
|---|
| 78 | %postun -p /sbin/ldconfig |
|---|
| 79 | |
|---|
| 80 | |
|---|
| 81 | %files |
|---|
| 82 | %defattr(-,root,root,-) |
|---|
| 83 | %doc AUTHORS ChangeLog COPYING MAINTAINERS NEWS README |
|---|
| 84 | %{_libdir}/*.so.* |
|---|
| 85 | %{_libdir}/girepository-1.0/*.typelib |
|---|
| 86 | |
|---|
| 87 | %files devel |
|---|
| 88 | %defattr(-,root,root,-) |
|---|
| 89 | %{_includedir}/* |
|---|
| 90 | %{_libdir}/*.so |
|---|
| 91 | %{_libdir}/pkgconfig/gee-1.0.pc |
|---|
| 92 | %{_datadir}/gir-1.0/*.gir |
|---|
| 93 | %{_datadir}/vala/vapi/gee-1.0.vapi |
|---|
| 94 | |
|---|
| 95 | |
|---|
| 96 | %changelog |
|---|
| 97 | * Thu Feb 09 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.6.4-1 |
|---|
| 98 | - new upstream release |
|---|
| 99 | |
|---|
| 100 | * Sun Nov 13 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.6.3-1 |
|---|
| 101 | - new upstream release |
|---|
| 102 | |
|---|
| 103 | * Fri Sep 23 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.6.2.1-1 |
|---|
| 104 | - new upstream release |
|---|
| 105 | |
|---|
| 106 | * Sun Jan 30 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.6.1-1 |
|---|
| 107 | - new upstream release |
|---|
| 108 | |
|---|
| 109 | * Sat Oct 02 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.6.0-1 |
|---|
| 110 | - new upstream release |
|---|
| 111 | - fix %files |
|---|
| 112 | |
|---|
| 113 | * Mon Sep 27 2010 Shu KONNO <owa@bg.wakwak.com> 0.5.3-2 |
|---|
| 114 | - rebuilt with rpm-4.8.1 for pkg-config |
|---|
| 115 | |
|---|
| 116 | * Fri Sep 17 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.5.3-1 |
|---|
| 117 | - new upstream release |
|---|
| 118 | - changed BuildRequires: glib2-devel >= 2.12.0 |
|---|
| 119 | |
|---|
| 120 | * Fri Aug 27 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.5.2-2 |
|---|
| 121 | - added BuildRequires: gobject-introspection-devel |
|---|
| 122 | |
|---|
| 123 | * Tue Aug 3 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.5.2-1 |
|---|
| 124 | - new upstream release |
|---|
| 125 | |
|---|
| 126 | * Sun Jun 20 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.5.1-1 |
|---|
| 127 | - new upstream release |
|---|
| 128 | |
|---|
| 129 | * Wed Dec 30 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.5.0-1 |
|---|
| 130 | - intial build for VineSeed |
|---|
| 131 | |
|---|
| 132 | * Sat Oct 3 2009 Michel Salim <salimma@fedoraproject.org> - 0.5.0-1 |
|---|
| 133 | - Update to 0.5.0 |
|---|
| 134 | |
|---|
| 135 | * Thu Aug 20 2009 Michel Salim <salimma@fedoraproject.org> - 0.3.0-1 |
|---|
| 136 | - Update to 0.3.0 |
|---|
| 137 | |
|---|
| 138 | * Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.5-2 |
|---|
| 139 | - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild |
|---|
| 140 | |
|---|
| 141 | * Mon Mar 2 2009 Michel Salim <salimma@fedoraproject.org> - 0.1.5-1 |
|---|
| 142 | - Update to 0.1.5 |
|---|
| 143 | |
|---|
| 144 | * Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.4-3 |
|---|
| 145 | - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild |
|---|
| 146 | |
|---|
| 147 | * Sat Dec 13 2008 Michel Salim <salimma@fedoraproject.org> - 0.1.4-2 |
|---|
| 148 | - Run unit tests only on releases with glib2 >= 2.16 |
|---|
| 149 | |
|---|
| 150 | * Sat Dec 13 2008 Michel Salim <salimma@fedoraproject.org> - 0.1.4-1 |
|---|
| 151 | - Update to 0.1.4 |
|---|
| 152 | |
|---|
| 153 | * Mon Aug 25 2008 Michel Salim <salimma@fedoraproject.org> - 0.1.3-1 |
|---|
| 154 | - Update to 0.1.3 |
|---|
| 155 | |
|---|
| 156 | * Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.1.1-3 |
|---|
| 157 | - Autorebuild for GCC 4.3 |
|---|
| 158 | |
|---|
| 159 | * Sun Jan 27 2008 Michel Salim <michel.sylvan@gmail.com> - 0.1.1-2 |
|---|
| 160 | - Move pkgconfig requirement to -devel subpackage |
|---|
| 161 | |
|---|
| 162 | * Sat Jan 26 2008 Michel Salim <michel.sylvan@gmail.com> - 0.1.1-1 |
|---|
| 163 | - Initial Fedora package |
|---|