SHA256
1
0
forked from pool/lilv

Accepting request 197601 from multimedia:libs

- Update to 0.16.0
  * Add lilv_world_ask() for easily checking if a statement exists
  * Add lilv_world_get() and lilv_port_get() for easily getting one value
  * Add lilv_nodes_merge()
  * Make lilv_plugin_get_port_by_designation() return a const pointer
  * Require a URI for lilv_state_to_string() and fail gracefully otherwise
  * Fail gracefully when lilv_state_new_from_string() is called on NULL
  * Make state loading functions fall back to lv2:default for port values,
    so a plugin description can be loaded as default state
  * Ignore state ports with no value instead of printing an error
  * Support atom:supports in lilv_port_supports_event()
  * Add va_list variant of lilv_plugin_get_num_ports_of_class()
  * Fix several plugin functions that failed to load data if called first
  * Correctly depend on serd at build time (fix compilation in odd cases)
  * Disable timestamps in HTML documentation for reproducible build
  * lilvmm.hpp: Support varargs for Plugin::get_num_ports_of_class()
  * lilvmm.hpp: Add several missing methods
  * Update to waf 1.7.8 and autowaf r90 (install docs to versioned directory)
- Remove lilv-0.14.4-build_compare.patch, applied upstream
- Add lilv-0.16.0-python_bindings.patch
- The minimum sord version is now 0.12.0
- The documentation directory is now versioned

OBS-URL: https://build.opensuse.org/request/show/197601
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/lilv?expand=0&rev=4
This commit is contained in:
Tomáš Chvátal 2013-09-13 14:14:16 +00:00 committed by Git OBS Bridge
commit f01ddb38e5
6 changed files with 79 additions and 21 deletions

View File

@ -1,13 +0,0 @@
Index: doc/reference.doxygen.in
===================================================================
--- doc/reference.doxygen.in.orig
+++ doc/reference.doxygen.in
@@ -939,7 +939,7 @@ HTML_COLORSTYLE_GAMMA = 80
# page will contain the date and time when the page was generated. Setting
# this to NO can help when comparing the output of multiple runs.
-HTML_TIMESTAMP = YES
+HTML_TIMESTAMP = NO
# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
# documentation will contain sections that can be hidden and shown after the

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4a92b3961f1483370509200741c33e826e4205308bee09923d0fd938653fdf8b
size 163236

View File

@ -0,0 +1,44 @@
Index: lilv/lilvmm.hpp
===================================================================
--- lilv/lilvmm.hpp (revision 5091)
+++ lilv/lilvmm.hpp (revision 5092)
@@ -49,6 +49,11 @@
return lilv_ ## prefix ## _ ## name(me, a1, a2); \
}
+#define LILV_WRAP3(RT, prefix, name, T1, a1, T2, a2, T3, a3) \
+ inline RT name(T1 a1, T2 a2, T3 a3) { \
+ return lilv_ ## prefix ## _ ## name(me, a1, a2, a3); \
+ }
+
#define LILV_WRAP2_VOID(prefix, name, T1, a1, T2, a2) \
inline void name(T1 a1, T2 a2) { lilv_ ## prefix ## _ ## name(me, a1, a2); }
@@ -139,6 +144,27 @@
LILV_WRAP0(Node, nodes, get_first);
};
+struct UI {
+ inline UI(const LilvUI* c_obj) : me(c_obj) {}
+ LILV_WRAP_CONVERSION(const LilvUI);
+
+ LILV_WRAP0(const LilvNode*, ui, get_uri);
+ LILV_WRAP0(const LilvNode*, ui, get_bundle_uri);
+ LILV_WRAP0(const LilvNode*, ui, get_binary_uri);
+ LILV_WRAP0(const LilvNodes*, ui, get_classes);
+ /*LILV_WRAP3(bool, ui, is_supported,
+ LilvUISupportedFunc, supported_func,
+ const LilvNode*, container_type,
+ const LilvNode**, ui_type);*/
+ LILV_WRAP1(bool, ui, is_a, const LilvNode*, class_uri);
+
+ const LilvUI* me;
+};
+
+struct UIs {
+ LILV_WRAP_COLL(UIs, UI, uis);
+};
+
struct Port {
inline Port(const LilvPlugin* p, const LilvPort* c_obj)
: parent(p), me(c_obj)

3
lilv-0.16.0.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:cfb39d89d964159ea20590b8f8613dfbe5df5539c962566475efc4eb6764b9b5
size 175273

View File

@ -1,3 +1,29 @@
-------------------------------------------------------------------
Thu Sep 5 21:06:32 UTC 2013 - reddwarf@opensuse.org
- Update to 0.16.0
* Add lilv_world_ask() for easily checking if a statement exists
* Add lilv_world_get() and lilv_port_get() for easily getting one value
* Add lilv_nodes_merge()
* Make lilv_plugin_get_port_by_designation() return a const pointer
* Require a URI for lilv_state_to_string() and fail gracefully otherwise
* Fail gracefully when lilv_state_new_from_string() is called on NULL
* Make state loading functions fall back to lv2:default for port values,
so a plugin description can be loaded as default state
* Ignore state ports with no value instead of printing an error
* Support atom:supports in lilv_port_supports_event()
* Add va_list variant of lilv_plugin_get_num_ports_of_class()
* Fix several plugin functions that failed to load data if called first
* Correctly depend on serd at build time (fix compilation in odd cases)
* Disable timestamps in HTML documentation for reproducible build
* lilvmm.hpp: Support varargs for Plugin::get_num_ports_of_class()
* lilvmm.hpp: Add several missing methods
* Update to waf 1.7.8 and autowaf r90 (install docs to versioned directory)
- Remove lilv-0.14.4-build_compare.patch, applied upstream
- Add lilv-0.16.0-python_bindings.patch
- The minimum sord version is now 0.12.0
- The documentation directory is now versioned
-------------------------------------------------------------------
Sun Aug 26 23:11:36 UTC 2012 - reddwarf@opensuse.org

View File

@ -1,7 +1,7 @@
#
# spec file for package lilv
#
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -19,14 +19,15 @@
%define soname 0
Name: lilv
Version: 0.14.4
Version: 0.16.0
Release: 0
Summary: A C library to make the use of LV2 plugins as simple as possible
License: ISC
Group: System/Libraries
Url: http://drobilla.net/software/lilv/
Source0: http://download.drobilla.net/lilv-%{version}.tar.bz2
Patch0: lilv-0.14.4-build_compare.patch
# From upstream SVN, remove with next version
Patch0: lilv-0.16.0-python_bindings.patch
BuildRequires: doxygen
BuildRequires: gcc-c++
BuildRequires: graphviz
@ -35,7 +36,7 @@ BuildRequires: python-devel
BuildRequires: swig
BuildRequires: pkgconfig(lv2) >= 1.0.0
BuildRequires: pkgconfig(serd-0) >= 0.14.0
BuildRequires: pkgconfig(sord-0) >= 0.8.0
BuildRequires: pkgconfig(sord-0) >= 0.12.0
BuildRequires: pkgconfig(sratom-0) >= 0.2.0
%description
@ -110,7 +111,7 @@ fi
%{_libdir}/liblilv-0.so
%{_includedir}/lilv-0/
%{_libdir}/pkgconfig/lilv-0.pc
%{_defaultdocdir}/lilv/
%{_defaultdocdir}/lilv-0/
%{_mandir}/man3/*
%files -n python-lilv