commit libquvi for openSUSE:Factory
Hello community, here is the log from the commit of package libquvi for openSUSE:Factory checked in at 2015-08-15 11:38:42 Comparing /work/SRC/openSUSE:Factory/libquvi (Old) and /work/SRC/openSUSE:Factory/.libquvi.new (New) Package is "libquvi" Changes: --- /work/SRC/openSUSE:Factory/libquvi/libquvi.changes 2015-07-05 18:00:24.0 +0200 +++ /work/SRC/openSUSE:Factory/.libquvi.new/libquvi.changes 2015-08-15 11:38:44.0 +0200 @@ -1,0 +2,7 @@ +Sat Jul 18 02:45:31 UTC 2015 - i...@marguerite.su + +- add patch: libquvi-0.9.4-lua-5.2.patch + * compatibility w/ lua 5.2+ + * luaL_register replaced by luaL_newlib + +--- New: libquvi-0.9.4-lua-5.2.patch Other differences: -- ++ libquvi.spec ++ --- /var/tmp/diff_new_pack.p2FYAN/_old 2015-08-15 11:38:44.0 +0200 +++ /var/tmp/diff_new_pack.p2FYAN/_new 2015-08-15 11:38:44.0 +0200 @@ -29,6 +29,8 @@ Source1:%{name}.rpmlintrc # PATCH-FEATURE-OPENSUSE libquvi-stable-build-date.patch sbra...@suse.cz -- Don't embed build date. Triggers rebuild. Patch0: %{name}-stable-build-date.patch +# PATCH-FIX-UPSTREAM marguer...@opensuse.org -- compatibility for lua 5.2+ +Patch1: %{name}-%{version}-lua-5.2.patch BuildRequires: autoconf BuildRequires: automake BuildRequires: libtool @@ -74,6 +76,7 @@ echo "timestamp for BUILD_TIME" >stamp-build-time touch -d "$(sed -n '2s/ - .*$//p' <%{_sourcedir}/%{name}.changes)" stamp-build-time fi +%patch1 -p1 %build export CFLAGS="%{optflags} -DLUA_COMPAT_MODULE" ++ libquvi-0.9.4-lua-5.2.patch ++ Index: libquvi-0.9.4/src/lua/init.c === --- libquvi-0.9.4.orig/src/lua/init.c +++ libquvi-0.9.4/src/lua/init.c @@ -80,10 +80,17 @@ QuviError l_init(_quvi_t q) return (QUVI_ERROR_LUA_INIT); luaL_openlibs(q->handle.lua); +#if LUA_VERSION_NM < 502 luaL_register(q->handle.lua, "quvi", quvi_reg_meth); luaL_register(q->handle.lua, "quvi.http", quvi_http_reg_meth); luaL_register(q->handle.lua, "quvi.crypto", quvi_crypto_reg_meth); luaL_register(q->handle.lua, "quvi.base64", quvi_base64_reg_meth); +#else + luaL_newlib(q->handle.lua, quvi_reg_meth); + luaL_newlib(q->handle.lua, quvi_http_reg_meth); + luaL_newlib(q->handle.lua, quvi_crypto_reg_meth); + luaL_newlib(q->handle.lua, quvi_base64_reg_meth); +#endif return (QUVI_OK); }
commit libquvi for openSUSE:Factory
Hello community, here is the log from the commit of package libquvi for openSUSE:Factory checked in at 2015-07-05 18:00:23 Comparing /work/SRC/openSUSE:Factory/libquvi (Old) and /work/SRC/openSUSE:Factory/.libquvi.new (New) Package is "libquvi" Changes: --- /work/SRC/openSUSE:Factory/libquvi/libquvi.changes 2014-02-12 11:09:03.0 +0100 +++ /work/SRC/openSUSE:Factory/.libquvi.new/libquvi.changes 2015-07-05 18:00:24.0 +0200 @@ -1,0 +2,16 @@ +Tue Mar 10 13:00:17 CET 2015 - sbra...@suse.cz + +- Move shared library to libquvi%{soname} to conform to Shared + Library Packaging Policy and allow parallel installation of more + versions even without multiversion. +- Use last change date instead of build date. + libquvi-fake-build-date.patch -> libquvi-stable-build-date.patch +- Add libquvi.rpmlintrc to spec file and update skipped checks. + +--- +Tue Mar 10 10:30:51 UTC 2015 - pgaj...@suse.com + +- no build date [bnc#916338] + + libquvi-fake-build-date.patch + +--- Old: libquvi-rpmlintrc New: libquvi-stable-build-date.patch libquvi.rpmlintrc Other differences: -- ++ libquvi.spec ++ --- /var/tmp/diff_new_pack.EOCylV/_old 2015-07-05 18:00:25.0 +0200 +++ /var/tmp/diff_new_pack.EOCylV/_new 2015-07-05 18:00:25.0 +0200 @@ -1,7 +1,7 @@ # # spec file for package libquvi # -# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -26,6 +26,12 @@ Group: System/Libraries Url:http://quvi.sourceforge.net/ Source: http://sourceforge.net/projects/quvi/files/0.9/libquvi/libquvi-0.9.4.tar.xz +Source1:%{name}.rpmlintrc +# PATCH-FEATURE-OPENSUSE libquvi-stable-build-date.patch sbra...@suse.cz -- Don't embed build date. Triggers rebuild. +Patch0: %{name}-stable-build-date.patch +BuildRequires: autoconf +BuildRequires: automake +BuildRequires: libtool BuildRequires: lua-devel # For pkgconfig() Provides BuildRequires: libgcrypt-devel @@ -44,6 +50,9 @@ Summary:Library to parse flash media stream URLs Group: System/Libraries Recommends: libquvi-scripts +# Up to openSUSE 13.2 and SLE 12 *.so files were in the main package. Now it does not exist. +Provides: libquvi = %{version}-%{release} +Obsoletes: libquvi < %{version}-%{release} %description -n libquvi%{soname} libquvi is a cross-platform library for parsing flash media stream @@ -52,7 +61,7 @@ %package devel Summary:Library to parse flash media stream URLs -- Development Files Group: Development/Libraries/C and C++ -Requires: libquvi = %{version} +Requires: libquvi%{soname} = %{version} %description devel libquvi is a cross-platform library for parsing flash media stream @@ -60,9 +69,15 @@ %prep %setup -q +if test -f %{_sourcedir}/%{name}.changes ; then +%patch0 +echo "timestamp for BUILD_TIME" >stamp-build-time +touch -d "$(sed -n '2s/ - .*$//p' <%{_sourcedir}/%{name}.changes)" stamp-build-time +fi %build export CFLAGS="%{optflags} -DLUA_COMPAT_MODULE" +autoreconf -f -i %configure \ --disable-static make %{?_smp_mflags} @@ -71,11 +86,11 @@ %make_install find %{buildroot}%{_libdir} -name '*.la' -type f -delete -print -%post -p /sbin/ldconfig +%post -n libquvi%{soname} -p /sbin/ldconfig -%postun -p /sbin/ldconfig +%postun -n libquvi%{soname} -p /sbin/ldconfig -%files +%files -n libquvi%{soname} %defattr(-,root,root) %doc AUTHORS ChangeLog COPYING NEWS README %{_libdir}/*.so ++ libquvi-stable-build-date.patch ++ Index: configure.ac === --- configure.ac.orig +++ configure.ac @@ -71,7 +71,7 @@ AS_IF([test x"$A2X" = "xno" && test -d " AC_MSG_ERROR([a2x is required to create man pages when building from git])]) AC_PATH_PROG([DATE], [date], [no]) -AS_IF([test x"$DATE" != "xno"], [build_time=`$DATE +"%F %T %z"`]) +AS_IF([test x"$DATE" != "xno"], [build_time=`TZ=UTC $DATE -r stamp-build-time +"%F %T %z"`]) AC_DEFINE_UNQUOTED([BUILD_TIME], ["$build_time"], [We have build time]) BUILD_TIME="$build_time" ++ libquvi-rpmlintrc -> libquvi.rpmlintrc ++ --- /work/SRC/openSUSE:Factory/libquvi/libquvi-rpmlintrc2013-08-30 11:42:12.0 +0200 +++ /work/SRC/openSUSE:Factory/.libquvi.new/libquvi.rpmlintrc 2015-07-05 18:00:24.0 +0200 @@ -1 +1,6 @@ -addFilter("shlib-poli
commit libquvi for openSUSE:Factory
Hello community, here is the log from the commit of package libquvi for openSUSE:Factory checked in at 2014-02-12 11:09:02 Comparing /work/SRC/openSUSE:Factory/libquvi (Old) and /work/SRC/openSUSE:Factory/.libquvi.new (New) Package is "libquvi" Changes: --- /work/SRC/openSUSE:Factory/libquvi/libquvi.changes 2013-10-22 10:18:54.0 +0200 +++ /work/SRC/openSUSE:Factory/.libquvi.new/libquvi.changes 2014-02-12 11:09:03.0 +0100 @@ -1,0 +2,7 @@ +Mon Feb 10 19:32:50 UTC 2014 - dims...@opensuse.org + +- Update to version 0.9.4: + + API: Return URLs in escaped (percent-encoded) form. + + m_url_unescaped_form: Check if g_uri_unescape_string fails. + +--- Old: libquvi-0.9.3.tar.xz New: libquvi-0.9.4.tar.xz Other differences: -- ++ libquvi.spec ++ --- /var/tmp/diff_new_pack.coSvO8/_old 2014-02-12 11:09:04.0 +0100 +++ /var/tmp/diff_new_pack.coSvO8/_new 2014-02-12 11:09:04.0 +0100 @@ -1,7 +1,7 @@ # # spec file for package libquvi # -# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2014 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 @@ -16,16 +16,16 @@ # -%define soname -0_9-0_9_3 +%define soname -0_9-0_9_4 Name: libquvi -Version:0.9.3 +Version:0.9.4 Release:0 Summary:Library to parse flash media stream URLs License:LGPL-2.1+ Group: System/Libraries Url:http://quvi.sourceforge.net/ -Source: http://downloads.sourceforge.net/project/quvi/0.9/libquvi/libquvi-%{version}.tar.xz +Source: http://sourceforge.net/projects/quvi/files/0.9/libquvi/libquvi-0.9.4.tar.xz BuildRequires: lua-devel # For pkgconfig() Provides BuildRequires: libgcrypt-devel ++ libquvi-0.9.3.tar.xz -> libquvi-0.9.4.tar.xz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libquvi-0.9.3/ChangeLog new/libquvi-0.9.4/ChangeLog --- old/libquvi-0.9.3/ChangeLog 2013-09-03 16:31:59.0 +0200 +++ new/libquvi-0.9.4/ChangeLog 2013-11-10 08:46:58.0 +0100 @@ -1,3 +1,221 @@ +commit 47c744f +Author: Toni Gundogdu +Date: 2013-11-10 + +Update NEWS for v0.9.4 + +Signed-off-by: Toni Gundogdu + +NEWS + +commit 1522663 +Author: Toni Gundogdu +Date: 2013-10-24 + +DOC: Make doxygen ignore `scripts_version_s' + +This fixes the "warning: Compound scripts_version_s is not documented." +while running doxygen. + +Signed-off-by: Toni Gundogdu + +src/api/version.c + +commit b79b467 +Author: Toni Gundogdu +Date: 2013-10-24 + +API: Return URLs in escaped (percent-encoded) form + +- Extend `l_chk_s' and `l_chk_assign_s' functions to allow the caller + set the `escape_url' arg to TRUE to tell the library to store the + string value in URI escaped form + +- All URLs returned by the library (e.g. media stream or thumbnail) are + now stored in their escaped form, and passed as such to the + applications querying them + +- "Reserved chars" remain unescaped + - https://tools.ietf.org/html/rfc3986#section-2.2 + +Affected API functions + +- quvi_subtitle_lang_get (QUVI_SUBTITLE_LANG_PROPERTY_URL) +- quvi_playlist_get (QUVI_PLAYLIST_*_URL) +- quvi_media_get (QUVI_MEDIA_*_URL) + +Rationale + +- Address the potential problem of chars getting mangled when the URLs + containing UTF8 chars are passed to the application trying to access + the URL + +Signed-off-by: Toni Gundogdu + +src/api/media_get.c +src/api/playlist_get.c +src/api/subtitle_lang_get.c +src/lua/chk.c +src/lua/chk.h +src/lua/exec_media_script_parse.c +src/lua/exec_playlist_script_parse.c +src/lua/exec_subtitle_export_script_export.c +src/lua/exec_subtitle_export_script_ident.c +src/lua/exec_subtitle_script_parse.c + +commit 8e23664 +Author: Toni Gundogdu +Date: 2013-10-24 + +m_url_unescaped_form: Check if g_uri_unescape_string fails + +Signed-off-by: Toni Gundogdu + +src/misc/url.c + +commit 8f43c14 +Merge: 0c68568 6a9ee69 +Author: Toni Gundogdu +Date: 2013-10-15 + +Merge branch 'tg/next__redo_url_{un}escaping' into next + +commit 6a9ee69 +Author: Toni Gundogdu +Date: 2013-10-14 + +tests/media.c: Add test_media_escaped_utf8_url + +Signed-off-by: Toni Gundogdu + +tests/media.c + +commit 0246e60 +Author: Toni Gundogdu +Date: 2013-10-14 + +test_media_escaped_url: Replace URL + +Sig
commit libquvi for openSUSE:Factory
Hello community, here is the log from the commit of package libquvi for openSUSE:Factory checked in at 2013-10-22 10:18:54 Comparing /work/SRC/openSUSE:Factory/libquvi (Old) and /work/SRC/openSUSE:Factory/.libquvi.new (New) Package is "libquvi" Changes: --- /work/SRC/openSUSE:Factory/libquvi/libquvi.changes 2013-08-30 11:42:12.0 +0200 +++ /work/SRC/openSUSE:Factory/.libquvi.new/libquvi.changes 2013-10-22 10:18:54.0 +0200 @@ -1,0 +2,12 @@ +Mon Oct 21 13:48:36 UTC 2013 - tchva...@suse.com + +- Version bump to 0.9.3: + - AC_PREREQ: Bump to 2.69 [c591b1b] + - API: Add QUVI_OPTION_ALLOW_COOKIES [f56798b] + - API: Add QUVI_VERSION_SCRIPTS_CONFIGURATION [f0c95e0] + - API: quvi_version: Read "version" file as ini-file [4466c98] + - FIX: error: implicit declaration of function 'luaL_register' [f02cc3a] + - FIX: Unescape input URL before URL resolving [f2ce9b7] + - quvi.http.cookie: Return unless QUVI_OPTION_ALLOW_COOKIES is QUVI_TRUE [876949e] + +--- Old: libquvi-0.9.2.tar.xz New: libquvi-0.9.3.tar.xz Other differences: -- ++ libquvi.spec ++ --- /var/tmp/diff_new_pack.p7QeBH/_old 2013-10-22 10:18:59.0 +0200 +++ /var/tmp/diff_new_pack.p7QeBH/_new 2013-10-22 10:18:59.0 +0200 @@ -16,16 +16,16 @@ # -%define soname -0_9-0_9_2 +%define soname -0_9-0_9_3 Name: libquvi -Version:0.9.2 +Version:0.9.3 Release:0 Summary:Library to parse flash media stream URLs License:LGPL-2.1+ Group: System/Libraries Url:http://quvi.sourceforge.net/ -Source: http://downloads.sourceforge.net/project/quvi/0.9/libquvi/libquvi-0.9.2.tar.xz +Source: http://downloads.sourceforge.net/project/quvi/0.9/libquvi/libquvi-%{version}.tar.xz BuildRequires: lua-devel # For pkgconfig() Provides BuildRequires: libgcrypt-devel ++ libquvi-0.9.2.tar.xz -> libquvi-0.9.3.tar.xz ++ 2120 lines of diff (skipped) -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit libquvi for openSUSE:Factory
Hello community, here is the log from the commit of package libquvi for openSUSE:Factory checked in at 2013-08-30 11:42:10 Comparing /work/SRC/openSUSE:Factory/libquvi (Old) and /work/SRC/openSUSE:Factory/.libquvi.new (New) Package is "libquvi" Changes: --- /work/SRC/openSUSE:Factory/libquvi/libquvi.changes 2013-01-01 12:01:04.0 +0100 +++ /work/SRC/openSUSE:Factory/.libquvi.new/libquvi.changes 2013-08-30 11:42:12.0 +0200 @@ -1,0 +2,19 @@ +Wed Aug 14 09:08:35 UTC 2013 - dims...@opensuse.org + +- Update to version 0.9.2: + + One year of bugfixing and improvements. Please see NEWS for +a full list of changes. +- Add -DLUA_COMPAT_MODULE to CFLAGS, allowing to use compatibility + features of LUA 5.1, using LUA 5.2. +- Move the library to libquvi. NOTE: the current library is a .so + file only and does not have version information. This is an + intentional behavior from upstream and accepted during the 0.9 + release cycle. The versions are ABI incompatible to each other. + See http://repo.or.cz/w/libquvi.git/commit/20b1e for a rationale. +- Add libquvi-rpmlintrc: we need to filter out the library being + in the main package now. rpmlintrc does not know correcly about + this case, and considering that this is a temporary situation + during the 0.9 cycle, it's also not worthy to address this in + rpmlintrc code. + +--- Old: libquvi-0.4.1.tar.bz2 New: libquvi-0.9.2.tar.xz libquvi-rpmlintrc Other differences: -- ++ libquvi.spec ++ --- /var/tmp/diff_new_pack.cnuWv1/_old 2013-08-30 11:42:13.0 +0200 +++ /var/tmp/diff_new_pack.cnuWv1/_new 2013-08-30 11:42:13.0 +0200 @@ -1,7 +1,7 @@ # # spec file for package libquvi # -# 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 @@ -16,21 +16,24 @@ # -%define soname 7 +%define soname -0_9-0_9_2 Name: libquvi -Version:0.4.1 +Version:0.9.2 Release:0 Summary:Library to parse flash media stream URLs License:LGPL-2.1+ Group: System/Libraries Url:http://quvi.sourceforge.net/ -Source: %{name}-%{version}.tar.bz2 -BuildRequires: lua-devel >= 5.1 +Source: http://downloads.sourceforge.net/project/quvi/0.9/libquvi/libquvi-0.9.2.tar.xz +BuildRequires: lua-devel # For pkgconfig() Provides +BuildRequires: libgcrypt-devel BuildRequires: pkg-config +BuildRequires: pkgconfig(glib-2.0) >= 2.24 BuildRequires: pkgconfig(libcurl) >= 7.18.2 -BuildRequires: pkgconfig(libquvi-scripts) >= 0.4.0 +BuildRequires: pkgconfig(libproxy-1.0) >= 0.3.1 +BuildRequires: pkgconfig(libquvi-scripts-0.9) >= 0.9 BuildRoot: %{_tmppath}/%{name}-%{version}-build %description @@ -49,7 +52,7 @@ %package devel Summary:Library to parse flash media stream URLs -- Development Files Group: Development/Libraries/C and C++ -Requires: libquvi%{soname} = %{version} +Requires: libquvi = %{version} %description devel libquvi is a cross-platform library for parsing flash media stream @@ -59,6 +62,7 @@ %setup -q %build +export CFLAGS="%{optflags} -DLUA_COMPAT_MODULE" %configure \ --disable-static make %{?_smp_mflags} @@ -67,20 +71,21 @@ %make_install find %{buildroot}%{_libdir} -name '*.la' -type f -delete -print -%post -n libquvi%{soname} -p /sbin/ldconfig +%post -p /sbin/ldconfig -%postun -n libquvi%{soname} -p /sbin/ldconfig +%postun -p /sbin/ldconfig -%files -n libquvi%{soname} +%files %defattr(-,root,root) %doc AUTHORS ChangeLog COPYING NEWS README -%{_libdir}/*.so.* -%{_mandir}/man3/libquvi.3%{?ext_man} +%{_libdir}/*.so %files devel %defattr(-,root,root) -%{_includedir}/quvi/ -%{_libdir}/*.so -%{_libdir}/pkgconfig/libquvi.pc +%{_includedir}/quvi-0.9/ +#{_libdir}/*.so +%{_libdir}/pkgconfig/libquvi-0.9.pc +%{_mandir}/man3/libquvi.3%{?ext_man} +%{_mandir}/man7/quvi-object.7%{?ext_man} %changelog ++ libquvi-rpmlintrc ++ addFilter("shlib-policy-name-error") -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit libquvi for openSUSE:Factory
Hello community, here is the log from the commit of package libquvi for openSUSE:Factory checked in at 2013-01-01 12:01:00 Comparing /work/SRC/openSUSE:Factory/libquvi (Old) and /work/SRC/openSUSE:Factory/.libquvi.new (New) Package is "libquvi", Maintainer is "" Changes: --- /work/SRC/openSUSE:Factory/libquvi/libquvi.changes 2012-01-24 12:19:14.0 +0100 +++ /work/SRC/openSUSE:Factory/.libquvi.new/libquvi.changes 2013-01-01 12:01:04.0 +0100 @@ -1,0 +2,12 @@ +Sat Dec 29 18:01:49 UTC 2012 - p.drou...@gmail.com + +- Update to 0.4.1 version: + * Add examples/parse.c [a26f5f6] + * Add examples/supported.c [179d997] + * DOC: Replace buzzhumor with gaskrank [3d2e015] + * FIX: Lua 5.2: Use luaL_newstate instead (#89) [6de7322] + * FIX: Make verify c/b check against correct option [0c4ff3b] + * FIX: Use dirname(3) properly [b2f1621] +- Remove conditionnal BuildRequires macros; now work fine with lua 5.2 + +--- Old: libquvi-0.4.0.tar.bz2 New: libquvi-0.4.1.tar.bz2 Other differences: -- ++ libquvi.spec ++ --- /var/tmp/diff_new_pack.pKkPyW/_old 2013-01-01 12:01:06.0 +0100 +++ /var/tmp/diff_new_pack.pKkPyW/_new 2013-01-01 12:01:06.0 +0100 @@ -19,19 +19,14 @@ %define soname 7 Name: libquvi -Version:0.4.0 +Version:0.4.1 Release:0 Summary:Library to parse flash media stream URLs License:LGPL-2.1+ Group: System/Libraries Url:http://quvi.sourceforge.net/ Source: %{name}-%{version}.tar.bz2 -%if 0%{?suse_version} > 1210 -# Not yet compatible with lua 5.2, see http://sourceforge.net/apps/trac/quvi/ticket/89 -BuildRequires: lua51-devel -%else BuildRequires: lua-devel >= 5.1 -%endif # For pkgconfig() Provides BuildRequires: pkg-config BuildRequires: pkgconfig(libcurl) >= 7.18.2 ++ libquvi-0.4.0.tar.bz2 -> libquvi-0.4.1.tar.bz2 ++ 4880 lines of diff (skipped) retrying with extended exclude list diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/libquvi-0.4.0/ChangeLog new/libquvi-0.4.1/ChangeLog --- old/libquvi-0.4.0/ChangeLog 2011-10-05 16:20:04.0 +0200 +++ new/libquvi-0.4.1/ChangeLog 2012-03-23 16:20:07.0 +0100 @@ -1,3 +1,107 @@ +commit dd471b6 +Author: Toni Gundogdu +Date: 2012-03-23 + +Update NEWS for v0.4.1 + +NEWS + +commit 0d0e8ee +Author: Toni Gundogdu +Date: 2012-03-23 + +Bump version to 0.4.1 + + * Bump interface C:R+1:A + +m4/version.m4 + +commit 6de7322 +Author: Toni Gundogdu +Date: 2012-03-18 + +FIX: Lua 5.2: Use luaL_newstate instead (#89) + +"lua_open was removed in 5.1, and apparently really removed in 5.2 +luaL_newstate replaces it, and as libquvi already depends on Lua 5.1 +just unconditionally replacing the call should work." -- marienz + + * http://sourceforge.net/apps/trac/quvi/ticket/89 + +src/libquvi/lua_wrap.c + +commit b2f1621 +Author: Toni Gundogdu +Date: 2011-11-30 + +FIX: Use dirname(3) properly + +dirname(3) returned pointers to null-terminated strings must +not be passed to free(3). dirname(3) may modify the contents. +Preserve the pathname by using a temporary copy with dirname(3). + +src/libquvi/lua_wrap.c +src/libquvi/util.c +src/libquvi/util.h + +commit 0c4ff3b +Author: Toni Gundogdu +Date: 2012-03-18 + +FIX: Make verify c/b check against correct option + +Check that the verify callback was set, not the resolve callback. + +src/libquvi/net_wrap.c + +commit 179d997 +Author: Toni Gundogdu +Date: 2011-11-30 + +Add examples/supported.c + +examples/Makefile.am +examples/supported.c + +commit a26f5f6 +Author: Toni Gundogdu +Date: 2011-11-30 + +Add examples/parse.c + +examples/Makefile.am +examples/parse.c + +commit 41ead47 +Author: Toni Gundogdu +Date: 2012-02-29 + +Add gen-new.sh (repo only) + +gen-news.sh + +commit be85ead +Author: Toni Gundogdu +Date: 2012-02-29 + +Add license to misc. scripts + + * autogen.sh + * gen-ver.sh + +autogen.sh +gen-ver.sh + +commit 3d2e015 +Author: Toni Gundogdu +Date: 2012-02-29 + +DOC: Replace buzzhumor with gaskrank + + * buzzhumor.lua was removed in libquvi-scripts 0.4.3 + +doc/nd/Webscripts/Tutorial.txt + commit 965afaf Author: Toni Gundogdu Date: 2011-10-05 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnigno
commit libquvi for openSUSE:Factory
Hello community, here is the log from the commit of package libquvi for openSUSE:Factory checked in at 2012-01-24 12:19:11 Comparing /work/SRC/openSUSE:Factory/libquvi (Old) and /work/SRC/openSUSE:Factory/.libquvi.new (New) Package is "libquvi", Maintainer is "" Changes: --- /work/SRC/openSUSE:Factory/libquvi/libquvi.changes 2012-01-19 09:43:02.0 +0100 +++ /work/SRC/openSUSE:Factory/.libquvi.new/libquvi.changes 2012-01-24 12:19:14.0 +0100 @@ -1,0 +2,6 @@ +Mon Jan 23 09:26:42 UTC 2012 - vu...@opensuse.org + +- Revert my previous change: libquvi doesn't work with lua 5.2, see + http://sourceforge.net/apps/trac/quvi/ticket/89 + +--- Other differences: -- ++ libquvi.spec ++ --- /var/tmp/diff_new_pack.guhQIO/_old 2012-01-24 12:19:22.0 +0100 +++ /var/tmp/diff_new_pack.guhQIO/_new 2012-01-24 12:19:22.0 +0100 @@ -26,7 +26,12 @@ Group: System/Libraries Url:http://quvi.sourceforge.net/ Source: %{name}-%{version}.tar.bz2 +%if 0%{?suse_version} > 1210 +# Not yet compatible with lua 5.2, see http://sourceforge.net/apps/trac/quvi/ticket/89 +BuildRequires: lua51-devel +%else BuildRequires: lua-devel >= 5.1 +%endif # For pkgconfig() Provides BuildRequires: pkg-config BuildRequires: pkgconfig(libcurl) >= 7.18.2 -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit libquvi for openSUSE:Factory
Hello community, here is the log from the commit of package libquvi for openSUSE:Factory checked in at 2012-01-19 09:43:01 Comparing /work/SRC/openSUSE:Factory/libquvi (Old) and /work/SRC/openSUSE:Factory/.libquvi.new (New) Package is "libquvi", Maintainer is "" Changes: --- /work/SRC/openSUSE:Factory/libquvi/libquvi.changes 2012-01-17 16:10:58.0 +0100 +++ /work/SRC/openSUSE:Factory/.libquvi.new/libquvi.changes 2012-01-19 09:43:02.0 +0100 @@ -1,0 +2,6 @@ +Tue Jan 17 12:37:03 UTC 2012 - vu...@opensuse.org + +- Always build against lua-devel: lua 5.2 on 12.2/Factory doesn't + seem to be an issue. + +--- Other differences: -- ++ libquvi.spec ++ --- /var/tmp/diff_new_pack.CdBpt2/_old 2012-01-19 09:43:03.0 +0100 +++ /var/tmp/diff_new_pack.CdBpt2/_new 2012-01-19 09:43:03.0 +0100 @@ -1,7 +1,7 @@ # # spec file for package libquvi # -# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2012 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 @@ -15,17 +15,18 @@ # Please submit bugfixes or comments via http://bugs.opensuse.org/ # + %define soname 7 Name: libquvi Version:0.4.0 -Release:1 +Release:0 Summary:Library to parse flash media stream URLs -Group: System/Libraries License:LGPL-2.1+ +Group: System/Libraries Url:http://quvi.sourceforge.net/ Source: %{name}-%{version}.tar.bz2 -BuildRequires: lua51-devel +BuildRequires: lua-devel >= 5.1 # For pkgconfig() Provides BuildRequires: pkg-config BuildRequires: pkgconfig(libcurl) >= 7.18.2 -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org