Home | History | Annotate | Download | only in plat-mac

Lines Matching refs:_dict

534         self._dict = plistdata
537 return self._dict[key]
539 def name(self): return self._dict['Name']
540 def version(self): return self._dict.get('Version')
541 def flavor(self): return self._dict.get('Flavor')
542 def description(self): return self._dict['Description'].strip()
544 def homepage(self): return self._dict.get('Home-page')
545 def downloadURL(self): return self._dict.get('Download-URL')
546 def systemwideOnly(self): return self._dict.get('Systemwide-only')
554 rv = self._dict['Name']
555 if 'Version' in self._dict:
556 rv = rv + '-%s' % self._dict['Version']
557 if 'Flavor' in self._dict:
558 rv = rv + '-%s' % self._dict['Flavor']
559 if self._dict.get('Flavor') == 'hidden':
566 return self._dict
594 installTest = self._dict['Install-test'].strip() + '\n'
629 if not self._dict.get('Download-URL'):
642 if not self._dict.get('Prerequisites'):
644 for item in self._dict['Prerequisites']:
675 scheme, loc, path, query, frag = urlparse.urlsplit(self._dict['Download-URL'])
684 if not downloader.download(self._dict['Download-URL'],
697 if not self._dict.get('MD5Sum'):
702 return checksum == self._dict['MD5Sum']
723 % (self.fullname(), self._dict.get(flavor, ""))
731 if not self._dict.get('Download-URL'):
779 expected_skips = self._dict.get('User-install-skips')
803 if 'Install-command' in self._dict:
806 if 'Pre-install-command' in self._dict:
807 if _cmd(output, '/tmp', self._dict['Pre-install-command']):
809 (self.fullname(), self._dict['Pre-install-command'])
839 if 'Post-install-command' in self._dict:
840 if _cmd(output, '/tmp', self._dict['Post-install-command']):
842 (self.fullname(), self._dict['Post-install-command'])
864 if 'Pre-install-command' in self._dict:
865 if _cmd(output, self._buildDirname, self._dict['Pre-install-command']):
867 (self.fullname(), self._dict['Pre-install-command'])
870 installcmd = self._dict.get('Install-command')
901 if 'Post-install-command' in self._dict:
902 if _cmd(output, self._buildDirname, self._dict['Post-install-command']):
904 (self.fullname(), self._dict['Post-install-command'])
919 if 'Post-install-command' in self._dict:
922 if 'Pre-install-command' in self._dict:
923 if _cmd(output, '/tmp', self._dict['Pre-install-command']):
925 (self.fullname(), self._dict['Pre-install-command'])
929 installcmd = self._dict.get('Install-command')