Hello community,
here is the log from the commit of package sysconfig for openSUSE:11.4
checked in at Fri Jul 1 13:28:30 CEST 2011.
--------
--- old-versions/11.4/all/sysconfig/sysconfig.changes 2011-02-14 14:59:46.000000000 +0100
+++ 11.4/sysconfig/sysconfig.changes 2011-06-09 17:27:35.000000000 +0200
@@ -1,0 +2,18 @@
+Thu Jun 9 14:58:52 UTC 2011 - mt(a)suse.de
+
+- Fixed get_depending_ifaces to not return bonding slaves by
+ default as it is not required to stop the slaves before the
+ bonding master goes down and in fact it may cause a system
+ hang, when the slaves are infiniband child interfaces, that
+ are deleted while ifdown (bnc#698478).
+- Fixed to use 600 mode in spec attr for ifcfg-lo to avoid that
+ rpm -V report it as modified because of the chmod added to the
+ post-install script in bnc#670871.
+
+-------------------------------------------------------------------
+Tue Jun 7 19:20:43 CEST 2011 - vbotka(a)suse.cz
+
+- Added WIRELESS_AUTH_MODE='no-encryption' option handling to
+ ifup-wireless, because YaST sets it (bnc#648830).
+
+-------------------------------------------------------------------
Package does not exist at destination yet. Using Fallback old-versions/11.4/all/sysconfig
Destination is old-versions/11.4/UPDATES/all/sysconfig
calling whatdependson for 11.4-i586
New:
----
0001-ifup-wireless-no-encryption-option.bnc648830.patch
0002-do-not-stop-bonding-slaves-first.bnc698478.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ sysconfig.spec ++++++
--- /var/tmp/diff_new_pack.S8RHJO/_old 2011-07-01 13:28:07.000000000 +0200
+++ /var/tmp/diff_new_pack.S8RHJO/_new 2011-07-01 13:28:07.000000000 +0200
@@ -20,7 +20,7 @@
Name: sysconfig
Version: 0.74.5
-Release: 2
+Release: 6.<RELEASE7>
Summary: The system configuration scheme
Url: http://gitorious.org/opensuse/sysconfig
Group: System/Base
@@ -32,6 +32,8 @@
Requires: iproute2 dbus-1 procps
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Source: %name-%version.tar.bz2
+Patch1: 0001-ifup-wireless-no-encryption-option.bnc648830.patch
+Patch2: 0002-do-not-stop-bonding-slaves-first.bnc698478.patch
%description
This package provides the SuSE system configuration scheme and
@@ -51,6 +53,8 @@
%prep
%setup -n sysconfig-%{version}
+%patch1 -p1
+%patch2 -p1
%build
autoreconf --force --install
@@ -87,7 +91,7 @@
/etc/init.d/*
%ghost /etc/sysconfig/network/config
%ghost /etc/sysconfig/network/dhcp
-%config(noreplace) /etc/sysconfig/network/ifcfg-lo
+%config(noreplace) %attr(600,root,root) /etc/sysconfig/network/ifcfg-lo
%config(noreplace) /etc/sysconfig/network/ifroute-lo
%config(noreplace) /etc/ppp/ip-up
%config(noreplace) /etc/ppp/ip-down
++++++ 0001-ifup-wireless-no-encryption-option.bnc648830.patch ++++++
>From b1bcb44dfd2cae8ee771ad7988d357e17e692687 Mon Sep 17 00:00:00 2001
From: Vladimir Botka <vbotka(a)suse.de>
Date: Wed, 8 Jun 2011 22:00:08 +0200
Subject: [PATCH] no-encryption option added to the WIRELESS_AUTH_MODE
(bnc#213001) introduced no-encryption option in Yast, but this option has
never been implemented in the sysconfig. The differnece between no-encryption
and open is that open system can use user authentication. In both cases
key_mgmt=NONE option shall be put into the wpa_supplicant.conf (bnc#648830).
Signed-off-by: Marius Tomaschewski <mt(a)suse.de>
---
scripts/ifup-wireless | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/scripts/ifup-wireless b/scripts/ifup-wireless
index 105ebe9..45f27af 100755
--- a/scripts/ifup-wireless
+++ b/scripts/ifup-wireless
@@ -304,7 +304,7 @@ EOL
# special hack for madwifi
test "$DRIVER" = "ath_pci" && run_iw_tool priv authmode 2
;;
- open|opensystem|"") WIRELESS_SEC_MODE="open";;
+ open|opensystem|no-encryption|"") WIRELESS_SEC_MODE="open";;
esac
fi
if [ -n "$WIRELESS_KEY_0" -a \
@@ -403,7 +403,7 @@ setup_wlanngdev()
wlanctl dot11req_mibset mibattribute=dot11ExcludeUnencrypted=true
AUTHTYPE=sharedkey
;;
- open|opensystem|"")
+ open|opensystem|no-encryption|"")
wlanctl dot11req_mibset mibattribute=dot11ExcludeUnencrypted=false
AUTHTYPE=opensystem
;;
@@ -540,7 +540,7 @@ print_network_block()
print_network_line ssid WIRELESS_ESSID "$SUFFIX"
print_network_line_unquoted priority WIRELESS_PRIORITY "$SUFFIX"
case "`eval echo \\$WIRELESS_AUTH_MODE$SUFFIX`" in
- open)
+ open|no-encryption)
echo " key_mgmt=NONE"
for i in 0 1 2 3 ; do
KEY="`eval print_key \\"\\$WIRELESS_KEY_$i$SUFFIX\\" \\$WIRELESS_KEY_LENGTH$SUFFIX`"
--
1.7.3.4
++++++ 0002-do-not-stop-bonding-slaves-first.bnc698478.patch ++++++
>From bea597d39433da54a55f9c95f832aade6852fc9a Mon Sep 17 00:00:00 2001
From: Marius Tomaschewski <mt(a)suse.de>
Date: Tue, 7 Jun 2011 17:18:59 +0200
Subject: [PATCH] Do not return bonding slaves in get_depending_ifaces
Fixed get_depending_ifaces to not return bonding slaves by
default as it is not required to stop the slaves before the
bonding master goes down and in fact it may cause a system
hang, when the slaves are infiniband child interfaces, that
are deleted while ifdown (bnc#698478).
Signed-off-by: Marius Tomaschewski <mt(a)suse.de>
---
scripts/functions | 34 ++++++++++++++++++++++------------
1 files changed, 22 insertions(+), 12 deletions(-)
diff --git a/scripts/functions b/scripts/functions
index 9bcd575..f3ad06e 100644
--- a/scripts/functions
+++ b/scripts/functions
@@ -555,14 +555,24 @@ has_link () {
# This function looks for interfaces which depend on the given interface. It
# prints a list with all depending interfaces. It returns 0 if there are
# depending interfaces and !=0 if not.
-# Currently it checks only for vlan and bonding interfaces.
+# Currently it checks only for vlan and optionally bonding slave interfaces.
# FIXME: Add other types of interfaces that depend on others.
get_depending_ifaces() {
- local VLAN_PATH BOND_PATH DEP_IFACES DEP_VLANS DEP_BONDS BASE_IFACE i
+ local VLAN_PATH BOND_PATH DEP_VLANS DEP_BONDS BASE_IFACE i
+ local -a DEP_IFACES=()
VLAN_PATH="/proc/net/vlan"
- BOND_PATH="/proc/net/bonding"
+ BOND_PATH=""
+ while [ $# -gt 0 ]; do
+ case $1 in
+ --with-bonding-slaves)
+ BOND_PATH="/proc/net/bonding"
+ shift
+ ;;
+ -*) shift ;;
+ *) break ;;
+ esac
+ done
BASE_IFACE="$1"
- DEP_IFACES=""
if [ -z "$BASE_IFACE" ]; then
return 1
@@ -571,14 +581,14 @@ get_depending_ifaces() {
if [ -d "$VLAN_PATH" ]; then
DEP_VLANS=`cd "$VLAN_PATH"
grep -lws "Device: *$BASE_IFACE" *`
- DEP_IFACES="$DEP_VLANS"
+ DEP_IFACES+=($DEP_VLANS)
fi
- if [ -d "$BOND_PATH" ]; then
+ if [ -n "$BOND_PATH" -a -d "$BOND_PATH" ]; then
DEP_BONDS=`cd "$BOND_PATH"
grep -s '^Slave Interface:' $BASE_IFACE |
while IFS=':' read text iface ; do echo -n "$iface" ; done`
- DEP_IFACES="$DEP_IFACES${DEP_BONDS:+ $DEP_BONDS}"
+ DEP_IFACES+=($DEP_BONDS)
fi
case $BASE_IFACE in
@@ -587,18 +597,18 @@ get_depending_ifaces() {
for i in `ls -1 /sys/class/net/ 2>/dev/null` ; do
test -d /sys/class/net/$i || continue
case $i in (${BASE_IFACE}.*)
- DEP_IFACES="${DEP_IFACES}${i:+ $i}"
+ DEP_IFACES+=($i)
;;
esac
done
;;
esac
- if [ -z "$DEP_IFACES" ]; then
- return 1
- else
- echo "$DEP_IFACES"
+ if [ ${#DEP_IFACES[*]} -gt 0 ]; then
+ echo "${DEP_IFACES[*]}"
return 0
+ else
+ return 1
fi
}
--
1.7.3.4
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
--
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org
Hello community,
here is the log from the commit of package sysconfig for openSUSE:11.3
checked in at Fri Jul 1 13:26:28 CEST 2011.
--------
--- old-versions/11.3/UPDATES/all/sysconfig/sysconfig.changes 2011-02-14 14:59:51.000000000 +0100
+++ 11.3/sysconfig/sysconfig.changes 2011-06-09 17:28:10.000000000 +0200
@@ -1,0 +2,18 @@
+Thu Jun 9 14:58:52 UTC 2011 - mt(a)suse.de
+
+- Fixed get_depending_ifaces to not return bonding slaves by
+ default as it is not required to stop the slaves before the
+ bonding master goes down and in fact it may cause a system
+ hang, when the slaves are infiniband child interfaces, that
+ are deleted while ifdown (bnc#698478).
+- Fixed to use 600 mode in spec attr for ifcfg-lo to avoid that
+ rpm -V report it as modified because of the chmod added to the
+ post-install script in bnc#670871.
+
+-------------------------------------------------------------------
+Tue Jun 7 19:20:43 CEST 2011 - vbotka(a)suse.cz
+
+- Added WIRELESS_AUTH_MODE='no-encryption' option handling to
+ ifup-wireless, because YaST sets it (bnc#648830).
+
+-------------------------------------------------------------------
calling whatdependson for 11.3-i586
New:
----
0008-ifup-wireless-no-encryption-option.bnc648830.patch
0009-do-not-stop-bonding-slaves-first.bnc698478.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ sysconfig.spec ++++++
--- /var/tmp/diff_new_pack.9egB9H/_old 2011-07-01 13:25:11.000000000 +0200
+++ /var/tmp/diff_new_pack.9egB9H/_new 2011-07-01 13:25:11.000000000 +0200
@@ -20,7 +20,7 @@
Name: sysconfig
Version: 0.73.7
-Release: 2.<RELEASE7>
+Release: 2.<RELEASE9>
Summary: The system configuration scheme
Group: System/Base
License: GPLv2+
@@ -36,6 +36,8 @@
Patch5: 0005-Fixed-link_wait-scriptname-check-and-ping-usage.patch
Patch6: 0006-Fixed-ifup-bonding-to-not-fail-on-enslave-errors.patch
Patch7: 0007-udevmountd-allow-mounting-of-multipath-devices.patch
+Patch8: 0008-ifup-wireless-no-encryption-option.bnc648830.patch
+Patch9: 0009-do-not-stop-bonding-slaves-first.bnc698478.patch
%description
This package provides the SuSE system configuration scheme and
@@ -62,6 +64,8 @@
%patch5 -p1
%patch6 -p1
%patch7 -p1
+%patch8 -p1
+%patch9 -p1
%build
autoreconf --force --install
@@ -98,7 +102,7 @@
/etc/init.d/*
%ghost /etc/sysconfig/network/config
%ghost /etc/sysconfig/network/dhcp
-%config(noreplace) /etc/sysconfig/network/ifcfg-lo
+%config(noreplace) %attr(600,root,root) /etc/sysconfig/network/ifcfg-lo
%config(noreplace) /etc/sysconfig/network/ifroute-lo
%config(noreplace) /etc/ppp/ip-up
%config(noreplace) /etc/ppp/ip-down
++++++ 0008-ifup-wireless-no-encryption-option.bnc648830.patch ++++++
>From 8064ca59488527584852bdc2e8d20c7b3eb051c3 Mon Sep 17 00:00:00 2001
From: Vladimir Botka <vbotka(a)suse.de>
Date: Wed, 8 Jun 2011 22:00:08 +0200
Subject: [PATCH] no-encryption option added to the WIRELESS_AUTH_MODE
(bnc#213001) introduced no-encryption option in Yast, but this option has
never been implemented in the sysconfig. The differnece between no-encryption
and open is that open system can use user authentication. In both cases
key_mgmt=NONE option shall be put into the wpa_supplicant.conf (bnc#648830).
Signed-off-by: Marius Tomaschewski <mt(a)suse.de>
---
scripts/ifup-wireless | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/scripts/ifup-wireless b/scripts/ifup-wireless
index 259d2f2..fb0582b 100755
--- a/scripts/ifup-wireless
+++ b/scripts/ifup-wireless
@@ -301,7 +301,7 @@ EOL
# special hack for madwifi
test "$DRIVER" = "ath_pci" && run_iw_tool priv authmode 2
;;
- open|opensystem|"") WIRELESS_SEC_MODE="open";;
+ open|opensystem|no-encryption|"") WIRELESS_SEC_MODE="open";;
esac
fi
if [ -n "$WIRELESS_KEY_0" -a \
@@ -400,7 +400,7 @@ setup_wlanngdev()
wlanctl dot11req_mibset mibattribute=dot11ExcludeUnencrypted=true
AUTHTYPE=sharedkey
;;
- open|opensystem|"")
+ open|opensystem|no-encryption|"")
wlanctl dot11req_mibset mibattribute=dot11ExcludeUnencrypted=false
AUTHTYPE=opensystem
;;
@@ -537,7 +537,7 @@ print_network_block()
print_network_line ssid WIRELESS_ESSID "$SUFFIX"
print_network_line_unquoted priority WIRELESS_PRIORITY "$SUFFIX"
case "`eval echo \\$WIRELESS_AUTH_MODE$SUFFIX`" in
- open)
+ open|no-encryption)
echo " key_mgmt=NONE"
for i in 0 1 2 3 ; do
KEY="`eval print_key \\"\\$WIRELESS_KEY_$i$SUFFIX\\" \\$WIRELESS_KEY_LENGTH$SUFFIX`"
--
1.7.3.4
++++++ 0009-do-not-stop-bonding-slaves-first.bnc698478.patch ++++++
>From 5a97c780567a8005e1ac1f25a005008301c091a3 Mon Sep 17 00:00:00 2001
From: Marius Tomaschewski <mt(a)suse.de>
Date: Tue, 7 Jun 2011 17:18:59 +0200
Subject: [PATCH] Do not return bonding slaves in get_depending_ifaces
Fixed get_depending_ifaces to not return bonding slaves by
default as it is not required to stop the slaves before the
bonding master goes down and in fact it may cause a system
hang, when the slaves are infiniband child interfaces, that
are deleted while ifdown (bnc#698478).
Signed-off-by: Marius Tomaschewski <mt(a)suse.de>
---
scripts/functions | 34 ++++++++++++++++++++++------------
1 files changed, 22 insertions(+), 12 deletions(-)
diff --git a/scripts/functions b/scripts/functions
index 9000c16..3948bca 100644
--- a/scripts/functions
+++ b/scripts/functions
@@ -537,14 +537,24 @@ has_link () {
# This function looks for interfaces which depend on the given interface. It
# prints a list with all depending interfaces. It returns 0 if there are
# depending interfaces and !=0 if not.
-# Currently it checks only for vlan and bonding interfaces.
+# Currently it checks only for vlan and optionally bonding slave interfaces.
# FIXME: Add other types of interfaces that depend on others.
get_depending_ifaces() {
- local VLAN_PATH BOND_PATH DEP_IFACES DEP_VLANS DEP_BONDS BASE_IFACE i
+ local VLAN_PATH BOND_PATH DEP_VLANS DEP_BONDS BASE_IFACE i
+ local -a DEP_IFACES=()
VLAN_PATH="/proc/net/vlan"
- BOND_PATH="/proc/net/bonding"
+ BOND_PATH=""
+ while [ $# -gt 0 ]; do
+ case $1 in
+ --with-bonding-slaves)
+ BOND_PATH="/proc/net/bonding"
+ shift
+ ;;
+ -*) shift ;;
+ *) break ;;
+ esac
+ done
BASE_IFACE="$1"
- DEP_IFACES=""
if [ -z "$BASE_IFACE" ]; then
return 1
@@ -553,14 +563,14 @@ get_depending_ifaces() {
if [ -d "$VLAN_PATH" ]; then
DEP_VLANS=`cd "$VLAN_PATH"
grep -lws "Device: *$BASE_IFACE" *`
- DEP_IFACES="$DEP_VLANS"
+ DEP_IFACES+=($DEP_VLANS)
fi
- if [ -d "$BOND_PATH" ]; then
+ if [ -n "$BOND_PATH" -a -d "$BOND_PATH" ]; then
DEP_BONDS=`cd "$BOND_PATH"
grep -s '^Slave Interface:' $BASE_IFACE |
while IFS=':' read text iface ; do echo -n "$iface" ; done`
- DEP_IFACES="$DEP_IFACES${DEP_BONDS:+ $DEP_BONDS}"
+ DEP_IFACES+=($DEP_BONDS)
fi
case $BASE_IFACE in
@@ -569,18 +579,18 @@ get_depending_ifaces() {
for i in `ls -1 /sys/class/net/ 2>/dev/null` ; do
test -d /sys/class/net/$i || continue
case $i in (${BASE_IFACE}.*)
- DEP_IFACES="${DEP_IFACES}${i:+ $i}"
+ DEP_IFACES+=($i)
;;
esac
done
;;
esac
- if [ -z "$DEP_IFACES" ]; then
- return 1
- else
- echo "$DEP_IFACES"
+ if [ ${#DEP_IFACES[*]} -gt 0 ]; then
+ echo "${DEP_IFACES[*]}"
return 0
+ else
+ return 1
fi
}
--
1.7.3.4
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
--
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org
Hello community,
here is the log from the commit of package perl-MailTools for openSUSE:Factory
checked in at Fri Jul 1 12:39:24 CEST 2011.
--------
--- perl-MailTools/perl-MailTools.changes 2010-11-30 20:26:59.000000000 +0100
+++ /mounts/work_src_done/STABLE/perl-MailTools/perl-MailTools.changes 2011-06-03 12:15:57.000000000 +0200
@@ -1,0 +2,13 @@
+Fri Jun 3 10:12:07 UTC 2011 - vcizek(a)novell.com
+
+- corrected license (same as Perl)
+- removed authors
+
+-------------------------------------------------------------------
+Wed Jun 1 22:14:00 UTC 2011 - pascal.bleser(a)opensuse.org
+
+- update to 2.08:
+ * respect errors on closing an Mail::Mailer::smtp/::smtps connection
+ * Mail::Internet should accept Net::SMTP::SSL as well (RT#68590)
+
+-------------------------------------------------------------------
calling whatdependson for head-i586
Old:
----
MailTools-2.07.tar.bz2
New:
----
MailTools-2.08.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ perl-MailTools.spec ++++++
--- /var/tmp/diff_new_pack.VTv0dK/_old 2011-07-01 12:38:56.000000000 +0200
+++ /var/tmp/diff_new_pack.VTv0dK/_new 2011-07-01 12:38:56.000000000 +0200
@@ -1,7 +1,7 @@
#
-# spec file for package perl-MailTools (Version 2.07)
+# spec file for package perl-MailTools
#
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 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: perl-MailTools
Url: http://cpan.org/modules/by-module/Mail/
-Version: 2.07
-Release: 3
-Provides: p_mtools
-Obsoletes: p_mtools
-AutoReqProv: on
-License: Artistic
+Version: 2.08
+Release: 1
+Provides: p_mtools = %{version}
+Obsoletes: p_mtools < %{version}
+License: GPL-1.0+ or Artistic
Group: Development/Libraries/Perl
-Summary: a set of perl modules related to mail applications
-Source: MailTools-%{version}.tar.bz2
+Summary: Set of perl modules related to mail applications
+Source: http://search.cpan.org/CPAN/authors/id/M/MA/MARKOV/MailTools-%{version}.tar…
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%{perl_requires}
BuildRequires: perl
@@ -38,11 +37,6 @@
a set of perl modules related to mail applications
-
-Authors:
---------
- Graham Barr <gbarr(a)pobox.com>
-
%prep
%setup -q -n MailTools-%{version}
# ---------------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
--
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org
Hello community,
here is the log from the commit of package pcsc-acsccid for openSUSE:Factory
checked in at Fri Jul 1 09:28:23 CEST 2011.
--------
New Changes file:
--- /dev/null 2010-08-26 16:28:41.000000000 +0200
+++ /mounts/work_src_done/STABLE/pcsc-acsccid/pcsc-acsccid.changes 2011-06-22 08:11:15.000000000 +0200
@@ -0,0 +1,13 @@
+-------------------------------------------------------------------
+Wed Jun 22 03:16:13 UTC 2011 - godfrey.chung(a)acs.com.hk
+
+- Updated to version 1.0.2 (22/6/2011):
+ * Fix non-redistributable reference manual problem.
+- Updated Url and Source.
+
+-------------------------------------------------------------------
+Fri Apr 29 04:00:51 UTC 2011 - godfrey.chung(a)acs.com.hk
+
+- Created package.
+- Based on pcsc-ccid.spec.
+
calling whatdependson for head-i586
New:
----
acsccid-1.0.2-pcscd-autostart.patch
acsccid-1.0.2.tar.bz2
pcsc-acsccid-rpmlintrc
pcsc-acsccid.changes
pcsc-acsccid.spec
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ pcsc-acsccid.spec ++++++
#
# spec file for package pcsc-acsccid
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2011 Advanced Card Systems Ltd.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# 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/
#
# norootforbuild
Name: pcsc-acsccid
%define _name acsccid
BuildRequires: flex libusb-devel pcsc-lite-devel pkg-config
%if 0%{?suse_version} >= 1140
BuildRequires: udev
%endif
Version: 1.0.2
Release: 1
Group: Productivity/Security
License: LGPLv2.1+
Url: http://acsccid.sourceforge.net/
Summary: PCSC Driver for ACS CCID Based Smart Card Readers
Source: http://downloads.sourceforge.net/%{_name}/%{_name}-%{version}.tar.bz2
Source1: %{name}-rpmlintrc
%if 0%{?suse_version} >= 1140
Patch: acsccid-1.0.2-pcscd-autostart.patch
%endif
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Requires: pcsc-lite >= 1.3.3
%define ifddir %(pkg-config libpcsclite --variable=usbdropdir)
Enhances: modalias(usb:v072fp90ccd*dc*dsc*dp*ic*isc*ip*)
Enhances: modalias(usb:v072fp90d8d*dc*dsc*dp*ic*isc*ip*)
Enhances: modalias(usb:v072fp90d2d*dc*dsc*dp*ic*isc*ip*)
Enhances: modalias(usb:v072fp8306d*dc*dsc*dp*ic*isc*ip*)
Enhances: modalias(usb:v072fp2011d*dc*dsc*dp*ic*isc*ip*)
Enhances: modalias(usb:v072fp1204d*dc*dsc*dp*ic*isc*ip*)
Enhances: modalias(usb:v072fp1205d*dc*dsc*dp*ic*isc*ip*)
Enhances: modalias(usb:v072fp1206d*dc*dsc*dp*ic*isc*ip*)
Enhances: modalias(usb:v072fp2200d*dc*dsc*dp*ic*isc*ip*)
Enhances: modalias(usb:v072fp2207d*dc*dsc*dp*ic*isc*ip*)
Enhances: modalias(usb:v072fp1280d*dc*dsc*dp*ic*isc*ip*)
Enhances: modalias(usb:v072fp2206d*dc*dsc*dp*ic*isc*ip*)
Enhances: modalias(usb:v072fp2203d*dc*dsc*dp*ic*isc*ip*)
Enhances: modalias(usb:v072fp2100d*dc*dsc*dp*ic*isc*ip*)
Enhances: modalias(usb:v072fp220fd*dc*dsc*dp*ic*isc*ip*)
Enhances: modalias(usb:v072fp2208d*dc*dsc*dp*ic*isc*ip*)
Enhances: modalias(usb:v072fp0901d*dc*dsc*dp*ic*isc*ip*)
Enhances: modalias(usb:v072fp220ad*dc*dsc*dp*ic*isc*ip*)
Enhances: modalias(usb:v072fp8201d*dc*dsc*dp*ic*isc*ip*)
%description
This package contains a ACS USB CCID (Chip/Smart Card Interface
Devices) driver.
This driver is meant to be used with the PCSC-Lite daemon from the
pcsc-lite package.
%prep
%setup -q -n %{_name}-%{version}
%if 0%{?suse_version} >= 1140
%patch
%endif
cp -a src/openct/LICENSE LICENSE.openct
cp -a src/towitoko/README README.towitoko
%build
%configure --enable-composite-as-multislot
make %{?jobs:-j%jobs}
%install
%makeinstall
%if 0%{?suse_version} >= 1140
mkdir -p $RPM_BUILD_ROOT/lib/udev
mkdir $RPM_BUILD_ROOT/lib/udev/rules.d
sed 's:GROUP="pcscd":GROUP="scard":' <src/92_pcscd_acsccid.rules >$RPM_BUILD_ROOT/lib/udev/rules.d/92_pcscd_acsccid.rules
%endif
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root)
# NEWS and ChangeLog are empty
%doc AUTHORS COPYING LICENSE.openct README README.towitoko
%{ifddir}/*
%if 0%{?suse_version} >= 1140
/lib/udev/rules.d/*.rules
%endif
%changelog
++++++ acsccid-1.0.2-pcscd-autostart.patch ++++++
diff -Naur src.orig/92_pcscd_acsccid.rules src/92_pcscd_acsccid.rules
--- src.orig/92_pcscd_acsccid.rules 1970-01-01 08:00:00.000000000 +0800
+++ src/92_pcscd_acsccid.rules 2011-04-27 17:13:05.153556000 +0800
@@ -0,0 +1,23 @@
+# udev rules to set the access rights of ACS CCID smart card readers
+# so they can be used by pcscd
+
+# If not adding the device, go away
+ACTION!="add", GOTO="pcscd_acsccid_rules_end"
+SUBSYSTEM!="usb", GOTO="pcscd_acsccid_rules_end"
+ENV{DEVTYPE}!="usb_device", GOTO="pcscd_acsccid_rules_end"
+
+# generic CCID device (bInterfaceClass = 0x0b)
+ENV{ID_USB_INTERFACES}=="*:0b0000:*", GROUP="pcscd"
+
+# non CCID generic (InterfaceClass: 0x00)
+# ACS ACR83U
+ATTRS{idVendor}=="072f", ATTRS{idProduct}=="90d2", GROUP="pcscd"
+# ACS ACR88U
+ATTRS{idVendor}=="072f", ATTRS{idProduct}=="2011", GROUP="pcscd"
+# ACS ACR128U
+ATTRS{idVendor}=="072f", ATTRS{idProduct}=="2100", GROUP="pcscd"
+# ACS APG8201
+ATTRS{idVendor}=="072f", ATTRS{idProduct}=="8201", GROUP="pcscd"
+
+# All done
+LABEL="pcscd_acsccid_rules_end"
++++++ pcsc-acsccid-rpmlintrc ++++++
# These links are needed. We should probably use unversioned libraries.
addFilter("devel-file-in-non-devel-package")
# This is not an error. rpmlint cannot handle %() properly.
addFilter("specfile-error")
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
--
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org
Hello community,
here is the log from the commit of package flickcurl for openSUSE:Factory
checked in at Fri Jul 1 08:43:20 CEST 2011.
--------
New Changes file:
--- /dev/null 2010-08-26 16:28:41.000000000 +0200
+++ /mounts/work_src_done/STABLE/flickcurl/flickcurl.changes 2011-03-29 01:02:53.000000000 +0200
@@ -0,0 +1,216 @@
+-------------------------------------------------------------------
+Mon Mar 28 15:59:07 UTC 2011 - pascal.bleser(a)opensuse.org
+
+- split out documentation into -doc subpackage, symlinked
+
+- update to 1.21:
+ * a memory leak when building photo list results was fixed
+ * flickcurl_photos_setPerms() was fixed to allow false boolean permissions
+ * flickcurl_photosets_getPhotos_params() was fixed to just work
+ * the flickcurl(1) utility now handles Raptor V1, V2, or none
+
+-------------------------------------------------------------------
+Thu Nov 18 10:59:34 UTC 2010 - pascal.bleser(a)opensuse.org
+
+- update to 1.20:
+ * fixes support for several major API calls that return standard photo
+ responses (SPR), such as searching for photos, getting recent photos,
+ listing photosets, and several others
+
+-------------------------------------------------------------------
+Sun Jul 25 06:48:47 UTC 2010 - pascal.bleser(a)opensuse.org
+
+- update to 1.19:
+ * support was added for the new photosets APIs:
+ + flickr.photosets.removePhotos
+ + flickr.photosets.reorderPhotos
+ + flickr.photosets.setPrimaryPhoto
+ * support was added for photo notes when getting photo information
+ * the flickcurl utility was updated to support all of the new APIs
+
+-------------------------------------------------------------------
+Tue Apr 27 06:04:46 UTC 2010 - pascal.bleser(a)opensuse.org
+
+- update to 1.18:
+ * adds support for the (rest of the) Galleries API
+ * adds a new People API call
+ * adds new functions for controlling curl handle options
+ * the flickcurl(1) utility was updated to support all of the new APIs
+
+-------------------------------------------------------------------
+Fri Mar 5 22:19:41 UTC 2010 - pascal.bleser(a)opensuse.org
+
+- update to 1.17:
+ * support for the new stats API, the people API, the "photos of"
+ people API, and the gallery API have been added
+ * the flickcurl utility has been updated to support all of the
+ new APIs
+
+-------------------------------------------------------------------
+Thu Jan 14 08:49:47 UTC 2010 - pascal.bleser(a)opensuse.org
+
+- update to 1.16:
+ * the flickcurl utility configuration file generation was fixed
+ to use a key=value format as documented
+ * flickcurl now accepts files with spaces around the "="
+ * the authentication documentation was updated to add a picture
+ showing the result of fetching the mobile authentication URLs
+
+-------------------------------------------------------------------
+Sun Jan 3 21:16:15 UTC 2010 - pascal.bleser(a)opensuse.org
+
+- update to 1.15:
+ * documentation updates
+ * the flickcurl_search_params struct gained an in_gallery boolean
+ field to restrict searches to photos in a gallery
+ * the flickcurl utility photos.search commands gained
+ geographical context, taking an integer argument for inside/
+ outside, an is-commons boolean flag, and an is-gallery boolean
+ flag
+ * a few minor bugs and typographical errors were fixed
+
+-------------------------------------------------------------------
+Tue Sep 22 00:00:00 CEST 2009 - pascal.bleser(a)opensuse.org
+
+- update to 1.14:
+ * adds a tutorial for using the search API along with a simple example program
+ * adds support for search parameters (geo_context and is_commons) and new
+ extras path_alias, url_m, url_o, url_s, url_sq, and url_t
+ * fixes a few minor bugs and typos
+
+-------------------------------------------------------------------
+Sun Aug 2 00:00:00 CEST 2009 - pascal.bleser(a)opensuse.org
+
+- update to 1.13:
+ * two new utility functions were added to
+ + get photo IDs from "farm" image URLs
+ + to get the current webservice delay time
+ * requests were fixed to be dynamically allocated rather than use a fixed
+ buffer
+ * a resource leak bug for the HTTP user agent was fixed
+
+-------------------------------------------------------------------
+Sun Jul 5 00:00:00 CEST 2009 - pascal.bleser(a)opensuse.org
+
+- update to 1.12:
+ * support for the two new collections API calls and four other new general
+ API calls were added
+ * functions were added for generating flic.kr short URIs for photos
+ * a bug with resetting curl during sequences of mixed read and write API
+ calls was fixed
+ * the flickcurl(1) utility was updated to support the new API calls
+ * several other minor improvements and fixes were made
+
+-------------------------------------------------------------------
+Wed May 27 00:00:00 CEST 2009 - pascal.bleser(a)opensuse.org
+
+- update to 1.11
+
+-------------------------------------------------------------------
+Sat May 2 00:00:00 CEST 2009 - pascal.bleser(a)opensuse.org
+
+- update to 1.10:
+ * uploading images and replacing images was made to work again
+ * functions were added to set the service URIs for the image upload and image
+ replacing Web services
+ * fixes were made to allow compiling and using the library from C++
+
+-------------------------------------------------------------------
+Sun Apr 5 00:00:00 CEST 2009 - pascal.bleser(a)opensuse.org
+
+- update to 1.9:
+ * the Pandas API was added to get interesting photos from pandas
+ * groups members get list method was added
+ * some other minor bugfixes and improvements were made
+- changes from 1.8:
+ * the Places API was updated for 6 new API calls, including shape history
+ * the Photos Geo API was updated for 5 new API calls for setting/getting
+ locations
+ * the Commons API was added with new support for 1 API call to get a list of
+ institutions
+ * some other minor fixes and improvements were also made
+
+-------------------------------------------------------------------
+Mon Dec 1 00:00:00 CET 2008 - guru(a)unixtech.be
+
+- update to 1.7:
+ * support for the new Machine Tags API was added, handling machine tag
+ namespaces, predicates, and values
+ * support for the updated Places API calls was added with access to ESRI
+ shape data and URLs
+ * support for the (not announced) flickr.tags.getClusterPhotos was added
+ * some other minor fixes and improvements were made
+
+-------------------------------------------------------------------
+Fri Sep 5 00:00:00 CEST 2008 - guru(a)unixtech.be
+
+- added missing ldconfig post/postun scriptlets
+- update to 1.6:
+ * neighborhood place support was added
+ * a new Photos List class was added to handle the standard result format
+ * photos list results can now take a feed format parameter to return XML
+ feed results
+ * flickcurl_places_forUser support was added
+ * the flickcurl utility was updated to help with authentication
+ * many other minor fixes and improvements were made
+
+-------------------------------------------------------------------
+Mon Aug 18 00:00:00 CEST 2008 - guru(a)unixtech.be
+
+- update to 1.5:
+ * support for the Tag Clusters API
+ * new photo search API parameters contacts: has_geo, lat, lon, radius, and
+ radius_units fields was added
+
+-------------------------------------------------------------------
+Thu Jun 26 00:00:00 CEST 2008 - guru(a)unixtech.be
+
+- new upstream version:
+ * support for Flickr video in requests and responses was added
+ * the recent API additions for getting content type, getting safety type,
+ and getting geo perms were added to the library
+ * a new RDF triples serializer class was added for turning photo metadata
+ into RDF which uses new namespaces under machinetags.org/ns
+
+-------------------------------------------------------------------
+Sat Mar 8 00:00:00 CET 2008 - guru(a)unixtech.be
+
+- new upstream version
+
+-------------------------------------------------------------------
+Tue Jan 29 00:00:00 CET 2008 - guru(a)unixtech.be
+
+- new upstream version
+
+-------------------------------------------------------------------
+Sun Jan 13 00:00:00 CET 2008 - guru(a)unixtech.be
+
+- new upstream version
+
+-------------------------------------------------------------------
+Wed Dec 26 00:00:00 CET 2007 - guru(a)unixtech.be
+
+- rebuild against raptor 1.4.16
+
+-------------------------------------------------------------------
+Sat Dec 22 00:00:00 CET 2007 - guru(a)unixtech.be
+
++++ 19 more lines (skipped)
++++ between /dev/null
++++ and /mounts/work_src_done/STABLE/flickcurl/flickcurl.changes
calling whatdependson for head-i586
New:
----
baselibs.conf
flickcurl-1.21.tar.bz2
flickcurl-rpmlintrc
flickcurl.changes
flickcurl.spec
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ flickcurl.spec ++++++
#
# spec file for package flickcurl
#
# Copyright (c) 2011 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
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# 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/
#
%define soname 0
Name: flickcurl
Version: 1.21
Release: 1
License: LGPLv2.1
Summary: Command-Line Tools for the Flickr Web Service
Url: http://librdf.org/flickcurl/
Group: Productivity/Networking/Other
# http://download.dajobe.org/flickcurl/flickcurl-%{version}.tar.gz
Source: flickcurl-%{version}.tar.bz2
Source99: flickcurl-rpmlintrc
BuildRequires: autoconf
BuildRequires: automake
BuildRequires: curl
BuildRequires: fdupes
BuildRequires: gtkdoc
BuildRequires: libcurl-devel
BuildRequires: libraptor-devel >= 1.4.0
BuildRequires: libtool
BuildRequires: pkgconfig
BuildRequires: update-desktop-files
BuildRequires: pkgconfig(libxml-2.0)
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
Flickcurl is a C library for calling the Flickr Web service API. It handles the
API signing, token management, and parameter encoding and decoding, resulting
in C functions for the Web services APIs. It... uses libcurl to call the REST
Web service, and libxml2 to manipulate the XML responses. The library supports
reading photo, tag, and comments information, the photo upload and searching
APIs, and writing tags and comments. It provides utilities such as "flickcurl"
to exercise the API and "flickrdf" to get RDF metadata descriptions out of
photos, tags, and machine tags.
%package doc
Summary: C Library API to the Flickr Web Service (Documentation)
Group: Documentation/Other
%description doc
Flickcurl is a C library for calling the Flickr Web service API. It handles the
API signing, token management, and parameter encoding and decoding, resulting
in C functions for the Web services APIs. It... uses libcurl to call the REST
Web service, and libxml2 to manipulate the XML responses. The library supports
reading photo, tag, and comments information, the photo upload and searching
APIs, and writing tags and comments. It provides utilities such as "flickcurl"
to exercise the API and "flickrdf" to get RDF metadata descriptions out of
photos, tags, and machine tags.
This subpackage contains the developer documentation for %{name}.
%package -n libflickcurl%{soname}
Summary: C Library API to the Flickr Web Service
Group: System/Libraries
%description -n libflickcurl%{soname}
Flickcurl is a C library for calling the Flickr Web service API. It handles the
API signing, token management, and parameter encoding and decoding, resulting
in C functions for the Web services APIs. It... uses libcurl to call the REST
Web service, and libxml2 to manipulate the XML responses. The library supports
reading photo, tag, and comments information, the photo upload and searching
APIs, and writing tags and comments. It provides utilities such as "flickcurl"
to exercise the API and "flickrdf" to get RDF metadata descriptions out of
photos, tags, and machine tags.
%package -n libflickcurl-devel
Summary: C Library API to the Flickr Web Service
Group: Development/Libraries/C and C++
Requires: libcurl-devel
Requires: libflickcurl%{soname} = %{version}
Requires: libraptor-devel >= 1.4.0
Requires: pkgconfig(libxml-2.0)
%description -n libflickcurl-devel
Flickcurl is a C library for calling the Flickr Web service API. It handles the
API signing, token management, and parameter encoding and decoding, resulting
in C functions for the Web services APIs. It... uses libcurl to call the REST
Web service, and libxml2 to manipulate the XML responses. The library supports
reading photo, tag, and comments information, the photo upload and searching
APIs, and writing tags and comments. It provides utilities such as "flickcurl"
to exercise the API and "flickrdf" to get RDF metadata descriptions out of
photos, tags, and machine tags.
%prep
%setup -q
%build
%configure \
--enable-gtk-doc \
--enable-gtk-doc-html
make %{?_smp_flags}
%install
%make_install
%fdupes -s %{buildroot}
install -d "%{buildroot}%{_docdir}/lib%{name}%{soname}"
install -m0644 AUTHORS ChangeLog COPYING.LIB LICENSE* NEWS* NOTICE README* "%{buildroot}%{_docdir}/lib%{name}%{soname}"
mkdir -p .doc
ln -s ../lib%{name}%{soname} .doc/%{name}
%post -n libflickcurl%{soname} -p /sbin/ldconfig
%postun -n libflickcurl%{soname} -p /sbin/ldconfig
%clean
rm -rf %{buildroot}
%files
%defattr(-,root,root)
%doc .doc/%{name}
%{_bindir}/flickcurl
%{_bindir}/flickrdf
%doc %{_mandir}/man1/flickcurl.1%{ext_man}
%doc %{_mandir}/man1/flickrdf.1%{ext_man}
%files -n libflickcurl%{soname}
%defattr(-,root,root)
%doc %{_docdir}/lib%{name}%{soname}
%doc %{_docdir}/lib%{name}%{soname}/COPYING*
%doc %{_docdir}/lib%{name}%{soname}/LICENSE*
%{_libdir}/libflickcurl.so.%{soname}
%{_libdir}/libflickcurl.so.%{soname}.*.*
%files -n libflickcurl-devel
%defattr(-,root,root)
%{_bindir}/flickcurl-config
%{_includedir}/flickcurl.h
%{_libdir}/libflickcurl.so
%{_libdir}/libflickcurl.la
%{_libdir}/libflickcurl.a
%{_libdir}/pkgconfig/flickcurl.pc
%doc %{_mandir}/man1/flickcurl-config.1%{ext_man}
%files doc
%defattr(-,root,root)
%doc %dir %{_docdir}/lib%{name}%{soname}
%doc %{_docdir}/lib%{name}%{soname}/AUTHORS
%doc %{_docdir}/lib%{name}%{soname}/ChangeLog
%doc %{_docdir}/lib%{name}%{soname}/NEWS*
%doc %{_docdir}/lib%{name}%{soname}/NOTICE
%doc %{_docdir}/lib%{name}%{soname}/README*
%{_datadir}/gtk-doc/html/flickcurl
%changelog
++++++ baselibs.conf ++++++
libflickcurl0
++++++ flickcurl-rpmlintrc ++++++
addFilter("package-with-huge-docs")
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
--
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org