Package buildbot :: Package steps :: Package package :: Package rpm
[frames] | no frames]

Source Code for Package buildbot.steps.package.rpm

 1  # Steve 'Ashcrow' Milner <smilner+buildbot@redhat.com> 
 2  # 
 3  # This software may be freely redistributed under the terms of the GNU 
 4  # general public license. 
 5  # 
 6  # You should have received a copy of the GNU General Public License 
 7  # along with this program; if not, write to the Free Software 
 8  # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 
 9  """ 
10  Steps specific to the rpm format. 
11  """ 
12   
13  from buildbot.steps.package.rpm.rpmbuild import RpmBuild 
14  from buildbot.steps.package.rpm.rpmspec import RpmSpec 
15  from buildbot.steps.package.rpm.rpmlint import RpmLint 
16   
17  __all__ = ['RpmBuild', 'RpmSpec', 'RpmLint'] 
18