From d3f316b66c3bcf071d624057b883fba415a0ad03 Mon Sep 17 00:00:00 2001 From: Brian Stinson Date: Dec 14 2014 20:40:32 +0000 Subject: fix config file path in centpkg.conf --- diff --git a/centpkg.spec b/centpkg.spec index 39f1ade..d6e7640 100644 --- a/centpkg.spec +++ b/centpkg.spec @@ -1,7 +1,7 @@ %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")} Name: centpkg -Version: 0.4.1 +Version: 0.4.2 Release: 1%{?dist} Summary: CentOS utility for working with dist-git @@ -47,12 +47,15 @@ rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc README.md COPYING -%config(noreplace) %{_sysconfdir}/rpkg +%config %{_sysconfdir}/rpkg/centpkg.conf %{_bindir}/%{name} %{python_sitelib}/* %changelog +* Sun Dec 14 2014 Brian Stinson bstinson@ksu.edu - 0.4.2-1 +- Fix the koji config path in centpkg.conf + * Sun Dec 14 2014 Brian Stinson bstinson@ksu.edu - 0.4.1-1 - Fix a disttag regression and add a "patch" version number diff --git a/setup.py b/setup.py index c884ec7..c5d2824 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name = "centpkg", - version = "0.4.1", + version = "0.4.2", author = "Brian Stinson", author_email = "bstinson@ksu.edu", description = "CentOS Plugin to rpkg for managing RPM package sources", diff --git a/src/centpkg.conf b/src/centpkg.conf index 1c725d9..245d9a9 100644 --- a/src/centpkg.conf +++ b/src/centpkg.conf @@ -5,5 +5,5 @@ lookaside_cgi = https://localhost/repo/pkgs/upload.cgi #Not Implemented gitbaseurl = ssh://%(user)s@localhost/git/rpms/%(module)s anongiturl = https://git.centos.org/git/rpms/%(module)s branchre = .+\d$|.+\d-.+|master$ -kojiconfig = /etc/koji.conf.d/cbs.conf +kojiconfig = /etc/koji.conf.d/cbs-koji.conf build_client = cbs