This commit is contained in:
parent
197adffc30
commit
92191826ef
30
libzypp-r11473.diff
Normal file
30
libzypp-r11473.diff
Normal file
@ -0,0 +1,30 @@
|
||||
Index: zypp/PathInfo.cc
|
||||
===================================================================
|
||||
--- zypp/PathInfo.cc (Revision 11472)
|
||||
+++ zypp/PathInfo.cc (Revision 11473)
|
||||
@@ -18,9 +18,6 @@
|
||||
#include <fstream>
|
||||
#include <iomanip>
|
||||
|
||||
-#include <boost/filesystem/operations.hpp>
|
||||
-#include <boost/filesystem/exception.hpp>
|
||||
-
|
||||
#include "zypp/base/Logger.h"
|
||||
#include "zypp/base/String.h"
|
||||
#include "zypp/base/IOStream.h"
|
||||
@@ -598,13 +595,13 @@
|
||||
// METHOD NAME : readdir
|
||||
// METHOD TYPE : int
|
||||
//
|
||||
-
|
||||
+
|
||||
bool DirEntry::operator==( const DirEntry &rhs ) const
|
||||
{
|
||||
// if one of the types is not known, use the name only
|
||||
if ( type == FT_NOT_AVAIL || rhs.type == FT_NOT_AVAIL )
|
||||
return ( name == rhs.name );
|
||||
- return ((name == rhs.name ) && (type == rhs.type));
|
||||
+ return ((name == rhs.name ) && (type == rhs.type));
|
||||
}
|
||||
|
||||
int readdir( DirContent & retlist, const Pathname & path,
|
@ -1,3 +1,8 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 24 12:39:06 CEST 2008 - coolo@suse.de
|
||||
|
||||
- hotfix against broken boost includes
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 20 21:01:52 CEST 2008 - mrueckert@suse.de
|
||||
|
||||
|
@ -25,10 +25,11 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
AutoReqProv: on
|
||||
Summary: Package, Patch, Pattern, and Product Management
|
||||
Version: 5.16.1
|
||||
Release: 3
|
||||
Release: 10000
|
||||
Source: libzypp-5.16.1.tar.bz2
|
||||
Source1: libzypp-rpmlintrc
|
||||
Patch0: libzypp-bnc-409927.patch
|
||||
Patch1: libzypp-r11473.diff
|
||||
Prefix: /usr
|
||||
Provides: yast2-packagemanager
|
||||
Obsoletes: yast2-packagemanager
|
||||
@ -98,6 +99,7 @@ Authors:
|
||||
%prep
|
||||
%setup -q
|
||||
%patch0 -p1
|
||||
%patch1 -p0
|
||||
|
||||
%build
|
||||
mkdir build
|
||||
@ -230,6 +232,8 @@ rm -rf "$RPM_BUILD_ROOT"
|
||||
%{_libdir}/pkgconfig/libzypp.pc
|
||||
|
||||
%changelog
|
||||
* Fri Oct 24 2008 coolo@suse.de
|
||||
- hotfix against broken boost includes
|
||||
* Mon Oct 20 2008 mrueckert@suse.de
|
||||
- fix rpmlint warnings
|
||||
- use requires_eq
|
||||
|
Loading…
Reference in New Issue
Block a user