Metadata-Version: 1.1
Name: rdopkg
Version: 1.3.0
Summary: RPM packaging automation tool
Home-page: https://github.com/softwarefactory-project/rdopkg
Author: Jakub Ruzicka
Author-email: jruzicka@redhat.com
License: Apache Software License
Description: # rdopkg
        
        `rdopkg` is an RPM packaging automation tool. It provides automation for
        package maintenance including git-based patches management and automagic
        rebases to new upstream versions with nice .spec changes, changelogs and
        commit messages for both CLI and CI usage.
        It also contains various functionality we needed for
        [RDO](https://www.rdoproject.org/) packaging, such as advanced
        `requirements.txt` management for python projects and
        [rdoinfo](https://github.com/redhat-openstack/rdoinfo) integration.
        
        Generic
        [distgit](https://www.rdoproject.org/documentation/intro-packaging/#distgit---where-the-spec-file-lives)
        and patches management functionality and conventions provided by `rdopkg`
        proved to be efficient way of packaging fast-moving upstream projects with
        minimal human effort but without losing control over individual packages.
        
        `rdopkg` is now considered **stable**. It was originally developed to serve
        the needs of the mighty [RDO](https://www.rdoproject.org/) packager-warriors
        and their weapons such as
        [DLRN](https://github.com/softwarefactory-project/DLRN), but it can help with
        any RPM package. For example, see [how you can manage your RPMs with
        rdopkg](https://www.rdoproject.org//blog/2017/03/let-rdopkg-manage-your-RPM-package/).
        
        `rdopkg` uses [software factory](https://softwarefactory-project.io/)
        for CI and every commit goes through automatic unit, feature, and integration
        testing as well as human reviews.
        
        See [open rdopkg reviews](https://softwarefactory-project.io/r/#/q/status:open+project:rdopkg).
        
        
        ## Installation
        
        `rdopkg` is currently compatible with both python 3 and python 2.
        
        
        ### from Fedora/EPEL repos (default)
        
        `rdopkg` is available on **Fedora 25** and newer:
        
            dnf install rdopkg
        
        On CentOS/RHEL 7, `rdopkg` is available from
        [EPEL](https://fedoraproject.org/wiki/EPEL).
        
        On **CentOS 7**:
        
            yum install epel-release
            yum install rdopkg
        
        On **RHEL 7**:
        
            yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
            yum install rdopkg
        
        
        ### from source
        
        If you want to hack `rdopkg` or just have the latest fixes without waiting for
        next release, I suggest using the git repo directly:
        
            git clone https://github.com/softwarefactory-project/rdopkg
            cd rdopkg
            python setup.py develop --user
        
        You may set the preference over `rdopkg` RPM by correctly positioning
        `~/.local/bin/rdopkg` in your `$PATH`.
        
        Or you can use virtualenv to avoid conflicts with RPM:
        
            git clone https://github.com/softwarefactory-project/rdopkg
            cd rdopkg
            virtualenv --system-site-packages ~/rdopkg-venv
            source ~/rdopkg-venv/bin/activate
            python setup.py develop
            ln `which rdopkg` ~/bin/rdopkg-dev
        
            rdopkg-dev --version
        
        Required python modules are listed in
        [requirements.txt](requirements.txt) and also in
        [rdopkg.spec](https://src.fedoraproject.org/rpms/rdopkg/blob/master/f/rdopkg.spec) as
        RPM Requires.
        
        
        ### from PyPI
        
        For your convenience, `rdopkg` is also available from the Cheese
        Shop. This should come in handy especially if you want to reuse `rdopkg` as
        a module.
        
            pip install rdopkg
        
        Note that you need to have python2-rpm(resp. python3-rpm) package installed in
        order for RPM macro related featuers to work as it isn't available from
        PyPI.
        
        
        ## The Manual
        
        Exhaustive `rdopkg` manual is available, you can:
        
         * read it nicely rendered on github: [rdopkg manual](https://github.com/softwarefactory-project/rdopkg/blob/master/doc/rdopkg.1.adoc)
         * run `man rdopkg` if you installed from RPM
         * render it to HTML/man using `make doc`
        
        You might also be interested in
        [RDO packaging intro](https://www.rdoproject.org/documentation/intro-packaging/)
        which contains some examples of `rdopkg` usage and more.
        
        
        ## Bugs
        
        Please use the
        [github Issues](https://github.com/softwarefactory-project/rdopkg/issues)
        to report bugs. I usually fix critical bugs within days.
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Environment :: OpenStack
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: POSIX :: Linux
