Blame SPECS/attr.spec

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