Git commit 3aaf2de95141751b270e8a6f3e202633f990a5aa by Patrick von Reth. Committed on 30/04/2014 at 23:00. Pushed by vonreth into branch 'emerge2'. fixed wget M +3 -5 portage/gnuwin32/wget/wget.py http://commits.kde.org/emerge/3aaf2de95141751b270e8a6f3e202633f990a5aa diff --git a/portage/gnuwin32/wget/wget.py b/portage/gnuwin32/wget/wget.py index 433a3b1..6cbe448 100644 --- a/portage/gnuwin32/wget/wget.py +++ b/portage/gnuwin32/wget/wget.py @@ -19,13 +19,11 @@ class subinfo(info.infoclass): self.targets['dummy'] =3D 'empty' self.defaultTarget =3D 'dummy' = -from Package.PackageBase import * -from BuildSystem.BinaryBuildSystem import * +from Package.BinaryPackageBase import * = -class Package(PackageBase,BinaryBuildSystem): +class Package(BinaryPackageBase): def __init__( self): - PackageBase.__init__(self) - BinaryBuildSystem.__init__(self) + BinaryPackageBase.__init__(self) self.subinfo.options.merge.ignoreBuildType =3D True self.subinfo.options.merge.destinationPath =3D "dev-utils" self.subinfo.options.install.installPath =3D "bin"