Mailinglist Archive: yast-commit (190 mails)
| < Previous | Next > |
[yast-commit] r38168 - in /trunk/pkg-bindings: VERSION package/yast2-pkg-bindings.changes src/Callbacks.cc src/Selection.cc
- From: lslezak@xxxxxxxxxxxxxxxx
- Date: Tue, 29 May 2007 10:55:20 -0000
- Message-id: <20070529105520.CF150481EF@xxxxxxxxxxxxxxxx>
Author: lslezak
Date: Tue May 29 12:55:20 2007
New Revision: 38168
URL: http://svn.opensuse.org/viewcvs/yast?rev=38168&view=rev
Log:
- updated GPG callbacks (#277117)
- improved logging (found by build check)
- 2.15.20
Modified:
trunk/pkg-bindings/VERSION
trunk/pkg-bindings/package/yast2-pkg-bindings.changes
trunk/pkg-bindings/src/Callbacks.cc
trunk/pkg-bindings/src/Selection.cc
Modified: trunk/pkg-bindings/VERSION
URL: http://svn.opensuse.org/viewcvs/yast/trunk/pkg-bindings/VERSION?rev=38168&r1=38167&r2=38168&view=diff
==============================================================================
--- trunk/pkg-bindings/VERSION (original)
+++ trunk/pkg-bindings/VERSION Tue May 29 12:55:20 2007
@@ -1 +1 @@
-2.15.19
+2.15.20
Modified: trunk/pkg-bindings/package/yast2-pkg-bindings.changes
URL: http://svn.opensuse.org/viewcvs/yast/trunk/pkg-bindings/package/yast2-pkg-bindings.changes?rev=38168&r1=38167&r2=38168&view=diff
==============================================================================
--- trunk/pkg-bindings/package/yast2-pkg-bindings.changes (original)
+++ trunk/pkg-bindings/package/yast2-pkg-bindings.changes Tue May 29 12:55:20 2007
@@ -1,4 +1,10 @@
-------------------------------------------------------------------
+Tue May 29 11:20:43 CEST 2007 - lslezak@xxxxxxx
+
+- updated GPG callbacks (#277117)
+- 2.15.20
+
+-------------------------------------------------------------------
Thu May 17 15:35:54 CEST 2007 - lslezak@xxxxxxx
- Evaluate start/finish callbacks in Pkg::SourceRestore() and
Modified: trunk/pkg-bindings/src/Callbacks.cc
URL: http://svn.opensuse.org/viewcvs/yast/trunk/pkg-bindings/src/Callbacks.cc?rev=38168&r1=38167&r2=38168&view=diff
==============================================================================
--- trunk/pkg-bindings/src/Callbacks.cc (original)
+++ trunk/pkg-bindings/src/Callbacks.cc Tue May 29 12:55:20 2007
@@ -1590,7 +1590,7 @@
{
KeyRingSignal ( RecipientCtl & construct_r ) : Recipient( construct_r ) {}
- virtual void trustedKeyAdded( const zypp::KeyRing &/*keyring*/, const zypp::PublicKey &key )
+ virtual void trustedKeyAdded( const zypp::PublicKey &key )
{
CB callback( ycpcb( YCPCallbacks::CB_TrustedKeyAdded) );
@@ -1602,7 +1602,7 @@
}
}
- virtual void trustedKeyRemoved( const zypp::KeyRing &/*keyring*/, const zypp::PublicKey &key )
+ virtual void trustedKeyRemoved( const zypp::PublicKey &key )
{
CB callback( ycpcb( YCPCallbacks::CB_TrustedKeyRemoved) );
Modified: trunk/pkg-bindings/src/Selection.cc
URL: http://svn.opensuse.org/viewcvs/yast/trunk/pkg-bindings/src/Selection.cc?rev=38168&r1=38167&r2=38168&view=diff
==============================================================================
--- trunk/pkg-bindings/src/Selection.cc (original)
+++ trunk/pkg-bindings/src/Selection.cc Tue May 29 12:55:20 2007
@@ -117,7 +117,7 @@
}
else
{
- y2warning (string ("Unknown status in Pkg::GetSelections(" + status + ", ...)").c_str());
+ y2warning("Unknown status in Pkg::GetSelections(%s, ...)", status.c_str());
break;
}
@@ -218,7 +218,7 @@
}
else
{
- y2warning (string ("Unknown status in Pkg::GetPatterns(" + status + ", ...)").c_str());
+ y2warning("Unknown status in Pkg::GetPatterns(%s, ...)", status.c_str());
break;
}
--
To unsubscribe, e-mail: yast-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: yast-commit+help@xxxxxxxxxxxx
Date: Tue May 29 12:55:20 2007
New Revision: 38168
URL: http://svn.opensuse.org/viewcvs/yast?rev=38168&view=rev
Log:
- updated GPG callbacks (#277117)
- improved logging (found by build check)
- 2.15.20
Modified:
trunk/pkg-bindings/VERSION
trunk/pkg-bindings/package/yast2-pkg-bindings.changes
trunk/pkg-bindings/src/Callbacks.cc
trunk/pkg-bindings/src/Selection.cc
Modified: trunk/pkg-bindings/VERSION
URL: http://svn.opensuse.org/viewcvs/yast/trunk/pkg-bindings/VERSION?rev=38168&r1=38167&r2=38168&view=diff
==============================================================================
--- trunk/pkg-bindings/VERSION (original)
+++ trunk/pkg-bindings/VERSION Tue May 29 12:55:20 2007
@@ -1 +1 @@
-2.15.19
+2.15.20
Modified: trunk/pkg-bindings/package/yast2-pkg-bindings.changes
URL: http://svn.opensuse.org/viewcvs/yast/trunk/pkg-bindings/package/yast2-pkg-bindings.changes?rev=38168&r1=38167&r2=38168&view=diff
==============================================================================
--- trunk/pkg-bindings/package/yast2-pkg-bindings.changes (original)
+++ trunk/pkg-bindings/package/yast2-pkg-bindings.changes Tue May 29 12:55:20 2007
@@ -1,4 +1,10 @@
-------------------------------------------------------------------
+Tue May 29 11:20:43 CEST 2007 - lslezak@xxxxxxx
+
+- updated GPG callbacks (#277117)
+- 2.15.20
+
+-------------------------------------------------------------------
Thu May 17 15:35:54 CEST 2007 - lslezak@xxxxxxx
- Evaluate start/finish callbacks in Pkg::SourceRestore() and
Modified: trunk/pkg-bindings/src/Callbacks.cc
URL: http://svn.opensuse.org/viewcvs/yast/trunk/pkg-bindings/src/Callbacks.cc?rev=38168&r1=38167&r2=38168&view=diff
==============================================================================
--- trunk/pkg-bindings/src/Callbacks.cc (original)
+++ trunk/pkg-bindings/src/Callbacks.cc Tue May 29 12:55:20 2007
@@ -1590,7 +1590,7 @@
{
KeyRingSignal ( RecipientCtl & construct_r ) : Recipient( construct_r ) {}
- virtual void trustedKeyAdded( const zypp::KeyRing &/*keyring*/, const zypp::PublicKey &key )
+ virtual void trustedKeyAdded( const zypp::PublicKey &key )
{
CB callback( ycpcb( YCPCallbacks::CB_TrustedKeyAdded) );
@@ -1602,7 +1602,7 @@
}
}
- virtual void trustedKeyRemoved( const zypp::KeyRing &/*keyring*/, const zypp::PublicKey &key )
+ virtual void trustedKeyRemoved( const zypp::PublicKey &key )
{
CB callback( ycpcb( YCPCallbacks::CB_TrustedKeyRemoved) );
Modified: trunk/pkg-bindings/src/Selection.cc
URL: http://svn.opensuse.org/viewcvs/yast/trunk/pkg-bindings/src/Selection.cc?rev=38168&r1=38167&r2=38168&view=diff
==============================================================================
--- trunk/pkg-bindings/src/Selection.cc (original)
+++ trunk/pkg-bindings/src/Selection.cc Tue May 29 12:55:20 2007
@@ -117,7 +117,7 @@
}
else
{
- y2warning (string ("Unknown status in Pkg::GetSelections(" + status + ", ...)").c_str());
+ y2warning("Unknown status in Pkg::GetSelections(%s, ...)", status.c_str());
break;
}
@@ -218,7 +218,7 @@
}
else
{
- y2warning (string ("Unknown status in Pkg::GetPatterns(" + status + ", ...)").c_str());
+ y2warning("Unknown status in Pkg::GetPatterns(%s, ...)", status.c_str());
break;
}
--
To unsubscribe, e-mail: yast-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: yast-commit+help@xxxxxxxxxxxx
| < Previous | Next > |