Skip to content
This repository has been archived by the owner on Oct 21, 2022. It is now read-only.

Commit

Permalink
Merge pull request #346 from euanh/planex-0.11.0
Browse files Browse the repository at this point in the history
planex: Prepare for 0.11.0 release
  • Loading branch information
euanh authored Nov 10, 2016
2 parents c2806a1 + a993cd8 commit 3be1d8b
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 7 deletions.
9 changes: 9 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
0.11.0
* planex-clone-sources: Add a tool to check out source repositories
* planex-manifest: Add a tool to record repository hashes
* planex-build-mock: Add a wrapper around mock
* planex-container: Add a wrapper to run planex in a Docker container
* planex-extract: Don't prepend package name to patch filename
* Add utility classes for links, patch queues, repositories and tarballs
* Makefile.rules: Fail if _build/deps can't be rebuilt

0.10.0
* Several commands can now accept multiple --define arguments to
set or override RPM macro definitions
Expand Down
16 changes: 14 additions & 2 deletions planex.spec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Summary: RPM build tool
Name: planex
Version: 0.10.0
Version: 0.11.0
Release: 1%{?dist}
URL: http://github.com/xenserver/planex
Source0: http://github.com/xenserver/planex/archive/v%{version}/%{name}-%{version}.tar.gz
Expand Down Expand Up @@ -37,19 +37,31 @@ sed -i "s/\(version='\)[^'\"]\+/\1%{version}-%{release}/g" setup.py
%doc README.md
%doc LICENSE
%doc CHANGES
%{_bindir}/planex-build-mock
%{_bindir}/planex-cache
%{_bindir}/planex-clone-sources
%{_bindir}/planex-depend
%{_bindir}/planex-extract
%{_bindir}/planex-fetch
%{_bindir}/planex-init
%{_bindir}/planex-pin
%{_bindir}/planex-make-srpm
%{_bindir}/planex-manifest
%{_bindir}/planex-pin
%{python_sitelib}/planex
%{python_sitelib}/planex-*.egg-info
%{_datadir}/planex/Makefile.rules
%config%{_sysconfdir}/bash_completion.d/planex.bash

%changelog
* Thu Nov 10 2016 Euan Harris <[email protected]> - 0.11.0-1
- planex-clone-sources: Add a tool to check out source repositories
- planex-manifest: Add a tool to record repository hashes
- planex-build-mock: Add a wrapper around mock
- planex-container: Add a wrapper to run planex in a Docker container
- planex-extract: Don't prepend package name to patch filename
- Add utility classes for links, patch queues, repositories and tarballs
- Makefile.rules: Fail if _build/deps can't be rebuilt

* Mon Oct 03 2016 Euan Harris <[email protected]> - 0.10.0-1
- Several commands can now accept multiple --define arguments to
set or override RPM macro definitions
Expand Down
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,21 @@
from setuptools import setup

setup(name='planex',
version='0.10.0',
version='0.11.0',
packages=['planex'],
include_package_data=True,
package_data={'planex': ['Makefile.rules']},
entry_points={
'console_scripts': [
'planex-init = planex.init:_main',
'planex-build-mock = planex.mock:_main',
'planex-cache = planex.cache:_main',
'planex-clone-sources = planex.clonesources:_main',
'planex-fetch = planex.fetch:_main',
'planex-pin = planex.pin:_main',
'planex-depend = planex.depend:main',
'planex-extract = planex.extract:_main',
'planex-fetch = planex.fetch:_main',
'planex-init = planex.init:_main',
'planex-make-srpm = planex.makesrpm:_main',
'planex-manifest = planex.manifest:main',
'planex-build-mock = planex.mock:_main'
'planex-pin = planex.pin:_main'
]
})

0 comments on commit 3be1d8b

Please sign in to comment.