Accepting request 791482 from home:pluskalm:branches:hardware

- Update to version 1.2.0+git.20200330:
  * Add idevicesetlocation tool
  * debugserver: Fix argv encoding
  * Update debug.c to consistently output to stderr
  * idevicedebug: Rename name-colliding debug_info() to log_debug()
  * debugserver: Fix whitespace error
  * debugserver: Proxy SERVICE_E_TIMEOUT into DEBUGSERVER_E_TIMEOUT
  * introduces optional `idevice_connection_disable_ssl` with ability not to send  SSL shutdown message. As in debugserver this message will be considered as GDB server communication and break things
  * Increase timeout for service receive methods
  * idevicesyslog: Make sure CTRL+C works when waiting for passcode entry
  * configure.ac: Add checks to ensure libusbmuxd is up-to-date

OBS-URL: https://build.opensuse.org/request/show/791482
OBS-URL: https://build.opensuse.org/package/show/hardware/libimobiledevice?expand=0&rev=17
This commit is contained in:
Martin Pluskal 2020-04-05 08:26:14 +00:00 committed by Git OBS Bridge
parent 27a98bdc19
commit 6b52189f04
7 changed files with 41 additions and 18 deletions

View File

@ -1,17 +1,15 @@
<services>
<service name="tar_scm" mode="disabled">
<param name="url">https://github.com/libimobiledevice/libimobiledevice</param>
<service mode="disabled" name="obs_scm">
<param name="url">git@github.com:libimobiledevice/libimobiledevice.git</param>
<param name="scm">git</param>
<param name="changesgenerate">enable</param>
<param name="filename">libimobiledevice</param>
<param name="exclude">.git</param>
<param name="versionformat">1.2.0+git%cd.%h</param>
<param name="revision">master</param>
<param name="versionformat">1.2.0+git.%cd</param>
</service>
<service name="recompress" mode="disabled">
<param name="file">libimobiledevice-*.tar</param>
<param name="compression">xz</param>
</service>
<service name="set_version" mode="disabled">
<param name="basename">libimobiledevice</param>
<service mode="disabled" name="set_version"/>
<service name="tar" mode="buildtime"/>
<service name="recompress" mode="buildtime">
<param name="file">*.tar</param>
<param name="compression">gz</param>
</service>
</services>

4
_servicedata Normal file
View File

@ -0,0 +1,4 @@
<servicedata>
<service name="tar_scm">
<param name="url">git@github.com:libimobiledevice/libimobiledevice.git</param>
<param name="changesrevision">e6a4ab68cb860878b06f51a40cfde44e3971d55e</param></service></servicedata>

View File

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

View File

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

View File

@ -1,3 +1,18 @@
-------------------------------------------------------------------
Sun Apr 5 07:32:28 UTC 2020 - Martin Pluskal <mpluskal@suse.com>
- Update to version 1.2.0+git.20200330:
* Add idevicesetlocation tool
* debugserver: Fix argv encoding
* Update debug.c to consistently output to stderr
* idevicedebug: Rename name-colliding debug_info() to log_debug()
* debugserver: Fix whitespace error
* debugserver: Proxy SERVICE_E_TIMEOUT into DEBUGSERVER_E_TIMEOUT
* introduces optional `idevice_connection_disable_ssl` with ability not to send SSL shutdown message. As in debugserver this message will be considered as GDB server communication and break things
* Increase timeout for service receive methods
* idevicesyslog: Make sure CTRL+C works when waiting for passcode entry
* configure.ac: Add checks to ensure libusbmuxd is up-to-date
-------------------------------------------------------------------
Sat Mar 14 07:08:00 UTC 2020 - Tomáš Chvátal <tchvatal@suse.com>

5
libimobiledevice.obsinfo Normal file
View File

@ -0,0 +1,5 @@
name: libimobiledevice
version: 1.2.0+git.20200330
mtime: 1585570524
commit: e6a4ab68cb860878b06f51a40cfde44e3971d55e

View File

@ -18,12 +18,12 @@
%define soname 6
Name: libimobiledevice
Version: 1.2.0+git20200220.3d8d13f
Version: 1.2.0+git.20200330
Release: 0
Summary: Native protocols library for iOS devices
License: LGPL-2.1-or-later
URL: https://www.libimobiledevice.org
Source: %{name}-%{version}.tar.xz
Source: %{name}-%{version}.tar.gz
Source1: baselibs.conf
BuildRequires: fdupes
BuildRequires: gcc-c++
@ -90,8 +90,7 @@ sed -i -e 's/-L${libdir}//' src/%{name}-1.0.pc.in
autoreconf -fvi
%configure \
--disable-silent-rules \
--disable-static \
--disable-dev-tools
--disable-static
%make_build
%install
@ -127,6 +126,7 @@ find %{buildroot} -type f -name "*.la" -delete -print
%{_bindir}/idevicescreenshot
%{_bindir}/ideviceenterrecovery
%{_bindir}/idevicedate
%{_bindir}/idevicesetlocation
%{_bindir}/ideviceprovision
%{_bindir}/idevicenotificationproxy
%{_mandir}/man1/idevice_id.1%{?ext_man}
@ -143,6 +143,7 @@ find %{buildroot} -type f -name "*.la" -delete -print
%{_mandir}/man1/idevicename.1%{?ext_man}
%{_mandir}/man1/idevicescreenshot.1%{?ext_man}
%{_mandir}/man1/ideviceenterrecovery.1%{?ext_man}
%{_mandir}/man1/idevicesetlocation.1%{?ext_man}
%{_mandir}/man1/idevicedate.1%{?ext_man}
%{_mandir}/man1/ideviceprovision.1%{?ext_man}
%{_mandir}/man1/idevicenotificationproxy.1%{?ext_man}