This commit is contained in:
parent
1376ff3837
commit
ced08cd423
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:7a2f36b605556e571290d129e0431398a6616850431e03435e2566a6afe6d216
|
|
||||||
size 850479
|
|
3
cfengine-2.2.8.tar.bz2
Normal file
3
cfengine-2.2.8.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:2997ec935c87ecc00b94110fe3f0e4525c50dbc74ce66a84c83fbc59e812f0fe
|
||||||
|
size 2310228
|
@ -1,3 +1,13 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Sep 11 17:27:12 CEST 2008 - anicka@suse.cz
|
||||||
|
|
||||||
|
- update to 2.2.8
|
||||||
|
* Patch for cfservd serving wrong data when link->copy
|
||||||
|
* Checksum changes now trigger persistent class "checksum_alerts"
|
||||||
|
and log to WORKDIR/state/file_hash_event_history
|
||||||
|
* Threading error fix for cfexecd
|
||||||
|
* Windows compilation fixes
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jun 27 17:14:56 CEST 2008 - anicka@suse.cz
|
Fri Jun 27 17:14:56 CEST 2008 - anicka@suse.cz
|
||||||
|
|
||||||
|
@ -1,10 +1,17 @@
|
|||||||
#
|
#
|
||||||
# spec file for package cfengine (Version 2.2.7)
|
# spec file for package cfengine (Version 2.2.8)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
# This file and all modifications and additions to the pristine
|
|
||||||
# package are under the same license as the package itself.
|
|
||||||
#
|
#
|
||||||
|
# All modifications and additions to the file contributed by third parties
|
||||||
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
|
# upon. The license for this file, and modifications and additions to the
|
||||||
|
# file, is the same license as for the pristine package itself (unless the
|
||||||
|
# license for the pristine package is not an Open Source License, in which
|
||||||
|
# case the license is the MIT License). An "Open Source License" is a
|
||||||
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||||||
|
# published by the Open Source Initiative.
|
||||||
|
|
||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
@ -12,11 +19,11 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: cfengine
|
Name: cfengine
|
||||||
BuildRequires: bison db-devel flex openssl-devel
|
BuildRequires: bison db-devel flex openssl-devel texlive
|
||||||
License: GPL v2 or later
|
License: GPL v2 or later
|
||||||
Group: Productivity/Networking/System
|
Group: Productivity/Networking/System
|
||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
Version: 2.2.7
|
Version: 2.2.8
|
||||||
Release: 1
|
Release: 1
|
||||||
Summary: A Tool to Maintain Complicated Networks
|
Summary: A Tool to Maintain Complicated Networks
|
||||||
Url: http://www.cfengine.org/
|
Url: http://www.cfengine.org/
|
||||||
@ -31,6 +38,7 @@ Patch5: %{name}-%{version}-strict-aliasing-fix.diff
|
|||||||
Patch7: %{name}-%{version}-printf.diff
|
Patch7: %{name}-%{version}-printf.diff
|
||||||
Patch9: %{name}-%{version}-overflow.diff
|
Patch9: %{name}-%{version}-overflow.diff
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
PreReq: %install_info_prereq
|
||||||
|
|
||||||
%description
|
%description
|
||||||
GNU cfengine is an abstract programming language for system
|
GNU cfengine is an abstract programming language for system
|
||||||
@ -64,6 +72,7 @@ CC=gcc CFLAGS="$RPM_OPT_FLAGS" \
|
|||||||
--infodir=%{_infodir} \
|
--infodir=%{_infodir} \
|
||||||
--datadir=%{_defaultdocdir}
|
--datadir=%{_defaultdocdir}
|
||||||
make
|
make
|
||||||
|
chmod a-x inputs/cf.preconf.example
|
||||||
|
|
||||||
%install
|
%install
|
||||||
make "DESTDIR=$RPM_BUILD_ROOT" install
|
make "DESTDIR=$RPM_BUILD_ROOT" install
|
||||||
@ -78,7 +87,13 @@ rm $RPM_BUILD_ROOT/%{_libdir}/libcfengine.a
|
|||||||
%clean
|
%clean
|
||||||
[ -d %{buildroot} -a "%{buildroot}" != "" ] && rm -rf %{buildroot}
|
[ -d %{buildroot} -a "%{buildroot}" != "" ] && rm -rf %{buildroot}
|
||||||
|
|
||||||
|
%post
|
||||||
|
%install_info --info-dir=%{_infodir} %{_infodir}/%{name}-Reference.info.gz
|
||||||
|
%install_info --info-dir=%{_infodir} %{_infodir}/%{name}-Tutorial.info.gz
|
||||||
|
|
||||||
%postun
|
%postun
|
||||||
|
%install_info_delete --info-dir=%{_infodir} %{_infodir}/%{name}-Reference.info.gz
|
||||||
|
%install_info_delete --info-dir=%{_infodir} %{_infodir}/%{name}-Tutorial.info.gz
|
||||||
%insserv_cleanup
|
%insserv_cleanup
|
||||||
|
|
||||||
%preun
|
%preun
|
||||||
@ -90,10 +105,18 @@ rm $RPM_BUILD_ROOT/%{_libdir}/libcfengine.a
|
|||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc AUTHORS ChangeLog NEWS README COPYING TODO inputs/*.example
|
%doc AUTHORS ChangeLog NEWS README COPYING TODO inputs/*.example
|
||||||
/usr/sbin/*
|
/usr/sbin/*
|
||||||
%doc %{_mandir}/man?/*
|
%{_mandir}/man?/*
|
||||||
|
%{_infodir}/*.info*
|
||||||
%attr(0755,root,root) %config /etc/init.d/*
|
%attr(0755,root,root) %config /etc/init.d/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Sep 11 2008 anicka@suse.cz
|
||||||
|
- update to 2.2.8
|
||||||
|
* Patch for cfservd serving wrong data when link->copy
|
||||||
|
* Checksum changes now trigger persistent class "checksum_alerts"
|
||||||
|
and log to WORKDIR/state/file_hash_event_history
|
||||||
|
* Threading error fix for cfexecd
|
||||||
|
* Windows compilation fixes
|
||||||
* Fri Jun 27 2008 anicka@suse.cz
|
* Fri Jun 27 2008 anicka@suse.cz
|
||||||
- update to 2.2.7
|
- update to 2.2.7
|
||||||
* Xen detection
|
* Xen detection
|
||||||
|
Loading…
x
Reference in New Issue
Block a user