Hello community, here is the log from the commit of package pilot-link for openSUSE:Factory checked in at 2013-04-19 10:55:02 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/pilot-link (Old) and /work/SRC/openSUSE:Factory/.pilot-link.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "pilot-link", Maintainer is "[email protected]" Changes: -------- --- /work/SRC/openSUSE:Factory/pilot-link/pilot-link.changes 2011-11-22 17:49:33.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.pilot-link.new/pilot-link.changes 2013-04-19 10:55:04.000000000 +0200 @@ -1,0 +2,18 @@ +Thu Apr 18 09:27:29 UTC 2013 - [email protected] + +- license update: GPL-2.0 and GPL-2.0+ and LGPL-2.1+ + There are GPL-2.0 (only) licenses in the packages. Assuming aggregation + as Fedora also use an aggregation license. Please double check. + +------------------------------------------------------------------- +Tue Apr 16 13:56:58 UTC 2013 - [email protected] + +- patch to fix udev rules by Jean Delvare + pilot-link-0.12.5-udev-rules.patch + +------------------------------------------------------------------- +Fri Mar 1 10:31:10 UTC 2013 - [email protected] + +- update license to new format + +------------------------------------------------------------------- New: ---- pilot-link-0.12.5-udev-rules.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ pilot-link.spec ++++++ --- /var/tmp/diff_new_pack.0uCq7e/_old 2013-04-19 10:55:05.000000000 +0200 +++ /var/tmp/diff_new_pack.0uCq7e/_new 2013-04-19 10:55:05.000000000 +0200 @@ -1,7 +1,7 @@ # # spec file for package pilot-link # -# Copyright (c) 2011 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 @@ -15,20 +15,25 @@ # Please submit bugfixes or comments via http://bugs.opensuse.org/ # -# norootforbuild - Name: pilot-link -BuildRequires: bluez-devel gcc-c++ libpng-devel libtool libusb-devel pkg-config popt-devel python-devel readline-devel +BuildRequires: bluez-devel +BuildRequires: gcc-c++ +BuildRequires: libpng-devel +BuildRequires: libtool +BuildRequires: libusb-devel +BuildRequires: pkg-config +BuildRequires: popt-devel +BuildRequires: python-devel +BuildRequires: readline-devel Url: http://www.pilot-link.org/ -License: GPL-2.0+ ; LGPL-2.1+ -Group: Hardware/Palm Version: 0.12.5 -Release: 10 +Release: 0 Obsoletes: plink < %{version} Provides: plink = %{version} -AutoReqProv: on Summary: Pilot-Link Based Synchronization Development Header Files +License: GPL-2.0 and GPL-2.0+ and LGPL-2.1+ +Group: Hardware/Palm Source: http://downloads.pilot-link.org/%{name}-%{version}.tar.bz2 Source1: 10-usb-raw-pda.fdi Patch0: %{name}-gcc.patch @@ -44,6 +49,7 @@ Patch10: pilot-link-0.12.5-libpng-include.patch # PATCH-FIX-UPSTREAM pilot-link-0.12.5-perl514.patch [email protected] -- Fix compilation with Perl 5.14 Patch11: pilot-link-0.12.5-perl514.patch +Patch12: pilot-link-0.12.5-udev-rules.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build %description @@ -65,7 +71,6 @@ Kenneth Albanowski <[email protected]> %package -n libpisock9 -License: GPL-2.0+ ; LGPL-2.1+ Summary: Pilot-Link Library for Palm devices Group: Hardware/Palm @@ -80,7 +85,6 @@ Kenneth Albanowski <[email protected]> %package -n libpisock-devel -License: GPL-2.0+ ; LGPL-2.1+ Requires: libpisock9 = %{version} Provides: pilot-link-devel = %{version} Obsoletes: pilot-link-devel < %{version} @@ -95,7 +99,6 @@ Kenneth Albanowski <[email protected]> %package -n libpisync1 -License: GPL-2.0+ ; LGPL-2.1+ Summary: Pilot-Link based Synchronization Library for Palm devices Group: Hardware/Palm @@ -110,7 +113,6 @@ Kenneth Albanowski <[email protected]> %package -n libpisync-devel -License: GPL-2.0+ ; LGPL-2.1+ Requires: libpisync1 = %{version} Summary: Pilot-Link based Synchronization Library for Palm devices Group: Hardware/Palm @@ -126,7 +128,6 @@ Kenneth Albanowski <[email protected]> %package -n python-pisock -License: GPL-2.0+ ; LGPL-2.1+ Requires: python Summary: Pilot-Link Library for Palm devices - Python bindings Group: Development/Libraries/Python @@ -141,7 +142,6 @@ Kenneth Albanowski <[email protected]> %package -n perl-PDA-Pilot -License: GPL-2.0+ ; LGPL-2.1+ Requires: perl = %{perl_version} Summary: Pilot-Link Library for Palm devices - Perl bindings Group: Development/Libraries/Perl @@ -164,6 +164,7 @@ %patch9 %patch10 %patch11 +%patch12 # Force updating bindings/Perl/Pilot.c rm -f bindings/Perl/Pilot.c ++++++ pilot-link-0.12.5-udev-rules.patch ++++++ From: Jean Delvare <[email protected]> Subject: [PATCH] Fix libpisock udev rule udev goes on with rules evaluation as long as tests succeed. Thus "A!=x, B!=y, goto end" will only jump to end if A!=x AND B!=y. In other words the jump is skipped (and thus the following rules are processed) if A==x OR B==y. This is clearly not the intent here, as we only want to act on USB devices being added. Additionally, we can check SUBSYSTEM instead of SUBSYSTEMS, it is slightly faster. As far as I know only USB devices have the idVendor and idProduct attributes so it makes no sense to check for these if we aren't a USB device ourselves. Index: doc/60-libpisock.rules =================================================================== --- doc/60-libpisock.rules.orig +++ doc/60-libpisock.rules @@ -2,7 +2,8 @@ # # udev rules file for pilot-link's libpisock library, enabled for libusb # -SUBSYSTEMS!="usb", ACTION!="add", GOTO="libpisock_rules_end" +SUBSYSTEM!="usb", GOTO="libpisock_rules_end" +ACTION!="add", GOTO="libpisock_rules_end" # Sony handheld devices ATTRS{idVendor}=="054c", ATTRS{idProduct}=="0038", GROUP="dialout", MODE="0664" -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
