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

Commit

Permalink
spec, CHANGES, debian, docker, setup.py: Update for release 0.8
Browse files Browse the repository at this point in the history
Signed-off-by: Euan Harris <euan.harris@citrix.com>
  • Loading branch information
euanh committed Jul 26, 2016
1 parent e57ae82 commit 702bbfb
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
0.8
* planex-make-srpm: Add a wrapper around rpmbuild which expands patchqueue
repositories as inline patches in the SRPM
* Add initial support for running Planex in a Docker container
* Remove unmaintained, experimental Debian package-generation scripts

0.7.3
* planex-fetch: Handle Source URLs with fragments correctly

Expand Down
9 changes: 9 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
planex (0.8.0-1) trusty; urgency=low

* planex-make-srpm: Add a wrapper around rpmbuild which expands patchqueue
repositories as inline patches in the SRPM
* Add initial support for running Planex in a Docker container
* Remove unmaintained, experimental Debian package-generation scripts

-- Euan Harris <euan.harris@citrix.com> Tue, 26 Jul 2016 10:35:00 +0000

planex (0.7.2-1) trusty; urgency=low

* planex-pin: It is now possible to pin to a bare Git repository
Expand Down
2 changes: 1 addition & 1 deletion docker/build-container.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/sh -xe

docker build -t planex-release:0.7.3 --force-rm=true -f Dockerfile.release .
docker build -t planex-release:0.8.0 --force-rm=true -f Dockerfile.release .
docker build -t planex-master --force-rm=true -f Dockerfile.master .
docker build -t planex-unstable --force-rm=true -f Dockerfile.unstable .
4 changes: 2 additions & 2 deletions docker/wrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ docker create \
--name planex-persist \
-v /var/cache/mock \
-v /var/cache/yum \
planex-release:0.7.3 /bin/true
planex-release:0.8.0 /bin/true

# Fill in volumes automatically from the pins file
# Chicken and egg - need to fill it in when pinning as well
Expand All @@ -13,4 +13,4 @@ docker run \
--rm -i -t \
--volumes-from planex-persist \
-v ${PWD}:/build \
planex-release:0.7.3 "$*"
planex-release:0.8.0 "$*"
8 changes: 7 additions & 1 deletion planex.spec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Summary: RPM build tool
Name: planex
Version: 0.7.3
Version: 0.8.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 @@ -46,6 +46,12 @@ sed -i "s/\(version='\)[^'\"]\+/\1%{version}-%{release}/g" setup.py
%config%{_sysconfdir}/bash_completion.d/planex.bash

%changelog
* Tue Jul 26 2016 Euan Harris <euan.harris@citrix.com> 0.8.0-1
- planex-make-srpm: Add a wrapper around rpmbuild which expands patchqueue
repositories as inline patches in the SRPM
- Add initial support for running Planex in a Docker container
- Remove unmaintained, experimental Debian package-generation scripts

* Mon Mar 14 2016 Euan Harris <euan.harris@citrix.com> 0.7.3-1
- planex-fetch: Handle Source URLs with fragments correctly

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from setuptools import setup

setup(name='planex',
version='0.7.2',
version='0.8.0',
packages=['planex'],
include_package_data=True,
package_data={'planex': ['Makefile.rules']},
Expand Down

0 comments on commit 702bbfb

Please sign in to comment.