Blame SPECS/acl.spec

8f966c
Summary: Access control list utilities
8f966c
Name: acl
8f966c
Version: 2.3.1
8f966c
Release: 3%{?dist}
8f966c
BuildRequires: gawk
8f966c
BuildRequires: gcc
8f966c
BuildRequires: gettext
8f966c
BuildRequires: libattr-devel
8f966c
BuildRequires: libtool
8f966c
BuildRequires: make
8f966c
BuildRequires: perl(FileHandle)
8f966c
Requires: libacl%{?_isa} = %{version}-%{release}
8f966c
Source: https://download-mirror.savannah.gnu.org/releases/acl/acl-%{version}.tar.gz
8f966c
8f966c
# avoid permission denied problem with LD_PRELOAD in the test-suite
8f966c
Patch1: 0001-acl-2.2.53-test-runwrapper.patch
8f966c
8f966c
License: GPLv2+
8f966c
URL: https://savannah.nongnu.org/projects/acl
8f966c
8f966c
%description
8f966c
This package contains the getfacl and setfacl utilities needed for
8f966c
manipulating access control lists.
8f966c
8f966c
%package -n libacl
8f966c
Summary: Dynamic library for access control list support
8f966c
License: LGPLv2+
8f966c
Conflicts: filesystem < 3
8f966c
8f966c
%description -n libacl
8f966c
This package contains the libacl.so dynamic library which contains
8f966c
the POSIX 1003.1e draft standard 17 functions for manipulating access
8f966c
control lists.
8f966c
8f966c
%package -n libacl-devel
8f966c
Summary: Files needed for building programs with libacl
8f966c
License: LGPLv2+
8f966c
Requires: libacl%{?_isa} = %{version}-%{release}, libattr-devel
8f966c
8f966c
%description -n libacl-devel
8f966c
This package contains header files and documentation needed to develop
8f966c
programs which make use of the access control list programming interface
8f966c
defined in POSIX 1003.1e draft standard 17.
8f966c
8f966c
%prep
8f966c
%autosetup -p1
8f966c
8f966c
%build
8f966c
%configure
8f966c
8f966c
# uncomment to turn on optimizations
8f966c
# sed -i 's/-O2/-O0/' libtool include/builddefs
8f966c
# unset CFLAGS
8f966c
8f966c
%make_build
8f966c
8f966c
%check
8f966c
# make the test-suite use the just built library (instead of the system one)
8f966c
export LD_LIBRARY_PATH="${RPM_BUILD_ROOT}%{_libdir}:${LD_LIBRARY_PATH}"
8f966c
8f966c
if ./setfacl -m "u:$(id -u):rwx" .; then
8f966c
    if test 0 = "$(id -u)"; then
8f966c
        # test/root/permissions.test requires the 'daemon' user to be a member
8f966c
        # of the 'bin' group in order not to fail.  Prevent the test from
8f966c
        # running if we detect that its requirements are not met (#1085389).
8f966c
        if id -nG daemon | { ! grep bin >/dev/null; }; then
8f966c
            sed -e 's|test/root/permissions.test||' \
8f966c
                -i test/Makemodule.am Makefile.in Makefile
8f966c
        fi
8f966c
8f966c
        # test/root/setfacl.test fails if 'bin' user cannot access build dir
8f966c
        if ! runuser -u bin -- "${PWD}/setfacl" --version; then
8f966c
            sed -e 's|test/root/setfacl.test||' \
8f966c
                -i test/Makemodule.am Makefile.in Makefile
8f966c
        fi
8f966c
    fi
8f966c
8f966c
    # run the upstream test-suite
8f966c
    %make_build check || exit $?
8f966c
else
8f966c
    echo '*** ACLs are probably not supported by the file system,' \
8f966c
         'the test-suite will NOT run ***'
8f966c
fi
8f966c
8f966c
%install
8f966c
%make_install
8f966c
8f966c
# get rid of libacl.a and libacl.la
8f966c
rm -f $RPM_BUILD_ROOT%{_libdir}/libacl.a
8f966c
rm -f $RPM_BUILD_ROOT%{_libdir}/libacl.la
8f966c
8f966c
chmod 0755 $RPM_BUILD_ROOT/%{_libdir}/libacl.so.*.*.*
8f966c
8f966c
# drop already installed documentation, we will use an RPM macro to install it
8f966c
rm -rf $RPM_BUILD_ROOT%{_docdir}/%{name}*
8f966c
8f966c
%find_lang %{name}
8f966c
8f966c
%ldconfig_scriptlets -n libacl
8f966c
8f966c
%files -f %{name}.lang
8f966c
%license doc/COPYING*
8f966c
%{_bindir}/chacl
8f966c
%{_bindir}/getfacl
8f966c
%{_bindir}/setfacl
8f966c
%{_mandir}/man1/chacl.1*
8f966c
%{_mandir}/man1/getfacl.1*
8f966c
%{_mandir}/man1/setfacl.1*
8f966c
%{_mandir}/man5/acl.5*
8f966c
8f966c
%files -n libacl-devel
8f966c
%{_libdir}/libacl.so
8f966c
%{_libdir}/pkgconfig/*.pc
8f966c
%{_includedir}/acl
8f966c
%{_includedir}/sys/acl.h
8f966c
%{_mandir}/man3/acl_*
8f966c
8f966c
%files -n libacl
8f966c
%{_libdir}/libacl.so.*
8f966c
8f966c
%changelog
8f966c
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 2.3.1-3
8f966c
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
8f966c
  Related: rhbz#1991688
8f966c
8f966c
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 2.3.1-2
8f966c
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
8f966c
8f966c
* Tue Mar 16 2021 Kamil Dudka <kdudka@redhat.com> - 2.3.1-1
8f966c
- new upstream release
8f966c
8f966c
* Fri Mar 12 2021 Kamil Dudka <kdudka@redhat.com> - 2.3.0-1
8f966c
- new upstream release
8f966c
8f966c
* Mon Jan 25 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.53-10
8f966c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
8f966c
8f966c
* Mon Aug 31 2020 Kamil Dudka <kdudka@redhat.com> 2.2.53-9
8f966c
- make __acl_create_entry_obj() work with LTO enabled (#1873975)
8f966c
8f966c
* Fri Jul 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.53-8
8f966c
- Second attempt - Rebuilt for
8f966c
  https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
8f966c
8f966c
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.53-7
8f966c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
8f966c
8f966c
* Wed Jun 03 2020 Tom Stellard <tstellar@redhat.com> - 2.2.53-6
8f966c
- Spec file cleanups and build fix
8f966c
- Add BuildRequires: perl-FileHandle to fix make check
8f966c
- Add BuildRequres: gcc [1]
8f966c
- Use make_build [2] and make_install[3] macros
8f966c
- [1] https://docs.fedoraproject.org/en-US/packaging-guidelines/C_and_C++/#_buildrequires_and_requires
8f966c
- [2] https://docs.fedoraproject.org/en-US/packaging-guidelines/#_parallel_make
8f966c
- [3] https://docs.fedoraproject.org/en-US/packaging-guidelines/#_why_the_makeinstall_macro_should_not_be_used
8f966c
8f966c
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.53-5
8f966c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
8f966c
8f966c
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.53-4
8f966c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
8f966c
8f966c
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.53-3
8f966c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
8f966c
8f966c
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.53-2
8f966c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
8f966c
8f966c
* Mon Jul 02 2018 Kamil Dudka <kdudka@redhat.com> 2.2.53-1
8f966c
- new upstream release
8f966c
8f966c
* Tue Mar 13 2018 Kamil Dudka <kdudka@redhat.com> 2.2.52-21
8f966c
- update link to POSIX.1e draft in acl(5) man page (#1510527)
8f966c
8f966c
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.52-20
8f966c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
8f966c
8f966c
* Sun Feb 04 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.2.52-19
8f966c
- Switch to %%ldconfig_scriptlets
8f966c
8f966c
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.52-18
8f966c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
8f966c
8f966c
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.52-17
8f966c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
8f966c
8f966c
* Mon Jul 24 2017 Kamil Dudka <kdudka@redhat.com> 2.2.52-16
8f966c
- fix test-suite failure with perl-5.26.0 (#1473845)
8f966c
- update URL of the upstream source tarball
8f966c
8f966c
* Thu May 18 2017 Kamil Dudka <kdudka@redhat.com> 2.2.52-15
8f966c
- setfacl.1: document the meaning of '-' in perms (#1337039)
8f966c
- avoid failure of %%check when building as root (#1085389)
8f966c
- apply patches automatically to ease maintenance
8f966c
8f966c
* Wed May 17 2017 Kamil Dudka <kdudka@redhat.com> 2.2.52-14
8f966c
- drop obsolete BuildRoot and Group tags
8f966c
- fix spurious acl_check() failure on setfacl --restore (#1451826)
8f966c
8f966c
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.52-13
8f966c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
8f966c
8f966c
* Fri Feb 03 2017 Kamil Dudka <kdudka@redhat.com> 2.2.52-12
8f966c
- update project URL (#1418474)
8f966c
8f966c
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.52-11
8f966c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
8f966c
8f966c
* Fri Aug 14 2015 Adam Jackson <ajax@redhat.com> 2.2.52-10
8f966c
- Remove bizarre 12 year old libtool invocation workaround that prevented
8f966c
  hardened cflags working
8f966c
8f966c
* Tue Jun 16 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.52-9
8f966c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
8f966c
8f966c
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 2.2.52-8
8f966c
- Rebuilt for
8f966c
  https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
8f966c
8f966c
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.52-7
8f966c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
8f966c
8f966c
* Fri Jul 11 2014 Tom Callaway <spot@fedoraproject.org> - 2.2.52-6
8f966c
- tag licenses properly
8f966c
8f966c
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.52-5
8f966c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
8f966c
8f966c
* Fri Nov 01 2013 Kamil Dudka <kdudka@redhat.com> 2.2.52-4
8f966c
- fix SIGSEGV of getfacl -e on overly long group name
8f966c
8f966c
* Fri Aug 09 2013 Kamil Dudka <kdudka@redhat.com> 2.2.52-3
8f966c
- drop a docdir-related patch to fix a packaging failure (#993659)
8f966c
8f966c
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.52-2
8f966c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
8f966c
8f966c
* Mon May 20 2013 Kamil Dudka <kdudka@redhat.com> 2.2.52-1
8f966c
- new upstream release, drop applied patches
8f966c
- drop workarounds that are no longer necessary
8f966c
8f966c
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.51-9
8f966c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
8f966c
8f966c
* Tue Aug 28 2012 Kamil Dudka <kdudka@redhat.com> 2.2.51-8
8f966c
- fix specfile issues reported by the fedora-review script
8f966c
8f966c
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.51-7
8f966c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
8f966c
8f966c
* Wed May 02 2012 Kamil Dudka <kdudka@redhat.com> 2.2.51-6
8f966c
- do not mention static libraries in the summary of libacl{,-devel} (#817952)
8f966c
8f966c
* Wed Jan 25 2012 Harald Hoyer <harald@redhat.com> 2.2.51-5
8f966c
- add filesystem guard
8f966c
8f966c
* Wed Jan 25 2012 Harald Hoyer <harald@redhat.com> 2.2.51-4
8f966c
- install everything in /usr
8f966c
  https://fedoraproject.org/wiki/Features/UsrMove
8f966c
8f966c
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.51-3
8f966c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
8f966c
8f966c
* Fri May 06 2011 Kamil Dudka <kdudka@redhat.com> 2.2.51-2
8f966c
- update project URL (#699058)
8f966c
8f966c
* Thu Apr 21 2011 Kamil Dudka <kdudka@redhat.com> 2.2.51-1
8f966c
- new upstream release
8f966c
8f966c
* Tue Apr 19 2011 Kamil Dudka <kdudka@redhat.com> 2.2.50-1
8f966c
- new upstream release
8f966c
8f966c
* Wed Apr 06 2011 Kamil Dudka <kdudka@redhat.com> 2.2.49-11
8f966c
- add function acl_extended_file_nofollow() (#692982)
8f966c
8f966c
* Tue Mar 29 2011 Kamil Dudka <kdudka@redhat.com> 2.2.49-10
8f966c
- fix typos in setfacl(1) man page (#675451)
8f966c
8f966c
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.49-9
8f966c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
8f966c
8f966c
* Thu Jul 08 2010 Kamil Dudka <kdudka@redhat.com> 2.2.49-8
8f966c
- remove dependency of libacl-devel on nfs-utils-lib and openldap
8f966c
8f966c
* Tue May 25 2010 Kamil Dudka <kdudka@redhat.com> 2.2.49-7
8f966c
- let acl depend on the same version of libacl (#595674)
8f966c
8f966c
* Wed Mar 24 2010 Kamil Dudka <kdudka@redhat.com> 2.2.49-6
8f966c
- prevent setfacl --restore from SIGSEGV on malformed restore file (#576550)
8f966c
8f966c
* Wed Mar 10 2010 Kamil Dudka <kdudka@redhat.com> 2.2.49-5
8f966c
- run the test-suite if possible
8f966c
8f966c
* Tue Jan 19 2010 Kamil Dudka <kdudka@redhat.com> 2.2.49-4
8f966c
- do not package a static library (#556036)
8f966c
- remove multilib patch no longer useful
8f966c
- cleanup in BuildRequires
8f966c
8f966c
* Tue Jan 05 2010 Kamil Dudka <kdudka@redhat.com> 2.2.49-3
8f966c
- upstream patch for setfacl --restore SUID/SGID bits handling (#467936)
8f966c
8f966c
* Sat Dec 26 2009 Kamil Dudka <kdudka@redhat.com> 2.2.49-2
8f966c
- tweaked setfacl tree walk flags (#488674), thanks to Markus Steinborn
8f966c
8f966c
* Sun Dec 20 2009 Kamil Dudka <kdudka@redhat.com> 2.2.49-1
8f966c
- new upstream bugfix release
8f966c
- big cleanup in patches
8f966c
8f966c
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.47-5
8f966c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
8f966c
8f966c
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.47-4
8f966c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
8f966c
8f966c
* Thu Jul 31 2008 Jiri Moskovcak <jmoskovc@redhat.com> 2.2.47-3
8f966c
- little improvement to params patch
8f966c
- Resolves: #457244
8f966c
8f966c
* Mon Jul 14 2008 Tom "spot" Callaway <tcallawa@redhat.com> 2.2.47-2
8f966c
- rework params patch to apply with fuzz=0
8f966c
- fix license tag
8f966c
8f966c
* Tue Feb 12 2008 Jiri Moskovcak <jmoskovc@redhat.com> 2.2.47-1
8f966c
- new upstream version
8f966c
8f966c
* Mon Jan 28 2008 Jiri Moskovcak <jmoskovc@redhat.com> 2.2.45-3
8f966c
- Fixed segfault when using only "--" as parameter
8f966c
- Resolves: #430458
8f966c
8f966c
* Wed Nov  7 2007 Jiri Moskovcak <jmoskovc@redhat.com> 2.2.45-2
8f966c
- Fixed setfacl exitcodes
8f966c
- Resolves: #368451
8f966c
8f966c
* Wed Oct 31 2007 Jiri Moskovcak <jmoskovc@redhat.com> - 2.2.45-1
8f966c
- New version
8f966c
- dropped walk patch
8f966c
8f966c
* Thu Sep 20 2007 Jiri Moskovcak <jmoskovc@redhat.com> 2.2.39-10
8f966c
- Rewriten path_max patch to support long UTF8 names
8f966c
- Resolves #287701, #183181
8f966c
8f966c
* Fri Aug 31 2007 Steve Dickson <steved@redhat.com> - 2.2.39-9
8f966c
- Removed NFS4 ACL patch since it was rejected by upstream.
8f966c
8f966c
* Thu Aug 30 2007 Jeremy Katz <katzj@redhat.com> - 2.2.39-8
8f966c
- disable nfs patch; linking libacl against libs in /usr will lead to breakage
8f966c
8f966c
* Wed Aug 29 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 2.2.39-7
8f966c
- Build Require gawk
8f966c
8f966c
* Wed Aug 29 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 2.2.39-6
8f966c
- Rebuild for selinux ppc32 issue.
8f966c
8f966c
* Mon Aug 27 2007 Steve Dickson <steved@redhat.com>  2.2.39-5
8f966c
- Added NFS v4 ACL support
8f966c
8f966c
* Thu Jul 26 2007 Jiri Moskovcak <jmoskovc@redhat.com> 2.2.39-4.1
8f966c
- Updated man page for getfacl
8f966c
8f966c
* Wed Jul 25 2007 Jiri Moskovcak <jmoskovc@redhat.com> 2.2.39-4
8f966c
- Added support fort short params to getfacl
8f966c
- Resolves: #204087
8f966c
8f966c
* Wed Mar 21 2007 Thomas Woerner <twoerner@redhat.com> 2.2.39-3.1
8f966c
- new improved walk patch with fixed getfacl exit code (rhbz#232884)
8f966c
8f966c
* Fri Feb 23 2007 Karsten Hopp <karsten@redhat.com> 2.2.39-3
8f966c
- fix buildroot
8f966c
- remove trailing dot from summary
8f966c
- -devel requires same version of libacl
8f966c
- escape macro in changelog
8f966c
- make .so symlink relative
8f966c
8f966c
* Thu Feb 22 2007 Steve Grubb <sgrubb@redhat.com> 2.2.39-2
8f966c
- Apply patch to make order consistent.
8f966c
8f966c
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.2.39-1.1
8f966c
- rebuild
8f966c
8f966c
* Wed Jul  5 2006 Thomas Woerner <twoerner@redhat.com> 2.2.39-1
8f966c
- new version 2.2.39
8f966c
- fixed usage of long UTF-8 filenames (#183181)
8f966c
  Thanks to Andrey for the initial patch.
8f966c
8f966c
* Wed Jun  7 2006 Jeremy Katz <katzj@redhat.com> - 2.2.34-2
8f966c
- rebuild for -devel deps
8f966c
8f966c
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.2.34-1.2
8f966c
- bump again for double-long bug on ppc(64)
8f966c
8f966c
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.2.34-1.1
8f966c
- rebuilt for new gcc4.1 snapshot and glibc changes
8f966c
8f966c
* Fri Feb  3 2006 Thomas Woerner <twoerner@redhat.com> 2.2.34-1
8f966c
- new version 2.2.34
8f966c
8f966c
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
8f966c
- rebuilt
8f966c
8f966c
* Tue Dec  6 2005 Thomas Woerner <twoerner@redhat.com> 2.2.32-2.1
8f966c
- fixed permissions of libacl
8f966c
8f966c
* Tue Dec  6 2005 Thomas Woerner <twoerner@redhat.com> 2.2.32-2
8f966c
- spec file cleanup
8f966c
- mark po files as lang specific
8f966c
8f966c
* Sun Nov 06 2005 Florian La Roche <laroche@redhat.com>
8f966c
- 2.2.32
8f966c
8f966c
* Wed Sep 28 2005 Than Ngo <than@redhat.com> 2.2.31-1
8f966c
- update to 2.2.31
8f966c
8f966c
* Wed Sep 28 2005 Than Ngo <than@redhat.com> 2.2.23-9
8f966c
- get rid of *.la files
8f966c
- remove duplicate doc files
8f966c
8f966c
* Wed Feb  9 2005 Stephen C. Tweedie <sct@redhat.com> 2.2.23-6
8f966c
- Rebuild
8f966c
8f966c
* Thu Sep 16 2004 Jeremy Katz <katzj@redhat.com> - 2.2.23-5
8f966c
- make the libs executable so that we find their dependencies (#132696)
8f966c
8f966c
* Fri Sep 10 2004 Stephen C. Tweedie <sct@redhat.com> 2.2.23-4
8f966c
- libacl-devel Requires: libattr-devel for libattr.la
8f966c
8f966c
* Fri Sep 10 2004 Stephen C. Tweedie <sct@redhat.com> 2.2.23-3
8f966c
- Requires libtool >= 1.5 for building
8f966c
8f966c
* Thu Aug 19 2004 Phil Knirsch <pknirsch@redhat.com> 2.2.23-2
8f966c
- Make libacl.so.* executable.
8f966c
8f966c
* Thu Aug 19 2004 Phil Knirsch <pknirsch@redhat.com> 2.2.23-1
8f966c
- Update to latest upstream version.
8f966c
8f966c
* Sun Aug  8 2004 Alan Cox <alan@redhat.com> 2.2.7-7
8f966c
- Close bug #125300 (Steve Grubb: build requires libtool,gettext)
8f966c
8f966c
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
8f966c
- rebuilt
8f966c
8f966c
* Wed Mar 31 2004 Stephen C. Tweedie <sct@redhat.com> 2.2.7-5
8f966c
- Add missing %%defattr
8f966c
8f966c
* Tue Mar 30 2004 Stephen C. Tweedie <sct@redhat.com> 2.2.7-3
8f966c
- Add /usr/include/acl to files manifest
8f966c
- Fix location of doc files, add main doc dir to files manifest
8f966c
8f966c
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
8f966c
- rebuilt
8f966c
8f966c
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
8f966c
- rebuilt
8f966c
8f966c
* Tue Aug  5 2003 Elliot Lee <sopwith@redhat.com> 2.2.7-2
8f966c
- Fix libtool invocation
8f966c
8f966c
* Tue Jun  3 2003 Stephen C. Tweedie <sct@redhat.com> 2.2.7-1
8f966c
- Update to acl-2.2.7
8f966c
8f966c
* Wed Mar 26 2003 Michael K. Johnson <johnsonm@redhat.com> 2.2.3-2
8f966c
- include patch from Jay Berkenbilt to print better error messages
8f966c
8f966c
* Tue Jan 28 2003 Michael K. Johnson <johnsonm@redhat.com> 2.2.3-1
8f966c
- udpate/rebuild
8f966c
8f966c
* Sat Jan  4 2003 Jeff Johnson <jbj@redhat.com> 2.0.11-7
8f966c
- set execute bits on library so that requires are generated.
8f966c
8f966c
* Tue Nov 19 2002 Elliot Lee <sopwith@redhat.com> 2.0.11-5
8f966c
- Correct patch in previous fix so that shared libraries go in /lib* 
8f966c
  instead of /usr/lib*
8f966c
8f966c
* Tue Nov 19 2002 Elliot Lee <sopwith@redhat.com> 2.0.11-4
8f966c
- Fix multilibbing
8f966c
8f966c
* Wed Sep 11 2002 Than Ngo <than@redhat.com> 2.0.11-3
8f966c
- Added fix to install libs in correct directory on 64bit machine
8f966c
8f966c
* Thu Aug 08 2002 Michael K. Johnson <johnsonm@redhat.com> 2.0.11-2
8f966c
- Made the package only own the one directory that is unique to it:
8f966c
  /usr/include/acl
8f966c
8f966c
* Mon Jun 24 2002 Michael K. Johnson <johnsonm@redhat.com> 2.0.11-1
8f966c
- Initial Red Hat package
8f966c
  Made as few changes as possible relative to upstream packaging to
8f966c
  make it easier to maintain long-term.  This means that some of
8f966c
  the techniques used here are definitely not standard Red Hat
8f966c
  techniques.  If you are looking for an example package to fit
8f966c
  into Red Hat Linux transparently, this would not be the one to
8f966c
  pick.
8f966c
- acl-devel -> libacl-devel