diff --git a/portage/dev-util/mingw-w64/mingw-w64-20111031.py b/portage/dev-util/mingw-w64/mingw-w64-20111031.py index 79ff0667f..2e98fb79f 100644 --- a/portage/dev-util/mingw-w64/mingw-w64-20111031.py +++ b/portage/dev-util/mingw-w64/mingw-w64-20111031.py @@ -1,31 +1,31 @@ import utils import shutil import os import info class subinfo(info.infoclass): def setTargets( self ): for ver in [ "20111031", "20111101" ]: self.targets[ver] = "http://downloads.sourceforge.net/sourceforge/mingw-w64/mingw-w64-bin_x86_64-mingw_"+ver+"_sezero.zip" - self.targets["4.7.1-2"] = "http://downloads.sourceforge.net/sourceforge/mingw-w64/x86_64-w64-mingw32-gcc-4.7.1-2-release-win64_rubenvb.7z" + self.targets["4.7.2"] = "http://downloads.sourceforge.net/sourceforge/mingw-w64/x86_64-w64-mingw32-gcc-4.7.2-release-win64_rubenvb.7z" self.defaultTarget = "20111031" def setDependencies( self ): self.buildDependencies['virtual/bin-base'] = 'default' from Package.BinaryPackageBase import * class Package(BinaryPackageBase): def __init__( self): self.subinfo = subinfo() self.subinfo.options.merge.ignoreBuildType = True BinaryPackageBase.__init__(self) def install(self): # utils.applyPatch( self.imageDir(), os.path.join( self.packageDir(), "gcc_Exit.diff"), 1 ) # shutil.copy(os.path.join( self.installDir() , "mingw64" , "bin" , "gmake.exe") , os.path.join( self.installDir() , "mingw64" , "bin" , "mingw32-make.exe") ) return True if __name__ == '__main__': Package().execute()