X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=pcucontrol.spec;h=a9b78eb88f4d3961884845b2f4dff2e12db0144b;hb=9f3fda25be4804323eb8190bb83e20d5506775b8;hp=fefe860e414e8258e0ddb2b910aaeb15ec7272d5;hpb=69aa221b1ae2926c895187fc2473ce4898ae892b;p=pcucontrol.git diff --git a/pcucontrol.spec b/pcucontrol.spec index fefe860..a9b78eb 100644 --- a/pcucontrol.spec +++ b/pcucontrol.spec @@ -1,6 +1,6 @@ %define name pcucontrol %define version 1.0 -%define taglevel 11 +%define taglevel 13 %define release %{taglevel}%{?pldistro:.%{pldistro}}%{?date:.%{date}} %global python_sitearch %( python -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)" ) @@ -33,13 +33,25 @@ supported models. %prep %setup -q +#################### Important note +# starting with fedora27, fedora comes with openssl-11.0g +# and in this version +# X509_EXTENSION {aka struct X509_extension_st} +# has become opaque +# this is mentioned here +# https://github.com/openssl/openssl/issues/2239 +# see https://wiki.openssl.org/index.php/OpenSSL_1.1.0_Changes#Compatibility_Layer +# +# so we turn off support for SSL starting with fedora27 +# this is in pcucontrol/models/intelamt/Makefile - see FCDISTRO + %build # NOTE: the build uses g++ cmdamt/ # NOTE: TMPDIR is needed here b/c the tmpfs of the build vserver is too small. cd pcucontrol/models/intelamt export TMPDIR=$PWD/tmp mkdir -p $TMPDIR -make +make FCDISTRO=%{fcdistro} cd .. %install @@ -56,6 +68,14 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jun 25 2012 Stephen Soltesz - pcucontrol-1.0-13 +- remove many unnecessary debugging print statement. +- move APC & DRAC to expect scripts. Much greater control. + +* Wed Aug 31 2011 Stephen Soltesz - pcucontrol-1.0-12 +- Fixed DRAC regular expression for ssh, and added IP address for external +- command. + * Wed Jun 08 2011 s s - pcucontrol-1.0-11 - Updated HPiLO, DRAC with expect scripts. - Updated other models to use subprocess module in favor of os.popen*