2008-01-30 04:19:14 +00:00
|
|
|
Name: libgee
|
2014-06-24 13:23:19 +00:00
|
|
|
Version: 0.15.3
|
2014-08-17 03:27:23 +00:00
|
|
|
Release: 3%{?dist}
|
2008-01-30 04:19:14 +00:00
|
|
|
Summary: GObject collection library
|
|
|
|
|
|
|
|
Group: System Environment/Libraries
|
|
|
|
License: LGPLv2+
|
|
|
|
URL: http://live.gnome.org/Libgee
|
2012-10-16 09:13:18 +00:00
|
|
|
#VCS: git:git://git.gnome.org/libgee
|
2014-06-24 13:23:19 +00:00
|
|
|
Source0: http://download.gnome.org/sources/libgee/0.15/libgee-%{version}.tar.xz
|
2008-01-30 04:19:14 +00:00
|
|
|
|
|
|
|
BuildRequires: glib2-devel
|
2012-10-16 09:13:18 +00:00
|
|
|
BuildRequires: gobject-introspection-devel
|
2010-12-12 23:10:45 +00:00
|
|
|
# Bootstrap requirements
|
|
|
|
BuildRequires: autoconf automake libtool
|
2014-02-11 09:42:03 +00:00
|
|
|
BuildRequires: vala >= 0.23.2
|
2008-01-30 04:19:14 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
libgee is a collection library providing GObject-based interfaces and
|
|
|
|
classes for commonly used data structures.
|
|
|
|
|
2013-03-26 11:54:22 +00:00
|
|
|
* Traversable
|
|
|
|
o Iterable
|
|
|
|
+ Collection
|
|
|
|
- List
|
|
|
|
* BidirList
|
|
|
|
- Set
|
|
|
|
* SortedSet
|
|
|
|
o BidirSortedSet
|
|
|
|
- MultiSet
|
|
|
|
- Queue
|
|
|
|
* Deque
|
|
|
|
+ Map
|
|
|
|
- SortedMap
|
|
|
|
* BidirSortedMap
|
|
|
|
o Iterator
|
|
|
|
+ BidirIterator
|
|
|
|
- BidirListIterator
|
|
|
|
+ ListIterator
|
|
|
|
- BidirListIterator
|
2010-09-17 10:40:33 +00:00
|
|
|
* MultiMap
|
|
|
|
|
2013-03-26 11:54:22 +00:00
|
|
|
The ArrayList, ArrauQueue, ConcurrentLinkedList, ConcurrentSet, HashSet,
|
|
|
|
HashMap, HashMultiSet, HashMultiMap, LinkedList, PriorityQueue, TreeSet,
|
|
|
|
TreeMap, TreeMultiSet, and TreeMultiMap classes provide a reasonable sample
|
|
|
|
implementation of those interfaces. In addition, a set of abstract
|
|
|
|
classes are provided to ease the implementation of new collections.
|
2010-09-17 10:40:33 +00:00
|
|
|
|
2013-04-15 03:10:44 +00:00
|
|
|
Around that, the API provide means to retrieve read-only views,
|
|
|
|
efficient sort algorithms, simple, bi-directional or index-based mutable
|
2013-03-26 11:54:22 +00:00
|
|
|
iterators depending on the collection type.
|
2008-01-30 04:19:14 +00:00
|
|
|
|
2013-04-15 03:10:44 +00:00
|
|
|
Libgee is written in Vala and can be used like any GObject-based C
|
2013-03-26 11:54:22 +00:00
|
|
|
library. It's planned to provide bindings for further languages.
|
2008-01-30 04:19:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Development files for %{name}
|
|
|
|
Group: Development/Libraries
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
2011-09-01 15:34:40 +00:00
|
|
|
Requires: pkgconfig
|
2008-01-30 04:19:14 +00:00
|
|
|
|
|
|
|
%description devel
|
|
|
|
The %{name}-devel package contains libraries and header files for
|
|
|
|
developing applications that use %{name}.
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
2011-09-01 16:07:20 +00:00
|
|
|
# ChangeLog not UTF8
|
|
|
|
iconv -f iso88591 -t utf8 ChangeLog -o ChangeLog.new
|
|
|
|
touch -r ChangeLog ChangeLog.new
|
|
|
|
mv ChangeLog.new ChangeLog
|
2008-01-30 04:19:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
%build
|
2010-12-12 23:10:45 +00:00
|
|
|
(if ! test -x configure; then
|
|
|
|
NOCONFIGURE=1 ./autogen.sh;
|
|
|
|
CONFIGFLAGS=--enable-gtk-doc;
|
|
|
|
fi;
|
|
|
|
%configure --disable-static $CONFIGFLAGS
|
|
|
|
)
|
2008-01-30 04:19:14 +00:00
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
|
|
|
2008-08-25 05:58:36 +00:00
|
|
|
%check
|
|
|
|
make check
|
|
|
|
|
|
|
|
|
2008-01-30 04:19:14 +00:00
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
make install DESTDIR=$RPM_BUILD_ROOT
|
|
|
|
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
|
|
|
|
|
|
|
|
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
%doc AUTHORS ChangeLog COPYING MAINTAINERS NEWS README
|
|
|
|
%{_libdir}/*.so.*
|
2011-09-01 15:34:40 +00:00
|
|
|
%dir %{_libdir}/girepository-1.0
|
2011-09-01 16:07:20 +00:00
|
|
|
%{_libdir}/girepository-1.0/Gee-0.8.typelib
|
2008-01-30 04:19:14 +00:00
|
|
|
|
|
|
|
%files devel
|
|
|
|
%{_includedir}/*
|
|
|
|
%{_libdir}/*.so
|
2011-09-01 16:07:20 +00:00
|
|
|
%{_libdir}/pkgconfig/gee-0.8.pc
|
2011-09-01 15:34:40 +00:00
|
|
|
%dir %{_datadir}/gir-1.0
|
2011-09-01 16:07:20 +00:00
|
|
|
%{_datadir}/gir-1.0/Gee-0.8.gir
|
2011-09-01 15:34:40 +00:00
|
|
|
%dir %{_datadir}/vala
|
|
|
|
%dir %{_datadir}/vala/vapi
|
2011-09-01 16:07:20 +00:00
|
|
|
%{_datadir}/vala/vapi/gee-0.8.vapi
|
2008-01-30 04:19:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2014-08-17 03:27:23 +00:00
|
|
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.15.3-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-07-22 17:36:37 +00:00
|
|
|
* Tue Jul 22 2014 Kalev Lember <kalevlember@gmail.com> - 0.15.3-2
|
|
|
|
- Rebuilt for gobject-introspection 1.41.4
|
|
|
|
|
2014-06-24 13:23:19 +00:00
|
|
|
* Tue Jun 24 2014 Richard Hughes <rhughes@redhat.com> - 0.15.3-1
|
|
|
|
- Update to 0.15.3
|
|
|
|
|
2014-06-07 03:29:13 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.14.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-03-24 19:56:36 +00:00
|
|
|
* Mon Mar 24 2014 Richard Hughes <rhughes@redhat.com> - 0.14.0-1
|
|
|
|
- Update to 0.14.0
|
|
|
|
|
2014-03-04 16:12:45 +00:00
|
|
|
* Tue Mar 04 2014 Richard Hughes <rhughes@redhat.com> - 0.13.91-1
|
|
|
|
- Update to 0.13.91
|
|
|
|
|
2014-02-18 13:44:19 +00:00
|
|
|
* Tue Feb 18 2014 Richard Hughes <rhughes@redhat.com> - 0.13.90-1
|
|
|
|
- Update to 0.13.90
|
|
|
|
|
2014-02-11 09:42:03 +00:00
|
|
|
* Tue Feb 11 2014 Michel Salim <salimma@fedoraproject.org> - 0.13.5.1-1
|
|
|
|
- Update to 0.13.5.1:
|
|
|
|
- minimum Vala version is now 0.23.2
|
|
|
|
- adjusted test case to remove workaround for older Vala versions
|
|
|
|
|
2014-02-04 13:06:04 +00:00
|
|
|
* Tue Feb 04 2014 Richard Hughes <rhughes@redhat.com> - 0.13.5-1
|
|
|
|
- Update to 0.13.5
|
|
|
|
|
2013-12-17 12:05:41 +00:00
|
|
|
* Tue Dec 17 2013 Richard Hughes <rhughes@redhat.com> - 0.13.4-1
|
|
|
|
- Update to 0.13.4
|
|
|
|
|
2013-09-25 00:16:25 +00:00
|
|
|
* Wed Sep 25 2013 Kalev Lember <kalevlember@gmail.com> - 0.12.0-1
|
|
|
|
- Update to 0.12.0
|
|
|
|
|
2013-09-17 23:23:39 +00:00
|
|
|
* Wed Sep 18 2013 Kalev Lember <kalevlember@gmail.com> - 0.11.92-1
|
|
|
|
- Update to 0.11.92
|
|
|
|
|
2013-09-03 22:33:40 +00:00
|
|
|
* Tue Sep 03 2013 Kalev Lember <kalevlember@gmail.com> - 0.11.91-1
|
|
|
|
- Update to 0.11.91
|
|
|
|
|
2013-08-22 19:18:23 +00:00
|
|
|
* Thu Aug 22 2013 Kalev Lember <kalevlember@gmail.com> - 0.11.90-1
|
|
|
|
- Update to 0.11.90
|
|
|
|
|
2013-08-03 05:32:18 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.11.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-07-05 02:40:15 +00:00
|
|
|
* Fri Jul 5 2013 Michel Salim <salimma@fedoraproject.org> - 0.11.0-1
|
|
|
|
- Update to 0.11.0
|
|
|
|
|
2013-04-15 03:10:44 +00:00
|
|
|
* Mon Apr 15 2013 Michel Salim <salimma@fedoraproject.org> - 0.10.1-1
|
|
|
|
- Update to 0.10.1
|
|
|
|
|
2013-03-26 11:54:22 +00:00
|
|
|
* Tue Mar 26 2013 Michel Salim <salimma@fedoraproject.org> - 0.10.0-1
|
|
|
|
- Update to 0.10.0
|
|
|
|
|
2013-03-08 12:09:47 +00:00
|
|
|
* Fri Mar 8 2013 Matthias Clasen <mclasen@redhat.com> - 0.8.5-1
|
|
|
|
- Update to 0.8.5
|
|
|
|
|
2013-02-21 19:59:11 +00:00
|
|
|
* Thu Feb 21 2013 Brian Pepple <bpepple@fedoraproject.org> - 0.8.4-1
|
|
|
|
- Update to 0.8.4.
|
|
|
|
- Drop unnecessary define file attr.
|
|
|
|
|
2013-02-14 04:23:53 +00:00
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-11-16 09:15:57 +00:00
|
|
|
* Fri Nov 16 2012 Michel Salim <salimma@fedoraproject.org> - 0.8.2-1
|
|
|
|
- Update to 0.8.2
|
|
|
|
- Drop s390x patch, no longer needed
|
|
|
|
|
2012-10-16 09:13:18 +00:00
|
|
|
* Tue Oct 16 2012 Michel Salim <salimma@fedoraproject.org> - 0.8.1-1
|
|
|
|
- Update to 0.8.1
|
|
|
|
|
2012-09-26 01:32:00 +00:00
|
|
|
* Wed Sep 26 2012 Michel Salim <salimma@fedoraproject.org> - 0.8.0-1
|
|
|
|
- Update to 0.8.0
|
|
|
|
|
2012-09-05 15:15:46 +00:00
|
|
|
* Wed Sep 5 2012 Michel Salim <salimma@fedoraproject.org> - 0.7.90-1
|
|
|
|
- Update to 0.7.90
|
|
|
|
|
2012-08-07 11:49:58 +00:00
|
|
|
* Tue Aug 07 2012 Richard Hughes <hughsient@gmail.com> - 0.7.3-1
|
|
|
|
- Update to 0.7.3
|
|
|
|
|
2012-07-19 19:51:26 +00:00
|
|
|
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-01-31 00:58:30 +00:00
|
|
|
* Tue Jan 31 2012 Michel Salim <salimma@fedoraproject.org> - 0.7.2-1
|
|
|
|
- Update to 0.7.2
|
|
|
|
|
2012-01-12 17:16:55 +00:00
|
|
|
* Thu Jan 12 2012 Dan Horák <dan[at]danny.cz> - 0.7.1-2
|
|
|
|
- fix build, see patch comment for details
|
|
|
|
|
2011-09-29 01:13:56 +00:00
|
|
|
* Wed Sep 28 2011 Ray <rstrode@redhat.com> - 0.7.1-1
|
|
|
|
- Update to 0.7.1
|
|
|
|
|
2011-09-01 16:07:20 +00:00
|
|
|
* Thu Sep 1 2011 Michel Salim <salimma@fedoraproject.org> - 0.7.0-1
|
|
|
|
- Update to 0.7.0
|
|
|
|
|
2011-09-01 15:34:40 +00:00
|
|
|
* Thu Sep 1 2011 Michel Salim <salimma@fedoraproject.org> - 0.6.1-3
|
|
|
|
- Move typelib file to main package (# 735081)
|
|
|
|
- Re-enable unit tests on all Fedora releases
|
|
|
|
- -devel subpackage no longer depends on vala and gobject-introspection-devel
|
|
|
|
|
2011-02-08 06:00:06 +00:00
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2011-02-02 08:49:46 +00:00
|
|
|
* Wed Feb 2 2011 Christopher Aillon <caillon@redhat.com> - 0.6.1-1
|
|
|
|
- Update to 0.6.1
|
|
|
|
|
2010-12-12 23:10:45 +00:00
|
|
|
* Sun Dec 12 2010 Michel Salim <salimma@fedoraproject.org> - 0.6.0-2
|
|
|
|
- Update spec to support snapshot builds (# 609294)
|
|
|
|
|
2010-10-28 11:37:06 +00:00
|
|
|
* Thu Oct 28 2010 Michel Salim <salimma@fedoraproject.org> - 0.6.0-1
|
|
|
|
- Update to 0.6.0
|
|
|
|
|
2010-09-29 21:38:34 +00:00
|
|
|
* Wed Sep 29 2010 jkeating - 0.5.3-2
|
|
|
|
- Rebuilt for gcc bug 634757
|
|
|
|
|
2010-09-23 06:49:59 +00:00
|
|
|
* Thu Sep 23 2010 Michel Salim <salimma@fedoraproject.org> - 0.5.3-1
|
2010-09-17 10:40:33 +00:00
|
|
|
- Update to 0.5.3
|
2010-09-22 15:45:45 +00:00
|
|
|
- Rebuild against newer gobject-introspection
|
2010-09-17 10:40:33 +00:00
|
|
|
|
2010-08-26 00:51:36 +00:00
|
|
|
* Wed Aug 25 2010 Brian Pepple <bpepple@fedoraproject.org> - 0.5.2-2
|
|
|
|
- Add BR on gobject-introspection-devel.
|
|
|
|
|
2010-08-26 00:38:29 +00:00
|
|
|
* Wed Aug 25 2010 Brian Pepple <bpepple@fedoraproject.org> - 0.5.2-1
|
|
|
|
- Update to 0.5.2.
|
|
|
|
- Remove buildroot & clean section. No longer needed.
|
|
|
|
|
2010-06-17 21:05:09 +00:00
|
|
|
* Thu Jun 17 2010 Michel Salim <salimma@fedoraproject.org> - 0.5.1-1
|
|
|
|
- Update to 0.5.1
|
|
|
|
|
2009-10-03 10:50:25 +00:00
|
|
|
* Sat Oct 3 2009 Michel Salim <salimma@fedoraproject.org> - 0.5.0-1
|
|
|
|
- Update to 0.5.0
|
|
|
|
|
2009-08-20 21:27:11 +00:00
|
|
|
* Thu Aug 20 2009 Michel Salim <salimma@fedoraproject.org> - 0.3.0-1
|
|
|
|
- Update to 0.3.0
|
|
|
|
|
2009-07-25 05:43:30 +00:00
|
|
|
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.5-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-03-02 15:53:09 +00:00
|
|
|
* Mon Mar 2 2009 Michel Salim <salimma@fedoraproject.org> - 0.1.5-1
|
|
|
|
- Update to 0.1.5
|
|
|
|
|
2009-02-25 15:05:57 +00:00
|
|
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.4-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-12-14 06:26:31 +00:00
|
|
|
* Sat Dec 13 2008 Michel Salim <salimma@fedoraproject.org> - 0.1.4-2
|
|
|
|
- Run unit tests only on releases with glib2 >= 2.16
|
|
|
|
|
2008-12-13 07:15:56 +00:00
|
|
|
* Sat Dec 13 2008 Michel Salim <salimma@fedoraproject.org> - 0.1.4-1
|
|
|
|
- Update to 0.1.4
|
|
|
|
|
2008-08-25 05:17:18 +00:00
|
|
|
* Mon Aug 25 2008 Michel Salim <salimma@fedoraproject.org> - 0.1.3-1
|
|
|
|
- Update to 0.1.3
|
|
|
|
|
2008-02-19 23:18:10 +00:00
|
|
|
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.1.1-3
|
|
|
|
- Autorebuild for GCC 4.3
|
|
|
|
|
2008-01-30 04:19:14 +00:00
|
|
|
* Sun Jan 27 2008 Michel Salim <michel.sylvan@gmail.com> - 0.1.1-2
|
|
|
|
- Move pkgconfig requirement to -devel subpackage
|
|
|
|
|
|
|
|
* Sat Jan 26 2008 Michel Salim <michel.sylvan@gmail.com> - 0.1.1-1
|
|
|
|
- Initial Fedora package
|