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

Source Code for Package buildbot.steps.package.rpm

 1  # This file is part of Buildbot.  Buildbot is free software: you can 
 2  # redistribute it and/or modify it under the terms of the GNU General Public 
 3  # License as published by the Free Software Foundation, version 2. 
 4  # 
 5  # This program is distributed in the hope that it will be useful, but WITHOUT 
 6  # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 
 7  # FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more 
 8  # details. 
 9  # 
10  # You should have received a copy of the GNU General Public License along with 
11  # this program; if not, write to the Free Software Foundation, Inc., 51 
12  # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 
13  # 
14  # Portions Copyright Buildbot Team Members 
15  # Portions Copyright Steve 'Ashcrow' Milner <smilner+buildbot@redhat.com> 
16  """ 
17  Steps specific to the rpm format. 
18  """ 
19   
20  from buildbot.steps.package.rpm.rpmbuild import RpmBuild 
21  from buildbot.steps.package.rpm.rpmspec import RpmSpec 
22  from buildbot.steps.package.rpm.rpmlint import RpmLint 
23  from buildbot.steps.package.rpm.mock import MockBuildSRPM, MockRebuild 
24   
25  __all__ = ['RpmBuild', 'RpmSpec', 'RpmLint', 'MockBuildSRPM', 'MockRebuild'] 
26