Skip to content
This repository was archived by the owner on Feb 8, 2021. It is now read-only.

Commit 79faabb

Browse files
authored
Merge pull request #562 from gnawux/release-0.8
release v0.8.0
2 parents c3ad41b + f8cc9f2 commit 79faabb

File tree

11 files changed

+31
-21
lines changed

11 files changed

+31
-21
lines changed

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Process this file with autoconf to produce a configure script.
33

44
AC_PREREQ([2.69])
5-
AC_INIT([hyper], [0.7.0], [[email protected]])
5+
AC_INIT([hyper], [0.8.0], [[email protected]])
66
AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects])
77
AM_EXTRA_RECURSIVE_TARGETS([pkg])
88

package/centos/make-rpm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
PROJECT=$(readlink -f $(dirname $0)/../..)
44
CENTOS_DIR=${PROJECT}/package/centos
5-
VERSION=0.7.0
5+
VERSION=0.8.0
66

77
if [ $# -gt 0 ] ; then
88
VERSION=$1

package/centos/rpm/SPECS/hyper-container.spec

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
11
Summary: Hyper Container is a VM based docker runtime
22
Name: hyper-container
3-
Version: 0.7.0
3+
Version: 0.8.0
44
Release: 1%{?dist}
55
License: Apache License, Version 2.0
66
Group: System Environment/Base
77
# The source for this package was pulled from upstream's git repo. Use the
88
# following commands to generate the tarball:
99
# git archive --format=tar.gz master > hyperd-%{version}.tar.gz
1010
Source0: hyperd-%{version}.tar.gz
11-
# and the https://github.com/hyperhq/runv.git
12-
# git archive --format=tar.gz master > runv-%{version}.tar.gz
13-
Source1: runv-%{version}.tar.gz
1411
URL: https://hyper.sh/
1512
ExclusiveArch: x86_64
1613
Requires: device-mapper,sqlite
@@ -25,9 +22,7 @@ VM without a full guest OS
2522

2623
%prep
2724
mkdir -p %{_builddir}/src/github.com/hyperhq/hyperd
28-
mkdir -p %{_builddir}/src/github.com/hyperhq/runv
2925
tar -C %{_builddir}/src/github.com/hyperhq/hyperd -xvf %SOURCE0
30-
tar -C %{_builddir}/src/github.com/hyperhq/runv -xvf %SOURCE1
3126

3227
%build
3328
cd %{_builddir}/src/github.com/hyperhq/hyperd
@@ -53,6 +48,8 @@ rm -rf %{buildroot}
5348
/lib/systemd/system/hyperd.service
5449

5550
%changelog
51+
* Mon Mar 20 2017 Hyper Dev Team <[email protected]> - 0.8.0-1
52+
- update source to 0.8.0
5653
* Fri Oct 28 2016 Hyper Dev Team <[email protected]> - 0.7.0-1
5754
- update source to 0.7.0
5855
* Mon Aug 29 2016 Hyper Dev Team <[email protected]> - 0.6.2-1

package/centos/rpm/SPECS/hyperstart.spec

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Summary: Hyperstart is the initrd for hyper VM
22
Name: hyperstart
3-
Version: 0.7.0
3+
Version: 0.8.0
44
Release: 1%{?dist}
55
License: Apache License, Version 2.0
66
Group: System Environment/Base
@@ -38,6 +38,8 @@ rm -rf %{buildroot}
3838
%{_sharedstatedir}/*
3939

4040
%changelog
41+
* Mon Mar 20 2017 Hyper Dev Team <[email protected]> - 0.8.0-1
42+
- update source to 0.8.0
4143
* Fri Oct 28 2016 Hyper Dev Team <[email protected]> - 0.7.0-1
4244
- update source to 0.7.0
4345
* Mon Aug 29 2016 Hyper Dev Team <[email protected]> - 0.6.2-1

package/fedora/make-rpm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
PROJECT=$(readlink -f $(dirname $0)/../..)
44
FEDORA_DIR=${PROJECT}/package/fedora
5-
VERSION=0.7.0
5+
VERSION=0.8.0
66

77
if [ $# -gt 0 ] ; then
88
VERSION=$1

package/fedora/rpm/SPECS/hyper-container.spec

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
11
Summary: Hyper is a VM based docker runtime
22
Name: hyper-container
3-
Version: 0.7.0
3+
Version: 0.8.0
44
Release: 1%{?dist}
55
License: Apache License, Version 2.0
66
Group: System Environment/Base
77
# The source for this package was pulled from upstream's git repo. Use the
88
# following commands to generate the tarball:
9-
# git archive --format=tar.gz master > hyper-%{version}.tar.gz
10-
Source0: %{name}-%{version}.tar.gz
11-
# and the https://github.com/hyperhq/runv.git
12-
# git archive --format=tar.gz master > runv-%{version}.tar.gz
13-
Source1: runv-%{version}.tar.gz
9+
# git archive --format=tar.gz master > hyperd-%{version}.tar.gz
10+
Source0: hyperd-%{version}.tar.gz
1411
URL: https://hyper.sh/
1512
ExclusiveArch: x86_64
1613
Requires: device-mapper,sqlite,libvirt
@@ -24,9 +21,7 @@ VM without a full guest OS
2421

2522
%prep
2623
mkdir -p %{_builddir}/src/github.com/hyperhq/hyperd
27-
mkdir -p %{_builddir}/src/github.com/hyperhq/runv
2824
tar -C %{_builddir}/src/github.com/hyperhq/hyperd -xvf %SOURCE0
29-
tar -C %{_builddir}/src/github.com/hyperhq/runv -xvf %SOURCE1
3025

3126
%build
3227
cd %{_builddir}/src/github.com/hyperhq/hyperd
@@ -52,6 +47,8 @@ rm -rf %{buildroot}
5247
/lib/systemd/system/hyperd.service
5348

5449
%changelog
50+
* Mon Mar 20 2017 Hyper Dev Team <[email protected]> - 0.8.0-1
51+
- update source to 0.8.0
5552
* Fri Oct 28 2016 Hyper Dev Team <[email protected]> - 0.7.0-1
5653
- update source to 0.7.0
5754
* Mon Aug 29 2016 Hyper Dev Team <[email protected]> - 0.6.2-1

package/fedora/rpm/SPECS/hyperstart.spec

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Summary: Hyperstart is the initrd for hyper VM
22
Name: hyperstart
3-
Version: 0.7.0
3+
Version: 0.8.0
44
Release: 1%{?dist}
55
License: Apache License, Version 2.0
66
Group: System Environment/Base
@@ -38,6 +38,8 @@ rm -rf %{buildroot}
3838
%{_sharedstatedir}/*
3939

4040
%changelog
41+
* Mon Mar 20 2017 Hyper Dev Team <[email protected]> - 0.8.0-1
42+
- update source to 0.8.0
4143
* Fri Oct 28 2016 Hyper Dev Team <[email protected]> - 0.7.0-1
4244
- update source to 0.7.0
4345
* Mon Aug 29 2016 Hyper Dev Team <[email protected]> - 0.6.2-1

package/ubuntu/hypercontainer/debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
hypercontainer (0.8.0-1) xenial; urgency=low
2+
3+
* Release 0.8.0
4+
5+
-- Hyper Dev Team <[email protected]> Mon, 20 Mar 2017 22:30:08 +0800
6+
17
hypercontainer (0.7.0-2) xenial; urgency=low
28

39
* add service and config file to package

package/ubuntu/hypercontainer/make-hypercontainer-deb.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
PROJECT=$(readlink -f $(dirname $0)/../../..)
44
UBUNTU_DIR=${PROJECT}/package/ubuntu/hypercontainer
5-
VERSION=0.7.0
5+
VERSION=0.8.0
66

77
if [ $# -gt 0 ] ; then
88
VERSION=$1

package/ubuntu/hyperstart/debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
hyperstart (0.8.0-1) xenial; urgency=low
2+
3+
* Release 0.8.0
4+
5+
-- Hyper Dev Team <[email protected]> Mon, 20 Mar 2017 22:30:08 +0800
6+
17
hyperstart (0.7.0-1) xenial; urgency=low
28

39
* Release 0.7.0

0 commit comments

Comments
 (0)