commit libmtp for openSUSE:Factory

2020-10-14 Thread root
Hello community,

here is the log from the commit of package libmtp for openSUSE:Factory checked 
in at 2020-10-14 15:36:07

Comparing /work/SRC/openSUSE:Factory/libmtp (Old)
 and  /work/SRC/openSUSE:Factory/.libmtp.new.3486 (New)


Package is "libmtp"

Wed Oct 14 15:36:07 2020 rev:81 rq:841029 version:1.1.18

Changes:

--- /work/SRC/openSUSE:Factory/libmtp/libmtp.changes2020-02-06 
13:06:03.840265592 +0100
+++ /work/SRC/openSUSE:Factory/.libmtp.new.3486/libmtp.changes  2020-10-14 
15:37:11.730320571 +0200
@@ -1,0 +2,8 @@
+Sun Oct 11 11:59:58 UTC 2020 - Marcus Meissner 
+
+- updated to 1.1.18 release
+  - new USB ids
+  - mtp-getfile and mtp-delfile new parameter
+  - report "error 6" as "busy / blocked by another device"
+
+---

Old:

  libmtp-1.1.17.tar.gz
  libmtp-1.1.17.tar.gz.asc

New:

  libmtp-1.1.18.tar.gz
  libmtp-1.1.18.tar.gz.asc



Other differences:
--
++ libmtp.spec ++
--- /var/tmp/diff_new_pack.8Ounu4/_old  2020-10-14 15:37:14.706321610 +0200
+++ /var/tmp/diff_new_pack.8Ounu4/_new  2020-10-14 15:37:14.710321611 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libmtp
 #
-# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,7 +20,7 @@
 %{!?_udevrulesdir: %global _udevrulesdir %(pkg-config --variable=udevdir 
udev)/rules.d }
 %{!?_udevdir: %global _udevdir %(pkg-config --variable=udevdir udev) }
 Name:   libmtp
-Version:1.1.17
+Version:1.1.18
 Release:0
 Summary:Commandline utilities for access to MTP Players
 License:LGPL-2.1-or-later

++ libmtp-1.1.17.tar.gz -> libmtp-1.1.18.tar.gz ++
 2334 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/libmtp-1.1.17/configure.ac new/libmtp-1.1.18/configure.ac
--- old/libmtp-1.1.17/configure.ac  2020-02-02 13:21:07.0 +0100
+++ new/libmtp-1.1.18/configure.ac  2020-10-11 13:28:36.0 +0200
@@ -1,6 +1,6 @@
 # Process this file with autoconf to produce a configure script.
 AC_PREREQ(2.52)
-AC_INIT([libmtp], [1.1.17], [libmtp-disc...@lists.sourceforge.net])
+AC_INIT([libmtp], [1.1.18], [libmtp-disc...@lists.sourceforge.net])
 AC_CONFIG_MACRO_DIR([m4])
 AM_INIT_AUTOMAKE([foreign])
 AC_CONFIG_SRCDIR([src/libmtp.c])
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/libmtp-1.1.17/doc/Doxyfile.in new/libmtp-1.1.18/doc/Doxyfile.in
--- old/libmtp-1.1.17/doc/Doxyfile.in   2013-03-17 09:04:49.0 +0100
+++ new/libmtp-1.1.18/doc/Doxyfile.in   2020-02-08 09:23:21.0 +0100
@@ -96,7 +96,7 @@
 # path before files name in the file list and in the header files. If set 
 # to NO the shortest path that makes the file name unique will be used.
 
-FULL_PATH_NAMES= YES
+FULL_PATH_NAMES= NO
 
 # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag 
 # can be used to strip a user-defined part of the path. Stripping is 
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/libmtp-1.1.17/examples/connect.c new/libmtp-1.1.18/examples/connect.c
--- old/libmtp-1.1.17/examples/connect.c2013-03-17 09:04:49.0 
+0100
+++ new/libmtp-1.1.18/examples/connect.c2020-07-22 10:57:52.0 
+0200
@@ -69,7 +69,13 @@
 
   fprintf(stdout, "libmtp version: " LIBMTP_VERSION_STRING "\n\n");
 
-  device = LIBMTP_Get_First_Device();
+  if ((strncmp(basename(argv[0]),"mtp-delfile",11) == 0) || 
(strncmp(basename(argv[0]),"delfile",7) == 0))
+device = delfile_device(argc,argv);
+  else if ((strncmp(basename(argv[0]),"mtp-getfile",11) == 0) || 
(strncmp(basename(argv[0]),"getfile",7) == 0))
+device = getfile_device(argc,argv);
+  else
+device = LIBMTP_Get_First_Device();
+
   if (device == NULL) {
 printf("No devic

commit libmtp for openSUSE:Factory

2020-02-06 Thread root
Hello community,

here is the log from the commit of package libmtp for openSUSE:Factory checked 
in at 2020-02-06 13:05:55

Comparing /work/SRC/openSUSE:Factory/libmtp (Old)
 and  /work/SRC/openSUSE:Factory/.libmtp.new.26092 (New)


Package is "libmtp"

Thu Feb  6 13:05:55 2020 rev:80 rq:769381 version:1.1.17

Changes:

--- /work/SRC/openSUSE:Factory/libmtp/libmtp.changes2018-12-21 
08:19:01.405704523 +0100
+++ /work/SRC/openSUSE:Factory/.libmtp.new.26092/libmtp.changes 2020-02-06 
13:06:03.840265592 +0100
@@ -1,0 +2,7 @@
+Sun Feb  2 14:00:38 UTC 2020 - Marcus Meissner 
+
+- updated to 1.1.17 release
+  - new USB Ids
+  - various bugfixes
+
+---

Old:

  libmtp-1.1.16.tar.gz
  libmtp-1.1.16.tar.gz.asc

New:

  libmtp-1.1.17.tar.gz
  libmtp-1.1.17.tar.gz.asc



Other differences:
--
++ libmtp.spec ++
--- /var/tmp/diff_new_pack.kx1SJL/_old  2020-02-06 13:06:04.900266168 +0100
+++ /var/tmp/diff_new_pack.kx1SJL/_new  2020-02-06 13:06:04.900266168 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libmtp
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 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
@@ -20,7 +20,7 @@
 %{!?_udevrulesdir: %global _udevrulesdir %(pkg-config --variable=udevdir 
udev)/rules.d }
 %{!?_udevdir: %global _udevdir %(pkg-config --variable=udevdir udev) }
 Name:   libmtp
-Version:1.1.16
+Version:1.1.17
 Release:0
 Summary:Commandline utilities for access to MTP Players
 License:LGPL-2.1-or-later

++ libmtp-1.1.16.tar.gz -> libmtp-1.1.17.tar.gz ++
 3893 lines of diff (skipped)





commit libmtp for openSUSE:Factory

2018-12-20 Thread root
Hello community,

here is the log from the commit of package libmtp for openSUSE:Factory checked 
in at 2018-12-21 08:19:00

Comparing /work/SRC/openSUSE:Factory/libmtp (Old)
 and  /work/SRC/openSUSE:Factory/.libmtp.new.28833 (New)


Package is "libmtp"

Fri Dec 21 08:19:00 2018 rev:79 rq:658957 version:1.1.16

Changes:

--- /work/SRC/openSUSE:Factory/libmtp/libmtp.changes2018-11-08 
09:40:42.133645440 +0100
+++ /work/SRC/openSUSE:Factory/.libmtp.new.28833/libmtp.changes 2018-12-21 
08:19:01.405704523 +0100
@@ -1,0 +2,5 @@
+Fri Dec 14 13:25:50 UTC 2018 - Martin Pluskal 
+
+- Small packaging cleanup
+
+---



Other differences:
--
++ libmtp.spec ++
--- /var/tmp/diff_new_pack.JD8qMD/_old  2018-12-21 08:19:02.029703940 +0100
+++ /var/tmp/diff_new_pack.JD8qMD/_new  2018-12-21 08:19:02.033703936 +0100
@@ -12,29 +12,28 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
+%define sonum   9
+%{!?_udevrulesdir: %global _udevrulesdir %(pkg-config --variable=udevdir 
udev)/rules.d }
+%{!?_udevdir: %global _udevdir %(pkg-config --variable=udevdir udev) }
 Name:   libmtp
-Url:http://sf.net/projects/libmtp
-BuildRequires:  doxygen
-BuildRequires:  libgcrypt-devel
-BuildRequires:  libusb-1_0-devel
-BuildRequires:  pkg-config
-BuildRequires:  pkgconfig(udev)
-Summary:Commandline utilities for access to MTP Players
-License:LGPL-2.1+
-Group:  Productivity/Multimedia/Sound/Players
 Version:1.1.16
 Release:0
-%define sonum   9
+Summary:Commandline utilities for access to MTP Players
+License:LGPL-2.1-or-later
+Group:  Productivity/Multimedia/Sound/Players
+URL:http://sf.net/projects/libmtp
 Source0:
http://downloads.sourceforge.net/project/%{name}/%{name}/%{version}/%{name}-%{version}.tar.gz
 Source1:
http://downloads.sourceforge.net/project/%{name}/%{name}/%{version}/%{name}-%{version}.tar.gz.asc
-Source2:%name.keyring
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%{!?_udevrulesdir: %global _udevrulesdir %(pkg-config --variable=udevdir 
udev)/rules.d }
-%{!?_udevdir: %global _udevdir %(pkg-config --variable=udevdir udev) }
+Source2:%{name}.keyring
+BuildRequires:  doxygen
+BuildRequires:  libgcrypt-devel
+BuildRequires:  pkgconfig
+BuildRequires:  pkgconfig(libusb-1.0)
+BuildRequires:  pkgconfig(udev)
 
 %description
 This package contains binaries and documentation that allow access to
@@ -47,7 +46,7 @@
 %package -n %{name}-udev
 Summary:Udev rules for accessing MTP devices
 Group:  Hardware/Mobile
-Requires:   udev
+Requires:   pkgconfig(udev)
 
 %description -n %{name}-udev
 This package contains the udev rules that allow access to USB based media
@@ -95,39 +94,31 @@
 make %{?_smp_mflags}
 
 %install
-make install DESTDIR=$RPM_BUILD_ROOT
+%make_install
 #install -d $RPM_BUILD_ROOT/usr/share/hal/fdi/information/20thirdparty/
 #install -c -m 644 libmtp.fdi 
$RPM_BUILD_ROOT/usr/share/hal/fdi/information/20thirdparty/10-usb-music-players-libmtp.fdi
-rm -rf %{buildroot}/usr/share/doc/libmtp*
-rm -rf %{buildroot}/%{_libdir}/*.la
+rm -rf %{buildroot}%{_datadir}/doc/libmtp*
+find %{buildroot} -type f -name "*.la" -delete -print
 
 %post -n   %{name}%{sonum} -p /sbin/ldconfig
 %postun -n %{name}%{sonum} -p /sbin/ldconfig
 
 %files -n mtp-tools
-%defattr(-, root, root)
-%{_prefix}/bin/*
+%{_bindir}/*
 
 %files -n %{name}%{sonum}
-%defattr(-, root, root)
-%doc COPYING README ChangeLog AUTHORS
+%license COPYING
+%doc README ChangeLog AUTHORS
 %{_libdir}/lib*.so.*
-#%dir /usr/share/hal
-#dir /usr/share/hal/fdi
-#dir /usr/share/hal/fdi/information
-#dir /usr/share/hal/fdi/information/20thirdparty/
-#usr/share/hal/fdi/information/20thirdparty/10-usb-music-players-libmtp.fdi
 
 %files -n %{name}-udev
-%defattr(-, root, root)
 %{_udevdir}
 %{_udevrulesdir}
 
 %files devel
-%defattr(-, root, root)
 %doc doc/html TODO
 %{_libdir}/lib*.so
 %{_libdir}/pkgconfig/libmtp.pc
-%{_prefix}/include/libmtp.h
+%{_includedir}/libmtp.h
 
 %changelog






commit libmtp for openSUSE:Factory

2018-11-08 Thread root
Hello community,

here is the log from the commit of package libmtp for openSUSE:Factory checked 
in at 2018-11-08 09:40:39

Comparing /work/SRC/openSUSE:Factory/libmtp (Old)
 and  /work/SRC/openSUSE:Factory/.libmtp.new (New)


Package is "libmtp"

Thu Nov  8 09:40:39 2018 rev:78 rq:645048 version:1.1.16

Changes:

--- /work/SRC/openSUSE:Factory/libmtp/libmtp.changes2018-03-29 
11:48:23.617985373 +0200
+++ /work/SRC/openSUSE:Factory/.libmtp.new/libmtp.changes   2018-11-08 
09:40:42.133645440 +0100
@@ -1,0 +2,8 @@
+Sat Oct 27 17:09:08 UTC 2018 - meiss...@suse.com
+
+- updated to 1.1.16 release
+  - lots of new USB ids
+  - some bugfixes
+  - adjust udev rules for new kernel versions (bsc#1110868)
+
+---
@@ -9 +16,0 @@
-

Old:

  libmtp-1.1.15.tar.gz
  libmtp-1.1.15.tar.gz.asc

New:

  libmtp-1.1.16.tar.gz
  libmtp-1.1.16.tar.gz.asc



Other differences:
--
++ libmtp.spec ++
--- /var/tmp/diff_new_pack.y5sJiL/_old  2018-11-08 09:40:43.125644293 +0100
+++ /var/tmp/diff_new_pack.y5sJiL/_new  2018-11-08 09:40:43.129644288 +0100
@@ -26,7 +26,7 @@
 Summary:Commandline utilities for access to MTP Players
 License:LGPL-2.1+
 Group:  Productivity/Multimedia/Sound/Players
-Version:1.1.15
+Version:1.1.16
 Release:0
 %define sonum   9
 Source0:
http://downloads.sourceforge.net/project/%{name}/%{name}/%{version}/%{name}-%{version}.tar.gz

++ libmtp-1.1.15.tar.gz -> libmtp-1.1.16.tar.gz ++
 7027 lines of diff (skipped)





commit libmtp for openSUSE:Factory

2018-03-29 Thread root
Hello community,

here is the log from the commit of package libmtp for openSUSE:Factory checked 
in at 2018-03-29 11:48:19

Comparing /work/SRC/openSUSE:Factory/libmtp (Old)
 and  /work/SRC/openSUSE:Factory/.libmtp.new (New)


Package is "libmtp"

Thu Mar 29 11:48:19 2018 rev:77 rq:590840 version:1.1.15

Changes:

--- /work/SRC/openSUSE:Factory/libmtp/libmtp.changes2017-10-07 
17:46:18.470797574 +0200
+++ /work/SRC/openSUSE:Factory/.libmtp.new/libmtp.changes   2018-03-29 
11:48:23.617985373 +0200
@@ -1,0 +2,10 @@
+Sat Mar 24 17:35:38 UTC 2018 - meiss...@suse.com
+
+- updated to 1.1.15 release
+  - lots of new USB ids
+  - copy and move object implemented
+  - 64bit file bugfixes
+  - bugfixes
+
+
+---

Old:

  libmtp-1.1.14.tar.gz
  libmtp-1.1.14.tar.gz.asc

New:

  libmtp-1.1.15.tar.gz
  libmtp-1.1.15.tar.gz.asc



Other differences:
--
++ libmtp.spec ++
--- /var/tmp/diff_new_pack.vQSSCF/_old  2018-03-29 11:48:24.261962172 +0200
+++ /var/tmp/diff_new_pack.vQSSCF/_new  2018-03-29 11:48:24.265962028 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libmtp
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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,7 +26,7 @@
 Summary:Commandline utilities for access to MTP Players
 License:LGPL-2.1+
 Group:  Productivity/Multimedia/Sound/Players
-Version:1.1.14
+Version:1.1.15
 Release:0
 %define sonum   9
 Source0:
http://downloads.sourceforge.net/project/%{name}/%{name}/%{version}/%{name}-%{version}.tar.gz

++ libmtp-1.1.14.tar.gz -> libmtp-1.1.15.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libmtp-1.1.14/configure new/libmtp-1.1.15/configure
--- old/libmtp-1.1.14/configure 2017-10-01 21:25:43.0 +0200
+++ new/libmtp-1.1.15/configure 2018-03-24 12:04:12.0 +0100
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for libmtp 1.1.14.
+# Generated by GNU Autoconf 2.69 for libmtp 1.1.15.
 #
 # Report bugs to .
 #
@@ -590,8 +590,8 @@
 # Identity of this package.
 PACKAGE_NAME='libmtp'
 PACKAGE_TARNAME='libmtp'
-PACKAGE_VERSION='1.1.14'
-PACKAGE_STRING='libmtp 1.1.14'
+PACKAGE_VERSION='1.1.15'
+PACKAGE_STRING='libmtp 1.1.15'
 PACKAGE_BUGREPORT='libmtp-disc...@lists.sourceforge.net'
 PACKAGE_URL=''
 
@@ -1360,7 +1360,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures libmtp 1.1.14 to adapt to many kinds of systems.
+\`configure' configures libmtp 1.1.15 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1430,7 +1430,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
- short | recursive ) echo "Configuration of libmtp 1.1.14:";;
+ short | recursive ) echo "Configuration of libmtp 1.1.15:";;
esac
   cat <<\_ACEOF
 
@@ -1562,7 +1562,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-libmtp configure 1.1.14
+libmtp configure 1.1.15
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -2042,7 +2042,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by libmtp $as_me 1.1.14, which was
+It was created by libmtp $as_me 1.1.15, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -2906,7 +2906,7 @@
 
 # Define the identity of the package.
  PACKAGE='libmtp'
- VERSION='1.1.14'
+ VERSION='1.1.15'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -16633,7 +16633,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by libmtp $as_me 1.1.14, which was
+This file was extended by libmtp $as_me 1.1.15, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   CONFIG_FILES= $CONFIG_FILES
@@ -16699,7 +16699,7 @@
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; 
s/[\\""\`\$]/&/g'`"
 ac_cs_version="\\
-libmtp config.status 1.1.14
+libmtp config.status 1.1.15
 configured by $0, generated by GNU Autoconf 2.69,
   with options \\"\$ac_cs_config\\"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=

commit libmtp for openSUSE:Factory

2017-10-07 Thread root
Hello community,

here is the log from the commit of package libmtp for openSUSE:Factory checked 
in at 2017-10-07 17:46:16

Comparing /work/SRC/openSUSE:Factory/libmtp (Old)
 and  /work/SRC/openSUSE:Factory/.libmtp.new (New)


Package is "libmtp"

Sat Oct  7 17:46:16 2017 rev:76 rq:530356 version:1.1.14

Changes:

--- /work/SRC/openSUSE:Factory/libmtp/libmtp.changes2017-04-17 
10:22:41.864918964 +0200
+++ /work/SRC/openSUSE:Factory/.libmtp.new/libmtp.changes   2017-10-07 
17:46:18.470797574 +0200
@@ -1,0 +2,8 @@
+Mon Oct  2 08:06:48 UTC 2017 - meiss...@suse.com
+
+- updated to 1.1.14 release
+  - lots of new USB ids
+  - 64bit file bugfixes
+  - bugfixes
+
+---

Old:

  libmtp-1.1.13.tar.gz
  libmtp-1.1.13.tar.gz.asc

New:

  libmtp-1.1.14.tar.gz
  libmtp-1.1.14.tar.gz.asc



Other differences:
--
++ libmtp.spec ++
--- /var/tmp/diff_new_pack.JyPuKk/_old  2017-10-07 17:46:19.178766453 +0200
+++ /var/tmp/diff_new_pack.JyPuKk/_new  2017-10-07 17:46:19.182766277 +0200
@@ -26,7 +26,7 @@
 Summary:Commandline utilities for access to MTP Players
 License:LGPL-2.1+
 Group:  Productivity/Multimedia/Sound/Players
-Version:1.1.13
+Version:1.1.14
 Release:0
 %define sonum   9
 Source0:
http://downloads.sourceforge.net/project/%{name}/%{name}/%{version}/%{name}-%{version}.tar.gz

++ libmtp-1.1.13.tar.gz -> libmtp-1.1.14.tar.gz ++
 2705 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/libmtp-1.1.13/compile new/libmtp-1.1.14/compile
--- old/libmtp-1.1.13/compile   2017-03-05 17:56:22.0 +0100
+++ new/libmtp-1.1.14/compile   2017-08-14 12:53:24.0 +0200
@@ -1,9 +1,9 @@
 #! /bin/sh
 # Wrapper for compilers which do not understand '-c -o'.
 
-scriptversion=2012-10-14.11; # UTC
+scriptversion=2016-01-11.22; # UTC
 
-# Copyright (C) 1999-2014 Free Software Foundation, Inc.
+# Copyright (C) 1999-2017 Free Software Foundation, Inc.
 # Written by Tom Tromey .
 #
 # This program is free software; you can redistribute it and/or modify
@@ -255,7 +255,8 @@
 echo "compile $scriptversion"
 exit $?
 ;;
-  cl | *[/\\]cl | cl.exe | *[/\\]cl.exe )
+  cl | *[/\\]cl | cl.exe | *[/\\]cl.exe | \
+  icl | *[/\\]icl | icl.exe | *[/\\]icl.exe )
 func_cl_wrapper "$@"  # Doesn't return...
 ;;
 esac
@@ -342,6 +343,6 @@
 # eval: (add-hook 'write-file-hooks 'time-stamp)
 # time-stamp-start: "scriptversion="
 # time-stamp-format: "%:y-%02m-%02d.%02H"
-# time-stamp-time-zone: "UTC"
+# time-stamp-time-zone: "UTC0"
 # time-stamp-end: "; # UTC"
 # End:
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/libmtp-1.1.13/configure.ac new/libmtp-1.1.14/configure.ac
--- old/libmtp-1.1.13/configure.ac  2017-04-02 21:12:47.0 +0200
+++ new/libmtp-1.1.14/configure.ac  2017-10-01 21:25:34.0 +0200
@@ -1,6 +1,6 @@
 # Process this file with autoconf to produce a configure script.
 AC_PREREQ(2.52)
-AC_INIT([libmtp], [1.1.13], [libmtp-disc...@lists.sourceforge.net])
+AC_INIT([libmtp], [1.1.14], [libmtp-disc...@lists.sourceforge.net])
 AC_CONFIG_MACRO_DIR([m4])
 AM_INIT_AUTOMAKE([foreign])
 AC_CONFIG_SRCDIR([src/libmtp.c])
@@ -114,7 +114,7 @@
 
 # Check for libusb-1.0
 PKG_CHECK_MODULES(LIBUSB, libusb-1.0 >= 1.0.0,[
-   LIBUSB_VER=`pkg-config --modversion libusb-1.0`
+   LIBUSB_VER=`$PKG_CONFIG --modversion libusb-1.0`
LIBUSB_REQUIRES='libusb-1.0'
AC_DEFINE(HAVE_LIBUSB1, [], [Have libusb 1.0])
found_libusb1_pkg=yes
@@ -125,7 +125,7 @@
 LIBUSB_VER=1.0
],[
   PKG_CHECK_MODULES(LIBUSB, libusb >= 0.1.8, [
- LIBUSB_VER=`pkg-config --modversion libusb`
+ LIBUSB_VER=`$PKG_CONFIG --modversion libusb`
  LIBUSB_REQUIRES='libusb'
  AC_DEFINE(HAVE_LIBUSB0, [], [Have libusb 0.x])
  found_libusb0_pkg=yes
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 

commit libmtp for openSUSE:Factory

2017-04-17 Thread root
Hello community,

here is the log from the commit of package libmtp for openSUSE:Factory checked 
in at 2017-04-17 10:22:39

Comparing /work/SRC/openSUSE:Factory/libmtp (Old)
 and  /work/SRC/openSUSE:Factory/.libmtp.new (New)


Package is "libmtp"

Mon Apr 17 10:22:39 2017 rev:75 rq:487772 version:1.1.13

Changes:

--- /work/SRC/openSUSE:Factory/libmtp/libmtp.changes2016-08-17 
12:03:39.0 +0200
+++ /work/SRC/openSUSE:Factory/.libmtp.new/libmtp.changes   2017-04-17 
10:22:41.864918964 +0200
@@ -1,0 +2,8 @@
+Sun Apr  2 19:45:15 UTC 2017 - meiss...@suse.com
+
+- updated to 1.1.13 release (bsc#1033830)
+  - lots of new USB id updates
+  - getpartialobject64 fixed for non x86_64
+  - some too strict bugflags removed for Galaxy S and Motorola G2
+
+---

Old:

  libmtp-1.1.12.tar.gz
  libmtp-1.1.12.tar.gz.asc

New:

  libmtp-1.1.13.tar.gz
  libmtp-1.1.13.tar.gz.asc



Other differences:
--
++ libmtp.spec ++
--- /var/tmp/diff_new_pack.y0rjHV/_old  2017-04-17 10:22:42.688802285 +0200
+++ /var/tmp/diff_new_pack.y0rjHV/_new  2017-04-17 10:22:42.692801718 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libmtp
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 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,7 +26,7 @@
 Summary:Commandline utilities for access to MTP Players
 License:LGPL-2.1+
 Group:  Productivity/Multimedia/Sound/Players
-Version:1.1.12
+Version:1.1.13
 Release:0
 %define sonum   9
 Source0:
http://downloads.sourceforge.net/project/%{name}/%{name}/%{version}/%{name}-%{version}.tar.gz

++ libmtp-1.1.12.tar.gz -> libmtp-1.1.13.tar.gz ++
 22370 lines of diff (skipped)





commit libmtp for openSUSE:Factory

2016-08-17 Thread h_root
Hello community,

here is the log from the commit of package libmtp for openSUSE:Factory checked 
in at 2016-08-17 12:03:38

Comparing /work/SRC/openSUSE:Factory/libmtp (Old)
 and  /work/SRC/openSUSE:Factory/.libmtp.new (New)


Package is "libmtp"

Changes:

--- /work/SRC/openSUSE:Factory/libmtp/libmtp.changes2016-02-17 
12:14:27.0 +0100
+++ /work/SRC/openSUSE:Factory/.libmtp.new/libmtp.changes   2016-08-17 
12:03:39.0 +0200
@@ -1,0 +2,7 @@
+Fri Aug 12 14:26:14 UTC 2016 - meiss...@suse.com
+
+- updated to 1.1.12 release
+  - lots of new USB id updates
+  - async event function
+
+---

Old:

  libmtp-1.1.11.tar.gz
  libmtp-1.1.11.tar.gz.asc

New:

  libmtp-1.1.12.tar.gz
  libmtp-1.1.12.tar.gz.asc



Other differences:
--
++ libmtp.spec ++
--- /var/tmp/diff_new_pack.MGbuaO/_old  2016-08-17 12:03:40.0 +0200
+++ /var/tmp/diff_new_pack.MGbuaO/_new  2016-08-17 12:03:40.0 +0200
@@ -26,7 +26,7 @@
 Summary:Commandline utilities for access to MTP Players
 License:LGPL-2.1+
 Group:  Productivity/Multimedia/Sound/Players
-Version:1.1.11
+Version:1.1.12
 Release:0
 %define sonum   9
 Source0:
http://downloads.sourceforge.net/project/%{name}/%{name}/%{version}/%{name}-%{version}.tar.gz

++ libmtp-1.1.11.tar.gz -> libmtp-1.1.12.tar.gz ++
 26400 lines of diff (skipped)





commit libmtp for openSUSE:Factory

2016-02-17 Thread h_root
Hello community,

here is the log from the commit of package libmtp for openSUSE:Factory checked 
in at 2016-02-17 10:30:15

Comparing /work/SRC/openSUSE:Factory/libmtp (Old)
 and  /work/SRC/openSUSE:Factory/.libmtp.new (New)


Package is "libmtp"

Changes:

--- /work/SRC/openSUSE:Factory/libmtp/libmtp.changes2015-11-04 
15:30:47.0 +0100
+++ /work/SRC/openSUSE:Factory/.libmtp.new/libmtp.changes   2016-02-17 
12:14:27.0 +0100
@@ -1,0 +2,9 @@
+Wed Feb 10 21:06:21 UTC 2016 - meiss...@suse.com
+
+- updated to 1.1.11 release
+  - lots of new USB id updates
+  - small usb 3 bugfix
+- libmtp.keyring: temporary add my older key, as I mistakenly
+  used that to sign the tarball
+
+---

Old:

  libmtp-1.1.10.tar.gz
  libmtp-1.1.10.tar.gz.asc

New:

  libmtp-1.1.11.tar.gz
  libmtp-1.1.11.tar.gz.asc



Other differences:
--
++ libmtp.spec ++
--- /var/tmp/diff_new_pack.PkANJH/_old  2016-02-17 12:14:28.0 +0100
+++ /var/tmp/diff_new_pack.PkANJH/_new  2016-02-17 12:14:28.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libmtp
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 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,7 +26,7 @@
 Summary:Commandline utilities for access to MTP Players
 License:LGPL-2.1+
 Group:  Productivity/Multimedia/Sound/Players
-Version:1.1.10
+Version:1.1.11
 Release:0
 %define sonum   9
 Source0:
http://downloads.sourceforge.net/project/%{name}/%{name}/%{version}/%{name}-%{version}.tar.gz

++ libmtp-1.1.10.tar.gz -> libmtp-1.1.11.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libmtp-1.1.10/aclocal.m4 new/libmtp-1.1.11/aclocal.m4
--- old/libmtp-1.1.10/aclocal.m42015-10-04 15:36:54.0 +0200
+++ new/libmtp-1.1.11/aclocal.m42016-02-10 21:17:33.0 +0100
@@ -1143,32 +1143,63 @@
   test -n "$acl_libdirstem2" || acl_libdirstem2="$acl_libdirstem"
 ])
 
-# pkg.m4 - Macros to locate and utilise pkg-config.-*- Autoconf -*-
-# serial 1 (pkg-config-0.24)
-# 
-# Copyright © 2004 Scott James Remnant .
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-#
-# As a special exception to the GNU General Public License, if you
-# distribute this file as part of a program that contains a
-# configuration script generated by Autoconf, you may include it under
-# the same distribution terms that you use for the rest of that program.
-
-# PKG_PROG_PKG_CONFIG([MIN-VERSION])
-# --
+dnl pkg.m4 - Macros to locate and utilise pkg-config.   -*- Autoconf -*-
+dnl serial 11 (pkg-config-0.29)
+dnl
+dnl Copyright © 2004 Scott James Remnant .
+dnl Copyright © 2012-2015 Dan Nicholson 
+dnl
+dnl This program is free software; you can redistribute it and/or modify
+dnl it under the terms of the GNU General Public License as published by
+dnl the Free Software Foundation; either version 2 of the License, or
+dnl (at your option) any later version.
+dnl
+dnl This program is distributed in the hope that it will be useful, but
+dnl WITHOUT ANY WARRANTY; without even the implied warranty of
+dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+dnl General Public License for more details.
+dnl
+dnl You should have received a copy of the GNU General Public License
+dnl along with this program; if not, write to the Free Software
+dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+dnl 02111-1307, USA.
+dnl
+dnl As a special exception to the GNU General Public License, if you
+dnl distribute this file as part of a program that contains a
+dnl configuration script generated by Autoconf, you may include it under
+dnl the same distribution terms that you use for the rest of that
+dnl program.
+
+dnl PKG_PREREQ(MIN-VERSION)
+dnl --

commit libmtp for openSUSE:Factory

2015-11-04 Thread h_root
Hello community,

here is the log from the commit of package libmtp for openSUSE:Factory checked 
in at 2015-11-04 15:30:46

Comparing /work/SRC/openSUSE:Factory/libmtp (Old)
 and  /work/SRC/openSUSE:Factory/.libmtp.new (New)


Package is "libmtp"

Changes:

--- /work/SRC/openSUSE:Factory/libmtp/libmtp.changes2015-10-22 
12:55:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.libmtp.new/libmtp.changes   2015-11-04 
15:30:47.0 +0100
@@ -1,0 +2,5 @@
+Mon Oct 26 13:45:30 UTC 2015 - dmitr...@opensuse.org
+
+- Split udev rules to separate package
+
+---



Other differences:
--
++ libmtp.spec ++
--- /var/tmp/diff_new_pack.uZeSMt/_old  2015-11-04 15:30:48.0 +0100
+++ /var/tmp/diff_new_pack.uZeSMt/_new  2015-11-04 15:30:48.0 +0100
@@ -44,9 +44,20 @@
 Common devices using this technology are Creative Zen, iRiver, Samsung
 and others.
 
+%package -n %{name}-udev
+Summary:Udev rules for accessing MTP devices
+Group:  Hardware/Mobile
+Requires:   udev
+
+%description -n %{name}-udev
+This package contains the udev rules that allow access to USB based media
+players based on the MTP (Media Transfer Protocol) authored by
+Microsoft.
+
 %package -n %{name}%{sonum}
 Summary:Library for accessing MTP Players
 Group:  Productivity/Multimedia/Sound/Players
+Requires:   %{name}-udev >= %{version}
 
 %description -n %{name}%{sonum}
 This package contains the libraries that allow access to USB based media
@@ -106,6 +117,9 @@
 #dir /usr/share/hal/fdi/information
 #dir /usr/share/hal/fdi/information/20thirdparty/
 #usr/share/hal/fdi/information/20thirdparty/10-usb-music-players-libmtp.fdi
+
+%files -n %{name}-udev
+%defattr(-, root, root)
 %{_udevdir}
 %{_udevrulesdir}
 






commit libmtp for openSUSE:Factory

2015-10-22 Thread h_root
Hello community,

here is the log from the commit of package libmtp for openSUSE:Factory checked 
in at 2015-10-22 12:55:51

Comparing /work/SRC/openSUSE:Factory/libmtp (Old)
 and  /work/SRC/openSUSE:Factory/.libmtp.new (New)


Package is "libmtp"

Changes:

--- /work/SRC/openSUSE:Factory/libmtp/libmtp.changes2015-06-23 
11:55:06.0 +0200
+++ /work/SRC/openSUSE:Factory/.libmtp.new/libmtp.changes   2015-10-22 
12:55:52.0 +0200
@@ -1,0 +2,7 @@
+Sun Oct  4 15:14:12 UTC 2015 - meiss...@suse.com
+
+- updated to 1.1.10 release
+  - lots of new ids
+  - various bugfixes
+
+---

Old:

  libmtp-1.1.9.tar.gz

New:

  libmtp-1.1.10.tar.gz
  libmtp-1.1.10.tar.gz.asc
  libmtp.keyring



Other differences:
--
++ libmtp.spec ++
--- /var/tmp/diff_new_pack.IPryoO/_old  2015-10-22 12:55:53.0 +0200
+++ /var/tmp/diff_new_pack.IPryoO/_new  2015-10-22 12:55:53.0 +0200
@@ -26,10 +26,12 @@
 Summary:Commandline utilities for access to MTP Players
 License:LGPL-2.1+
 Group:  Productivity/Multimedia/Sound/Players
-Version:1.1.9
+Version:1.1.10
 Release:0
 %define sonum   9
 Source0:
http://downloads.sourceforge.net/project/%{name}/%{name}/%{version}/%{name}-%{version}.tar.gz
+Source1:
http://downloads.sourceforge.net/project/%{name}/%{name}/%{version}/%{name}-%{version}.tar.gz.asc
+Source2:%name.keyring
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %{!?_udevrulesdir: %global _udevrulesdir %(pkg-config --variable=udevdir 
udev)/rules.d }
 %{!?_udevdir: %global _udevdir %(pkg-config --variable=udevdir udev) }

++ libmtp-1.1.9.tar.gz -> libmtp-1.1.10.tar.gz ++
 25565 lines of diff (skipped)




commit libmtp for openSUSE:Factory

2015-06-23 Thread h_root
Hello community,

here is the log from the commit of package libmtp for openSUSE:Factory checked 
in at 2015-06-23 11:55:05

Comparing /work/SRC/openSUSE:Factory/libmtp (Old)
 and  /work/SRC/openSUSE:Factory/.libmtp.new (New)


Package is "libmtp"

Changes:

--- /work/SRC/openSUSE:Factory/libmtp/libmtp.changes2015-05-02 
17:37:28.0 +0200
+++ /work/SRC/openSUSE:Factory/.libmtp.new/libmtp.changes   2015-06-23 
11:55:06.0 +0200
@@ -1,0 +2,7 @@
+Sun Jun 21 04:34:03 UTC 2015 - crrodrig...@opensuse.org
+
+- remove Requires on libusb-devel from libmtp-devel, the correct 
+  dependency is libusb1 already included by the pkgconfig 
+  generator.
+
+---



Other differences:
--
++ libmtp.spec ++
--- /var/tmp/diff_new_pack.0Ir335/_old  2015-06-23 11:55:06.0 +0200
+++ /var/tmp/diff_new_pack.0Ir335/_new  2015-06-23 11:55:06.0 +0200
@@ -67,7 +67,6 @@
 Summary:Development files for access to MTP Player library
 Group:  Development/Libraries/Other
 Requires:   %{name}%{sonum} = %{version}
-Requires:   libusb-devel
 
 %description devel
 This package contains the development headers for the libmtp library




commit libmtp for openSUSE:Factory

2015-05-02 Thread h_root
Hello community,

here is the log from the commit of package libmtp for openSUSE:Factory checked 
in at 2015-05-02 17:37:27

Comparing /work/SRC/openSUSE:Factory/libmtp (Old)
 and  /work/SRC/openSUSE:Factory/.libmtp.new (New)


Package is "libmtp"

Changes:

--- /work/SRC/openSUSE:Factory/libmtp/libmtp.changes2015-04-16 
14:11:23.0 +0200
+++ /work/SRC/openSUSE:Factory/.libmtp.new/libmtp.changes   2015-05-02 
17:37:28.0 +0200
@@ -1,0 +2,5 @@
+Thu Apr 30 09:18:47 UTC 2015 - o...@aepfle.de
+
+- Package whole udev related dirs to avoid build failures
+
+---



Other differences:
--
++ libmtp.spec ++
--- /var/tmp/diff_new_pack.DhzxmU/_old  2015-05-02 17:37:30.0 +0200
+++ /var/tmp/diff_new_pack.DhzxmU/_new  2015-05-02 17:37:30.0 +0200
@@ -105,9 +105,8 @@
 #dir /usr/share/hal/fdi/information
 #dir /usr/share/hal/fdi/information/20thirdparty/
 #usr/share/hal/fdi/information/20thirdparty/10-usb-music-players-libmtp.fdi
-%{_udevdir}/mtp-probe
-%{_udevdir}/hwdb.d/69-libmtp.hwdb
-%{_udevrulesdir}/69-libmtp.rules
+%{_udevdir}
+%{_udevrulesdir}
 
 %files devel
 %defattr(-, root, root)




commit libmtp for openSUSE:Factory

2015-04-16 Thread h_root
Hello community,

here is the log from the commit of package libmtp for openSUSE:Factory checked 
in at 2015-04-16 14:11:22

Comparing /work/SRC/openSUSE:Factory/libmtp (Old)
 and  /work/SRC/openSUSE:Factory/.libmtp.new (New)


Package is "libmtp"

Changes:

--- /work/SRC/openSUSE:Factory/libmtp/libmtp.changes2015-03-25 
21:04:09.0 +0100
+++ /work/SRC/openSUSE:Factory/.libmtp.new/libmtp.changes   2015-04-16 
14:11:23.0 +0200
@@ -1,0 +2,8 @@
+Mon Apr 13 19:32:11 UTC 2015 - meiss...@suse.com
+
+- updated to 1.1.9 release
+  - lots and lots of new ids
+  - bugfixes
+- mtp_DroidTurbo.patch,include-config-h.patch: upstream
+
+---

Old:

  include-config-h.patch
  libmtp-1.1.8.tar.gz
  mtp_DroidTurbo.patch

New:

  libmtp-1.1.9.tar.gz



Other differences:
--
++ libmtp.spec ++
--- /var/tmp/diff_new_pack.HQHaLy/_old  2015-04-16 14:11:23.0 +0200
+++ /var/tmp/diff_new_pack.HQHaLy/_new  2015-04-16 14:11:23.0 +0200
@@ -26,13 +26,10 @@
 Summary:Commandline utilities for access to MTP Players
 License:LGPL-2.1+
 Group:  Productivity/Multimedia/Sound/Players
-Version:1.1.8
+Version:1.1.9
 Release:0
 %define sonum   9
 Source0:
http://downloads.sourceforge.net/project/%{name}/%{name}/%{version}/%{name}-%{version}.tar.gz
-Patch0: include-config-h.patch
-Patch1: mtp_DroidTurbo.patch
-# from git 1a2669c6df6c093aec38c0c99a21438d74ccdf33
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %{!?_udevrulesdir: %global _udevrulesdir %(pkg-config --variable=udevdir 
udev)/rules.d }
 %{!?_udevdir: %global _udevdir %(pkg-config --variable=udevdir udev) }
@@ -79,8 +76,6 @@
 
 %prep
 %setup -q
-%patch0 -p1
-%patch1
 
 %build
 echo 'HTML_TIMESTAMP=NO' >> doc/Doxyfile.in
@@ -111,6 +106,7 @@
 #dir /usr/share/hal/fdi/information/20thirdparty/
 #usr/share/hal/fdi/information/20thirdparty/10-usb-music-players-libmtp.fdi
 %{_udevdir}/mtp-probe
+%{_udevdir}/hwdb.d/69-libmtp.hwdb
 %{_udevrulesdir}/69-libmtp.rules
 
 %files devel

++ libmtp-1.1.8.tar.gz -> libmtp-1.1.9.tar.gz ++
 2268 lines of diff (skipped)




commit libmtp for openSUSE:Factory

2015-03-25 Thread h_root
Hello community,

here is the log from the commit of package libmtp for openSUSE:Factory checked 
in at 2015-03-25 21:04:08

Comparing /work/SRC/openSUSE:Factory/libmtp (Old)
 and  /work/SRC/openSUSE:Factory/.libmtp.new (New)


Package is "libmtp"

Changes:

--- /work/SRC/openSUSE:Factory/libmtp/libmtp.changes2015-02-06 
10:40:08.0 +0100
+++ /work/SRC/openSUSE:Factory/.libmtp.new/libmtp.changes   2015-03-25 
21:04:09.0 +0100
@@ -1,0 +2,6 @@
+Sat Mar 21 14:28:40 UTC 2015 - meiss...@suse.com
+
+- update to 1.1.8 
+  - several new ids.
+
+---

Old:

  libmtp-1.1.7.tar.gz

New:

  libmtp-1.1.8.tar.gz



Other differences:
--
++ libmtp.spec ++
--- /var/tmp/diff_new_pack.LWB1c8/_old  2015-03-25 21:04:10.0 +0100
+++ /var/tmp/diff_new_pack.LWB1c8/_new  2015-03-25 21:04:10.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libmtp
 #
-# Copyright (c) 2015 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,7 +26,7 @@
 Summary:Commandline utilities for access to MTP Players
 License:LGPL-2.1+
 Group:  Productivity/Multimedia/Sound/Players
-Version:1.1.7
+Version:1.1.8
 Release:0
 %define sonum   9
 Source0:
http://downloads.sourceforge.net/project/%{name}/%{name}/%{version}/%{name}-%{version}.tar.gz

++ libmtp-1.1.7.tar.gz -> libmtp-1.1.8.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libmtp-1.1.7/configure new/libmtp-1.1.8/configure
--- old/libmtp-1.1.7/configure  2014-08-24 12:09:58.0 +0200
+++ new/libmtp-1.1.8/configure  2014-08-26 22:18:30.0 +0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for libmtp 1.1.7.
+# Generated by GNU Autoconf 2.69 for libmtp 1.1.8.
 #
 # Report bugs to .
 #
@@ -590,8 +590,8 @@
 # Identity of this package.
 PACKAGE_NAME='libmtp'
 PACKAGE_TARNAME='libmtp'
-PACKAGE_VERSION='1.1.7'
-PACKAGE_STRING='libmtp 1.1.7'
+PACKAGE_VERSION='1.1.8'
+PACKAGE_STRING='libmtp 1.1.8'
 PACKAGE_BUGREPORT='libmtp-disc...@lists.sourceforge.net'
 PACKAGE_URL=''
 
@@ -1357,7 +1357,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures libmtp 1.1.7 to adapt to many kinds of systems.
+\`configure' configures libmtp 1.1.8 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1427,7 +1427,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
- short | recursive ) echo "Configuration of libmtp 1.1.7:";;
+ short | recursive ) echo "Configuration of libmtp 1.1.8:";;
esac
   cat <<\_ACEOF
 
@@ -1554,7 +1554,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-libmtp configure 1.1.7
+libmtp configure 1.1.8
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -2034,7 +2034,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by libmtp $as_me 1.1.7, which was
+It was created by libmtp $as_me 1.1.8, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -2898,7 +2898,7 @@
 
 # Define the identity of the package.
  PACKAGE='libmtp'
- VERSION='1.1.7'
+ VERSION='1.1.8'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -16112,7 +16112,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by libmtp $as_me 1.1.7, which was
+This file was extended by libmtp $as_me 1.1.8, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   CONFIG_FILES= $CONFIG_FILES
@@ -16178,7 +16178,7 @@
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; 
s/[\\""\`\$]/&/g'`"
 ac_cs_version="\\
-libmtp config.status 1.1.7
+libmtp config.status 1.1.8
 configured by $0, generated by GNU Autoconf 2.69,
   with options \\"\$ac_cs_config\\"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libmtp-1.1.7/configure.ac 
new/libmtp-1.1.8/configure.ac
--- old/libmtp-1.1.7/configure.ac   2014-08-24 12:08:44.0 +0200
+++ new/libmtp-1.1.8/configure.ac   2014-08-26 22:17:12.0 +020

commit libmtp for openSUSE:Factory

2015-02-06 Thread h_root
Hello community,

here is the log from the commit of package libmtp for openSUSE:Factory checked 
in at 2015-02-06 10:40:07

Comparing /work/SRC/openSUSE:Factory/libmtp (Old)
 and  /work/SRC/openSUSE:Factory/.libmtp.new (New)


Package is "libmtp"

Changes:

--- /work/SRC/openSUSE:Factory/libmtp/libmtp.changes2014-09-28 
19:53:58.0 +0200
+++ /work/SRC/openSUSE:Factory/.libmtp.new/libmtp.changes   2015-02-06 
10:40:08.0 +0100
@@ -1,0 +2,6 @@
+Sat Jan 31 20:26:11 UTC 2015 - rjsch...@suse.com
+
+- Add device data for Droid Turbo
+  add: mtp_DroidTurbo.patch
+
+---

New:

  mtp_DroidTurbo.patch



Other differences:
--
++ libmtp.spec ++
--- /var/tmp/diff_new_pack.RN1bBT/_old  2015-02-06 10:40:09.0 +0100
+++ /var/tmp/diff_new_pack.RN1bBT/_new  2015-02-06 10:40:09.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libmtp
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 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
@@ -31,6 +31,7 @@
 %define sonum   9
 Source0:
http://downloads.sourceforge.net/project/%{name}/%{name}/%{version}/%{name}-%{version}.tar.gz
 Patch0: include-config-h.patch
+Patch1: mtp_DroidTurbo.patch
 # from git 1a2669c6df6c093aec38c0c99a21438d74ccdf33
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %{!?_udevrulesdir: %global _udevrulesdir %(pkg-config --variable=udevdir 
udev)/rules.d }
@@ -79,6 +80,7 @@
 %prep
 %setup -q
 %patch0 -p1
+%patch1
 
 %build
 echo 'HTML_TIMESTAMP=NO' >> doc/Doxyfile.in

++ mtp_DroidTurbo.patch ++
--- src/music-players.h.orig
+++ src/music-players.h
@@ -1910,6 +1910,8 @@
   DEVICE_FLAGS_ANDROID_BUGS },
   { "Motorola", 0x22b8, "XT890/907/Razr (MTP+ADB)", 0x710e,
   DEVICE_FLAGS_ANDROID_BUGS },
+  { "Motorola", 0x22b8, "Droid Turbo Verizon", 0x2ea8,
+  DEVICE_FLAGS_ANDROID_BUGS },
   /*
* XT890/907/Razr
* 710f is USB mass storage
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libmtp for openSUSE:Factory

2014-09-28 Thread h_root
Hello community,

here is the log from the commit of package libmtp for openSUSE:Factory checked 
in at 2014-09-28 19:53:50

Comparing /work/SRC/openSUSE:Factory/libmtp (Old)
 and  /work/SRC/openSUSE:Factory/.libmtp.new (New)


Package is "libmtp"

Changes:

--- /work/SRC/openSUSE:Factory/libmtp/libmtp.changes2014-08-27 
22:18:17.0 +0200
+++ /work/SRC/openSUSE:Factory/.libmtp.new/libmtp.changes   2014-09-28 
19:53:58.0 +0200
@@ -1,0 +2,5 @@
+Thu Sep 25 08:02:46 UTC 2014 - sch...@suse.de
+
+- include-config-h.patch: always include "config.h" first
+
+---

New:

  include-config-h.patch



Other differences:
--
++ libmtp.spec ++
--- /var/tmp/diff_new_pack.FZHmNK/_old  2014-09-28 19:54:00.0 +0200
+++ /var/tmp/diff_new_pack.FZHmNK/_new  2014-09-28 19:54:00.0 +0200
@@ -30,6 +30,7 @@
 Release:0
 %define sonum   9
 Source0:
http://downloads.sourceforge.net/project/%{name}/%{name}/%{version}/%{name}-%{version}.tar.gz
+Patch0: include-config-h.patch
 # from git 1a2669c6df6c093aec38c0c99a21438d74ccdf33
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %{!?_udevrulesdir: %global _udevrulesdir %(pkg-config --variable=udevdir 
udev)/rules.d }
@@ -77,6 +78,7 @@
 
 %prep
 %setup -q
+%patch0 -p1
 
 %build
 echo 'HTML_TIMESTAMP=NO' >> doc/Doxyfile.in

++ include-config-h.patch ++
Index: libmtp-1.1.7/src/util.c
===
--- libmtp-1.1.7.orig/src/util.c
+++ libmtp-1.1.7/src/util.c
@@ -34,6 +34,7 @@
 #include 
 #include 
 #include 
+#include "config.h"
 #include "libmtp.h"
 #include "util.h"
 
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libmtp for openSUSE:Factory

2014-08-27 Thread h_root
Hello community,

here is the log from the commit of package libmtp for openSUSE:Factory checked 
in at 2014-08-27 22:18:12

Comparing /work/SRC/openSUSE:Factory/libmtp (Old)
 and  /work/SRC/openSUSE:Factory/.libmtp.new (New)


Package is "libmtp"

Changes:

--- /work/SRC/openSUSE:Factory/libmtp/libmtp.changes2014-05-29 
08:43:38.0 +0200
+++ /work/SRC/openSUSE:Factory/.libmtp.new/libmtp.changes   2014-08-27 
22:18:17.0 +0200
@@ -1,0 +2,20 @@
+Tue Aug 26 06:31:36 UTC 2014 - meiss...@suse.com
+
+- updated to 1.1.7
+  - Soname libmtp.so.9.2.0 - binary compatible, new interfaces
+have been added.
+  - Compilation fixes for older GCC and non-GCC compilers.
+  - Finalize >4GB file transfer changes so this works now.
+  - A new API to check for device capabilities has been added.
+  - Sync in latest upstream ptp2 changes.
+  - Support for USB 3.0! (A patch adding async buffering was
+reverted after deemed instable by Debian.)
+  - Some migration toward the new API in the examples.
+  - Use parent storage if available as default storage media.
+  - Force reset on close for Android devices.
+  - Handle integrated USB hubs in mtp-probe.
+  - Devices, devices, devices...
+- mtpz-use-LIBMTP_ERROR-instead-of-LIBMTP_INFO.patch: is upstream
+- music-players.h: use up to date 1.1.7 version again.
+
+---

Old:

  libmtp-1.1.6.tar.gz
  mtpz-use-LIBMTP_ERROR-instead-of-LIBMTP_INFO.patch
  music-players.h

New:

  libmtp-1.1.7.tar.gz



Other differences:
--
++ libmtp.spec ++
--- /var/tmp/diff_new_pack.wHb8b2/_old  2014-08-27 22:18:18.0 +0200
+++ /var/tmp/diff_new_pack.wHb8b2/_new  2014-08-27 22:18:18.0 +0200
@@ -26,13 +26,11 @@
 Summary:Commandline utilities for access to MTP Players
 License:LGPL-2.1+
 Group:  Productivity/Multimedia/Sound/Players
-Version:1.1.6
+Version:1.1.7
 Release:0
 %define sonum   9
 Source0:
http://downloads.sourceforge.net/project/%{name}/%{name}/%{version}/%{name}-%{version}.tar.gz
 # from git 1a2669c6df6c093aec38c0c99a21438d74ccdf33
-Source1:music-players.h
-Patch0: mtpz-use-LIBMTP_ERROR-instead-of-LIBMTP_INFO.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %{!?_udevrulesdir: %global _udevrulesdir %(pkg-config --variable=udevdir 
udev)/rules.d }
 %{!?_udevdir: %global _udevdir %(pkg-config --variable=udevdir udev) }
@@ -79,8 +77,6 @@
 
 %prep
 %setup -q
-%patch0 -p1
-cp %{SOURCE1} src/music-players.h
 
 %build
 echo 'HTML_TIMESTAMP=NO' >> doc/Doxyfile.in

++ libmtp-1.1.6.tar.gz -> libmtp-1.1.7.tar.gz ++
 12148 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libmtp for openSUSE:Factory

2014-05-28 Thread h_root
Hello community,

here is the log from the commit of package libmtp for openSUSE:Factory checked 
in at 2014-05-29 08:43:35

Comparing /work/SRC/openSUSE:Factory/libmtp (Old)
 and  /work/SRC/openSUSE:Factory/.libmtp.new (New)


Package is "libmtp"

Changes:

--- /work/SRC/openSUSE:Factory/libmtp/libmtp.changes2013-12-19 
12:18:31.0 +0100
+++ /work/SRC/openSUSE:Factory/.libmtp.new/libmtp.changes   2014-05-29 
08:43:38.0 +0200
@@ -1,0 +2,6 @@
+Tue May 27 01:39:24 UTC 2014 - crrodrig...@opensuse.org
+
+- Tell doxygen to stop producing files with timestamps. 
+- define udev macros only if not already there.
+
+---



Other differences:
--
++ libmtp.spec ++
--- /var/tmp/diff_new_pack.B61bZ6/_old  2014-05-29 08:43:38.0 +0200
+++ /var/tmp/diff_new_pack.B61bZ6/_new  2014-05-29 08:43:38.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libmtp
 #
-# 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
@@ -34,8 +34,9 @@
 Source1:music-players.h
 Patch0: mtpz-use-LIBMTP_ERROR-instead-of-LIBMTP_INFO.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%define _udevrulesdir %(pkg-config --variable=udevdir udev)/rules.d
-%define _udevdir %(pkg-config --variable=udevdir udev)
+%{!?_udevrulesdir: %global _udevrulesdir %(pkg-config --variable=udevdir 
udev)/rules.d }
+%{!?_udevdir: %global _udevdir %(pkg-config --variable=udevdir udev) }
+
 %description
 This package contains binaries and documentation that allow access to
 USB based media players based on the MTP (Media Transfer Protocol)
@@ -82,6 +83,7 @@
 cp %{SOURCE1} src/music-players.h
 
 %build
+echo 'HTML_TIMESTAMP=NO' >> doc/Doxyfile.in
 %configure --with-udev=%{_udevdir} --disable-static --enable-doxygen
 make %{?_smp_mflags}
 

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libmtp for openSUSE:Factory

2013-12-19 Thread h_root
Hello community,

here is the log from the commit of package libmtp for openSUSE:Factory checked 
in at 2013-12-19 12:18:30

Comparing /work/SRC/openSUSE:Factory/libmtp (Old)
 and  /work/SRC/openSUSE:Factory/.libmtp.new (New)


Package is "libmtp"

Changes:

--- /work/SRC/openSUSE:Factory/libmtp/libmtp.changes2013-09-29 
19:27:11.0 +0200
+++ /work/SRC/openSUSE:Factory/.libmtp.new/libmtp.changes   2013-12-19 
12:18:31.0 +0100
@@ -1,0 +2,6 @@
+Mon Dec  9 12:45:01 UTC 2013 - meiss...@suse.com
+
+- music-players.h: Updated to the device database of the current GIT level
+  to support more MTP devices (bnc#854328)
+
+---

New:

  music-players.h



Other differences:
--
++ libmtp.spec ++
--- /var/tmp/diff_new_pack.WXLzOK/_old  2013-12-19 12:18:31.0 +0100
+++ /var/tmp/diff_new_pack.WXLzOK/_new  2013-12-19 12:18:31.0 +0100
@@ -30,6 +30,8 @@
 Release:0
 %define sonum   9
 Source0:
http://downloads.sourceforge.net/project/%{name}/%{name}/%{version}/%{name}-%{version}.tar.gz
+# from git 1a2669c6df6c093aec38c0c99a21438d74ccdf33
+Source1:music-players.h
 Patch0: mtpz-use-LIBMTP_ERROR-instead-of-LIBMTP_INFO.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %define _udevrulesdir %(pkg-config --variable=udevdir udev)/rules.d
@@ -77,6 +79,7 @@
 %prep
 %setup -q
 %patch0 -p1
+cp %{SOURCE1} src/music-players.h
 
 %build
 %configure --with-udev=%{_udevdir} --disable-static --enable-doxygen

++ music-players.h ++
 2444 lines (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libmtp for openSUSE:Factory

2013-09-29 Thread h_root
Hello community,

here is the log from the commit of package libmtp for openSUSE:Factory checked 
in at 2013-09-29 19:27:09

Comparing /work/SRC/openSUSE:Factory/libmtp (Old)
 and  /work/SRC/openSUSE:Factory/.libmtp.new (New)


Package is "libmtp"

Changes:

--- /work/SRC/openSUSE:Factory/libmtp/libmtp.changes2013-03-18 
07:07:33.0 +0100
+++ /work/SRC/openSUSE:Factory/.libmtp.new/libmtp.changes   2013-09-29 
19:27:11.0 +0200
@@ -1,0 +2,7 @@
+Fri Sep 27 19:54:22 UTC 2013 - rmila...@suse.com
+
+- Use LIBMTP_ERROR instead of LIBMTP_INFO function in mtpz_loaddata
+  (mtpz.c) to dont get junk in the udev rule when generating the rule.
+  add: mtpz-use-LIBMTP_ERROR-instead-of-LIBMTP_INFO.patch
+
+---

New:

  mtpz-use-LIBMTP_ERROR-instead-of-LIBMTP_INFO.patch



Other differences:
--
++ libmtp.spec ++
--- /var/tmp/diff_new_pack.0y6Are/_old  2013-09-29 19:27:12.0 +0200
+++ /var/tmp/diff_new_pack.0y6Are/_new  2013-09-29 19:27:12.0 +0200
@@ -30,6 +30,7 @@
 Release:0
 %define sonum   9
 Source0:
http://downloads.sourceforge.net/project/%{name}/%{name}/%{version}/%{name}-%{version}.tar.gz
+Patch0: mtpz-use-LIBMTP_ERROR-instead-of-LIBMTP_INFO.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %define _udevrulesdir %(pkg-config --variable=udevdir udev)/rules.d
 %define _udevdir %(pkg-config --variable=udevdir udev)
@@ -75,6 +76,7 @@
 
 %prep
 %setup -q
+%patch0 -p1
 
 %build
 %configure --with-udev=%{_udevdir} --disable-static --enable-doxygen

++ mtpz-use-LIBMTP_ERROR-instead-of-LIBMTP_INFO.patch ++
Index: libmtp-1.1.6/src/mtpz.c
===
--- libmtp-1.1.6.orig/src/mtpz.c
+++ libmtp-1.1.6/src/mtpz.c
@@ -119,7 +119,7 @@ int mtpz_loaddata()
char *home = getenv("HOME");
if (!home)
{
-   LIBMTP_INFO("Unable to determine user's home directory, MTPZ 
disabled");
+   LIBMTP_ERROR("Unable to determine user's home directory, MTPZ 
disabled");
return -1;
}
 
@@ -130,7 +130,7 @@ int mtpz_loaddata()
FILE *fdata = fopen(path, "r");
if (!fdata)
{
-   LIBMTP_INFO("Unable to open ~/.mtpz-data for reading, MTPZ 
disabled.");
+   LIBMTP_ERROR("Unable to open ~/.mtpz-data for reading, MTPZ 
disabled.");
return -1;
}
 
@@ -138,7 +138,7 @@ int mtpz_loaddata()
MTPZ_PUBLIC_EXPONENT = (unsigned char *)fgets_strip((char *)malloc(8), 
8, fdata);
if (!MTPZ_PUBLIC_EXPONENT)
{
-   LIBMTP_INFO("Unable to read MTPZ public exponent from 
~/.mtpz-data, MTPZ disabled");
+   LIBMTP_ERROR("Unable to read MTPZ public exponent from 
~/.mtpz-data, MTPZ disabled");
return -1;
}
 
@@ -146,20 +146,20 @@ int mtpz_loaddata()
char *hexenckey = (unsigned char *)fgets_strip((char *)malloc(35), 35, 
fdata);
if (!hexenckey)
{
-   LIBMTP_INFO("Unable to read MTPZ encryption key from 
~/.mtpz-data, MTPZ disabled");
+   LIBMTP_ERROR("Unable to read MTPZ encryption key from 
~/.mtpz-data, MTPZ disabled");
return -1;
}
MTPZ_ENCRYPTION_KEY = hex_to_bytes(hexenckey, strlen(hexenckey));
if (!MTPZ_ENCRYPTION_KEY)
{
-   LIBMTP_INFO("Unable to read MTPZ encryption key from 
~/.mtpz-data, MTPZ disabled");
+   LIBMTP_ERROR("Unable to read MTPZ encryption key from 
~/.mtpz-data, MTPZ disabled");
}
 
// Should only be 256 characters in length, but fgets will encounter a 
newline and stop.
MTPZ_MODULUS = (unsigned char *)fgets_strip((char *)malloc(260), 260, 
fdata);
if (!MTPZ_MODULUS)
{
-   LIBMTP_INFO("Unable to read MTPZ modulus from ~/.mtpz-data, 
MTPZ disabled");
+   LIBMTP_ERROR("Unable to read MTPZ modulus from ~/.mtpz-data, 
MTPZ disabled");
return -1;
}
 
@@ -167,7 +167,7 @@ int mtpz_loaddata()
MTPZ_PRIVATE_KEY = (unsigned char *)fgets_strip((char *)malloc(260), 
260, fdata);
if (!MTPZ_PRIVATE_KEY)
{
-   LIBMTP_INFO("Unable to read MTPZ private key from ~/.mtpz-data, 
MTPZ disabled");
+   LIBMTP_ERROR("Unable to read MTPZ private key from 
~/.mtpz-data, MTPZ disabled");
return -1;
}
 
@@ -175,13 +175,13 @@ int mtpz_loaddata()
char *hexcerts = fgets_strip((char *)malloc(1260), 1260, fdata);
if (!hexcerts)
{
-   LIBMTP_INFO("Unable to read MTPZ certificates from 
~/.mtpz-data, MTPZ disabled");
+   

commit libmtp for openSUSE:Factory

2013-03-17 Thread h_root
Hello community,

here is the log from the commit of package libmtp for openSUSE:Factory checked 
in at 2013-03-18 07:07:31

Comparing /work/SRC/openSUSE:Factory/libmtp (Old)
 and  /work/SRC/openSUSE:Factory/.libmtp.new (New)


Package is "libmtp", Maintainer is "meiss...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/libmtp/libmtp.changes2013-02-11 
11:04:48.0 +0100
+++ /work/SRC/openSUSE:Factory/.libmtp.new/libmtp.changes   2013-03-18 
07:07:33.0 +0100
@@ -1,0 +2,26 @@
+Fri Mar 15 09:28:44 UTC 2013 - meiss...@suse.com
+
+- updated to 1.1.6
+
+  - Soname libmtp.so.9.1.0 - binary compatible, new interfaces
+have been added.
+  - Devices, devices, devices... I think I had a hundred (no kidding)
+reports for the Nexus 4. It seems hackers just love this device
+and cannot wait for me to spin a new libmtp.
+  - More careful autoprobing code for Linux, running around in
+sysfs to try to avoid opening non-MTP devices. The libusb devs
+do not uniformly like this idea but what shall I do? People
+still want their devices to autodetect. Any hints welcome,
+any patches will be reviewed.
+  - Interface extenstions from Philip Langdale to support the
+Android in-place read/write extensions. This will be used by
+GVFS for editing files etc, it is actually very useful when
+treating the MTP device as a "real" filesystem. It only works
+on Android devices with Google's MTP stack, but hey, that is
+a fair share of the MTP devices used today.
+  - Several fixes and memory leaks fixed by Lei Zhang courtesy if
+the Chromebook project, thanks Google!
+  - Windows Phone 8 should work out of the box.
+- remove upstream libmtp_motoRazr.patch 
+
+---

Old:

  libmtp-1.1.5.tar.gz
  libmtp_motoRazr.patch

New:

  libmtp-1.1.6.tar.gz



Other differences:
--
++ libmtp.spec ++
--- /var/tmp/diff_new_pack.sEk2H4/_old  2013-03-18 07:07:34.0 +0100
+++ /var/tmp/diff_new_pack.sEk2H4/_new  2013-03-18 07:07:34.0 +0100
@@ -26,11 +26,10 @@
 Summary:Commandline utilities for access to MTP Players
 License:LGPL-2.1+
 Group:  Productivity/Multimedia/Sound/Players
-Version:1.1.5
+Version:1.1.6
 Release:0
 %define sonum   9
 Source0:
http://downloads.sourceforge.net/project/%{name}/%{name}/%{version}/%{name}-%{version}.tar.gz
-Patch:  libmtp_motoRazr.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %define _udevrulesdir %(pkg-config --variable=udevdir udev)/rules.d
 %define _udevdir %(pkg-config --variable=udevdir udev)
@@ -76,7 +75,6 @@
 
 %prep
 %setup -q
-%patch
 
 %build
 %configure --with-udev=%{_udevdir} --disable-static --enable-doxygen

++ libmtp-1.1.5.tar.gz -> libmtp-1.1.6.tar.gz ++
 7809 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libmtp for openSUSE:Factory

2013-02-11 Thread h_root
Hello community,

here is the log from the commit of package libmtp for openSUSE:Factory checked 
in at 2013-02-11 11:04:46

Comparing /work/SRC/openSUSE:Factory/libmtp (Old)
 and  /work/SRC/openSUSE:Factory/.libmtp.new (New)


Package is "libmtp", Maintainer is "meiss...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/libmtp/libmtp.changes2012-11-05 
14:55:01.0 +0100
+++ /work/SRC/openSUSE:Factory/.libmtp.new/libmtp.changes   2013-02-11 
11:04:48.0 +0100
@@ -1,0 +2,5 @@
+Fri Feb  8 21:28:57 UTC 2013 - rschweik...@suse.com
+
+- add support for Motorola Droid Razr M (XT 907)
+
+---

New:

  libmtp_motoRazr.patch



Other differences:
--
++ libmtp.spec ++
--- /var/tmp/diff_new_pack.XFIkQ6/_old  2013-02-11 11:04:49.0 +0100
+++ /var/tmp/diff_new_pack.XFIkQ6/_new  2013-02-11 11:04:49.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libmtp
 #
-# 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
@@ -30,6 +30,7 @@
 Release:0
 %define sonum   9
 Source0:
http://downloads.sourceforge.net/project/%{name}/%{name}/%{version}/%{name}-%{version}.tar.gz
+Patch:  libmtp_motoRazr.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %define _udevrulesdir %(pkg-config --variable=udevdir udev)/rules.d
 %define _udevdir %(pkg-config --variable=udevdir udev)
@@ -75,6 +76,7 @@
 
 %prep
 %setup -q
+%patch
 
 %build
 %configure --with-udev=%{_udevdir} --disable-static --enable-doxygen

++ libmtp_motoRazr.patch ++
--- src/music-players.h.orig
+++ src/music-players.h
@@ -1581,6 +1581,8 @@
   { "Motorola", 0x22b8, "V3m/V750 verizon", 0x2a65,
   DEVICE_FLAG_BROKEN_SET_OBJECT_PROPLIST |
   DEVICE_FLAG_BROKEN_MTPGETOBJPROPLIST_ALL },
+  { "Motorola", 0x22b8, "Razr M XT907", 0x710f,
+  DEVICE_FLAGS_ANDROID_BUGS },
   // Reported by Jader Rodrigues Simoes 
   { "Motorola", 0x22b8, "Xoom 2 Media Edition (ID2)", 0x41cf,
   DEVICE_FLAGS_ANDROID_BUGS },
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libmtp for openSUSE:Factory

2012-11-05 Thread h_root
Hello community,

here is the log from the commit of package libmtp for openSUSE:Factory checked 
in at 2012-11-05 14:54:53

Comparing /work/SRC/openSUSE:Factory/libmtp (Old)
 and  /work/SRC/openSUSE:Factory/.libmtp.new (New)


Package is "libmtp", Maintainer is "meiss...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/libmtp/libmtp.changes2012-09-25 
10:40:46.0 +0200
+++ /work/SRC/openSUSE:Factory/.libmtp.new/libmtp.changes   2012-11-05 
14:55:01.0 +0100
@@ -1,0 +2,5 @@
+Sun Nov  4 18:57:19 UTC 2012 - crrodrig...@opensuse.org
+
+- mtp-probe no longer working in factory, wrong udev dir. 
+
+---



Other differences:
--
++ libmtp.spec ++
--- /var/tmp/diff_new_pack.0ESSDE/_old  2012-11-05 14:55:07.0 +0100
+++ /var/tmp/diff_new_pack.0ESSDE/_new  2012-11-05 14:55:07.0 +0100
@@ -22,6 +22,7 @@
 BuildRequires:  libgcrypt-devel
 BuildRequires:  libusb-1_0-devel
 BuildRequires:  pkg-config
+BuildRequires:  pkgconfig(udev)
 Summary:Commandline utilities for access to MTP Players
 License:LGPL-2.1+
 Group:  Productivity/Multimedia/Sound/Players
@@ -30,7 +31,8 @@
 %define sonum   9
 Source0:
http://downloads.sourceforge.net/project/%{name}/%{name}/%{version}/%{name}-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-
+%define _udevrulesdir %(pkg-config --variable=udevdir udev)/rules.d
+%define _udevdir %(pkg-config --variable=udevdir udev)
 %description
 This package contains binaries and documentation that allow access to
 USB based media players based on the MTP (Media Transfer Protocol)
@@ -75,7 +77,7 @@
 %setup -q
 
 %build
-%configure --disable-static --enable-doxygen
+%configure --with-udev=%{_udevdir} --disable-static --enable-doxygen
 make %{?_smp_mflags}
 
 %install
@@ -101,10 +103,8 @@
 #dir /usr/share/hal/fdi/information
 #dir /usr/share/hal/fdi/information/20thirdparty/
 #usr/share/hal/fdi/information/20thirdparty/10-usb-music-players-libmtp.fdi
-%dir /lib/udev
-/lib/udev/mtp-probe
-%dir /lib/udev/rules.d
-%config /lib/udev/rules.d/69-libmtp.rules
+%{_udevdir}/mtp-probe
+%{_udevrulesdir}/69-libmtp.rules
 
 %files devel
 %defattr(-, root, root)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libmtp for openSUSE:Factory

2012-09-25 Thread h_root
Hello community,

here is the log from the commit of package libmtp for openSUSE:Factory checked 
in at 2012-09-25 10:40:44

Comparing /work/SRC/openSUSE:Factory/libmtp (Old)
 and  /work/SRC/openSUSE:Factory/.libmtp.new (New)


Package is "libmtp", Maintainer is "meiss...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/libmtp/libmtp.changes2012-08-26 
11:32:18.0 +0200
+++ /work/SRC/openSUSE:Factory/.libmtp.new/libmtp.changes   2012-09-25 
10:40:46.0 +0200
@@ -1,0 +2,24 @@
+Sat Sep 22 11:34:52 UTC 2012 - toddrme2...@gmail.com
+
+- updated to 1.1.5
+  - Soname libmtp.so.9.0.5 - binary compatible
+  - Stop forcing altinterface 0! That bug has been around like
+forever and libgphoto2 never did this. It screws up some
+Samsung devices and is the prime reason for releasing this
+update so soon after 1.1.4 as I know a lot of people out there
+have Samsung devices!
+  - Integrated Sajid Anwars hard long-term work on MTPZ. There are
+no secret keys or certificates inside libmtp, if you need these
+to talk to your MTPZ device (Zune models, Windows Phones) you
+need to get a file of secrets from some other place, preferably
+Microsoft.
+  - Expose getthumbnail method and the Add Storage events as needed
+for a GNOME VFS project by Philip Langdale.
+  - Rearrange and try to understand some SONY device modes again
+and again.
+  - A udev script fix from Alessio Treglia to avoid poking around
+on Canon EOS 3D.
+  - Devices, devices, devices...
+- Add libgrypt buildrequires for MTPZ support
+
+---

Old:

  libmtp-1.1.4.tar.gz

New:

  libmtp-1.1.5.tar.gz



Other differences:
--
++ libmtp.spec ++
--- /var/tmp/diff_new_pack.XN3cbd/_old  2012-09-25 10:40:47.0 +0200
+++ /var/tmp/diff_new_pack.XN3cbd/_new  2012-09-25 10:40:47.0 +0200
@@ -19,14 +19,16 @@
 Name:   libmtp
 Url:http://sf.net/projects/libmtp
 BuildRequires:  doxygen
+BuildRequires:  libgcrypt-devel
 BuildRequires:  libusb-1_0-devel
 BuildRequires:  pkg-config
 Summary:Commandline utilities for access to MTP Players
 License:LGPL-2.1+
 Group:  Productivity/Multimedia/Sound/Players
-Version:1.1.4
+Version:1.1.5
 Release:0
-Source0:
http://downloads.sourceforge.net/project/libmtp/libmtp/%{version}/libmtp-%{version}.tar.gz
+%define sonum   9
+Source0:
http://downloads.sourceforge.net/project/%{name}/%{name}/%{version}/%{name}-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -37,11 +39,11 @@
 Common devices using this technology are Creative Zen, iRiver, Samsung
 and others.
 
-%package -n libmtp9
+%package -n %{name}%{sonum}
 Summary:Library for accessing MTP Players
 Group:  Productivity/Multimedia/Sound/Players
 
-%description -n libmtp9
+%description -n %{name}%{sonum}
 This package contains the libraries that allow access to USB based media
 players based on the MTP (Media Transfer Protocol) authored by
 Microsoft.
@@ -61,7 +63,7 @@
 %package devel
 Summary:Development files for access to MTP Player library
 Group:  Development/Libraries/Other
-Requires:   libmtp9 = %version
+Requires:   %{name}%{sonum} = %{version}
 Requires:   libusb-devel
 
 %description devel
@@ -80,18 +82,17 @@
 make install DESTDIR=$RPM_BUILD_ROOT
 #install -d $RPM_BUILD_ROOT/usr/share/hal/fdi/information/20thirdparty/
 #install -c -m 644 libmtp.fdi 
$RPM_BUILD_ROOT/usr/share/hal/fdi/information/20thirdparty/10-usb-music-players-libmtp.fdi
-rm -rf $RPM_BUILD_ROOT/usr/share/doc/libmtp*
-rm -rf $RPM_BUILD_ROOT/%{_libdir}/*.la
+rm -rf %{buildroot}/usr/share/doc/libmtp*
+rm -rf %{buildroot}/%{_libdir}/*.la
 
-%post -n libmtp9 -p /sbin/ldconfig
-
-%postun -n libmtp9 -p /sbin/ldconfig
+%post -n   %{name}%{sonum} -p /sbin/ldconfig
+%postun -n %{name}%{sonum} -p /sbin/ldconfig
 
 %files -n mtp-tools
 %defattr(-, root, root)
 %{_prefix}/bin/*
 
-%files -n libmtp9
+%files -n %{name}%{sonum}
 %defattr(-, root, root)
 %doc COPYING README ChangeLog AUTHORS
 %{_libdir}/lib*.so.*

++ libmtp-1.1.4.tar.gz -> libmtp-1.1.5.tar.gz ++
 3488 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libmtp for openSUSE:Factory

2012-08-26 Thread h_root
Hello community,

here is the log from the commit of package libmtp for openSUSE:Factory checked 
in at 2012-08-26 11:32:16

Comparing /work/SRC/openSUSE:Factory/libmtp (Old)
 and  /work/SRC/openSUSE:Factory/.libmtp.new (New)


Package is "libmtp", Maintainer is "meiss...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/libmtp/libmtp.changes2012-04-12 
09:38:20.0 +0200
+++ /work/SRC/openSUSE:Factory/.libmtp.new/libmtp.changes   2012-08-26 
11:32:18.0 +0200
@@ -1,0 +2,7 @@
+Sun Aug 19 09:29:56 UTC 2012 - meiss...@suse.com
+
+- updated to 1.1.4
+  - various bugfixes, especially in Samsung *
+  - lots of new ids
+
+---

Old:

  libmtp-1.1.3.tar.gz

New:

  libmtp-1.1.4.tar.gz



Other differences:
--
++ libmtp.spec ++
--- /var/tmp/diff_new_pack.gA9FD6/_old  2012-08-26 11:32:20.0 +0200
+++ /var/tmp/diff_new_pack.gA9FD6/_new  2012-08-26 11:32:20.0 +0200
@@ -24,7 +24,7 @@
 Summary:Commandline utilities for access to MTP Players
 License:LGPL-2.1+
 Group:  Productivity/Multimedia/Sound/Players
-Version:1.1.3
+Version:1.1.4
 Release:0
 Source0:
http://downloads.sourceforge.net/project/libmtp/libmtp/%{version}/libmtp-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ libmtp-1.1.3.tar.gz -> libmtp-1.1.4.tar.gz ++
 5013 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libmtp for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package libmtp for openSUSE:Factory checked 
in at 2012-02-08 16:08:29

Comparing /work/SRC/openSUSE:Factory/libmtp (Old)
 and  /work/SRC/openSUSE:Factory/.libmtp.new (New)


Package is "libmtp", Maintainer is "meiss...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/libmtp/libmtp.changes2012-01-19 
10:35:18.0 +0100
+++ /work/SRC/openSUSE:Factory/.libmtp.new/libmtp.changes   2012-02-08 
16:08:31.0 +0100
@@ -1,0 +2,5 @@
+Tue Jan 31 12:27:07 UTC 2012 - jeng...@medozas.de
+
+- Remove redundant tags/sections per specfile guideline suggestions
+
+---



Other differences:
--
++ libmtp.spec ++
--- /var/tmp/diff_new_pack.ZF2Jl7/_old  2012-02-08 16:08:32.0 +0100
+++ /var/tmp/diff_new_pack.ZF2Jl7/_new  2012-02-08 16:08:32.0 +0100
@@ -15,7 +15,6 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-%define debug_package_requires libmtp9 = %{version}-%{release}
 
 Name:   libmtp
 Url:http://sf.net/projects/libmtp

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libmtp for openSUSE:Factory

2012-01-19 Thread h_root
Hello community,

here is the log from the commit of package libmtp for openSUSE:Factory checked 
in at 2012-01-19 10:35:14

Comparing /work/SRC/openSUSE:Factory/libmtp (Old)
 and  /work/SRC/openSUSE:Factory/.libmtp.new (New)


Package is "libmtp", Maintainer is "meiss...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/libmtp/libmtp.changes2011-12-31 
17:19:40.0 +0100
+++ /work/SRC/openSUSE:Factory/.libmtp.new/libmtp.changes   2012-01-19 
10:35:18.0 +0100
@@ -1,0 +2,15 @@
+Fri Jan 13 11:35:55 CET 2012 - meiss...@suse.de
+
+- updated to 1.1.2
+  * device updates
+  * ported to use libusb 1.0
+  * Autodetect "sony.net" devices
+
+---
+Thu Dec 29 16:30:06 UTC 2011 - jeng...@medozas.de
+
+- Remove redundant tags/sections (authors list, already in package
+  as a file); put %description after %package
+- Parallel build with %_smp_mflags
+
+---

Old:

  add-galaxy-nexus-support.diff
  libmtp-1.1.1.tar.gz

New:

  libmtp-1.1.2.tar.gz



Other differences:
--
++ libmtp.spec ++
--- /var/tmp/diff_new_pack.ecfoWa/_old  2012-01-19 10:35:19.0 +0100
+++ /var/tmp/diff_new_pack.ecfoWa/_new  2012-01-19 10:35:19.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libmtp
 #
-# 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
@@ -20,15 +20,14 @@
 Name:   libmtp
 Url:http://sf.net/projects/libmtp
 BuildRequires:  doxygen
-BuildRequires:  libusb-devel
+BuildRequires:  libusb-1_0-devel
 BuildRequires:  pkg-config
 Summary:Commandline utilities for access to MTP Players
 License:LGPL-2.1+
 Group:  Productivity/Multimedia/Sound/Players
-Version:1.1.1
+Version:1.1.2
 Release:0
 Source0:
http://downloads.sourceforge.net/project/libmtp/libmtp/%{version}/libmtp-%{version}.tar.gz
-Patch0: add-galaxy-nexus-support.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -39,17 +38,6 @@
 Common devices using this technology are Creative Zen, iRiver, Samsung
 and others.
 
-
-
-Authors:
-
-Richard Low 
-Linus Walleij 
-
-based on code by:
-Mariusz Woloszyn 
-Marcus Meissner 
-
 %package -n libmtp9
 Summary:Library for accessing MTP Players
 Group:  Productivity/Multimedia/Sound/Players
@@ -62,21 +50,15 @@
 Common devices using this technology are Creative Zen, iRiver, Samsung
 and others.
 
-
-
-Authors:
-
-Richard Low 
-Linus Walleij 
-
-based on code by:
-Mariusz Woloszyn 
-Marcus Meissner 
-
 %package -n mtp-tools
 Summary:Commandline utilities for access to MTP Players
 Group:  Productivity/Multimedia/Sound/Players
 
+%description -n mtp-tools
+This package contains binaries that allow command line access to USB
+based media players based on the MTP (Media Transfer Protocol) authored
+by Microsoft. For graphical user interfaces use Amarok or Banshee.
+
 %package devel
 Summary:Development files for access to MTP Player library
 Group:  Development/Libraries/Other
@@ -88,40 +70,12 @@
 that allows access to USB based media players based on the MTP (Media
 Transfer Protocol) authored by Microsoft.
 
-
-
-Authors:
-
-Richard Low 
-Linus Walleij 
-
-based on code by:
-Mariusz Woloszyn 
-Marcus Meissner 
-
-%description -n mtp-tools
-This package contains binaries that allow command line access to USB
-based media players based on the MTP (Media Transfer Protocol) authored
-by Microsoft. For graphical user interfaces use Amarok or Banshee.
-
-
-
-Authors:
-
-Richard Low 
-Linus Walleij 
-
-based on code by:
-Mariusz Woloszyn 
-Marcus Meissner 
-
 %prep
 %setup -q
-%patch0 -p0
 
 %build
 %configure --disable-static --enable-doxygen
-make
+make %{?_smp_mflags}
 
 %install
 make install DESTDIR=$RPM_BUILD_ROOT

++ libmtp-1.1.1.tar.gz -> libmtp-1.1.2.tar.gz ++
 8109 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libmtp for openSUSE:Factory

2011-12-31 Thread h_root
Hello community,

here is the log from the commit of package libmtp for openSUSE:Factory checked 
in at 2011-12-31 17:19:39

Comparing /work/SRC/openSUSE:Factory/libmtp (Old)
 and  /work/SRC/openSUSE:Factory/.libmtp.new (New)


Package is "libmtp", Maintainer is "meiss...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/libmtp/libmtp.changes2011-09-23 
02:09:00.0 +0200
+++ /work/SRC/openSUSE:Factory/.libmtp.new/libmtp.changes   2011-12-31 
17:19:40.0 +0100
@@ -1,0 +2,11 @@
+Thu Dec 29 11:46:54 UTC 2011 - adr...@suse.de
+
+- add support for Galaxy Nexus
+
+---
+Wed Dec 21 21:30:49 UTC 2011 - adr...@suse.de
+
+- updated to 1.1.1
+  * device updates
+
+---

Old:

  libmtp-1.1.0.tar.gz

New:

  add-galaxy-nexus-support.diff
  libmtp-1.1.1.tar.gz



Other differences:
--
++ libmtp.spec ++
--- /var/tmp/diff_new_pack.awdklZ/_old  2011-12-31 17:19:41.0 +0100
+++ /var/tmp/diff_new_pack.awdklZ/_new  2011-12-31 17:19:41.0 +0100
@@ -15,20 +15,20 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-
 %define debug_package_requires libmtp9 = %{version}-%{release}
 
 Name:   libmtp
 Url:http://sf.net/projects/libmtp
-BuildRequires:  doxygen pkg-config
+BuildRequires:  doxygen
 BuildRequires:  libusb-devel
+BuildRequires:  pkg-config
+Summary:Commandline utilities for access to MTP Players
 License:LGPL-2.1+
 Group:  Productivity/Multimedia/Sound/Players
-AutoReqProv:on
-Summary:Commandline utilities for access to MTP Players
-Version:1.1.0
-Release:7
-Source0:%name-%version.tar.gz
+Version:1.1.1
+Release:0
+Source0:
http://downloads.sourceforge.net/project/libmtp/libmtp/%{version}/libmtp-%{version}.tar.gz
+Patch0: add-galaxy-nexus-support.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -51,7 +51,6 @@
 Marcus Meissner 
 
 %package -n libmtp9
-License:LGPL-2.1+
 Summary:Library for accessing MTP Players
 Group:  Productivity/Multimedia/Sound/Players
 
@@ -75,12 +74,10 @@
 Marcus Meissner 
 
 %package -n mtp-tools
-License:LGPL-2.1+
 Summary:Commandline utilities for access to MTP Players
 Group:  Productivity/Multimedia/Sound/Players
 
 %package devel
-License:LGPL-2.1+
 Summary:Development files for access to MTP Player library
 Group:  Development/Libraries/Other
 Requires:   libmtp9 = %version
@@ -120,6 +117,7 @@
 
 %prep
 %setup -q
+%patch0 -p0
 
 %build
 %configure --disable-static --enable-doxygen
@@ -152,7 +150,7 @@
 %dir /lib/udev
 /lib/udev/mtp-probe
 %dir /lib/udev/rules.d
-%config /lib/udev/rules.d/39-libmtp.rules
+%config /lib/udev/rules.d/69-libmtp.rules
 
 %files devel
 %defattr(-, root, root)

++ add-galaxy-nexus-support.diff ++
--- src/music-players.h
+++ src/music-players.h 2011-12-29 12:39:15.813619378 +0100
@@ -277,6 +277,9 @@
   { "Samsung", 0x04e8, "GT-B2710/Xcover 271", 0x68af,
   DEVICE_FLAG_UNLOAD_DRIVER |
   DEVICE_FLAG_PLAYLIST_SPL_V1 },
+  { "Samsung", 0x04e8, "GT-I9250 Galaxy Nexus", 0x685c,
+  DEVICE_FLAG_UNLOAD_DRIVER |
+  DEVICE_FLAG_PLAYLIST_SPL_V2 },
   // From anonymous Sourceforge user
   { "Samsung", 0x04e8, "GT-S5230", 0xe20c, DEVICE_FLAG_NONE },
 
++ libmtp-1.1.0.tar.gz -> libmtp-1.1.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libmtp-1.1.0/configure new/libmtp-1.1.1/configure
--- old/libmtp-1.1.0/configure  2011-09-19 09:49:21.0 +0200
+++ new/libmtp-1.1.1/configure  2011-10-22 15:02:59.0 +0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.68 for libmtp 1.1.0.
+# Generated by GNU Autoconf 2.68 for libmtp 1.1.1.
 #
 # Report bugs to .
 #
@@ -570,8 +570,8 @@
 # Identity of this package.
 PACKAGE_NAME='libmtp'
 PACKAGE_TARNAME='libmtp'
-PACKAGE_VERSION='1.1.0'
-PACKAGE_STRING='libmtp 1.1.0'
+PACKAGE_VERSION='1.1.1'
+PACKAGE_STRING='libmtp 1.1.1'
 PACKAGE_BUGREPORT='libmtp-disc...@lists.sourceforge.net'
 PACKAGE_URL=''
 
@@ -1313,7 +1313,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures libmtp 1.1.0 to adapt to many kinds of systems.
+\`configure' configures libmtp 1.1.1 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1383,7 +1383,7 @@
 
 if test -n "$ac_init_help"; t

commit libmtp for openSUSE:Factory

2011-12-06 Thread h_root
Hello community,

here is the log from the commit of package libmtp for openSUSE:Factory checked 
in at 2011-12-06 18:24:39

Comparing /work/SRC/openSUSE:Factory/libmtp (Old)
 and  /work/SRC/openSUSE:Factory/.libmtp.new (New)


Package is "libmtp", Maintainer is "meiss...@suse.com"

Changes:




Other differences:
--
++ libmtp.spec ++
--- /var/tmp/diff_new_pack.W3nvBa/_old  2011-12-06 18:43:01.0 +0100
+++ /var/tmp/diff_new_pack.W3nvBa/_new  2011-12-06 18:43:01.0 +0100
@@ -22,7 +22,7 @@
 Url:http://sf.net/projects/libmtp
 BuildRequires:  doxygen pkg-config
 BuildRequires:  libusb-devel
-License:LGPLv2.1+
+License:LGPL-2.1+
 Group:  Productivity/Multimedia/Sound/Players
 AutoReqProv:on
 Summary:Commandline utilities for access to MTP Players
@@ -51,7 +51,7 @@
 Marcus Meissner 
 
 %package -n libmtp9
-License:LGPLv2.1+
+License:LGPL-2.1+
 Summary:Library for accessing MTP Players
 Group:  Productivity/Multimedia/Sound/Players
 
@@ -75,12 +75,12 @@
 Marcus Meissner 
 
 %package -n mtp-tools
-License:LGPLv2.1+
+License:LGPL-2.1+
 Summary:Commandline utilities for access to MTP Players
 Group:  Productivity/Multimedia/Sound/Players
 
 %package devel
-License:LGPLv2.1+
+License:LGPL-2.1+
 Summary:Development files for access to MTP Player library
 Group:  Development/Libraries/Other
 Requires:   libmtp9 = %version

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libmtp for openSUSE:Factory

2011-09-19 Thread h_root

Hello community,

here is the log from the commit of package libmtp for openSUSE:Factory
checked in at Mon Sep 19 22:55:41 CEST 2011.




--- libmtp/libmtp.changes   2011-06-10 11:21:52.0 +0200
+++ /mounts/work_src_done/STABLE/libmtp/libmtp.changes  2011-09-19 
10:27:53.0 +0200
@@ -1,0 +2,9 @@
+Mon Sep 19 10:01:27 CEST 2011 - meiss...@suse.de
+
+- updated to 1.1.0
+  * lots of new devices
+  * IAD (0xfe class) device detection
+- drop HAL FDI snippets
+- libmtp8 -> libmtp9
+
+---

calling whatdependson for head-i586


Old:

  libmtp-1.0.6.tar.bz2

New:

  libmtp-1.1.0.tar.gz



Other differences:
--
++ libmtp.spec ++
--- /var/tmp/diff_new_pack.t7eVui/_old  2011-09-19 22:55:25.0 +0200
+++ /var/tmp/diff_new_pack.t7eVui/_new  2011-09-19 22:55:25.0 +0200
@@ -16,7 +16,7 @@
 #
 
 
-%define debug_package_requires libmtp8 = %{version}-%{release}
+%define debug_package_requires libmtp9 = %{version}-%{release}
 
 Name:   libmtp
 Url:http://sf.net/projects/libmtp
@@ -26,9 +26,9 @@
 Group:  Productivity/Multimedia/Sound/Players
 AutoReqProv:on
 Summary:Commandline utilities for access to MTP Players
-Version:1.0.6
+Version:1.1.0
 Release:7
-Source0:%name-%version.tar.bz2
+Source0:%name-%version.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -50,12 +50,12 @@
 Mariusz Woloszyn 
 Marcus Meissner 
 
-%package -n libmtp8
+%package -n libmtp9
 License:LGPLv2.1+
 Summary:Library for accessing MTP Players
 Group:  Productivity/Multimedia/Sound/Players
 
-%description -n libmtp8
+%description -n libmtp9
 This package contains the libraries that allow access to USB based media
 players based on the MTP (Media Transfer Protocol) authored by
 Microsoft.
@@ -83,7 +83,7 @@
 License:LGPLv2.1+
 Summary:Development files for access to MTP Player library
 Group:  Development/Libraries/Other
-Requires:   libmtp8 = %version
+Requires:   libmtp9 = %version
 Requires:   libusb-devel
 
 %description devel
@@ -127,30 +127,28 @@
 
 %install
 make install DESTDIR=$RPM_BUILD_ROOT
-install -d $RPM_BUILD_ROOT/usr/share/hal/fdi/information/20thirdparty/
-install -c -m 644 libmtp.fdi 
$RPM_BUILD_ROOT/usr/share/hal/fdi/information/20thirdparty/10-usb-music-players-libmtp.fdi
+#install -d $RPM_BUILD_ROOT/usr/share/hal/fdi/information/20thirdparty/
+#install -c -m 644 libmtp.fdi 
$RPM_BUILD_ROOT/usr/share/hal/fdi/information/20thirdparty/10-usb-music-players-libmtp.fdi
 rm -rf $RPM_BUILD_ROOT/usr/share/doc/libmtp*
 rm -rf $RPM_BUILD_ROOT/%{_libdir}/*.la
 
-mv $RPM_BUILD_ROOT/lib/udev/rules.d/libmtp.rules 
$RPM_BUILD_ROOT/lib/udev/rules.d/39-libmtp.rules
+%post -n libmtp9 -p /sbin/ldconfig
 
-%post -n libmtp8 -p /sbin/ldconfig
-
-%postun -n libmtp8 -p /sbin/ldconfig
+%postun -n libmtp9 -p /sbin/ldconfig
 
 %files -n mtp-tools
 %defattr(-, root, root)
 %{_prefix}/bin/*
 
-%files -n libmtp8
+%files -n libmtp9
 %defattr(-, root, root)
 %doc COPYING README ChangeLog AUTHORS
 %{_libdir}/lib*.so.*
-%dir /usr/share/hal
-%dir /usr/share/hal/fdi
-%dir /usr/share/hal/fdi/information
-%dir /usr/share/hal/fdi/information/20thirdparty/
-/usr/share/hal/fdi/information/20thirdparty/10-usb-music-players-libmtp.fdi
+#%dir /usr/share/hal
+#dir /usr/share/hal/fdi
+#dir /usr/share/hal/fdi/information
+#dir /usr/share/hal/fdi/information/20thirdparty/
+#usr/share/hal/fdi/information/20thirdparty/10-usb-music-players-libmtp.fdi
 %dir /lib/udev
 /lib/udev/mtp-probe
 %dir /lib/udev/rules.d






Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libmtp for openSUSE:Factory

2011-06-14 Thread h_root

Hello community,

here is the log from the commit of package libmtp for openSUSE:Factory
checked in at Tue Jun 14 12:06:55 CEST 2011.




--- libmtp/libmtp.changes   2011-02-15 14:28:41.0 +0100
+++ /mounts/work_src_done/STABLE/libmtp/libmtp.changes  2011-06-10 
11:21:52.0 +0200
@@ -1,0 +2,5 @@
+Fri Jun 10 09:23:53 UTC 2011 - andrea.turr...@gmail.com
+
+- fixed typos in descriptions of libmtp.spec
+
+---

calling whatdependson for head-i586




Other differences:
--
++ libmtp.spec ++
--- /var/tmp/diff_new_pack.zblAjp/_old  2011-06-14 12:03:44.0 +0200
+++ /var/tmp/diff_new_pack.zblAjp/_new  2011-06-14 12:03:44.0 +0200
@@ -27,13 +27,13 @@
 AutoReqProv:on
 Summary:Commandline utilities for access to MTP Players
 Version:1.0.6
-Release:1
+Release:7
 Source0:%name-%version.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
-This package contains binaries and documentation that allow accessto
-USB based media players based on the MTP (Media TransferProtocol)
+This package contains binaries and documentation that allow access to
+USB based media players based on the MTP (Media Transfer Protocol)
 authored by Microsoft.
 
 Common devices using this technology are Creative Zen, iRiver, Samsung
@@ -56,8 +56,8 @@
 Group:  Productivity/Multimedia/Sound/Players
 
 %description -n libmtp8
-This package contain the libraries that allow access to USB based media
-players based on the MTP (Media TransferProtocol) authored by
+This package contains the libraries that allow access to USB based media
+players based on the MTP (Media Transfer Protocol) authored by
 Microsoft.
 
 Common devices using this technology are Creative Zen, iRiver, Samsung
@@ -104,7 +104,7 @@
 
 %description -n mtp-tools
 This package contains binaries that allow command line access to USB
-based media players based on the MTP (Media TransferProtocol) authored
+based media players based on the MTP (Media Transfer Protocol) authored
 by Microsoft. For graphical user interfaces use Amarok or Banshee.
 
 






Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org