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

(-)action.py.OLD (-7 / +11 lines)
Lines 291-303 Link Here
291
291
292
        for i in self.selection:
292
        for i in self.selection:
293
            overlay = self.rdb.select(i)
293
            overlay = self.rdb.select(i)
294
            # Is the overlay supported?
294
	    # Is the overlay supported?
295
            OUT.info(overlay.__str__(), 1)
295
	    try:
296
            if not overlay.is_official():
296
                OUT.info(overlay.__str__(), 1)
297
                OUT.warn('*** This is no official gentoo overlay ***\n', 1)
297
                if not overlay.is_official():
298
            if not overlay.is_supported():
298
                    OUT.warn('*** This is no official gentoo overlay ***\n', 1)
299
                OUT.error('*** You are lacking the necessary tools to install t'
299
                if not overlay.is_supported():
300
                          'his overlay ***\n')
300
                    OUT.error('*** You are lacking the necessary tools to '
301
		    'install this overlay ***\n')
302
	    except AttributeError:
303
	    	OUT.warn('*** This overlay doesn\'t exist in layman DataBase '
304
		'***\n', 1)
301
305
302
        return 0
306
        return 0
303
307

Return to bug 207947