Accepting request 1042412 from home:aginies:branches:network:cluster

- update to version 0.3.1:
  * Fixed username/password use in libipmiconsole.conf. (e59f5e4)
  * Added more console logfile conversion specifiers. (96ede96, 5a189f6)
  * Added conmen '-T' cmdline opt to specify terminal emulator. (a11c6f4)
  * Added rpm source file verification. (f86c123)
  * Revamped autotools config. (547db3c)
  * Added configure opts for systemd/sysvinit. (3e303e6)
  * Added configure runstatedir support. (bb415e0)
  * Fixed installation directory variable substitution. (7642609)
  * Removed autotools-generated files from version control. (44168a4)
  * general move of files from /usr/lib/conman to /usr/share/conman

OBS-URL: https://build.opensuse.org/request/show/1042412
OBS-URL: https://build.opensuse.org/package/show/network:cluster/conman?expand=0&rev=43
This commit is contained in:
Christian Goll 2022-12-15 09:50:46 +00:00 committed by Git OBS Bridge
parent 6dd3cd2c29
commit 37f6bdc37f
5 changed files with 33 additions and 15 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:51d379187028317784305588ce3770e66d56c201c3d98afbf823eac039f4583c
size 240855

3
conman-0.3.1.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:cd47d3d9a72579b470dd73d85cd3fec606fa5659c728ff3c1c57e970f4da72a2
size 169716

View File

@ -1,7 +1,7 @@
Index: conman-0.2.7/lib/exec/ssh.exp Index: conman-0.2.7/scripts/exec/ssh.exp
=================================================================== ===================================================================
--- conman-0.2.7.orig/lib/exec/ssh.exp --- conman-0.2.7.orig/scripts/exec/ssh.exp
+++ conman-0.2.7/lib/exec/ssh.exp +++ conman-0.2.7/scripts/exec/ssh.exp
@@ -166,7 +166,7 @@ expect { @@ -166,7 +166,7 @@ expect {
} }
exp_continue -continue_timer exp_continue -continue_timer

View File

@ -1,3 +1,18 @@
-------------------------------------------------------------------
Mon Dec 12 13:33:27 UTC 2022 - Antoine Ginies <aginies@suse.com>
- update to version 0.3.1:
* Fixed username/password use in libipmiconsole.conf. (e59f5e4)
* Added more console logfile conversion specifiers. (96ede96, 5a189f6)
* Added conmen '-T' cmdline opt to specify terminal emulator. (a11c6f4)
* Added rpm source file verification. (f86c123)
* Revamped autotools config. (547db3c)
* Added configure opts for systemd/sysvinit. (3e303e6)
* Added configure runstatedir support. (bb415e0)
* Fixed installation directory variable substitution. (7642609)
* Removed autotools-generated files from version control. (44168a4)
* general move of files from /usr/lib/conman to /usr/share/conman
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Oct 15 16:11:42 UTC 2021 - Egbert Eich <eich@suse.com> Fri Oct 15 16:11:42 UTC 2021 - Egbert Eich <eich@suse.com>

View File

@ -1,7 +1,7 @@
# #
# spec file for package conman # spec file for package conman
# #
# Copyright (c) 2021 SUSE LLC # Copyright (c) 2022 SUSE LLC
# #
# All modifications and additions to the file contributed by third parties # All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed # remain the property of their copyright owners, unless otherwise agreed
@ -45,7 +45,7 @@
%endif %endif
Name: conman Name: conman
Version: 0.3.0 Version: 0.3.1
Release: 0 Release: 0
Summary: The Console Manager Summary: The Console Manager
@ -63,13 +63,15 @@ BuildRequires: freeipmi-devel
Source0: https://github.com/dun/conman/archive/%{name}-%{version}.tar.gz Source0: https://github.com/dun/conman/archive/%{name}-%{version}.tar.gz
Source1: %{name}.service.in Source1: %{name}.service.in
%if 0%{?have_systemd} %if 0%{?have_systemd}
BuildRequires: autoconf
BuildRequires: automake
BuildRequires: systemd-rpm-macros BuildRequires: systemd-rpm-macros
BuildRequires: pkgconfig(systemd) BuildRequires: pkgconfig(systemd)
%{?have_sysuser:BuildRequires: sysuser-tools} %{?have_sysuser:BuildRequires: sysuser-tools}
%{?systemd_requires} %{?systemd_requires}
Requires(pre): shadow Requires(pre): shadow
Requires(post): %fillup_prereq sed Requires(post): %fillup_prereq sed
Requires(postun): coreutils Requires(postun):coreutils
%endif %endif
Patch1: conman-suse-fix-expect-scripts.patch Patch1: conman-suse-fix-expect-scripts.patch
@ -99,6 +101,7 @@ Its features include:
%patch1 -p1 %patch1 -p1
%build %build
./bootstrap
%configure --with-tcp-wrappers \ %configure --with-tcp-wrappers \
%if 0%{?have_freeipmi} %if 0%{?have_freeipmi}
--with-freeipmi \ --with-freeipmi \
@ -123,9 +126,9 @@ ln -s %{_sysconfdir}/init.d/conman %{buildroot}%{_sbindir}/rcconman
chmod u+x %{buildroot}%{_sysconfdir}/init.d/conman chmod u+x %{buildroot}%{_sysconfdir}/init.d/conman
%endif %endif
mkdir -p %{buildroot}%{_fillupdir} mkdir -p %{buildroot}%{_fillupdir}
mv %{buildroot}%{_sysconfdir}/sysconfig/conman \ mv etc/conman.sysconfig \
%{buildroot}%{_fillupdir}/sysconfig.conman %{buildroot}%{_fillupdir}/sysconfig.conman
for i in $(find %{buildroot}/usr/lib/conman) ; do for i in $(find %{buildroot}/usr/share/conman) ; do
if [ -f $i -a -x $i ]; then if [ -f $i -a -x $i ]; then
if ! head -1 $i | grep "^#!"; then if ! head -1 $i | grep "^#!"; then
echo "#!/usr/bin/expect -f" > /tmp/$(basename $i) echo "#!/usr/bin/expect -f" > /tmp/$(basename $i)
@ -243,7 +246,7 @@ touch %_localstatedir/lib/conman/%migrated || :
%{_fillupdir}/sysconfig.conman %{_fillupdir}/sysconfig.conman
%{_bindir}/* %{_bindir}/*
%{_sbindir}/* %{_sbindir}/*
%{_prefix}/lib/conman %{_prefix}/share/conman
%if 0%{?have_systemd} %if 0%{?have_systemd}
%{_prefix}/lib/systemd/* %{_prefix}/lib/systemd/*
%else %else