Jesse Keating 2c910bd
# sitelib for noarch packages, sitearch for others (remove the unneeded one)
Jesse Keating 2c910bd
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
Jesse Keating 2c910bd
Jesse Keating 2c910bd
Name:           rpkg
cce350a
Version:        1.49
31f7c36
Release:        5%{?dist}
Jesse Keating 2c910bd
1754f98
Summary:        Python library for interacting with rpm+git
Jesse Keating 2c910bd
License:        GPLv2+ and LGPLv2
ae06b3f
URL:            https://pagure.io/rpkg
1754f98
Source0:        https://pagure.io/releases/rpkg/%{name}-%{version}.tar.gz
abf4aea
Patch0:         0001-make-osbs-dependency-optional.patch
abf4aea
Patch1:         0002-Make-osbs-support-optional.patch
31f7c36
Patch2:         0001-Make-module-name-work-with-namespaces.patch
31f7c36
Patch3:         0003-Allow-explicit-namespaces-with-slashes.patch
1754f98
BuildArch:      noarch
Jesse Keating 2c910bd
1754f98
Requires:       mock
1754f98
Requires:       redhat-rpm-config
1754f98
Requires:       rpm-build
1754f98
Requires:       rpmlint
Jesse Keating 2c910bd
1754f98
BuildRequires:  rpmlint
1754f98
1754f98
1754f98
%description
1754f98
Python library for interacting with rpm+git
1754f98
1754f98
1754f98
%package -n python2-%{name}
1754f98
Summary:        Python library for interacting with rpm+git
Jesse Keating 8dd0e8e
Jesse Keating 2c910bd
BuildRequires:  python-devel, python-setuptools
1754f98
Jesse Keating 2c910bd
# We br these things for man page generation due to imports
1754f98
BuildRequires:  GitPython
1754f98
BuildRequires:  koji
1754f98
BuildRequires:  python2-cccolutils
Jesse Keating 2c910bd
BuildRequires:  python-kitchen
1754f98
BuildRequires:  python-pycurl
6d1cd8f
BuildRequires:  python-rpmfluff
1754f98
BuildRequires:  python-six >= 1.9.0
1754f98
1754f98
BuildRequires:  python-nose
1754f98
BuildRequires:  python-mock
Jesse Keating 2c910bd
f5aa168
%if 0%{?rhel} && 0%{?rhel} < 7
f5aa168
BuildRequires:  python-argparse
f5aa168
%endif
f5aa168
f5aa168
Requires:       GitPython >= 0.2.0
1754f98
Requires:       koji
1754f98
Requires:       python2-cccolutils
Jesse Keating 2c910bd
Requires:       python-kitchen
1754f98
Requires:       python-pycurl
acaad8e
Requires:       python-six >= 1.9.0
1754f98
Requires:       rpm-python
f5aa168
e11086e
Conflicts:      fedpkg < 1.26
e11086e
1754f98
# Backward compatibility with capability pyrpkg
1754f98
Provides: pyrpkg = %{version}-%{release}
1754f98
# All old versions before 1.49-1 should not be used anymore
1754f98
Obsoletes: pyrpkg < 1.49-2
1754f98
Jesse Keating 2c910bd
1754f98
%description -n python2-%{name}
Jesse Keating 2c910bd
A python library for managing RPM package sources in a git repository.
Jesse Keating 2c910bd
Jesse Keating 2c910bd
Jesse Keating 2c910bd
%prep
Jesse Keating 2c910bd
%setup -q
abf4aea
%patch0 -p1
abf4aea
%patch1 -p1
31f7c36
%patch2 -p1
31f7c36
%patch3 -p1
d8b66bf
Jesse Keating 2c910bd
Jesse Keating 2c910bd
%build
Jesse Keating 2c910bd
%{__python} setup.py build
d8b66bf
%{__python} doc/rpkg_man_page.py > rpkg.1
Jesse Keating 2c910bd
Jesse Keating 2c910bd
Jesse Keating 2c910bd
%install
Jesse Keating 2c910bd
rm -rf $RPM_BUILD_ROOT
Jesse Keating 2c910bd
%{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT
1754f98
1754f98
example_cli_dir=$RPM_BUILD_ROOT%{_datadir}/%{name}/examples/cli
1754f98
%{__install} -d $example_cli_dir
1754f98
1754f98
# Install example CLI to rpkg own data directory
1754f98
%{__install} -d ${example_cli_dir}%{_bindir}
1754f98
%{__install} -p -m 0644 $RPM_BUILD_ROOT%{_bindir}/rpkg ${example_cli_dir}%{_bindir}
1754f98
rm -rf $RPM_BUILD_ROOT%{_bindir}
1754f98
1754f98
%{__install} -d ${example_cli_dir}%{_mandir}/man1
1754f98
%{__install} -p -m 0644 rpkg.1 ${example_cli_dir}%{_mandir}/man1
1754f98
1754f98
mv $RPM_BUILD_ROOT%{_sysconfdir} ${example_cli_dir}
Jesse Keating 2c910bd
cc83608
%check
8022c12
nosetests tests
8022c12
Jesse Keating 2c910bd
%clean
Jesse Keating 2c910bd
rm -rf $RPM_BUILD_ROOT
Jesse Keating 2c910bd
Jesse Keating 2c910bd
1754f98
%files -n python2-%{name}
9044d1f
%doc COPYING COPYING-koji LGPL README CHANGELOG.rst
Jesse Keating 2c910bd
# For noarch packages: sitelib
Jesse Keating 2c910bd
%{python_sitelib}/pyrpkg
1754f98
%{python_sitelib}/%{name}-%{version}-py?.?.egg-info
1754f98
%{_datadir}/%{name}
Jesse Keating 2c910bd
Jesse Keating 2c910bd
%changelog
31f7c36
* Thu Jun 29 2017 Lubomír Sedlář <lsedlar@redhat.com> - 1.49-5
31f7c36
- Allow using namespace in --module-name attribute
31f7c36
3e6aad4
* Thu Jun 22 2017 Chenxiong Qi <cqi@redhat.com> - 1.49-4
3e6aad4
- Remove python-osbs-client
3e6aad4
abf4aea
* Fri Jun 16 2017 Chenxiong Qi <cqi@redhat.com> - 1.49-3
abf4aea
- Backport to make osbs optional
abf4aea
1754f98
* Mon Mar 27 2017 Chenxiong Qi <cqi@redhat.com> - 1.49-2
1754f98
- Rebuilt to rename pyrpkg to python2-rpkg
1754f98
cce350a
* Wed Feb 22 2017 Chenxiong Qi <cqi@redhat.com> - 1.49-1
cce350a
- More upload PyCURL fixes for EL 7 (merlin)
cce350a
- Move tag inheritance check into a separate method (cqi)
cce350a
a2bcbdf
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.48-3
a2bcbdf
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
a2bcbdf
37c0ec7
* Wed Feb 1 2017 Lubomír Sedlář <lsedlar@redhat.com> - 1.48-2
37c0ec7
- Backport patch to move tag inheritance check to separate method
37c0ec7
8022c12
* Thu Dec 22 2016 Chenxiong Qi <cqi@redhat.com> - 1.48-1
8022c12
- Better message when fail to authenticate via Kerberos - #180 (cqi)
8022c12
3119bc4
* Mon Dec 19 2016 Chenxiong Qi <cqi@redhat.com> - 1.47-7
3119bc4
- Refactor Commands._srpmdetails (cqi)
3119bc4
d139c2a
* Thu Dec 15 2016 Chenxiong Qi <cqi@redhat.com> - 1.47-6
d139c2a
- Add missing import koji.ssl.SSLCommon - BZ#1404102 (cqi)
d139c2a
- Fix upload with old PyCURL - BZ#1241059 (lsedlar)
d139c2a
f4253b5
* Mon Dec 12 2016 Lubomír Sedlář <lsedlar@redhat.com> - 1.47-5
f4253b5
- Fix default value for krb_rdns options
f4253b5
443340e
* Mon Dec 12 2016 Lubomír Sedlář <lsedlar@redhat.com> - 1.47-4
443340e
- Add krb_rdns koji config
443340e
e11086e
* Thu Dec 08 2016 Lubomír Sedlář <lsedlar@redhat.com> - 1.47-3
e11086e
- Conflict with too old fedpkg
e11086e
25cc9f6
* Wed Dec 07 2016 Chenxiong Qi <cqi@redhat.com> - 1.47-2
25cc9f6
- Fix test that fails on a Koji ARM builder
25cc9f6
9044d1f
* Fri Dec 02 2016 Chenxiong Qi <cqi@redhat.com> - 1.47-1
9044d1f
- New upstream release 1.47
9044d1f
8471222
* Tue Oct 25 2016 Lubomír Sedlář <lsedlar@redhat.com> - 1.46-5
8471222
- Allow using gssapi for lookaside caches
8471222
1e6496e
* Tue Sep 06 2016 Lubomír Sedlář <lsedlar@redhat.com> - 1.46-4
1e6496e
- Update dependencies for python-argparse and python-hashlib
acaad8e
acaad8e
* Thu Aug 25 2016 Chenxiong Qi <cqi@redhat.com> - 1.46-3
acaad8e
- python-six-1.9.0 is the minimum version rpkg depends
acaad8e
9378d9d
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.46-2
9378d9d
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
9378d9d
0e95e74
* Fri Jul 15 2016 Chenxiong Qi <cqi@redhat.com> - 1.46-1
0e95e74
- Warning untracked patches when push (cqi)
0e95e74
- handle correct spec path when push from outside the repo (cqi)
0e95e74
- Remove support for BuildContainer release task opt (lucarval)
0e95e74
c45322b
* Mon Jun 27 2016 Chenxiong Qi <cqi@redhat.com> - 1.45-2
c45322b
- Depend on python-six to be compatible with Python 3
c45322b
0f11112
* Mon Jun 27 2016 Chenxiong Qi <cqi@redhat.com> - 1.45-1
0f11112
- add missing git-config in the git repo for testing (cqi)
0f11112
- Don't print download/upload progress outside of TTY (lsedlar)
0f11112
- Merge #58 `Rebase of #28 with conflict resolved` (cqi)
0f11112
- Get correct login without TTY (vgologuz)
0f11112
- Merge #63 `More Python 3 compatibility fixes` (lubomir.sedlar)
0f11112
- fix broken when non-ASCII in path (cqi)
0f11112
- More Python 3 compatibility fixes (ville.skytta)
0f11112
- Fix push called without argument (lsedlar)
0f11112
- Use logging.warning instead of deprecated logging.warn (ville.skytta)
0f11112
- Use assertEqual instead of deprecated assertEquals (ville.skytta)
0f11112
- Spelling fixes (ville.skytta)
0f11112
- Add missing dependencies to setup.py (ville.skytta)
0f11112
- Add tests for cloning with a namespace (lsedlar)
0f11112
- Fix cloning with -B and namespaced module (lsedlar)
0f11112
- Adjust figuring out the path of the git repo cloned (pingou)
0f11112
- Only clone into the bare_dir if no target was specified (pingou)
0f11112
- Add to the CLI the possibility to specify a target folder for the clone
0f11112
  (pingou)
0f11112
- Add unit-tests for cloning into a specified directory (pingou)
0f11112
- Let rpkg support cloning into a specified directory (pingou)
0f11112
- Python 3 fixes (ville.skytta)
0f11112
- rewrite test_commands.setup_module using git (cqi)
0f11112
- Merge #40 `push: check for missing patches` (lubomir.sedlar)
0f11112
4d3d0f1
* Thu Jun 02 2016 Lubomír Sedlář <lsedlar@redhat.com> - 1.44-1
4d3d0f1
- Log container-build task results (lucarval)
4d3d0f1
- Add support for BuildContainer release task opt (lucarval)
4d3d0f1
- handle exception from getTaskInfo correctly (cqi)
4d3d0f1
- fix failure of test_load_spec_where_path_contains_space on RHEL (cqi)
4d3d0f1
- allow space appearing in path to cloned repo (cqi)
4d3d0f1
- fix docstring of Commands.compile (cqi)
4d3d0f1
- Make 'Failed to get ns_module_name from Git url or pushurl' message a warning
4d3d0f1
  (issue #42) (orion)
4d3d0f1
- pyrpkg: use git remote get-url --push (mathstuf)
4d3d0f1
3b60672
* Wed Mar 23 2016 Lubomír Sedlář <lubomir.sedlar@gmail.com> - 1.43-1
3b60672
- Print warning when using old git configuration (lsedlar)
3b60672
- Add rpms namespace for checkouts without namespace (lsedlar)
3b60672
504894c
* Wed Mar 16 2016 Lubomír Sedlář <lubomir.sedlar@gmail.com> - 1.42-1
504894c
- Fix problems with namespacing (maxamillion)
504894c
6f6256c
* Mon Mar 14 2016 Lubomír Sedlář <lubomir.sedlar@gmail.com> - 1.41-2
6f6256c
- Depend on python-osbs directly to avoid python3
6f6256c
ae06b3f
* Mon Mar 14 2016 Lubomír Sedlář <lubomir.sedlar@gmail.com> - 1.41-1
ae06b3f
- Update upstream URL (lsedlar)
ae06b3f
- Fixes based on lsedlar's feedback (maxamillion)
ae06b3f
- add distgit namespacing for non-rpm content (docker, xdg-app, etc) (maxamillion)
ae06b3f
- Container-build: dont't allow to build with unpushed changes (araszka)
ae06b3f
- Suggest --dist option when can't get OS ver from branch (araszka)
ae06b3f
- fix: print all tags without filter (araszka)
ae06b3f
- Fix lookaside upload when --path is specified (araszka)
ae06b3f
- Lookaside: encoding repo name to UTF-8 (araszka)
ae06b3f
- Fix errors on Python 2.6 (lsedlar)
ae06b3f
- Add test and docstring to byte offset convertor (araszka)
ae06b3f
- Decode .spec file with UTF-8 (araszka)
ae06b3f
- 1271741 - add copr command (Recommends: copr-cli) (msuchy)
ae06b3f
- Suggest --target option when unknown target (araszka)
ae06b3f
15115ba
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.40-2
15115ba
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
15115ba
47c9067
* Fri Oct 23 2015 Pavol Babincak <pbabinca@redhat.com> - 1.40-1
47c9067
- don't use assertRaises (ttomecek)
47c9067
- refactor test_clone: set clone config in the same test file (pbabinca)
47c9067
- Fix clone test to not use constructor to set clone_config (pbabinca)
47c9067
- Fix test clone test (pbabinca)
47c9067
- Make use of clone_config attribute backwards compatible (pbabinca)
47c9067
24a29fd
* Thu Oct 22 2015 Pavol Babincak <pbabinca@redhat.com> - 1.39-1
24a29fd
- Replace deprecated BaseException.message with str(BaseException) (pbabinca)
24a29fd
- Don't print exception message during check repo tests (pbabinca)
24a29fd
- Add support for setting post-clone git config (ville.skytta)
24a29fd
9a27ec2
* Wed Oct 21 2015 Pavol Babincak <pbabinca@redhat.com> - 1.38-1
9a27ec2
- Fix parse error (pbabinca)
9a27ec2
c02ed80
* Wed Oct 21 2015 Pavol Babincak <pbabinca@redhat.com> - 1.37-1
c02ed80
- Add support for --nocheck (orion)
c02ed80
- container-build: check repo (ttomecek)
c02ed80
- move repo checking to a method (ttomecek)
c02ed80
- Add 'oxt' and 'xpi' extensions to UPLOADEXTS (dsilakov)
c02ed80
- Switch-branch: give more info about error (araszka)
c02ed80
- Recognize binary files with .oxt and .xpi extensions (dsilakov)
c02ed80
- Container-build: add --nowait option (araszka)
c02ed80
- bash autocompletion: support for command container-build-config (pbabinca)
c02ed80
- Implement getter for autorebuild value, use 'true' and 'false' for values
c02ed80
  (bkabrda)
c02ed80
- Add a command and option to change container build setup (bkabrda)
c02ed80
- Edit tests for python2.6 - EL6 (araszka)
c02ed80
- tests: Don't use assertNotIn (araszka)
c02ed80
- tests: Don't use assertRaises as context manager (araszka)
c02ed80
- tests: Don't use check_output (araszka)
c02ed80
- Typo in import --help descriptions (araszka)
c02ed80
- change the url for rpkg (dennis)
c02ed80
c626888
* Wed Jul 15 2015 Pavol Babincak <pbabinca@redhat.com> - 1.36-1
c626888
- container-build: support yum repos with --build-with=koji (pbabinca)
c626888
- container-build: move --scratch option to koji group (pbabinca)
c626888
- Print task info for container-build (pbabinca)
c626888
b36b292
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.35-3
b36b292
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
b36b292
33e3da7
* Tue May 26 2015 Dennis Gilmore <dennis@ausil.us> - 1.35-2
0bfcc03
- pyrpkg Requires python-osbs
33e3da7
1e84e6f
* Tue May 26 2015 Pavol Babincak <pbabinca@redhat.com> - 1.35-1
1e84e6f
- Test for scratch opt in the actual argument of container_build_koji
1e84e6f
  (pbabinca)
1e84e6f
- Move the GitIgnore class to its own module (bochecha)
1e84e6f
- Modernize the gitignore-handling code (bochecha)
1e84e6f
- gitignore: Properly handle adding matching lines (bochecha)
1e84e6f
- Refactor: remove unnecessary code (pbabinca)
1e84e6f
- Move custom UnknownTargetError to errors module (pbabinca)
1e84e6f
- New command: container-build (jluza)
1e84e6f
- lookaside: Take over file uploads (bochecha)
1e84e6f
- Remove unnecessary log message (bochecha)
1e84e6f
- Stop making source files read-only (bochecha)
1e84e6f
- Drop some useless comments (bochecha)
1e84e6f
- Only report we're uploading when we actually are (bochecha)
1e84e6f
- lookaside: Check if a file already was uploaded (bochecha)
1e84e6f
- lookaside: Allow client-side and custom CA certificates (bochecha)
1e84e6f
- lookaside: Be more flexible when building the download URL (bochecha)
1e84e6f
- lookaside: Use the hashtype for the URL interpolation (bochecha)
1e84e6f
- lookaside: Add a progress callback (bochecha)
1e84e6f
- lookaside: Handle downloading of source files (bochecha)
1e84e6f
- lookaside: Move handling of file verification (bochecha)
1e84e6f
- lookaside: Move handling of file hashing (bochecha)
1e84e6f
- utils: Add a new warn_deprecated helper (bochecha)
1e84e6f
- Add a new lookaside module (bochecha)
1e84e6f
- Add a new utils module (bochecha)
1e84e6f
- Properly set the logger (bochecha)
1e84e6f
- Move our custom errors to their own module (bochecha)
1e84e6f
- Don't assume MD5 for the lookaside cache (bochecha)
1e84e6f
- Remove dead code (bochecha)
1e84e6f
- Use the proper exception syntax (bochecha)
1e84e6f
6cb015a
* Thu Apr 16 2015 Pavol Babincak <pbabinca@redhat.com> - 1.34-1
6cb015a
- tests: Don't use assertIsNone (bochecha)
6cb015a
- tests: Don't use assertRaises as a context manager (bochecha)
6cb015a
- Add long --verbose option to -v, new --debug and -d option (pbabinca)
6cb015a
6961b29
* Mon Apr 13 2015 Pavol Babincak <pbabinca@redhat.com> - 1.33-1
6961b29
- New mockbuild options: --no-clean --no-cleanup-after (jskarvad)
6961b29
- Catch ssl auth problems and print more helpful messages (pbabinca)
6961b29
- New exception - rpkgAuthError to allow clients detect auth problems
6961b29
  (pbabinca)
6961b29
4806763
* Mon Mar 23 2015 Pavol Babincak <pbabinca@redhat.com> - 1.32-1
4806763
- tests: Properly open/close the file (bochecha)
4806763
- sources: Support writing in either the old or new format (bochecha)
4806763
- sources: Reindent code (bochecha)
4806763
3a6ed34
* Fri Mar 06 2015 Pavol Babincak <pbabinca@redhat.com> - 1.31-1
3a6ed34
- Refactor: remove unused imports from test_sources (pbabinca)
3a6ed34
- Don't do several times the same thing (bochecha)
3a6ed34
- sources: Forbid mixing hash types (bochecha)
3a6ed34
- sources: Move to the new file format (bochecha)
3a6ed34
- Rewrite the sources module (bochecha)
3a6ed34
3a89763
* Wed Dec 03 2014 Pavol Babincak <pbabinca@redhat.com> - 1.30-2
3a89763
- Use %%{__python} instead of %%{__python2} as it might be not defined
3a89763
cc83608
* Wed Oct 08 2014 Pavol Babincak <pbabinca@redhat.com> - 1.30-1
cc83608
- add python-nose as BuildRequires as run tests in check section (pbabinca)
cc83608
- pass extra data to the Commands object via properties instead of __init__()
cc83608
  (mikeb)
cc83608
- clean up Koji login, and properly support password auth (mikeb)
cc83608
- add --runas option (mikeb)
cc83608
- run os.path.expanduser on the kojiconfig attribute in case the path is in the
cc83608
  user's home directory (bstinson)
cc83608
- Override GIT_EDITOR in tests (pbabinca)
cc83608
- Massive Flake8 fix (bochecha)
cc83608
- Fix some more Flake8 issues (bochecha)
cc83608
- Fix some flake8 issues (bochecha)
cc83608
- Simplify some code (bochecha)
cc83608
- Fix typo (bochecha)
cc83608
- tests: Ensure functioning of Commands.list_tag (bochecha)
cc83608
- list_tags: Stop executing a command (bochecha)
cc83608
- list_tags: Fix the docstring (bochecha)
cc83608
- delete_tag: Stop executing a command (bochecha)
cc83608
- tests: Ensure functioning of Commands.delete_tag (bochecha)
cc83608
- add_tag: Run the tag command in the right directory (bochecha)
cc83608
- tests: Ensure proper functioning of Commands.add_tag (bochecha)
cc83608
- tests: Factor out some code (bochecha)
cc83608
- tests: Ensure functioning of Commands.clone (bochecha)
cc83608
- gitignore: Make sure each line ends with a \n (bochecha)
cc83608
- gitignore: We're not modified any more after we wrote to disk (bochecha)
cc83608
- tests: Ensure proper functioning of GitIgnore (bochecha)
cc83608
- tests: Use nose (bochecha)
cc83608
- Remove unused import (bochecha)
cc83608
- Some more PEP8 (bochecha)
cc83608
- Add classifiers to setup.py (pbabinca)
cc83608
- Add new sources file parser even with unit tests (pbabinca)
cc83608
- If source file doesn't exist continue without downloading files (pbabinca)
cc83608
- Reformat setup.py to be compliant with PEP 8 (pbabinca)
cc83608
4892147
* Tue Sep 30 2014 Pavol Babincak <pbabinca@redhat.com> - 1.28-1
4892147
- Compare fuller remote branch name with local branch before build
4892147
86c40d0
* Fri Sep 26 2014 Pavol Babincak <pbabinca@redhat.com> - 1.27-1
86c40d0
- Explicitly define pyrpkg's client name for man pages (pbabinca)
86c40d0
- Refactor mock results dir to property (pbabinca)
86c40d0
- Add skip-diffs option for import_srpms (lars)
86c40d0
- Properly remove possible .py when creating man pages (lars)
86c40d0
- Process srpm imports to empty repositories more explicitly (pbabinca)
86c40d0
- Make UPLOADEXTS a class variable that can be extended (lars)
86c40d0
- Introduce self.default_branch_remote for fresh clones (pbabinca)
86c40d0
- On self.path change reset properties which could used old value (pbabinca)
86c40d0
- Remove empty entry from git ls-files to not confuse following code (pbabinca)
86c40d0
- Remove file names during srpm import in more extensible way (pbabinca)
86c40d0
- Fix issue causing all current local builds via fedpkg to use md5 rather than
86c40d0
  sha256 (spot)
86c40d0
- License replaced with official GPL 2.0 license from gnu.org (pbabinca)
86c40d0
- Allow "rpkg commit -s" (pjones)
86c40d0
2c1f55c
* Tue Jul 29 2014 Pavol Babincak <pbabinca@redhat.com> - 1.26-1
2c1f55c
- rpkg doesn't have a python module so use pyrpkg instead (pbabinca)
2c1f55c
9fc2936
* Tue Jul 29 2014 Pavol Babincak <pbabinca@redhat.com> - 1.25-1
9fc2936
- 1.25 release (pbabinca)
9fc2936
- Note to do_imports() doc. (pbabinca)
9fc2936
- Change default option for switch-branch from --no-fetch to --fetch (pbabinca)
9fc2936
- Allow default name of the library to be set by subclasses (pbabinca)
9fc2936
- Use name attribute of cliClient to get configuration (pbabinca)
9fc2936
- Make setup.py executable (pbabinca)
9fc2936
- Use direct git call for fetches (pbabinca)
9fc2936
- Print reason for failed switch-branch (pbabinca)
9fc2936
- Match whole branch with remote name when switching branch (pbabinca)
9fc2936
- Refactor: deduplicate remote & branch_merge (pbabinca)
9fc2936
- De-hardcode 'origin' as the remote name (bochecha)
9fc2936
- Fallback the remote on 'origin' (bochecha)
9fc2936
af93f2d
* Mon Jun 09 2014 Pavol Babincak <pbabinca@redhat.com> - 1.24-1
af93f2d
- 1.24 release (pbabinca)
af93f2d
- Work around signed srpms (Till Maas)
af93f2d
- Properly raise the error (bochecha)
af93f2d
- Ability to skip NVR construction altogether for builds (pbabinca)
af93f2d
- If we failed to parse NVRE from rpm output use better error message
af93f2d
  (pbabinca)
af93f2d
- If command to get NVRE printed anything to stderr log that command (pbabinca)
af93f2d
- Refactor: correctly split string on multi lines (pbabinca)
af93f2d
- Use nvr_check as an optional argument for build (pbabinca)
af93f2d
- 1.23 release (pbabinca)
af93f2d
- Use module_name setter instead of constructor parameter (pbabinca)
af93f2d
- Set pushurl & branch_remote by default (pbabinca)
af93f2d
- 1.22 release (pbabinca)
af93f2d
- Define module name from command line, git url and lastly from spec (pbabinca)
af93f2d
- Revert "Define module name from command line, git url and lastly from spec"
af93f2d
  (pbabinca)
af93f2d
a27b3ad
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.21-2
a27b3ad
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
a27b3ad
94bc02f
* Mon Mar 24 2014 Pavol Babincak <pbabinca@redhat.com> - 1.21-1
94bc02f
- Refactor: split strings on multi lines without spaces from indentation
94bc02f
  (pbabinca)
94bc02f
- Refactor: remove spaces at the end of lines (pbabinca)
94bc02f
- Define module name from command line, git url and lastly from spec (pbabinca)
94bc02f
- Option to skip NVR existence check in build system before build (pbabinca)
94bc02f
- Add an 'epoch' property to pyrpkg.Commands (bochecha)
94bc02f
- Fetch remotes before switch-branch by default (pbabinca)
94bc02f
- Protect rhpkg's --arches argument (pbabinca)
94bc02f
cb5758d
* Tue Feb 18 2014 Dennis Gilmore <dennis@ausil.us> - 1.20-1
cb5758d
- read krbservice from the koji config file (dennis)
cb5758d
- We can assume that rpkg is installed if the (ville.skytta)
cb5758d
- clog: Don't require empty line between changelog entries. (ville.skytta)
cb5758d
- Spelling fixes. (ville.skytta)
cb5758d
- expand %%{name} and %%{verion} macros when checking for unused_patches check
cb5758d
  for .patch and .diff files as patches (dennis)
cb5758d
- clean up some language ambiguities (dennis)
9044d1f
- clog: Support %%changelog tag written in non-lowercase. (ville.skytta)
cb5758d
- add spkg as a binary file extention rhbz#972903 (dennis)
cb5758d
- Fixed version to 1.19 (pbabinca)
cb5758d
- Don't track spec file here (pbabinca)
cb5758d
- 1.20 (pbabinca)
cb5758d
- Mock config temp dir in the form $(target)-$(localarch).$(mktemp)mockconfig
cb5758d
  (pbabinca)
cb5758d
36defc8
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.19-2
36defc8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
36defc8
f9c823c
* Mon Apr 08 2013 Pavol Babincak <pbabinca@redhat.com> - 1.19-1
f9c823c
- Generate mock-config for mockbuild if needed (rhbz#856928) (pbabinca)
f9c823c
2a14c6e
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.18-4
2a14c6e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
2a14c6e
4bd419b
* Fri Aug 10 2012 Robert Scheck <robert@fedoraproject.org> - 1.18-3
4bd419b
- Require %%{version}-%%{release} rather %%{name}-%%{version}
4bd419b
db38ffe
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.18-2
db38ffe
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
db38ffe
Jesse Keating 7b390f8
* Mon Apr 16 2012 Jesse Keating <jkeating@redhat.com> - 1.18-1
Jesse Keating 7b390f8
- Use rpmdefines when querying for package name
Jesse Keating 7b390f8
Jesse Keating 0cd195a
* Mon Apr 09 2012 Jesse Keating <jkeating@redhat.com> - 1.17-1
Jesse Keating 0cd195a
- Don't assume master branch for chain builds (jkeating)
Jesse Keating 0cd195a
Jesse Keating fa5faff
* Mon Mar 26 2012 Jesse Keating <jkeating@redhat.com> - 1.16-1
Jesse Keating fa5faff
- Only read from .koji/config (jkeating)
Jesse Keating fa5faff
Jesse Keating c5d4be7
* Wed Mar 21 2012 Jesse Keating <jkeating@redhat.com> - 1.15-1
Jesse Keating c5d4be7
- Fix branch push warning (jkeating)
Jesse Keating c5d4be7
- Handle CVS based builds when getting build hash (jkeating)
Jesse Keating c5d4be7
Jesse Keating d2090b9
* Mon Mar 12 2012 Jesse Keating <jkeating@redhat.com> - 1.14-1
Jesse Keating d2090b9
- Warn if the checked out branch cannot be pushed (jkeating)
Jesse Keating d2090b9
- Warn if commit or tag fails and we don't push (#21) (jkeating)
Jesse Keating d2090b9
- Honor ~/.koji/config (rhbz#785776) (jkeating)
Jesse Keating d2090b9
- Update help output for switch-branch (rhbz#741742) (jkeating)
Jesse Keating d2090b9
Jesse Keating 8dd0e8e
* Thu Mar 01 2012 Jesse Keating <jkeating@redhat.com> - 1.13-1
Jesse Keating 8dd0e8e
- Return proper exit code from builds (#20) (jkeating)
Jesse Keating 8dd0e8e
- Fix md5 option in the build parser (jkeating)
Jesse Keating 8dd0e8e
- More completion fixes (jkeating)
Jesse Keating 8dd0e8e
- Add mock-config and mockbuild completion (jkeating)
Jesse Keating 8dd0e8e
- Simplify test for rpkg availability. (ville.skytta)
Jesse Keating 8dd0e8e
- Fix ~/... path completion. (ville.skytta (jkeating)
Jesse Keating 8dd0e8e
- Add a --raw option to clog (#15) (jkeating)
Jesse Keating 8dd0e8e
- Make things quiet when possible (jkeating)
Jesse Keating 8dd0e8e
- Fix up figuring out srpm hash type (jkeating)
Jesse Keating 8dd0e8e
- Allow defining an alternative builddir (jkeating)
Jesse Keating 8dd0e8e
- Conflict with older fedpkg (jkeating)
Jesse Keating 8dd0e8e
- Attempt to automatically set the md5 flag (jkeating)
Jesse Keating 8dd0e8e
- Use -C not -c for config.  (#752411) (jkeating)
Jesse Keating 8dd0e8e
- Don't check gpg sigs when importing srpms (ticket #16) (jkeating)
Jesse Keating 8dd0e8e
- Enable md5 option in mockbuild (twaugh) (jkeating)
Jesse Keating 8dd0e8e
Jesse Keating 8b61b01
* Tue Jan 24 2012 Jesse Keating <jkeating@redhat.com> - 1.12-1
Jesse Keating 8b61b01
- Fix mock-config (ticket #13) (jkeating)
Jesse Keating 8b61b01
- Make md5 a common build argument (jkeating)
Jesse Keating 8b61b01
- Move arches to be a common build argument (ticket #3) (jkeating)
Jesse Keating 8b61b01
- Find remote branch to track better (jkeating)
Jesse Keating 8b61b01
Jesse Keating 7a42065
* Fri Jan 13 2012 Jesse Keating <jkeating@redhat.com> - 1.11-1
Jesse Keating 7a42065
- Change clog output to be more git-like (sochotnicky)
Jesse Keating 7a42065
- Fix mockconfig property (bochecha)
Jesse Keating 7a42065
- Use only new-style classes everywhere. (bochecha)
Jesse Keating 7a42065
- Testing for access before opening a file is unsafe (bochecha)
Jesse Keating 7a42065
- Add a gitbuildhash command (jkeating)
Jesse Keating 7a42065
- Always make sure you have a absolute path (aj) (jkeating)
Jesse Keating 7a42065
- don't try to import brew, just do koji (jkeating)
3b75759
Jesse Keating 1f9a119
* Mon Nov 21 2011 Jesse Keating <jkeating@redhat.com> - 1.10-1
Jesse Keating 1f9a119
- Use -C for --config shortcut (jkeating)
Jesse Keating 1f9a119
- Don't leave a directory on failure (#754082) (jkeating)
Jesse Keating 1f9a119
- Fix chain build (#754189) (jkeating)
Jesse Keating 1f9a119
- Don't hardcode brew here (jkeating)
Jesse Keating 1f9a119
Jesse Keating 91f81c5
* Mon Nov 07 2011 Jesse Keating <jkeating@redhat.com> - 1.9-1
Jesse Keating 91f81c5
- Don't upload if there is nothing to upload. (jkeating)
Jesse Keating 91f81c5
- --branch option for import is not supported yet (jkeating)
Jesse Keating 91f81c5
- Add epilog about mock-config generation (jkeating)
Jesse Keating 91f81c5
- Don't assume we can create a folder named after the module. (bochecha)
Jesse Keating 91f81c5
- Fix passing the optional mock root to mockbuild (bochecha)
Jesse Keating 91f81c5
- Add missing registration for mockbuild target (bochecha)
Jesse Keating 91f81c5
- Make the clean target work with --path. (bochecha)
Jesse Keating 91f81c5
- Fix typo in a comment. (bochecha)
Jesse Keating 91f81c5
- Fix syntax error in main script. (bochecha)
Jesse Keating 91f81c5
- Fix typo. (bochecha)
Jesse Keating 91f81c5
Jesse Keating 25b4695
* Fri Oct 28 2011 Jesse Keating <jkeating@redhat.com> - 1.8-1
Jesse Keating 25b4695
- Get more detailed error output from lookaside (jkeating)
Jesse Keating 25b4695
- Move the curl call out to it's own function (jkeating)
Jesse Keating 25b4695
- Hide build_common from help/usage (jkeating)
Jesse Keating 25b4695
- Fix the help command (jkeating)
Jesse Keating 25b4695
Jesse Keating 1dba350
* Tue Oct 25 2011 Jesse Keating <jkeating@redhat.com> - 1.7-1
Jesse Keating 1dba350
- Support a manually specified mock root (jkeating)
Jesse Keating 1dba350
- Add a mock-config subcommand (jkeating)
Jesse Keating 1dba350
- Fix a traceback on error. (jkeating)
Jesse Keating 1dba350
- Remove debugging code (jkeating)
Jesse Keating 1dba350
- More git api updates (jkeating)
Jesse Keating 1dba350
- Add topurl as a koji config and property (jkeating)
Jesse Keating 1dba350
- Add a mockconfig property (jkeating)
Jesse Keating 1dba350
- Turn the latest commit into a property (jkeating)
Jesse Keating 1dba350
Jesse Keating a439dca
* Tue Sep 20 2011 Jesse Keating <jkeating@redhat.com> - 1.6-1
Jesse Keating a439dca
- Allow name property to load by itself (jkeating)
Jesse Keating a439dca
Jesse Keating 5f23912
* Mon Sep 19 2011 Jesse Keating <jkeating@redhat.com> - 1.5-1
Jesse Keating 5f23912
- Fix tag listing (#717528) (jkeating)
Jesse Keating 5f23912
- Revamp n-v-r property loading (#721389) (jkeating)
Jesse Keating 5f23912
- Don't use os.getlogin (jkeating)
Jesse Keating 5f23912
- Code style changes (jkeating)
Jesse Keating 5f23912
- Allow fedpkg lint to be configurable and to check spec file. (pingou)
Jesse Keating 5f23912
- Handle non-scratch srpm builds better (jkeating)
Jesse Keating 5f23912
Jesse Keating 393f694
* Wed Aug 17 2011 Jesse Keating <jkeating@redhat.com> - 1.4-1
Jesse Keating 393f694
- Be more generic when no spec file is found (jkeating)
Jesse Keating 393f694
- Hint about use of git status when dirty (jkeating)
Jesse Keating 393f694
- Don't use print when we can log.info it (jkeating)
Jesse Keating 393f694
- Don't exit from a library (jkeating)
Jesse Keating 393f694
- Do the rpm query in our module path (jkeating)
Jesse Keating 393f694
- Use git's native ability to checkout a branch (jkeating)
Jesse Keating 393f694
- Use keyword arg with clone (jkeating)
Jesse Keating 393f694
- Allow the on-demand generation of an srpm (jkeating)
Jesse Keating 393f694
- Fix up exit codes (jkeating)
Jesse Keating 393f694
Jesse Keating 8c0b16c
* Mon Aug 01 2011 Jesse Keating <jkeating@redhat.com> - 1.3-1
Jesse Keating 8c0b16c
- Fix a debug string (jkeating)
Jesse Keating 8c0b16c
- Set the right property (jkeating)
Jesse Keating 8c0b16c
- Make sure we have a default hashtype (jkeating)
Jesse Keating 8c0b16c
- Use underscore for the dist tag (jkeating)
Jesse Keating 8c0b16c
- Fix the kojiweburl property (jkeating)
Jesse Keating 8c0b16c
Jesse Keating 8181e2e
* Wed Jul 20 2011 Jesse Keating <jkeating@redhat.com> - 1.2-1
Jesse Keating 8181e2e
- Fill out the krb_creds function (jkeating)
Jesse Keating 8181e2e
- Fix the log message (jkeating)
Jesse Keating 8181e2e
- site_setup is no longer needed (jkeating)
Jesse Keating 8181e2e
- Remove some rhtisms (jkeating)
Jesse Keating 8181e2e
- Wire up the patch command in client code (jkeating)
Jesse Keating 8181e2e
- Add a patch command (jkeating)
Jesse Keating 8181e2e
Jesse Keating 2c910bd
* Fri Jun 17 2011 Jesse Keating <jkeating@redhat.com> - 1.1-2
Jesse Keating 2c910bd
- Use version macro in files
Jesse Keating 2c910bd
Jesse Keating 2c910bd
* Fri Jun 17 2011 Jesse Keating <jkeating@redhat.com> - 1.1-1
Jesse Keating 2c910bd
- New tarball release with correct license files
Jesse Keating 2c910bd
Jesse Keating 2c910bd
* Fri Jun 17 2011 Jesse Keating <jkeating@redhat.com> - 1.0-2
Jesse Keating 2c910bd
- Fix up things found in review
Jesse Keating 2c910bd
Jesse Keating 2c910bd
* Tue Jun 14 2011 Jesse Keating <jkeating@redhat.com> - 1.0-1
Jesse Keating 2c910bd
- Initial package