2008-05-05 16:55:23 +00:00
|
|
|
Name: augeas
|
2010-08-07 00:23:26 +00:00
|
|
|
Version: 0.7.3
|
|
|
|
Release: 1%{?dist}
|
2008-05-05 16:55:23 +00:00
|
|
|
Summary: A library for changing configuration files
|
|
|
|
|
|
|
|
Group: System Environment/Libraries
|
|
|
|
License: LGPLv2+
|
|
|
|
URL: http://augeas.net/
|
2008-10-24 19:55:38 +00:00
|
|
|
Source0: http://augeas.net/download/%{name}-%{version}.tar.gz
|
2008-05-05 16:55:23 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
|
2009-03-09 23:40:49 +00:00
|
|
|
BuildRequires: readline-devel libselinux-devel
|
2008-05-05 16:55:23 +00:00
|
|
|
Requires: %{name}-libs = %{version}-%{release}
|
|
|
|
|
|
|
|
%description
|
|
|
|
A library for programmatically editing configuration files. Augeas parses
|
|
|
|
configuration files into a tree structure, which it exposes through its
|
|
|
|
public API. Changes made through the API are written back to the initially
|
|
|
|
read files.
|
|
|
|
|
|
|
|
The transformation works very hard to preserve comments and formatting
|
|
|
|
details. It is controlled by ``lens'' definitions that describe the file
|
|
|
|
format and the transformation into a tree.
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Development files for %{name}
|
|
|
|
Group: Development/Libraries
|
2008-05-16 19:10:26 +00:00
|
|
|
Requires: %{name}-libs = %{version}-%{release}
|
|
|
|
Requires: pkgconfig
|
2008-05-05 16:55:23 +00:00
|
|
|
|
|
|
|
%description devel
|
|
|
|
The %{name}-devel package contains libraries and header files for
|
|
|
|
developing applications that use %{name}.
|
|
|
|
|
|
|
|
|
|
|
|
%package libs
|
|
|
|
Summary: Libraries for %{name}
|
|
|
|
Group: System Environment/Libraries
|
|
|
|
|
|
|
|
%description libs
|
|
|
|
The libraries for %{name}.
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
|
|
|
|
|
|
|
%build
|
|
|
|
%configure --disable-static
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
make install DESTDIR=$RPM_BUILD_ROOT INSTALL="%{__install} -p"
|
|
|
|
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
%post libs -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%postun libs -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%{_bindir}/augtool
|
|
|
|
%{_bindir}/augparse
|
2009-06-09 23:37:11 +00:00
|
|
|
%{_bindir}/fadot
|
2008-05-05 16:55:23 +00:00
|
|
|
%doc %{_mandir}/man1/*
|
2009-11-30 17:36:09 +00:00
|
|
|
%{_datadir}/vim/vimfiles/syntax/augeas.vim
|
|
|
|
%{_datadir}/vim/vimfiles/ftdetect/augeas.vim
|
2008-05-05 16:55:23 +00:00
|
|
|
|
|
|
|
%files libs
|
2008-05-16 19:10:26 +00:00
|
|
|
%defattr(-,root,root,-)
|
2010-06-22 21:45:36 +00:00
|
|
|
# %{_datadir}/augeas and %{_datadir}/augeas/lenses are owned
|
|
|
|
# by filesystem.
|
|
|
|
%{_datadir}/augeas/lenses/dist
|
2008-05-05 16:55:23 +00:00
|
|
|
%{_libdir}/*.so.*
|
|
|
|
%doc AUTHORS COPYING NEWS
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%doc
|
|
|
|
%{_includedir}/*
|
|
|
|
%{_libdir}/*.so
|
|
|
|
%{_libdir}/pkgconfig/augeas.pc
|
|
|
|
|
|
|
|
%changelog
|
2010-08-07 00:23:26 +00:00
|
|
|
* Fri Aug 6 2010 David Lutterkort <lutter@redhat.com> - 0.7.3-1
|
|
|
|
- Remove upstream patches
|
|
|
|
|
2010-06-30 01:31:11 +00:00
|
|
|
* Tue Jun 29 2010 David Lutterkort <lutter@redhat.com> - 0.7.2-2
|
|
|
|
- Patches based on upstream fix for BZ 600141
|
|
|
|
|
2010-06-22 21:45:36 +00:00
|
|
|
* Tue Jun 22 2010 David Lutterkort <lutter@redhat.com> - 0.7.2-1
|
|
|
|
- Fix ownership of /usr/share/augeas. BZ 569393
|
|
|
|
|
2010-04-21 21:35:05 +00:00
|
|
|
* Wed Apr 21 2010 David Lutterkort <lutter@redhat.com> - 0.7.1-1
|
|
|
|
- New version
|
|
|
|
|
2010-01-15 03:25:21 +00:00
|
|
|
* Thu Jan 14 2010 David Lutterkort <lutter@redhat.com> - 0.7.0-1
|
|
|
|
- Remove patch vim-ftdetect-syntax.patch. It's upstream
|
|
|
|
|
2009-12-16 02:05:02 +00:00
|
|
|
* Tue Dec 15 2009 David Lutterkort <lutter@redhat.com> - 0.6.0-2
|
|
|
|
- Fix ftdetect file for vim
|
|
|
|
|
2009-11-30 17:36:09 +00:00
|
|
|
* Mon Nov 30 2009 David Lutterkort <lutter@redhat.com> - 0.6.0-1
|
|
|
|
- Install vim syntax files
|
|
|
|
|
2009-09-14 22:16:43 +00:00
|
|
|
* Mon Sep 14 2009 David Lutterkort <lutter@redhat.com> - 0.5.3-1
|
|
|
|
- Remove separate xorg.aug, included in upstream source
|
|
|
|
|
2009-08-26 16:20:30 +00:00
|
|
|
* Tue Aug 25 2009 Matthew Booth <mbooth@redhat.com> - 0.5.2-3
|
|
|
|
- Include new xorg lens from upstream
|
|
|
|
|
2009-07-24 17:34:01 +00:00
|
|
|
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-07-14 02:53:43 +00:00
|
|
|
* Mon Jul 13 2009 David Lutterkort <lutter@redhat.com> - 0.5.2-1
|
|
|
|
- New version
|
|
|
|
|
2009-06-09 23:37:11 +00:00
|
|
|
* Fri Jun 5 2009 David Lutterkort <lutter@redhat.com> - 0.5.1-1
|
|
|
|
- Install fadot
|
|
|
|
|
2009-03-28 01:44:32 +00:00
|
|
|
* Fri Mar 27 2009 David Lutterkort <lutter@redhat.com> - 0.5.0-2
|
|
|
|
- fadot isn't being installed just yet
|
|
|
|
|
2009-03-28 01:27:08 +00:00
|
|
|
* Tue Mar 24 2009 David Lutterkort <lutter@redhat.com> - 0.5.0-1
|
|
|
|
- New program /usr/bin/fadot
|
|
|
|
|
2009-03-09 23:40:49 +00:00
|
|
|
* Mon Mar 9 2009 David Lutterkort <lutter@redhat.com> - 0.4.2-1
|
|
|
|
- New version
|
|
|
|
|
2009-03-03 00:17:40 +00:00
|
|
|
* Fri Feb 27 2009 David Lutterkort <lutter@redhat.com> - 0.4.1-1
|
|
|
|
- New version
|
2009-02-24 03:13:06 +00:00
|
|
|
|
2009-02-07 06:14:46 +00:00
|
|
|
* Fri Feb 6 2009 David Lutterkort <lutter@redhat.com> - 0.4.0-1
|
|
|
|
- New version
|
|
|
|
|
2009-01-27 00:42:10 +00:00
|
|
|
* Mon Jan 26 2009 David Lutterkort <lutter@redhat.com> - 0.3.6-1
|
|
|
|
- New version
|
|
|
|
|
2008-12-24 06:24:02 +00:00
|
|
|
* Tue Dec 23 2008 David Lutterkort <lutter@redhat.com> - 0.3.5-1
|
|
|
|
- New version
|
|
|
|
|
2008-05-05 16:55:23 +00:00
|
|
|
* Mon Feb 25 2008 David Lutterkort <dlutter@redhat.com> - 0.0.4-1
|
|
|
|
- Initial specfile
|