Blame SPECS/attr.spec

3292e1
Summary: Utilities for managing filesystem extended attributes
3292e1
Name: attr
3292e1
Version: 2.5.1
3292e1
Release: 3%{?dist}
3292e1
Source: https://download-mirror.savannah.gnu.org/releases/attr/attr-%{version}.tar.gz
3292e1
3292e1
# xattr.conf: remove entries for NFSv4 ACLs namespaces (#1031423)
3292e1
# https://lists.nongnu.org/archive/html/acl-devel/2019-03/msg00000.html
3292e1
# https://lists.nongnu.org/archive/html/acl-devel/2019-03/msg00001.html
3292e1
# https://lists.nongnu.org/archive/html/acl-devel/2019-05/msg00000.html
3292e1
Patch3:  0003-attr-2.4.48-xattr-conf-nfs4-acls.patch
3292e1
3292e1
License: GPLv2+
3292e1
URL: https://savannah.nongnu.org/projects/attr
3292e1
BuildRequires: gettext
3292e1
BuildRequires: libtool
3292e1
BuildRequires: make
3292e1
Requires: libattr%{?_isa} = %{version}-%{release}
3292e1
3292e1
# needed for %%check
3292e1
BuildRequires: perl(FileHandle)
3292e1
3292e1
%description
3292e1
A set of tools for manipulating extended attributes on filesystem
3292e1
objects, in particular getfattr(1) and setfattr(1).
3292e1
An attr(1) command is also provided which is largely compatible
3292e1
with the SGI IRIX tool of the same name.
3292e1
3292e1
%package -n libattr
3292e1
Summary: Dynamic library for extended attribute support
3292e1
License: LGPLv2+
3292e1
Conflicts: filesystem < 3
3292e1
3292e1
%description -n libattr
3292e1
This package contains the libattr.so dynamic library which contains
3292e1
the extended attribute system calls and library functions.
3292e1
3292e1
%package -n libattr-devel
3292e1
Summary: Files needed for building programs with libattr
3292e1
License: LGPLv2+
3292e1
Requires: libattr%{?_isa} = %{version}-%{release}
3292e1
3292e1
# for <sys/xattr.h> which <attr/xattr.h> is symlinked to
3292e1
Requires: glibc-headers
3292e1
3292e1
# provides {,f,l}{get,list,remove,set}xattr.2 man pages
3292e1
Recommends: man-pages
3292e1
3292e1
%description -n libattr-devel
3292e1
This package contains header files and documentation needed to
3292e1
develop programs which make use of extended attributes.
3292e1
For Linux programs, the documented system call API is the
3292e1
recommended interface, but an SGI IRIX compatibility interface
3292e1
is also provided.
3292e1
3292e1
Currently only ext2, ext3, ext4 and XFS support extended attributes.
3292e1
The SGI IRIX compatibility API built above the Linux system calls is
3292e1
used by programs such as xfsdump(8), xfsrestore(8) and xfs_fsr(8).
3292e1
3292e1
You should install libattr-devel if you want to develop programs
3292e1
which make use of extended attributes.  If you install libattr-devel,
3292e1
you'll also want to install attr.
3292e1
3292e1
%prep
3292e1
%autosetup -p1
3292e1
3292e1
# FIXME: root tests are not ready for SELinux
3292e1
sed -e 's|test/root/getfattr.test||' \
3292e1
    -i test/Makemodule.am Makefile.in
3292e1
3292e1
%build
3292e1
%configure
3292e1
%make_build
3292e1
3292e1
%check
3292e1
if ./setfattr -n user.name -v value .; then
3292e1
    make check || exit $?
3292e1
else
3292e1
    echo '*** xattrs are probably not supported by the file system,' \
3292e1
         'the test-suite will NOT run ***'
3292e1
fi
3292e1
3292e1
%install
3292e1
%make_install
3292e1
3292e1
# get rid of libattr.a and libattr.la
3292e1
rm -f $RPM_BUILD_ROOT%{_libdir}/libattr.{l,}a
3292e1
3292e1
# drop already installed documentation, we will use an RPM macro to install it
3292e1
rm -rf $RPM_BUILD_ROOT%{_docdir}/%{name}*
3292e1
3292e1
# temporarily provide attr/xattr.h symlink until users are migrated (#1601482)
3292e1
ln -fs ../sys/xattr.h $RPM_BUILD_ROOT%{_includedir}/attr/xattr.h
3292e1
3292e1
%find_lang %{name}
3292e1
3292e1
%ldconfig_scriptlets -n libattr
3292e1
3292e1
%files -f %{name}.lang
3292e1
%doc doc/CHANGES
3292e1
%license doc/COPYING*
3292e1
%{_bindir}/attr
3292e1
%{_bindir}/getfattr
3292e1
%{_bindir}/setfattr
3292e1
%{_mandir}/man1/attr.1*
3292e1
%{_mandir}/man1/getfattr.1*
3292e1
%{_mandir}/man1/setfattr.1*
3292e1
3292e1
%files -n libattr-devel
3292e1
%{_libdir}/libattr.so
3292e1
%{_libdir}/pkgconfig/*.pc
3292e1
%{_includedir}/attr
3292e1
%{_mandir}/man3/attr_*.3.*
3292e1
3292e1
%files -n libattr
3292e1
%{_libdir}/libattr.so.*
3292e1
%config(noreplace) %{_sysconfdir}/xattr.conf
3292e1
3292e1
%changelog
3292e1
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 2.5.1-3
3292e1
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
3292e1
  Related: rhbz#1991688
3292e1
3292e1
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 2.5.1-2
3292e1
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
3292e1
3292e1
* Tue Mar 16 2021 Kamil Dudka <kdudka@redhat.com> - 2.5.1-1
3292e1
- new upstream release
3292e1
3292e1
* Fri Mar 12 2021 Kamil Dudka <kdudka@redhat.com> - 2.5.0-1
3292e1
- new upstream release
3292e1
3292e1
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.48-11
3292e1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
3292e1
3292e1
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.48-10
3292e1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
3292e1
3292e1
* Mon Jun 22 2020 Kamil Dudka <kdudka@redhat.com> - 2.4.48-9
3292e1
- add BR for perl(FileHandle) needed by %%check
3292e1
3292e1
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.48-8
3292e1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
3292e1
3292e1
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.48-7
3292e1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
3292e1
3292e1
* Mon Jun 10 2019 Kamil Dudka <kdudka@redhat.com> 2.4.48-6
3292e1
- xattr.conf: remove entries for NFSv4 ACLs namespaces (#1031423)
3292e1
3292e1
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.48-5
3292e1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
3292e1
3292e1
* Fri Aug 31 2018 Filipe Brandenburger <filbranden@gmail.com> 2.4.48-4
3292e1
- Switch compatibility functions back to syscall() to prevent issue in
3292e1
  interaction with fakechroot (https://github.com/dex4er/fakechroot/issues/57)
3292e1
3292e1
* Tue Jul 17 2018 Kamil Dudka <kdudka@redhat.com> 2.4.48-3
3292e1
- temporarily provide attr/xattr.h symlink until users are migrated (#1601482)
3292e1
3292e1
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.48-2
3292e1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
3292e1
3292e1
* Tue Jul 03 2018 Kamil Dudka <kdudka@redhat.com> 2.4.48-1
3292e1
- new upstream release
3292e1
3292e1
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.47-23
3292e1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
3292e1
3292e1
* Sat Feb 03 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.4.47-22
3292e1
- Switch to %%ldconfig_scriptlets
3292e1
3292e1
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.47-21
3292e1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
3292e1
3292e1
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.47-20
3292e1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
3292e1
3292e1
* Mon Jul 24 2017 Kamil Dudka <kdudka@redhat.com> 2.4.47-19
3292e1
- fix test-suite failure with perl-5.26.0 (#1473853)
3292e1
- apply patches automatically to ease maintenance
3292e1
- update URL of the upstream source tarball
3292e1
3292e1
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.47-18
3292e1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
3292e1
3292e1
* Fri Feb 03 2017 Kamil Dudka <kdudka@redhat.com> 2.4.47-17
3292e1
- update project URL (#1418475)
3292e1
3292e1
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.47-16
3292e1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
3292e1
3292e1
* Thu Jan 07 2016 Kamil Dudka <kdudka@redhat.com> 2.4.47-15
3292e1
- remove outdated tests from test/attr.test
3292e1
3292e1
* Mon Sep 14 2015 Kamil Dudka <kdudka@redhat.com> 2.4.47-14
3292e1
- make libattr-devel not insist on man-pages being installed (#1262605)
3292e1
3292e1
* Fri Aug 14 2015 Adam Jackson <ajax@redhat.com> 2.4.47-13
3292e1
- Remove bizarre 12 year old libtool invocation workaround that prevented
3292e1
  hardened cflags being applied
3292e1
3292e1
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.47-12
3292e1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
3292e1
3292e1
* Mon May 11 2015 Kamil Dudka <kdudka@redhat.com> 2.4.47-11
3292e1
- do not install the attr.5 man page (#1219987)
3292e1
3292e1
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 2.4.47-10
3292e1
- Rebuilt for Fedora 23 Change
3292e1
  https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
3292e1
3292e1
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.47-9
3292e1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
3292e1
3292e1
* Fri Jul 11 2014 Tom Callaway <spot@fedoraproject.org> - 2.4.47-8
3292e1
- mark license files properly
3292e1
3292e1
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.47-7
3292e1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
3292e1
3292e1
* Mon Mar 31 2014 Kamil Dudka <kdudka@redhat.com> 2.4.47-6
3292e1
- do not install {,f,l}{get,list,remove,set}xattr.2 man pages
3292e1
3292e1
* Tue Jan 21 2014 Kamil Dudka <kdudka@redhat.com> 2.4.47-5
3292e1
- refer to ENODATA instead of ENOATTR in man pages (#1055933)
3292e1
3292e1
* Tue Nov 19 2013 Kamil Dudka <kdudka@redhat.com> 2.4.47-4
3292e1
- provide /etc/xattr.conf to exclude copying certain extended attrs (#1031423)
3292e1
3292e1
* Fri Aug 09 2013 Kamil Dudka <kdudka@redhat.com> 2.4.47-3
3292e1
- drop a docdir-related patch to fix a packaging failure (#991997)
3292e1
3292e1
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.47-2
3292e1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
3292e1
3292e1
* Mon May 20 2013 Kamil Dudka <kdudka@redhat.com> 2.4.47-1
3292e1
- new upstream release, drop applied patches
3292e1
- drop workarounds that are no longer necessary
3292e1
3292e1
* Fri May 03 2013 Kamil Dudka <kdudka@redhat.com> 2.4.46-10
3292e1
- use <sys/syscalls.h> to fix build on aarch64 (#957989)
3292e1
3292e1
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.46-9
3292e1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
3292e1
3292e1
* Tue Aug 28 2012 Kamil Dudka <kdudka@redhat.com> 2.4.46-8
3292e1
- fix specfile issues reported by the fedora-review script
3292e1
3292e1
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.46-7
3292e1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
3292e1
3292e1
* Wed May 02 2012 Kamil Dudka <kdudka@redhat.com> 2.4.46-6
3292e1
- do not mention static libraries in the summary of libattr-devel (#817953)
3292e1
3292e1
* Wed Jan 25 2012 Harald Hoyer <harald@redhat.com> 2.4.46-5
3292e1
- add filesystem guard
3292e1
3292e1
* Wed Jan 25 2012 Harald Hoyer <harald@redhat.com> 2.4.46-4
3292e1
- install everything in /usr
3292e1
  https://fedoraproject.org/wiki/Features/UsrMove
3292e1
3292e1
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.46-3
3292e1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
3292e1
3292e1
* Fri May 06 2011 Kamil Dudka <kdudka@redhat.com> 2.4.46-2
3292e1
- update project URL (#702636)
3292e1
3292e1
* Thu Apr 21 2011 Kamil Dudka <kdudka@redhat.com> 2.4.46-1
3292e1
- new upstream release
3292e1
3292e1
* Tue Apr 19 2011 Kamil Dudka <kdudka@redhat.com> 2.4.45-1
3292e1
- new upstream release
3292e1
3292e1
* Tue Mar 29 2011 Kamil Dudka <kdudka@redhat.com> 2.2.44-8
3292e1
- fix typos in attr(1) man page (#669095)
3292e1
3292e1
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.44-7
3292e1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
3292e1
3292e1
* Wed Dec 22 2010 Kamil Dudka <kdudka@redhat.com> 2.2.44-6
3292e1
- setfattr.1: document supported encodings of values (#587516)
3292e1
- getfattr: encode NULs properly with --encoding=text (#650539)
3292e1
- getfattr: return non-zero exit code on failure (#660619)
3292e1
- walk_tree: do not follow symlink to directory with -h (#660613)
3292e1
3292e1
* Tue May 25 2010 Kamil Dudka <kdudka@redhat.com> 2.2.44-5
3292e1
- let attr depend on the same version of libattr (#595689)
3292e1
- silence compile-time warnings
3292e1
3292e1
* Wed Mar 10 2010 Kamil Dudka <kdudka@redhat.com> 2.2.44-4
3292e1
- run the test-suite if possible
3292e1
3292e1
* Tue Jan 19 2010 Kamil Dudka <kdudka@redhat.com> 2.2.44-3
3292e1
- do not package a static library (#556038)
3292e1
- remove multilib patch no longer useful
3292e1
- enable parallel make
3292e1
3292e1
* Thu Jan 07 2010 Kamil Dudka <kdudka@redhat.com> 2.4.44-2
3292e1
- cleanup in BuildRequires
3292e1
- updated source URL
3292e1
- re-downloaded source tarball from upstream (size changed by one)
3292e1
3292e1
* Wed Nov 25 2009 Kamil Dudka <kdudka@redhat.com> 2.4.44-1
3292e1
- new upstream release
3292e1
3292e1
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.43-4
3292e1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
3292e1
3292e1
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.43-3
3292e1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
3292e1
3292e1
* Wed Feb 18 2009 Zdenek Prikryl <zprikryl@redhat.com> 2.4.43-2
3292e1
- Fixed memory leaks (#485473)
3292e1
3292e1
* Wed Jul 16 2008 Zdenek Prikryl <zprikryl@redhat.com> 2.4.43-1
3292e1
- New version 2.4.43
3292e1
3292e1
* Mon Jul 14 2008 Tom "spot" Callaway <tcallawa@redhat.com> 2.4.41-2
3292e1
- fix license tags
3292e1
3292e1
* Wed Feb 13 2008 Zdenek Prikryl <zprikryl@redhat.com> 2.4.41-1
3292e1
- New version 2.4.41
3292e1
- Removed useless attr-2.0.8-docperms.patch
3292e1
3292e1
* Wed Oct 31 2007 Zdenek Prikryl <zprikryl@redhat.com> 2.4.39-1
3292e1
- New version 2.4.39
3292e1
- Resolves #284121
3292e1
3292e1
* Tue Oct 30 2007 Zdenek Prikryl <zprikryl@redhat.com> 2.4.38-2
3292e1
- Removed explicit Requires(post + postun)
3292e1
- Resolves #225290
3292e1
3292e1
* Tue Jul 31 2007 Zdenek Prikryl <zprikryl@redhat.com> 2.4.38-1
3292e1
- New version 2.4.38
3292e1
- Resolves #245415
3292e1
3292e1
* Fri Feb 23 2007 Karsten Hopp <karsten@redhat.com> 2.4.32-2
3292e1
- add disttag
3292e1
- remove trailing dot from summary
3292e1
- fix buildroot
3292e1
- -devel package requires same libattr version
3292e1
- change prereq to Requires(post)
3292e1
- escape macro in changelog
3292e1
- replace absolute link with relative link (libattr.so)
3292e1
- use %%doc macro
3292e1
3292e1
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.4.32-1.1
3292e1
- rebuild
3292e1
3292e1
* Wed Jul  5 2006 Thomas Woerner <twoerne@redhat.com> 2.4.32-1
3292e1
- new version 2.4.32
3292e1
- fixes segmentation fault in attr, which affects #189106
3292e1
3292e1
* Wed Jun  7 2006 Jeremy Katz <katzj@redhat.com> - 2.4.28-2
3292e1
- rebuild for -devel deps
3292e1
3292e1
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.4.28-1.2
3292e1
- bump again for double-long bug on ppc(64)
3292e1
3292e1
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.4.28-1.1
3292e1
- rebuilt for new gcc4.1 snapshot and glibc changes
3292e1
3292e1
* Fri Feb  3 2006 Thomas Woerner <twoerner@redhat.com> 2.4.28-1
3292e1
- new version 2.4.28
3292e1
3292e1
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
3292e1
- rebuilt
3292e1
3292e1
* Tue Dec  6 2005 Thomas Woerner <twoerner@redhat.com> 2.4.24-2
3292e1
- spec file cleanup
3292e1
- mark po files as lang specific
3292e1
3292e1
* Sun Nov 06 2005 Florian La Roche <laroche@redhat.com>
3292e1
- 2.4.24
3292e1
3292e1
* Wed Sep 28 2005 Than Ngo <than@redhat.com> 2.4.23-1
3292e1
- update to 2.4.23
3292e1
3292e1
* Wed Sep 28 2005 Than Ngo <than@redhat.com> 2.4.16-6
3292e1
- get rid of *.la files
3292e1
- remove duplicate doc files
3292e1
3292e1
* Wed Feb  9 2005 Stephen C. Tweedie <sct@redhat.com> 2.4.16-4
3292e1
- Rebuild
3292e1
3292e1
* Fri Sep 10 2004 Stephen C. Tweedie <sct@redhat.com> 2.4.16-3
3292e1
- Build requires libtool >= 1.5
3292e1
3292e1
* Thu Aug 19 2004 Phil Knirsch <pknirsch@redhat.com> 2.4.16-2
3292e1
- Make libattr.so.* executable.
3292e1
3292e1
* Thu Aug 19 2004 Phil Knirsch <pknirsch@redhat.com> 2.4.16-1
3292e1
- Update to latest upstream version.
3292e1
3292e1
* Sun Aug  8 2004 Alan Cox <alan@redhat.com> 2.4.1-6
3292e1
- Fix bug #125304 (Steve Grubb: build requires gettext)
3292e1
3292e1
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
3292e1
- rebuilt
3292e1
3292e1
* Wed Mar 31 2004 Stephen C. Tweedie <sct@redhat.com> 2.4.1-4
3292e1
- Add missing %%defattr
3292e1
3292e1
* Tue Mar 30 2004 Stephen C. Tweedie <sct@redhat.com> 2.4.1-3
3292e1
- Add /usr/include/attr to files manifest
3292e1
- Fix location of doc files, add main doc dir to files manifest
3292e1
3292e1
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
3292e1
- rebuilt
3292e1
3292e1
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
3292e1
- rebuilt
3292e1
3292e1
* Tue Aug  5 2003 Elliot Lee <sopwith@redhat.com> 2.4.1-2
3292e1
- Fix libtool
3292e1
3292e1
* Tue Jun  3 2003 Stephen C. Tweedie <sct@redhat.com> 2.4.1-1
3292e1
- update to attr-2.4.1
3292e1
3292e1
* Tue Jan 28 2003 Michael K. Johnson <johnsonm@redhat.com> 2.2.0-1
3292e1
- update/rebuild
3292e1
3292e1
* Sat Jan  4 2003 Jeff Johnson <jbj@redhat.com> 2.0.8-6
3292e1
- set execute bits on library so that requires are generated.
3292e1
3292e1
* Thu Nov 21 2002 Elliot Lee <sopwith@redhat.com> 2.0.8-5
3292e1
- Redo multilib patch to work everywhere
3292e1
3292e1
* Wed Sep 11 2002 Than Ngo <than@redhat.com> 2.0.8-4
3292e1
- Added fix to install libs in correct directory on 64bit machine 
3292e1
3292e1
* Thu Aug 08 2002 Michael K. Johnson <johnsonm@redhat.com> 2.0.8-3
3292e1
- Made the package only own the one directory that is unique to it:
3292e1
  /usr/include/attr
3292e1
3292e1
* Wed Jun 26 2002 Michael K. Johnson <johnsonm@redhat.com> 2.0.8-2
3292e1
- get perl out of base with attr-2.0.8-docperms.patch
3292e1
3292e1
* Mon Jun 24 2002 Michael K. Johnson <johnsonm@redhat.com> 2.0.8-1
3292e1
- Initial Red Hat package
3292e1
  Made as few changes as possible relative to upstream packaging to
3292e1
  make it easier to maintain long-term.  This means that some of
3292e1
  the techniques used here are definitely not standard Red Hat
3292e1
  techniques.  If you are looking for an example package to fit
3292e1
  into Red Hat Linux transparently, this would not be the one to
3292e1
  pick.
3292e1
- attr-devel -> libattr-devel