Example #1
0
 def summarize(self):
     ret = RpmGenerator.summarize(self)
     info("Releasing for rosdistro: " + self.rosdistro)
     return ret
Example #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)
Example #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
Example #4
0
 def summarize(self):
     ret = RpmGenerator.summarize(self)
     info("Releasing for rosdistro: " + self.rosdistro)
     return ret
Example #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
Example #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)
Example #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)
Example #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)