Accepting request 267009 from home:Zaitor:branches:GNOME:Factory
Update - we have missed a few here. There is also this rpmlint [ 12s] libuhttpmock-0_0-0.x86_64: E: library-without-ldconfig-postun (Badness: 300) /usr/lib64/libuhttpmock-0.0.so.0.1.3 [ 12s] This package contains a library and provides no %postun scriptlet containing a [ 12s] call to ldconfig. [ 12s] [ 12s] libuhttpmock-0_0-0.x86_64: E: library-without-ldconfig-postin (Badness: 300) /usr/lib64/libuhttpmock-0.0.so.0.1.3 [ 12s] This package contains a library and provides no %post scriptlet containing a [ 12s] call to ldconfig. [ 12s] But nothing new from before. Resub as I spotted the error with the source url OBS-URL: https://build.opensuse.org/request/show/267009 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/uhttpmock?expand=0&rev=3
This commit is contained in:
parent
ecc1d2a86a
commit
04966c1672
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:6bc8df4cb2e0484a029ae159becc20b3df3dcc4c0ea493d25e9e2b4ab8a39e93
|
|
||||||
size 284064
|
|
3
uhttpmock-0.3.3.tar.xz
Normal file
3
uhttpmock-0.3.3.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:7cc1eda146b5e7a434ed31413f6f12660db00c34d10083f693b93683a28bd57e
|
||||||
|
size 290632
|
@ -1,3 +1,28 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 1 22:53:03 UTC 2015 - zaitor@opensuse.org
|
||||||
|
|
||||||
|
- Update to version 0.3.3:
|
||||||
|
+ Fix comparison mode.
|
||||||
|
- Changes from version 0.3.2:
|
||||||
|
+ Fix some memory leaks.
|
||||||
|
+ Rearchitect trace file parsing to correctly handle buffer
|
||||||
|
boundaries.
|
||||||
|
- Changes from version 0.3.1:
|
||||||
|
+ Add optional support for libsoup ≥ 2.47.3.
|
||||||
|
- Changes from version 0.3.0:
|
||||||
|
+ Major changes:
|
||||||
|
- Drop useless gthread dependency.
|
||||||
|
- Thread safety fixes.
|
||||||
|
+ API changes:
|
||||||
|
- Add uhm_server_set_expected_domain_names().
|
||||||
|
- Add uhm_server_received_message_chunk_with_direction(),
|
||||||
|
uhm_server_received_message_chunk_from_soup().
|
||||||
|
+ Bugs fixed:
|
||||||
|
- rh#1026764: Review Request: uhttpmock - HTTP web service
|
||||||
|
mocking library.
|
||||||
|
- bgo#731040: libgdata-0.14.3 tests fail.
|
||||||
|
- Drop pkgconfig(gthread-2.0) BuildRequires following upstream.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Dec 19 19:49:22 UTC 2013 - dimstar@opensuse.org
|
Thu Dec 19 19:49:22 UTC 2013 - dimstar@opensuse.org
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package uhttpmock
|
# spec file for package uhttpmock
|
||||||
#
|
#
|
||||||
|
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2013 Dominique Leuenberger, Amsterdam, The Netherlands.
|
# Copyright (c) 2013 Dominique Leuenberger, Amsterdam, The Netherlands.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
@ -15,20 +16,20 @@
|
|||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
Name: uhttpmock
|
Name: uhttpmock
|
||||||
Version: 0.2.0
|
Version: 0.3.3
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: HTTP web service mocking library
|
Summary: HTTP web service mocking library
|
||||||
Group: Development/Tools
|
|
||||||
License: LGPL-2.1+
|
License: LGPL-2.1+
|
||||||
URL: http://gitorious.org/uhttpmock
|
Group: Development/Tools
|
||||||
Source0: http://tecnocode.co.uk/downloads/%{name}-%{version}.tar.xz
|
Url: http://gitorious.org/uhttpmock
|
||||||
|
Source0: http://tecnocode.co.uk/downloads/%{name}/%{name}-%{version}.tar.xz
|
||||||
BuildRequires: gobject-introspection-devel
|
BuildRequires: gobject-introspection-devel
|
||||||
BuildRequires: pkgconfig(gobject-2.0)
|
|
||||||
BuildRequires: pkgconfig(glib-2.0) >= 2.31.0
|
|
||||||
BuildRequires: pkgconfig(gio-2.0) >= 2.17.3
|
BuildRequires: pkgconfig(gio-2.0) >= 2.17.3
|
||||||
BuildRequires: pkgconfig(libsoup-2.4) >= 2.37.91
|
BuildRequires: pkgconfig(glib-2.0) >= 2.31.0
|
||||||
BuildRequires: pkgconfig(gthread-2.0)
|
BuildRequires: pkgconfig(gobject-2.0)
|
||||||
|
BuildRequires: pkgconfig(libsoup-2.4) >= 2.47.3
|
||||||
|
|
||||||
%description
|
%description
|
||||||
uhttpmock is a project for mocking web service APIs which use HTTP or HTTPS.
|
uhttpmock is a project for mocking web service APIs which use HTTP or HTTPS.
|
||||||
@ -57,8 +58,8 @@ playback of HTTP request/response traces.
|
|||||||
%package devel
|
%package devel
|
||||||
Summary: Development files for %{name}
|
Summary: Development files for %{name}
|
||||||
Group: Development/Libraries
|
Group: Development/Libraries
|
||||||
Requires: typelib-1_0-Uhm-0_0 = %{version}
|
|
||||||
Requires: libuhttpmock-0_0-0 = %{version}
|
Requires: libuhttpmock-0_0-0 = %{version}
|
||||||
|
Requires: typelib-1_0-Uhm-0_0 = %{version}
|
||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
This package contains libraries, header files and documentation for
|
This package contains libraries, header files and documentation for
|
||||||
@ -88,7 +89,7 @@ rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
|
|||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc %{_datadir}/gtk-doc/html/libuhttpmock/
|
%doc %{_datadir}/gtk-doc/html/libuhttpmock-0.0/
|
||||||
%{_libdir}/*.so
|
%{_libdir}/*.so
|
||||||
%{_includedir}/libuhttpmock-0.0/
|
%{_includedir}/libuhttpmock-0.0/
|
||||||
%{_libdir}/pkgconfig/libuhttpmock-0.0.pc
|
%{_libdir}/pkgconfig/libuhttpmock-0.0.pc
|
||||||
|
Loading…
Reference in New Issue
Block a user