Skip to content

Commit

Permalink
Release version 0.45.
Browse files Browse the repository at this point in the history
Signed-off-by: James Hunt <jamesodhunt@ubuntu.com>
  • Loading branch information
James Hunt committed Mar 21, 2016
1 parent 8dee763 commit 3c26921
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 17 deletions.
20 changes: 20 additions & 0 deletions NEWS
@@ -1,3 +1,23 @@
0.45 2016-03-21

* Code restructured internally to simplify maintenance and adding
new platforms. See src/platform/README.rst (and README-BUILD.rst).

* Dropped support for:
- kFreeBSD (Debian using a FreeBSD kernel) - defunc project.
- Ubuntu Lucid (10.04) - no longer a supported platform.

* Added support for NetBSD, OpenBSD and Minix 3.

* --meta: Now shows details of the procenv platform driver being
used.

* --misc now shows "security module" rather than
"linux security module".

* --file-append: new option (env var is "PROCENV_FILE_APPEND")
to append to the --file= specified rather than overwriting.

0.44 2016-02-15

* --cgroup: Handle cgroup2 (cgroups v2).
Expand Down
26 changes: 13 additions & 13 deletions configure
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.69 for procenv 0.44.
# Generated by GNU Autoconf 2.69 for procenv 0.45.
#
# Report bugs to <jamesodhunt@ubuntu.com>.
#
Expand All @@ -11,7 +11,7 @@
# This configure script is free software; the Free Software Foundation
# gives unlimited permission to copy, distribute and modify it.
#
# Copyright (C) 2012-2015 James Hunt <jamesodhunt@ubuntu.com> and Kees Cook <kees@ubuntu.com>
# Copyright (C) 2012-2016 James Hunt <jamesodhunt@ubuntu.com> and Kees Cook <kees@ubuntu.com>
## -------------------- ##
## M4sh Initialization. ##
## -------------------- ##
Expand Down Expand Up @@ -582,8 +582,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='procenv'
PACKAGE_TARNAME='procenv'
PACKAGE_VERSION='0.44'
PACKAGE_STRING='procenv 0.44'
PACKAGE_VERSION='0.45'
PACKAGE_STRING='procenv 0.45'
PACKAGE_BUGREPORT='jamesodhunt@ubuntu.com'
PACKAGE_URL='https://github.com/jamesodhunt/procenv'

Expand Down Expand Up @@ -1335,7 +1335,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
\`configure' configures procenv 0.44 to adapt to many kinds of systems.
\`configure' configures procenv 0.45 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
Expand Down Expand Up @@ -1407,7 +1407,7 @@ fi

if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of procenv 0.44:";;
short | recursive ) echo "Configuration of procenv 0.45:";;
esac
cat <<\_ACEOF
Expand Down Expand Up @@ -1524,14 +1524,14 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
procenv configure 0.44
procenv configure 0.45
generated by GNU Autoconf 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
This configure script is free software; the Free Software Foundation
gives unlimited permission to copy, distribute and modify it.
Copyright (C) 2012-2015 James Hunt <jamesodhunt@ubuntu.com> and Kees Cook <kees@ubuntu.com>
Copyright (C) 2012-2016 James Hunt <jamesodhunt@ubuntu.com> and Kees Cook <kees@ubuntu.com>
_ACEOF
exit
fi
Expand Down Expand Up @@ -1949,7 +1949,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by procenv $as_me 0.44, which was
It was created by procenv $as_me 0.45, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ $0 $@
Expand Down Expand Up @@ -2334,7 +2334,7 @@ ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var.
PROCENV_VERSION=0.44
PROCENV_VERSION=0.45
# Expand $ac_aux_dir to an absolute path.
Expand Down Expand Up @@ -6022,7 +6022,7 @@ fi
# Define the identity of the package.
PACKAGE='procenv'
VERSION='0.44'
VERSION='0.45'
cat >>confdefs.h <<_ACEOF
Expand Down Expand Up @@ -7011,7 +7011,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by procenv $as_me 0.44, which was
This file was extended by procenv $as_me 0.45, which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
Expand Down Expand Up @@ -7078,7 +7078,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
procenv config.status 0.44
procenv config.status 0.45
configured by $0, generated by GNU Autoconf 2.69,
with options \\"\$ac_cs_config\\"
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
@@ -1,11 +1,11 @@
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.

m4_define([procenv_version], [0.44])
m4_define([procenv_version], [0.45])

AC_INIT(procenv,[procenv_version],[jamesodhunt@ubuntu.com],,[https://github.com/jamesodhunt/procenv])

AC_COPYRIGHT([Copyright (C) 2012-2015 James Hunt <jamesodhunt@ubuntu.com> and Kees Cook <kees@ubuntu.com>])
AC_COPYRIGHT([Copyright (C) 2012-2016 James Hunt <jamesodhunt@ubuntu.com> and Kees Cook <kees@ubuntu.com>])

AC_CONFIG_SRCDIR([src/procenv.c])
AC_CONFIG_MACRO_DIR([m4])
Expand Down
4 changes: 2 additions & 2 deletions procenv.spec
@@ -1,12 +1,12 @@
Name: procenv
Version: 0.44
Version: 0.45
Release: 1%{?dist}
Summary: Utility to show process environment

Group: Applications/System
License: GPLv3+
URL: https://github.com/jamesodhunt/procenv
Source0: https://github.com/jamesodhunt/procenv/archive/0.44.tar.gz
Source0: https://github.com/jamesodhunt/procenv/archive/0.45.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)

# fixme: should be autoconf >= 2.68, but Fedora packages or alien'ed dpkg
Expand Down

0 comments on commit 3c26921

Please sign in to comment.