Exemple #1
0
 def summarize(self):
     ret = RpmGenerator.summarize(self)
     info("Releasing for rosdistro: " + self.rosdistro)
     return ret
Exemple #2
0
 def prepare_arguments(self, parser):
     # Add command line arguments for this generator
     add = parser.add_argument
     add('rosdistro', help="ROS distro to target (%s, etc.)" % get_distro_list_prompt())
     return RpmGenerator.prepare_arguments(self, parser)
Exemple #3
0
 def handle_arguments(self, args):
     self.rosdistro = args.rosdistro
     self.default_install_prefix += self.rosdistro
     ret = RpmGenerator.handle_arguments(self, args)
     return ret
Exemple #4
0
 def summarize(self):
     ret = RpmGenerator.summarize(self)
     info("Releasing for rosdistro: " + self.rosdistro)
     return ret
Exemple #5
0
 def handle_arguments(self, args):
     self.rosdistro = args.rosdistro
     self.default_install_prefix += self.rosdistro
     ret = RpmGenerator.handle_arguments(self, args)
     return ret
Exemple #6
0
 def prepare_arguments(self, parser):
     # Add command line arguments for this generator
     add = parser.add_argument
     add('rosdistro', help="ROS distro to target (groovy, hydro, etc...)")
     return RpmGenerator.prepare_arguments(self, parser)
Exemple #7
0
 def prepare_arguments(self, parser):
     # Add command line arguments for this generator
     add = parser.add_argument
     add('rosdistro', help="ROS distro to target (groovy, hydro, etc...)")
     return RpmGenerator.prepare_arguments(self, parser)
Exemple #8
0
 def prepare_arguments(self, parser):
     # Add command line arguments for this generator
     add = parser.add_argument
     add('rosdistro', help="ROS distro to target (%s, etc.)" % get_distro_list_prompt())
     return RpmGenerator.prepare_arguments(self, parser)