mirror of
https://git.centos.org/centos/centpkg.git
synced 2025-02-23 16:22:55 +00:00
48 lines
2.3 KiB
Markdown
48 lines
2.3 KiB
Markdown
# Centpkg
|
|
Centpkg is a wrapper for [rpkg](https://fedorahosted.org/rpkg/) which interacts
|
|
with RPM git repositories like the ones hosted at http://git.centos.org. Rpkg also provides
|
|
some convenience methods/commands for local builds via mock or rpmbuild, for
|
|
interacting with koji, and for generating patches.
|
|
|
|
# Centpkg is in pre-alpha state, as of now this is a proof of concept.
|
|
For now only a very small subset of rpkg commands are enabled.
|
|
|
|
Exception handling at the top level has been disabled for now to get better
|
|
tracebacks during development.
|
|
|
|
|
|
|
|
## Installing from Git
|
|
Centpkg currently requires the [EPEL](https://fedoraproject.org/wiki/EPEL) repository for pyrpkg and other dependencies.
|
|
|
|
root# <Download and configure the relevant epel-release RPM>
|
|
root# yum install pyrpkg
|
|
root# git clone https://bitbucket.org/bstinsonmhk/centpkg.git
|
|
root# cd centpkg
|
|
root# python setup.py install
|
|
|
|
## Currently Somewhat-working Commands
|
|
|
|
### Git Operations
|
|
$ centpkg clone --anonymous -b c7 a2ps # clones the CentOS 7 branch of the a2ps package
|
|
$ centpkg add-tag # Adds a git tag to the repo
|
|
$ centpkg list-tag # Shows the relevant git tags
|
|
$ centpkg delete-tag # Shows the relevant git tags
|
|
$ centpkg commit # Commits to the current branch
|
|
$ centpkg pull # Pulls from the git remote
|
|
$ centpkg switch-branch # Switch to a git branch (if it exists upstream it will track it for you)
|
|
|
|
### File/Working directory operations
|
|
$ centpkg sources # Downloads the binary sources from lookaside and checks hashes
|
|
$ centpkg clean # Removes untracked files
|
|
|
|
### Build Operations
|
|
$ centpkg local # Runs a full rpmbuild
|
|
$ centpkg compile # Runs rpmbuild -bc
|
|
$ centpkg verify-files # Runs rpmbuild -bl
|
|
$ centpkg mockbuild # Runs a local mockbuild
|
|
|
|
## License
|
|
|
|
Unless otherwise specified, all files are licensed under GPLv2+.
|
|
See COPYING for more license information
|