Skip to content

Commit

Permalink
Import version v1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
veos-sxarr committed Nov 8, 2018
1 parent 8c8f71f commit cd43779
Show file tree
Hide file tree
Showing 100 changed files with 910 additions and 46,162 deletions.
4 changes: 2 additions & 2 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ SUBDIRS = conf lib src include scripts
EXTRA_DIST = \
COPYING \
README \
doc

doc \
debian
12 changes: 0 additions & 12 deletions conf/pseudo_veos.proto

This file was deleted.

16 changes: 14 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.

AC_PREREQ([2.69])
AC_INIT([veos], [1.3.0])
AC_INIT([veos], [1.3.2])
AC_CONFIG_SRCDIR([lib/libvepseudo/psm/exception.c])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_AUX_DIR([./build-aux])
Expand Down Expand Up @@ -101,6 +101,10 @@ AC_CHECK_PROGS([REALPATH], [realpath], [no])
if test "x$REALPATH" = xno; then
AC_MSG_ERROR([realpath is not found.])
fi
AC_PATH_PROG([UDEVADM], [udevadm], [no])
if test "x$UDEVADM" = xno; then
AC_MSG_ERROR([udevadm is not found.])
fi
# Checks for libraries.
LDFLAGS="$LDFLAGS -L${prefix}/lib -L${prefix}/lib64"
AC_CHECK_LIB(ved, vedl_wait_exception, [have_libved=yes], [have_libved=no])
Expand Down Expand Up @@ -181,5 +185,13 @@ AC_CONFIG_FILES([Makefile
src/veos/main/Makefile
src/veos/psm/Makefile
src/veos/psm/ve_coredump_helper.h
src/veos/vemm/Makefile])
src/veos/vemm/Makefile
debian/control
debian/rules
debian/veos-dev.install
debian/veos-headers.install
debian/veos.install
debian/veos-libvepseudo-headers.install
debian/veos-libveptrace.install
debian/veos-musl-headers.install])
AC_OUTPUT
Empty file added debian/README.Debian
Empty file.
1 change: 1 addition & 0 deletions debian/compat
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
10
82 changes: 82 additions & 0 deletions debian/control.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
Source: @PACKAGE@
Section: otherosfs
Priority: extra
Maintainer: NEC Corporation
Build-Depends: debhelper (>=10),
dh-autoreconf,
dh-systemd,
libved-dev,
velayout-dev,
libprotobuf-c-dev,
liblog4c-dev,
libsystemd-dev,
uuid-dev,
libcap-dev,
libprocps-dev,
protobuf-c-compiler,
protobuf-compiler,
ve-memory-mapping-dev,
libdhash-dev
Standards-Version: 3.9.8

Package: @PACKAGE@
Architecture: any
Multi-Arch: same
Depends: ${misc:Depends},
${shlibs:Depends},
python (>= 2.7),
systemd,
libc6,
libved,
velayout,
python-protobuf,
libdhash1
Description: VE Operating System
VEOS is a set of daemons and commands providing operating system
functionality to VE programs.

Package: @PACKAGE@-libveptrace
Architecture: any
Multi-Arch: same
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: VE ptrace library
This package contains the VE ptrace library.

Package: @PACKAGE@-dev
Architecture: any
Multi-Arch: same
Depends: ${misc:Depends},
@PACKAGE@ (= @VERSION@-@RELEASE@),
@PACKAGE@-libveptrace (= @VERSION@-@RELEASE@)
Description: Headers for VEOS
This package contains the files required to build system software
which uses VEOS functionality.
This package is not required to build VE programs or libraries.

Package: @PACKAGE@-headers
Architecture: any
Multi-Arch: same
Depends: ${misc:Depends}
Description: Headers for VEOS
This package contains the header files of definitions of VEOS.
VE programs or libraries include them if required.

Package: @PACKAGE@-musl-headers
Architecture: any
Multi-Arch: same
Depends: ${misc:Depends}
Description: Headers for VEOS
This package contains the header files of definitions of VEOS.
VE programs or libraries include them if required.

Package: @PACKAGE@-libvepseudo-headers
Architecture: any
Multi-Arch: same
Depends: ${misc:Depends},
@PACKAGE@ (= @VERSION@-@RELEASE@),
libved-dev,
velayout-dev
Description: Headers for libvepseudo
This package contains the header files of definition of libvepseudo.
VH programs or libraries using internal functions in libvepseudo
include them.
Loading

0 comments on commit cd43779

Please sign in to comment.