Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 715108
Collapse All | Expand All

(-)a/bin/quickpkg (-1 / +1 lines)
Lines 115-121 def quickpkg_atom(options, infos, arg, eout): Link Here
115
			binpkg_tmpfile = os.path.join(bintree.pkgdir,
115
			binpkg_tmpfile = os.path.join(bintree.pkgdir,
116
				cpv + ".tbz2." + str(os.getpid()))
116
				cpv + ".tbz2." + str(os.getpid()))
117
			ensure_dirs(os.path.dirname(binpkg_tmpfile))
117
			ensure_dirs(os.path.dirname(binpkg_tmpfile))
118
			binpkg_compression = settings.get("BINPKG_COMPRESS", "bzip2")
118
			binpkg_compression = settings.get("BINPKG_COMPRESS", "xz")
119
			try:
119
			try:
120
				compression = _compressors[binpkg_compression]
120
				compression = _compressors[binpkg_compression]
121
			except KeyError as e:
121
			except KeyError as e:
(-)a/lib/portage/package/ebuild/doebuild.py (-2 / +1 lines)
Lines 539-545 def doebuild_environment(myebuild, mydo, myroot=None, settings=None, Link Here
539
				mysettings["KV"] = ""
539
				mysettings["KV"] = ""
540
			mysettings.backup_changes("KV")
540
			mysettings.backup_changes("KV")
541
541
542
		binpkg_compression = mysettings.get("BINPKG_COMPRESS", "bzip2")
542
		binpkg_compression = mysettings.get("BINPKG_COMPRESS", "xz")
543
		try:
543
		try:
544
			compression = _compressors[binpkg_compression]
544
			compression = _compressors[binpkg_compression]
545
		except KeyError as e:
545
		except KeyError as e:
546
- 

Return to bug 715108