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

Commit 24a7191

Browse files
authored
Merge pull request #628 from gnawux/release-0.8.1
release v0.8.1
2 parents 5544a34 + a58a5e9 commit 24a7191

18 files changed

Lines changed: 68 additions & 19 deletions

File tree

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.8.0], [dev@hyper.sh])
5+
AC_INIT([hyper], [0.8.1], [dev@hyper.sh])
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 & 3 deletions
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.8.0
5+
VERSION=0.8.1
66

77
if [ $# -gt 0 ] ; then
88
VERSION=$1
@@ -12,8 +12,6 @@ fi
1212

1313
cd $PROJECT
1414
git archive --format=tar.gz master > ${CENTOS_DIR}/rpm/SOURCES/hyperd-${VERSION}.tar.gz
15-
cd $PROJECT/../runv
16-
git archive --format=tar.gz master > ${CENTOS_DIR}/rpm/SOURCES/runv-${VERSION}.tar.gz
1715
cd $PROJECT/../hyperstart
1816
git archive --format=tar.gz master > ${CENTOS_DIR}/rpm/SOURCES/hyperstart-${VERSION}.tar.gz
1917

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

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Summary: Hyper Container is a VM based docker runtime
22
Name: hyper-container
3-
Version: 0.8.0
3+
Version: 0.8.1
44
Release: 1%{?dist}
55
License: Apache License, Version 2.0
66
Group: System Environment/Base
@@ -35,9 +35,10 @@ make %{?_smp_mflags}
3535
mkdir -p %{buildroot}%{_bindir}
3636
mkdir -p %{buildroot}%{_sysconfdir}
3737
mkdir -p %{buildroot}/lib/systemd/system/
38-
cp %{_builddir}/src/github.com/hyperhq/hyperd/{hyperctl,hyperd} %{buildroot}%{_bindir}
38+
cp %{_builddir}/src/github.com/hyperhq/hyperd/{hyperctl,hyperd,vmlogd} %{buildroot}%{_bindir}
3939
cp -a %{_builddir}/src/github.com/hyperhq/hyperd/package/dist/etc/hyper %{buildroot}%{_sysconfdir}
4040
cp -a %{_builddir}/src/github.com/hyperhq/hyperd/package/dist/lib/systemd/system/hyperd.service %{buildroot}/lib/systemd/system/hyperd.service
41+
cp -a %{_builddir}/src/github.com/hyperhq/hyperd/package/dist/lib/systemd/system/hyper-vmlogd.service %{buildroot}/lib/systemd/system/hyper-vmlogd.service
4142

4243
%clean
4344
rm -rf %{buildroot}
@@ -46,8 +47,11 @@ rm -rf %{buildroot}
4647
%{_bindir}/*
4748
%{_sysconfdir}/*
4849
/lib/systemd/system/hyperd.service
50+
/lib/systemd/system/hyper-vmlogd.service
4951

5052
%changelog
53+
* Mon May 8 2017 Hyper Dev Team <dev@hyper.sh> - 0.8.1-1
54+
- update source to 0.8.1
5155
* Mon Mar 20 2017 Hyper Dev Team <dev@hyper.sh> - 0.8.0-1
5256
- update source to 0.8.0
5357
* Fri Oct 28 2016 Hyper Dev Team <dev@hyper.sh> - 0.7.0-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.8.0
3+
Version: 0.8.1
44
Release: 1%{?dist}
55
License: Apache License, Version 2.0
66
Group: System Environment/Base
@@ -37,6 +37,8 @@ rm -rf %{buildroot}
3737
%{_sharedstatedir}/*
3838

3939
%changelog
40+
* Mon May 8 2017 Hyper Dev Team <dev@hyper.sh> - 0.8.1-1
41+
- update source to 0.8.1
4042
* Mon Mar 20 2017 Hyper Dev Team <dev@hyper.sh> - 0.8.0-1
4143
- update source to 0.8.0
4244
* Fri Oct 28 2016 Hyper Dev Team <dev@hyper.sh> - 0.7.0-1

package/debian/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.1-1) unstable; urgency=low
2+
3+
* Release 0.8.1
4+
5+
-- Hyper Dev Team <dev@hyper.sh> Mon, 08 May 2017 22:30:08 +0800
6+
17
hypercontainer (0.8.0-1) unstable; urgency=low
28

39
* Release 0.8.0

package/debian/hypercontainer/debian/rules

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,12 @@ override_dh_auto_install:
2727
mkdir -p debian/hypercontainer/usr/bin
2828
cp -aT hyperd debian/hypercontainer/usr/bin/hyperd
2929
cp -aT hyperctl debian/hypercontainer/usr/bin/hyperctl
30+
cp -aT vmlogd debian/hypercontainer/usr/bin/vmlogd
3031
cp -r package/dist/* debian/hypercontainer/
3132
echo "end install"
3233

3334
override_dh_auto_clean:
34-
rm -rf go hyperd hyperctl
35+
rm -rf go hyperd hyperctl vmlogd
3536

3637
override_dh_auto_test:
3738

package/debian/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
DEBIAN_DIR=${PROJECT}/package/debian/hypercontainer
5-
VERSION=${VERSION:-0.8.0}
5+
VERSION=${VERSION:-0.8.1}
66
BRANCH=${BRANCH:-master}
77

88
if [ $# -gt 0 ] ; then

package/debian/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.1-1) unstable; urgency=low
2+
3+
* Release 0.8.1
4+
5+
-- Hyper Dev Team <dev@hyper.sh> Mon, 08 May 2017 22:30:08 +0800
6+
17
hyperstart (0.8.0-1) unstable; urgency=low
28

39
* Release 0.8.0

package/debian/hyperstart/make-hyperstart-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
DEBIAN_DIR=${PROJECT}/package/debian/hyperstart
5-
VERSION=${VERSION:-0.8.0}
5+
VERSION=${VERSION:-0.8.1}
66
BRANCH=${BRANCH:-master}
77

88
if [ $# -gt 0 ] ; then
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[Unit]
2+
Description=hyper-vmlogd
3+
Documentation=http://docs.hypercontainer.io
4+
After=network.target
5+
Requires=
6+
7+
[Service]
8+
ExecStart=/usr/bin/vmlogd
9+
MountFlags=shared
10+
LimitNOFILE=1048576
11+
LimitNPROC=1048576
12+
LimitCORE=infinity
13+
14+
[Install]
15+
WantedBy=multi-user.target

0 commit comments

Comments
 (0)