diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..8fd1917 --- /dev/null +++ b/setup.py @@ -0,0 +1,15 @@ +from setuptools import setup + +setup( + name = "centpkg", + version = "0.0.1", + author = "Brian Stinson", + author_email = "bstinson@ksu.edu", + description = "CentOS Plugin to rpkg for managing RPM package sources", + url = "http://bitbucket.org/bstinsonmhk/centpkg.git", + license = "GPLv2+", + package_dir = {'': 'src'}, + packages = ['centpkg'], + scripts = ['src/bin/centpkg'], + data_files = [('/etc/rpkg',['src/centpkg.conf']),] +) diff --git a/src/centpkg.conf b/src/centpkg.conf new file mode 100644 index 0000000..1ced910 --- /dev/null +++ b/src/centpkg.conf @@ -0,0 +1,9 @@ +[centpkg] +lookaside = https://git.centos.org/sources/ +lookasidehash = sha1 +lookaside_cgi = https://localhost/repo/pkgs/upload.cgi #Not Implemented +gitbaseurl = ssh://%(user)s@git.centos.org/git/rpms/%(module)s +anongiturl = https://git.centos.org/git/rpms/%(module)s +branchre = c\d$|c\d-plus$|master$ +kojiconfig = /etc/koji.conf +build_client = koji