Update libgee to 0.5.3
This commit is contained in:
parent
d8ddce06f5
commit
0a7c3a0e43
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,2 +1 @@
|
||||
libgee-0.5.1.tar.bz2
|
||||
/libgee-0.5.2.tar.bz2
|
||||
/libgee-0.5.3.tar.bz2
|
||||
|
||||
36
libgee.spec
36
libgee.spec
@ -1,6 +1,6 @@
|
||||
Name: libgee
|
||||
Version: 0.5.2
|
||||
Release: 2%{?dist}
|
||||
Version: 0.5.3
|
||||
Release: 1%{?dist}
|
||||
Summary: GObject collection library
|
||||
|
||||
Group: System Environment/Libraries
|
||||
@ -18,17 +18,26 @@ classes for commonly used data structures.
|
||||
|
||||
libgee provides the following interfaces:
|
||||
|
||||
* Iterable
|
||||
* Collection
|
||||
* List
|
||||
* Set
|
||||
* Iterator
|
||||
* Map
|
||||
* Iterable
|
||||
* Collection
|
||||
* List
|
||||
* Set
|
||||
* MultiSet
|
||||
* Queue
|
||||
* Deque
|
||||
* Iterator
|
||||
* Map
|
||||
* MultiMap
|
||||
|
||||
The ArrayList, HashSet, and HashMap classes provide a reasonable sample
|
||||
implementation of the List, Set, and Map interfaces. ReadOnlyCollection,
|
||||
ReadOnlyList, ReadOnlySet, and ReadOnlyMap are read-only wrapper classes
|
||||
that prevent modification of the underlying collection.
|
||||
The ArrayList, 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.
|
||||
|
||||
Around that, the API provide means to retrieve read-only views,
|
||||
efficient sort algorithms, simple, bi-directional or index-based
|
||||
mutable iterators depending on the collection type.
|
||||
|
||||
libgee is written in Vala and can be used like any GObject-based C library.
|
||||
It's planned to provide bindings for further languages.
|
||||
@ -87,6 +96,9 @@ find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
|
||||
|
||||
|
||||
%changelog
|
||||
* Fri Sep 17 2010 Michel Salim <salimma@fedoraproject.org> - 0.5.3-1
|
||||
- Update to 0.5.3
|
||||
|
||||
* Wed Aug 25 2010 Brian Pepple <bpepple@fedoraproject.org> - 0.5.2-2
|
||||
- Add BR on gobject-introspection-devel.
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user