Accepting request 72231 from devel:libraries:c_c++
Update package to latest version, >= 0.2.15 required to fix another package bnc#676294 OBS-URL: https://build.opensuse.org/request/show/72231 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/quvi?expand=0&rev=3
This commit is contained in:
parent
7deaf80c6e
commit
a4eac36aa6
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4e1be5739d2c7dfa9f8b7bba2e26815cf8e4d268b2f5fe8d89ec3df89ab27a9c
|
||||
size 403805
|
3
quvi-0.2.16.tar.bz2
Normal file
3
quvi-0.2.16.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:05a398437fc5e8dd2e1923080468c747309f427e86fd16e98bb640fe9f527d87
|
||||
size 443386
|
39
quvi.changes
39
quvi.changes
@ -1,3 +1,42 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue May 31 08:37:45 UTC 2011 - nmarques@opensuse.org
|
||||
|
||||
- Update to version 0.2.16:
|
||||
+ Converted spec to use pkgconfig() calls;
|
||||
+ Rename '-s,--no-shortened' -> '-r,--no-resolve';
|
||||
+ Add support for reading input from files;
|
||||
+ Add "Network interface" (quvi_net_*, QUVI_NET_*, quvi/net.h);
|
||||
+ Add examples/callback_libsoup.c;
|
||||
+ Make LUA errors more informative (e.g. fname, func, etc.);
|
||||
+ Add "Linked list interface" (quvi_llst_*, quvi/llst.h);
|
||||
+ Add quvi_supported_ident (#44);
|
||||
+ Add quvi_supported_ident_close;
|
||||
+ Add quvi_ident_getprop;
|
||||
+ Deprecate remaining symbols that use 'video' and 'link' in
|
||||
names;
|
||||
+ Rename (&depr.) QUVISTATUS_SHORTENED -> QUVISTATUS_RESOLVE;
|
||||
+ Rename (&depr.) QUVIOPT_NOSHORTENED -> QUVIOPT_NORESOLVE;
|
||||
+ Deprecate QUVIINFO_HTTPCODE, QUVIPROP_HTTPCODE;
|
||||
+ Changes: Webscripts
|
||||
- Pass _quvi_media_t to quvi object functions in LUA reg.
|
||||
index;
|
||||
- collegehumor.lua: Add 'best' ('hq') format;
|
||||
- LUA: Add resolve function to quvi object;
|
||||
- Add bikeradar.lua (#50);
|
||||
- Add guardian.lua (#51);
|
||||
- Add more NSFW scripts;
|
||||
- Add blip.lua (#39);
|
||||
+ Changes: Build system:
|
||||
- Add --with-soup (see INSTALL);
|
||||
+ Changes: Documentation:
|
||||
- INSTALL: Remove list of (obsolete) env. variables;
|
||||
- Add doc/WebsiteScriptGuideLines;
|
||||
- API: Reorganize "Modules";
|
||||
+ Bugfixes: Webscripts:
|
||||
- collegehumor.lua:51: server response code 404 (#35);
|
||||
- vimeo.lua:62: no match: hd button (#48);
|
||||
- liveleak.lua:48: no match: config (#47);
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Apr 11 22:29:53 UTC 2011 - nmarques@opensuse.org
|
||||
|
||||
|
17
quvi.spec
17
quvi.spec
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package quvi
|
||||
# spec file for package quvi (Version 0.2.16)
|
||||
#
|
||||
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
@ -20,25 +20,24 @@
|
||||
%define soname 0
|
||||
|
||||
Name: quvi
|
||||
Version: 0.2.14
|
||||
Version: 0.2.16
|
||||
Release: 1
|
||||
Summary: Parsing video downloads links for Youtube and others
|
||||
Group: Productivity/Multimedia/Other
|
||||
License: GNU LGPLv2.1
|
||||
Url: http://sourceforge.net/projects/quvi/files/0.2/
|
||||
URL: http://sourceforge.net/projects/quvi/files/0.2/
|
||||
Source: %{name}-%{version}.tar.bz2
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildRequires: libcurl-devel >= 7.18.0
|
||||
BuildRequires: pkg-config
|
||||
BuildRequires: pkgconfig
|
||||
BuildRequires: pkgconfig(libcurl) >= 7.18.0
|
||||
BuildRequires: pkgconfig(libpcre) >= 7.8
|
||||
BuildRequires: pkgconfig(lua) >= 5.1
|
||||
BuildRequires: pcre-devel >= 7.8
|
||||
|
||||
%description
|
||||
quvi is a commandline tool for parsing video download links. It supports
|
||||
Youtube and other similar video Web sites.
|
||||
|
||||
%package -n libquvi%{soname}
|
||||
|
||||
Summary: Parsing video downloads links for Youtube and others
|
||||
Group: Development/Libraries/C and C++
|
||||
|
||||
@ -47,7 +46,6 @@ libquvi is a library for parsing video download links with a C API. It is
|
||||
written in C and intended to be a cross-platform library.
|
||||
|
||||
%package -n libquvi-devel
|
||||
|
||||
Summary: Parsing video downloads links for Youtube and others
|
||||
Group: Development/Libraries/C and C++
|
||||
Requires: libquvi%{soname} = %{version}-%{release}
|
||||
@ -82,7 +80,7 @@ find %{buildroot}%{_libdir} -name '*.la' -type f -delete -print
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,0755)
|
||||
%doc ChangeLog COPYING README
|
||||
%doc COPYING README
|
||||
%{_bindir}/%{name}
|
||||
%{_datadir}/%{name}/
|
||||
%{_mandir}/man1/%{name}*
|
||||
@ -94,6 +92,7 @@ find %{buildroot}%{_libdir} -name '*.la' -type f -delete -print
|
||||
|
||||
%files -n libquvi-devel
|
||||
%defattr(-,root,root,0755)
|
||||
%doc ChangeLog
|
||||
%{_includedir}/%{name}/
|
||||
%{_libdir}/*.so
|
||||
%{_libdir}/pkgconfig/*.pc
|
||||
|
Loading…
Reference in New Issue
Block a user