# -*- coding: utf-8 -*- # check the rpm file for various errors. # $Id: RpmFileCheck.py 1732 2010-02-21 11:28:42Z scop $ # Copyright (C) 2006 Michael Scherer # Ville Skyttä # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; version 2 of the License. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA import os from Filter import addDetails, printWarning import AbstractCheck class RpmFileCheck(AbstractCheck.AbstractCheck): def __init__(self): AbstractCheck.AbstractCheck.__init__(self, "RpmFileCheck") def check(self, pkg): # http://en.wikipedia.org/wiki/Joliet_(file_system) rpmfile_name = os.path.basename(pkg.filename) if len(rpmfile_name) > 64: printWarning(pkg, 'filename-too-long-for-joliet', rpmfile_name) check = RpmFileCheck() addDetails( 'filename-too-long-for-joliet', '''This filename is too long to fit on a joliet filesystem (limit is 64 unicode chars).''', ) # Local variables: # indent-tabs-mode: nil # py-indent-offset: 4 # End: # ex: ts=4 sw=4 et