This commit is contained in:
parent
e2b643a730
commit
0e952f7774
@ -1,11 +0,0 @@
|
||||
--- src/music-players.h
|
||||
+++ src/music-players.h
|
||||
@@ -576,7 +576,7 @@
|
||||
// Reported by Patrik Johansson <Patrik.Johansson@qivalue.com>
|
||||
{ "Cowon", 0x0e21, "iAudio U3 (MTP mode)", 0x0701, DEVICE_FLAG_NONE },
|
||||
// Reported by Roberth Karman
|
||||
- { "Cowon", 0x0e21, "iAudio 7 (MTP mode)", 0x0751, DEVICE_FLAG_NONE },
|
||||
+ { "Cowon", 0x0e21, "iAudio 7 (MTP mode)", 0x0751, DEVICE_FLAG_UNLOAD_DRIVER },
|
||||
// Reported by an anonymous SourceForge user
|
||||
{ "Cowon", 0x0e21, "iAudio U5 (MTP mode)", 0x0761, DEVICE_FLAG_NONE },
|
||||
// Reported by TJ Something <tjbk_tjb@users.sourceforge.net>
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a8635c7bb5410c331cf0835d7283cd6b442256cb68ffab90b85f4f9605218f47
|
||||
size 424427
|
3
libmtp-0.3.7.tar.bz2
Normal file
3
libmtp-0.3.7.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:77714760d00c7de78d7bba2645b93b001321f54be1a0b49d5650db82b95bc8fc
|
||||
size 422599
|
@ -1,3 +1,38 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 17 14:59:24 CET 2009 - meissner@suse.de
|
||||
|
||||
- upgraded to 0.3.7
|
||||
* compatible library interface libmtp.8.2.2
|
||||
* stores albums and playlists in the default
|
||||
music folder if no default folder for albums resp.
|
||||
playlists has been detected.
|
||||
* an error report from RedHat BZ
|
||||
http://bugzilla.redhat.com/show_bug.cgi?id=485627
|
||||
led to strange code for detecting anonymous OGG files
|
||||
being rewritten to handle NULL filenames and filenames
|
||||
that do not exceed 4 chars.
|
||||
* patch from Marcus to fix an issue
|
||||
with retransmit originally reported by Florent Pillet.
|
||||
* discovered a new device that cannot even
|
||||
read out battery level but still claims to be able to.
|
||||
- upgraded to 0.3.6
|
||||
* Compatible API libmtp.so.8.2.1
|
||||
* Several bug fixes to the examples
|
||||
* Improved Windows and *BSD support
|
||||
* Proper device flags to handle Toshiba players (hopefully)
|
||||
* New devices and flag settings
|
||||
* Nothing new from a programmers point of view
|
||||
- upgraded to 0.3.5
|
||||
* Bumped soname to libmtp.so.8.2.0
|
||||
- Only interface change:
|
||||
* Change metadata const*const to *const to allow playlist_id to be
|
||||
modified by LIBMTP_Update_Playlist. Shouldn't affect any code out
|
||||
there really.
|
||||
- New features and bugfixes:
|
||||
* Allow for playlists with zero tracks on them (also in update).
|
||||
* Get folders to a flat list and we get O(n) searching instead of
|
||||
the previous O(n^2) algorithm! The rest is janitorial changes.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 15 11:54:26 CET 2008 - meissner@suse.de
|
||||
|
||||
|
48
libmtp.spec
48
libmtp.spec
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package libmtp (Version 0.3.4)
|
||||
# spec file for package libmtp (Version 0.3.7)
|
||||
#
|
||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2009 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
|
||||
@ -21,19 +21,14 @@
|
||||
Name: libmtp
|
||||
Url: http://sf.net/projects/libmtp
|
||||
BuildRequires: doxygen
|
||||
%if %suse_version > 1020
|
||||
BuildRequires: libusb-devel
|
||||
%else
|
||||
BuildRequires: libusb
|
||||
%endif
|
||||
License: LGPL v2.1 or later
|
||||
Group: Productivity/Multimedia/Sound/Players
|
||||
AutoReqProv: on
|
||||
Summary: Commandline utilities for access to MTP Players
|
||||
Version: 0.3.4
|
||||
Release: 2
|
||||
Version: 0.3.7
|
||||
Release: 1
|
||||
Source0: %name-%version.tar.bz2
|
||||
Patch0: cowon-iaudio7-fix.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
|
||||
%description
|
||||
@ -89,9 +84,7 @@ License: LGPL v2.1 or later
|
||||
Summary: Development files for access to MTP Player library
|
||||
Group: Development/Libraries/Other
|
||||
Requires: libmtp8 = %version
|
||||
%if %suse_version > 1020
|
||||
Requires: libusb-devel
|
||||
%endif
|
||||
|
||||
%description devel
|
||||
This package contains the development headers for the libmtp library
|
||||
@ -127,7 +120,6 @@ Authors:
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
%patch0 -p0
|
||||
|
||||
%build
|
||||
%configure --program-prefix=mtp- --disable-static
|
||||
@ -166,6 +158,38 @@ rm -rf $RPM_BUILD_ROOT/%{_libdir}/*.la
|
||||
%{_prefix}/include/libmtp.h
|
||||
|
||||
%changelog
|
||||
* Tue Mar 17 2009 meissner@suse.de
|
||||
- upgraded to 0.3.7
|
||||
* compatible library interface libmtp.8.2.2
|
||||
* stores albums and playlists in the default
|
||||
music folder if no default folder for albums resp.
|
||||
playlists has been detected.
|
||||
* an error report from RedHat BZ
|
||||
http://bugzilla.redhat.com/show_bug.cgi?id=485627
|
||||
led to strange code for detecting anonymous OGG files
|
||||
being rewritten to handle NULL filenames and filenames
|
||||
that do not exceed 4 chars.
|
||||
* patch from Marcus to fix an issue
|
||||
with retransmit originally reported by Florent Pillet.
|
||||
* discovered a new device that cannot even
|
||||
read out battery level but still claims to be able to.
|
||||
- upgraded to 0.3.6
|
||||
* Compatible API libmtp.so.8.2.1
|
||||
* Several bug fixes to the examples
|
||||
* Improved Windows and *BSD support
|
||||
* Proper device flags to handle Toshiba players (hopefully)
|
||||
* New devices and flag settings
|
||||
* Nothing new from a programmers point of view
|
||||
- upgraded to 0.3.5
|
||||
* Bumped soname to libmtp.so.8.2.0
|
||||
- Only interface change:
|
||||
* Change metadata const*const to *const to allow playlist_id to be
|
||||
modified by LIBMTP_Update_Playlist. Shouldn't affect any code out
|
||||
there really.
|
||||
- New features and bugfixes:
|
||||
* Allow for playlists with zero tracks on them (also in update).
|
||||
* Get folders to a flat list and we get O(n) searching instead of
|
||||
the previous O(n^2) algorithm! The rest is janitorial changes.
|
||||
* Mon Dec 15 2008 meissner@suse.de
|
||||
- detach the Cowon iAudio 7 from usb-storage on start to make it work
|
||||
bnc#457931
|
||||
|
Loading…
Reference in New Issue
Block a user