Blame SPECS/libmtp.spec

2d8b88
# SPEC file for libmtp, primary target is the Fedora
2d8b88
# RPM repository.
2d8b88
2d8b88
Name:           libmtp
2d8b88
Version:        1.1.18
12dd48
Release:        6%{?dist}
2d8b88
Summary:        Software library for MTP media players
2d8b88
URL:            http://libmtp.sourceforge.net/
2d8b88
2d8b88
Source0:        https://download.sourceforge.net/%{name}/%{name}-%{version}.tar.gz
2d8b88
License:        LGPLv2+
2d8b88
Requires:       udev
2d8b88
BuildRequires:  gcc
2d8b88
BuildRequires:  make
2d8b88
BuildRequires:  pkgconfig(libusb-1.0)
2d8b88
BuildRequires:  doxygen
2d8b88
%if ! 0%{?rhel}
2d8b88
BuildRequires:  libgcrypt-devel
2d8b88
%endif
2d8b88
BuildRequires:  chrpath
2d8b88
2d8b88
Patch0:         0001-doc-Don-t-document-internal-endian-macros.patch
2d8b88
2d8b88
%description
2d8b88
This package provides a software library for communicating with MTP
2d8b88
(Media Transfer Protocol) media players, typically audio players, video
2d8b88
players etc.
2d8b88
2d8b88
%package examples
2d8b88
Summary:        Example programs for libmtp
2d8b88
Requires:       %{name}%{?_isa} = %{version}-%{release}
2d8b88
2d8b88
%description examples
2d8b88
This package provides example programs for communicating with MTP
2d8b88
devices.
2d8b88
2d8b88
%package devel
2d8b88
Summary:        Development files for libmtp
2d8b88
Requires:       %{name}%{?_isa} = %{version}-%{release}
2d8b88
2d8b88
%description devel
2d8b88
This package provides development files for the libmtp
2d8b88
library for MTP media players.
2d8b88
2d8b88
%prep
2d8b88
%setup -q
2d8b88
%patch0 -p1
2d8b88
2d8b88
%build
2d8b88
%configure --disable-static \
2d8b88
           --with-udev-rules=69-libmtp.rules \
2d8b88
%if 0%{?rhel}
2d8b88
           --disable-mtpz \
2d8b88
%endif
2d8b88
            %{nil}
2d8b88
%make_build
2d8b88
2d8b88
%install
2d8b88
%make_install
2d8b88
# Remove libtool archive remnant
2d8b88
rm -f $RPM_BUILD_ROOT%{_libdir}/libmtp.la
2d8b88
# Replace links with relative links
2d8b88
rm -f $RPM_BUILD_ROOT%{_bindir}/mtp-delfile
2d8b88
rm -f $RPM_BUILD_ROOT%{_bindir}/mtp-getfile
2d8b88
rm -f $RPM_BUILD_ROOT%{_bindir}/mtp-newfolder
2d8b88
rm -f $RPM_BUILD_ROOT%{_bindir}/mtp-sendfile
2d8b88
rm -f $RPM_BUILD_ROOT%{_bindir}/mtp-sendtr
2d8b88
pushd $RPM_BUILD_ROOT%{_bindir}
2d8b88
ln -sf mtp-connect mtp-delfile
2d8b88
ln -sf mtp-connect mtp-getfile
2d8b88
ln -sf mtp-connect mtp-newfolder
2d8b88
ln -sf mtp-connect mtp-sendfile
2d8b88
ln -sf mtp-connect mtp-sendtr
2d8b88
popd
2d8b88
# Convert COPYING file to UTF-8
2d8b88
iconv -f iso-8859-1 -t utf-8 -o COPYING.utf8 COPYING
2d8b88
touch -r COPYING COPYING.utf8; mv -f COPYING.utf8 COPYING
2d8b88
# Copy documentation to a good place
2d8b88
mkdir -p -m 755 $RPM_BUILD_ROOT%{_pkgdocdir}
2d8b88
install -p -m 644 AUTHORS README TODO \
2d8b88
      $RPM_BUILD_ROOT%{_pkgdocdir}
2d8b88
# Move some autogenerated documentation where we want it
2d8b88
if [ $RPM_BUILD_ROOT/usr/share/doc/%{name}-%{version}/html != $RPM_BUILD_ROOT%{_pkgdocdir}/html ] ; then \
2d8b88
	mv $RPM_BUILD_ROOT/usr/share/doc/%{name}-%{version}/html \
2d8b88
		$RPM_BUILD_ROOT%{_pkgdocdir} ; \
2d8b88
fi
2d8b88
# Touch generated files to make them always have the same time stamp.
2d8b88
touch -r configure.ac \
2d8b88
      $RPM_BUILD_ROOT%{_includedir}/*.h \
2d8b88
      $RPM_BUILD_ROOT%{_libdir}/pkgconfig/*.pc
2d8b88
# Get rid of -rpath
2d8b88
chrpath --delete $RPM_BUILD_ROOT{%{_bindir},/usr/lib/udev}/mtp*
2d8b88
2d8b88
%ldconfig_scriptlets
2d8b88
2d8b88
%files
2d8b88
%license COPYING
2d8b88
%{_libdir}/libmtp.so.9*
2d8b88
/usr/lib/udev/rules.d/69-libmtp.rules
2d8b88
/usr/lib/udev/hwdb.d/69-libmtp.hwdb
2d8b88
/usr/lib/udev/mtp-probe
2d8b88
2d8b88
%files examples
2d8b88
%{_bindir}/mtp-*
2d8b88
2d8b88
%files devel
2d8b88
%{_libdir}/libmtp.so
2d8b88
%{_pkgdocdir}
2d8b88
%{_includedir}/libmtp.h
2d8b88
%{_libdir}/pkgconfig/libmtp.pc
2d8b88
2d8b88
%changelog
12dd48
* Fri Jan 21 2022 Ondrej Holy <oholy@redhat.com> - 1.1.18-6
12dd48
- Ship libmtp-devel in CRB (#2026310)
12dd48
2d8b88
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1.1.18-5
2d8b88
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
2d8b88
  Related: rhbz#1991688
2d8b88
2d8b88
* Wed May 26 2021 Ondrej Holy <oholy@redhat.com> - 1.1.18-4
2d8b88
- Drop redundant devel requires
2d8b88
- Disable MTPZ support in RHEL
2d8b88
- Use pkgconfig for libusb
2d8b88
2d8b88
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1.1.18-3
2d8b88
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
2d8b88
2d8b88
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.18-2
2d8b88
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
2d8b88
2d8b88
* Tue Jan 05 2021 Robert Scheck <robert@fedoraproject.org> - 1.1.18-1
2d8b88
- Upgrade to 1.1.18
2d8b88
2d8b88
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.16-5
2d8b88
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
2d8b88
2d8b88
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.16-4
2d8b88
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
2d8b88
2d8b88
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.16-3
2d8b88
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
2d8b88
2d8b88
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.16-2
2d8b88
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
2d8b88
2d8b88
* Fri Nov 16 2018 Linus Walleij <linus.ml.walleij@gmail.com> - 1.1.16
2d8b88
+ libmtp-1.1.16-1
2d8b88
- New upstream release 1.1.16.
2d8b88
- Suddenly reappear doing package maintenance duties.
2d8b88
2d8b88
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.14-4
2d8b88
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
2d8b88
2d8b88
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.14-3
2d8b88
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
2d8b88
2d8b88
* Sat Feb 03 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.1.14-2
2d8b88
- Switch to %%ldconfig_scriptlets
2d8b88
2d8b88
* Mon Oct 09 2017 Bastien Nocera <bnocera@redhat.com> - 1.1.14-1
2d8b88
+ libmtp-1.1.14-1
2d8b88
- Update to 1.1.14
2d8b88
2d8b88
* Mon Oct 09 2017 Bastien Nocera <bnocera@redhat.com> - 1.1.13-7
2d8b88
+ libmtp-1.1.13-7
2d8b88
- Fix multilib conflicts in host specific internal header
2d8b88
2d8b88
* Wed Sep 06 2017 Bastien Nocera <bnocera@redhat.com> - 1.1.13-6
2d8b88
+ libmtp-1.1.13-5
2d8b88
- Fix build on EPEL7 where the doc directory is versioned
2d8b88
2d8b88
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.13-5
2d8b88
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
2d8b88
2d8b88
* Mon Jul 31 2017 Florian Weimer <fweimer@redhat.com> - 1.1.13-4
2d8b88
- Rebuild with binutils fix for ppc64le (#1475636)
2d8b88
2d8b88
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.13-3
2d8b88
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
2d8b88
2d8b88
* Mon Jul 10 2017 Dominik Mierzejewski <dominik@greysector.net> - 1.1.13-2
2d8b88
- Use https source URL
2d8b88
- Drop obsolete spec elements
2d8b88
- Use license macro
2d8b88
- Update libusbx-devel build dependency
2d8b88
- Drop ancient (F15) Obsoletes:
2d8b88
- Tighten file list
2d8b88
2d8b88
* Tue Jun 27 2017 Robert Scheck <robert@fedoraproject.org> - 1.1.13-1
2d8b88
- Update to 1.1.13 (#1412546, #1465038, #1465040)
2d8b88
2d8b88
* Mon Jun 26 2017 Debarshi Ray <rishi@fedoraproject.org> - 1.1.12-1
2d8b88
- Update to 1.1.12
2d8b88
2d8b88
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.11-2
2d8b88
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
2d8b88
2d8b88
* Sun Jun 12 2016 Linus Walleij <triad@dflund.se> - 1.1.11-1
2d8b88
- Update to 1.1.11
2d8b88
- New upstream version with many fixes and additional devices
2d8b88
- Notably Nexus 6P is fixed to work in this release
2d8b88
2d8b88
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.10-2
2d8b88
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
2d8b88
2d8b88
* Tue Dec 29 2015 Robert Scheck <robert@fedoraproject.org> - 1.1.10-1
2d8b88
- Update to 1.1.10
2d8b88
2d8b88
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.9-2
2d8b88
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
2d8b88
2d8b88
* Mon May 11 2015 Linus Walleij <triad@df.lth.se> - 1.1.9-1
2d8b88
- New upstream version with many fixes.
2d8b88
- Require libgrypt-devel to build, build libmtpz.
2d8b88
- Install hwdb file.
2d8b88
- Move documentation to a good place.
2d8b88
2d8b88
* Tue Aug 26 2014 Linus Walleij <triad@df.lth.se> - 1.1.8-1
2d8b88
- Get the bug fix below from upstream instead.
2d8b88
2d8b88
* Tue Aug 26 2014 Linus Walleij <triad@df.lth.se> - 1.1.7-2
2d8b88
- Fix an include problem. Or try to.
2d8b88
2d8b88
* Sun Aug 24 2014 Linus Walleij <triad@df.lth.se> - 1.1.7-1
2d8b88
- New upstream version.
2d8b88
2d8b88
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.6-4
2d8b88
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
2d8b88
2d8b88
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.6-3
2d8b88
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
2d8b88
2d8b88
* Wed Aug  7 2013 Ville Skyttä <ville.skytta@iki.fi> - 1.1.6-2
2d8b88
- Install docs to %%{_pkgdocdir} where available.
2d8b88
- Move license file to main package.
2d8b88
- Fix bogus dates in %%changelog.
2d8b88
2d8b88
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.6-1
2d8b88
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
2d8b88
2d8b88
* Fri Mar 15 2013 Linus Walleij <triad@df.lth.se> 1.1.6-0
2d8b88
- New upstream version, several bug fixes, apropriate for GVFS etc.
2d8b88
2d8b88
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.5-3
2d8b88
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
2d8b88
2d8b88
* Wed Oct 17 2012 Linus Walleij <triad@df.lth.se> 1.1.5-2
2d8b88
- Explicit disable MTPZ for now.
2d8b88
2d8b88
* Thu Sep 13 2012 Linus Walleij <triad@df.lth.se> 1.1.5-1
2d8b88
- New upstream version with several bug fixes.
2d8b88
2d8b88
* Sat Aug 18 2012 Linus Walleij <triad@df.lth.se> 1.1.4-1
2d8b88
- New upstream version with several bug fixes.
2d8b88
2d8b88
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.3-3
2d8b88
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
2d8b88
2d8b88
* Tue Apr 03 2012 Linus Walleij <triad@df.lth.se> 1.1.3-2
2d8b88
- Use libusb-1.0 for sure, come on.
2d8b88
2d8b88
* Tue Apr 03 2012 Linus Walleij <triad@df.lth.se> 1.1.3-1
2d8b88
- Upstream update with several bug fixes including Fedora patch
2d8b88
2d8b88
* Sat Jan 28 2012 Linus Walleij <triad@df.lth.se> 1.1.2-2
2d8b88
- Bugfix to avoid probing Canon scanners
2d8b88
2d8b88
* Thu Jan 12 2012 Linus Walleij <triad@df.lth.se> 1.1.2-1
2d8b88
- Upstream update to use libusb-1.0 and other fixes.
2d8b88
2d8b88
* Thu Nov 10 2011 Linus Walleij <triad@df.lth.se> 1.1.1-2
2d8b88
- Add an Obsoletes: libmtp-hal so that users can upgrade from F15
2d8b88
2d8b88
* Sat Oct 22 2011 Linus Walleij <triad@df.lth.se> 1.1.1-1
2d8b88
- New upstream version fixing problems with a few color devices
2d8b88
  plus adding new device support. Move udev rules from level
2d8b88
  60 to level 69 to come after SANE and avoid probing these
2d8b88
  devices.
2d8b88
2d8b88
* Fri Jun 10 2011 Rex Dieter <rdieter@fedoraproject.org> 1.1.0-2
2d8b88
- %%files: track abi/soname, so bumps aren't a surprise
2d8b88
2d8b88
* Wed Jun 08 2011 Linus Walleij <triad@df.lth.se> 1.1.0-1
2d8b88
- New upstream version including fixed bugs and the patch we
2d8b88
  used to carry. Dependecies need to be rebuilt. (New
2d8b88
  soversion)
2d8b88
2d8b88
* Tue Jun 07 2011 Linus Walleij <triad@df.lth.se> 1.0.6-3
2d8b88
- Nuke HAL dependency.
2d8b88
2d8b88
* Fri Apr 01 2011 Linus Walleij <triad@df.lth.se> 1.0.6-2
2d8b88
- Maybe fixing a probing issue on an input device.
2d8b88
2d8b88
* Sat Feb 12 2011 Linus Walleij <triad@df.lth.se> 1.0.6-1
2d8b88
- New upstream release fixing bugs & more things we patched.
2d8b88
2d8b88
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.5-2
2d8b88
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
2d8b88
2d8b88
* Sat Feb 5 2011 Linus Walleij <triad@df.lth.se> 1.0.5-1
2d8b88
- New upstream release fixing all the things we patched.
2d8b88
2d8b88
* Mon Jan 24 2011 Linus Walleij <triad@df.lth.se> 1.0.4-3
2d8b88
- Screwed up boolean logic in last patch, fixing it.
2d8b88
2d8b88
* Wed Jan 19 2011 Linus Walleij <triad@df.lth.se> 1.0.4-2
2d8b88
- Testing out a patch to be more careful when probing devices.
2d8b88
2d8b88
* Sun Jan 9 2011 Linus Walleij <triad@df.lth.se> 1.0.4-1
2d8b88
- New upstream version with mucho udev fixes.
2d8b88
2d8b88
* Wed Dec 1 2010 Linus Walleij <triad@df.lth.se> 1.0.3-7
2d8b88
- Now even with correct commas and stuff in udev actions.
2d8b88
2d8b88
* Tue Nov 30 2010 Linus Walleij <triad@df.lth.se> 1.0.3-6
2d8b88
- It appears adding ENV{ID_MTP_DEVICE}="1",
2d8b88
  ENV{ID_MEDIA_PLAYER}="1" is the way forward so testing this
2d8b88
  before pushing a new libmtp release.
2d8b88
2d8b88
* Thu Jun 17 2010 Bastien Nocera <bnocera@redhat.com> 1.0.3-5
2d8b88
- Split out hal sub-package
2d8b88
2d8b88
* Thu Jun 10 2010 Linus Walleij <triad@df.lth.se> 1.0.3-4
2d8b88
- Set ENV{ACL_MANAGE}="0" and TAG+="udev-acl" akin to rfkill
2d8b88
  apparently this may be an interrim solution.
2d8b88
2d8b88
* Sat Jun 05 2010 Linus Walleij <triad@df.lth.se> 1.0.3-3
2d8b88
- Remove ENV{ACL_MANAGE} after Bastiens bug report.
2d8b88
2d8b88
* Tue May 25 2010 Linus Walleij <triad@df.lth.se> 1.0.3-2
2d8b88
- Replace hal-filesystem dependence with hal-info
2d8b88
  We can remove this altogether once all apps are cleansed
2d8b88
  from HAL.
2d8b88
2d8b88
* Sun May 23 2010 Linus Walleij <triad@df.lth.se> 1.0.3-1
2d8b88
- New upstream version, bug fixes.
2d8b88
2d8b88
* Wed Feb 3 2010 Linus Walleij <triad@df.lth.se> 1.0.2-1
2d8b88
- New upstream version, lots of bug fixes.
2d8b88
2d8b88
* Wed Jan 20 2010 Bastien Nocera <bnocera@redhat.com> 1.0.1-3
2d8b88
- Require hal-filesystem, instead of HAL
2d8b88
2d8b88
* Tue Dec 1 2009 Linus Walleij <triad@df.lth.se> 1.0.1-2
2d8b88
- Two patches from Dan Nicholson to fix up the udev rules a bit.
2d8b88
2d8b88
* Sat Sep 12 2009 Linus Walleij <triad@df.lth.se> 1.0.1-1
2d8b88
- New upstream release. No interface changes!
2d8b88
2d8b88
* Tue Aug 4 2009 Linus Walleij <triad@df.lth.se> 1.0.0-1
2d8b88
- New upstream release. Dependent packages need to be rebuilt against this.
2d8b88
2d8b88
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3.7-2
2d8b88
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
2d8b88
2d8b88
* Tue Mar 17 2009 Linus Walleij <triad@df.lth.se> 0.3.7-1
2d8b88
- New upstream bugfix release.
2d8b88
2d8b88
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3.6-2
2d8b88
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
2d8b88
2d8b88
* Thu Jan 22 2009 Linus Walleij <triad@df.lth.se> 0.3.6-1
2d8b88
- New upstream bugfix release.
2d8b88
2d8b88
* Sun Dec 21 2008 Linus Walleij <triad@df.lth.se> 0.3.5-1
2d8b88
- New upstream bugfix release.
2d8b88
- Nuke documentation again. Multilib no like.
2d8b88
2d8b88
* Fri Nov 7 2008 Linus Walleij <triad@df.lth.se> 0.3.4-1
2d8b88
- New upstream bugfix release.
2d8b88
- Bastiens patch is upstreamed, dropping that patch.
2d8b88
2d8b88
* Sat Oct 25 2008 - Bastien Nocera <bnocera@redhat.com> - 0.3.3-4
2d8b88
- Update device list from CVS and fix the build
2d8b88
2d8b88
* Sat Oct 25 2008 - Bastien Nocera <bnocera@redhat.com> - 0.3.3-3
2d8b88
- Add support for more Nokia phones from their WMP10 drivers
2d8b88
2d8b88
* Fri Oct 24 2008 - Bastien Nocera <bnocera@redhat.com> - 0.3.3-2
2d8b88
- Add support for the Nokia N82
2d8b88
2d8b88
* Fri Sep 26 2008 Linus Walleij <triad@df.lth.se> 0.3.3-1
2d8b88
- New upstream bugfix release.
2d8b88
2d8b88
* Sat Sep 20 2008 Linus Walleij <triad@df.lth.se> 0.3.2-1
2d8b88
- New upstream version. (API and ABI compatible.) Fixes
2d8b88
  bugs on Creative devices.
2d8b88
2d8b88
* Tue Aug 26 2008 Linus Walleij <triad@df.lth.se> 0.3.1-1
2d8b88
- New upstream version. (API and ABI compatible.)
2d8b88
2d8b88
* Thu Aug 7 2008 Linus Walleij <triad@df.lth.se> 0.3.0-1
2d8b88
- Upgrade to 0.3.0. This has to happen some way, perhaps the
2d8b88
  painful way: I upgrade to gnomad2 2.9.2 that use 0.3.0 and
2d8b88
  then I write patches to Rhythmbox and Amarok to use 0.3.0
2d8b88
  and also send these upstream.
2d8b88
2d8b88
* Fri Jul 11 2008 Linus Walleij <triad@df.lth.se> 0.2.6.1-3
2d8b88
- Loose PAM console permissions, also assume that we can ship
2d8b88
  documentation again since Doxygen has been updated. Fedora
2d8b88
  HALd rules for the portable_audio_player capability in
2d8b88
  20-acl-management.fdi will change permissions on the device
2d8b88
  node for each plugged-in device.
2d8b88
2d8b88
* Fri May 23 2008 Adam Jackson <ajax@redhat.com> 0.2.6.1-2
2d8b88
- libmtp-0.2.6.1-simpler-rules.patch: Simplify udev rules for faster bootup.
2d8b88
2d8b88
* Sat Mar 8 2008 Linus Walleij <triad@df.lth.se> 0.2.6.1-1
2d8b88
- New upstream bugfix release.
2d8b88
2d8b88
* Sun Mar 2 2008 Linus Walleij <triad@df.lth.se> 0.2.6-1
2d8b88
- New upstream release.
2d8b88
2d8b88
* Sat Feb 9 2008 Linus Walleij <triad@df.lth.se> 0.2.5-2
2d8b88
- Rebuild for GCC 4.3.
2d8b88
2d8b88
* Wed Jan 9 2008 Linus Walleij <triad@df.lth.se> 0.2.5-1
2d8b88
- New upstream release.
2d8b88
2d8b88
* Thu Nov 22 2007 Linus Walleij <triad@df.lth.se> 0.2.4-1
2d8b88
- New upstream release.
2d8b88
2d8b88
* Thu Oct 25 2007 Linus Walleij <triad@df.lth.se> 0.2.3-1
2d8b88
- New upstream release.
2d8b88
- New soname libmtp.so.7 so all apps using libmtp have to
2d8b88
  be recompiled, have fun.
2d8b88
- If it works out we'll try to reserve a spot to backport
2d8b88
  this fixed version to F8 and F7 in a controlled manner.
2d8b88
2d8b88
* Wed Oct 24 2007 Linus Walleij <triad@df.lth.se> 0.2.2-2
2d8b88
- Flat out KILL the Doxygen HTML docs to resolve multiarch conflicts.
2d8b88
  Either upstream (that's me!) needs to work around the HTML files being
2d8b88
  different each time OR Doxygen must stop generating anchors that
2d8b88
  hash the system time, creating different files with each generation.
2d8b88
  Pre-generating the docs is deemed silly. (Someone will disagree.)
2d8b88
2d8b88
* Fri Aug 17 2007 Linus Walleij <triad@df.lth.se> 0.2.2-1
2d8b88
- New upstream release.
2d8b88
2d8b88
* Fri Aug 17 2007 Linus Walleij <triad@df.lth.se> 0.2.1-2
2d8b88
- License field update from LGPL to LGPLv2+
2d8b88
2d8b88
* Tue Aug 7 2007 Linus Walleij <triad@df.lth.se> 0.2.1-1
2d8b88
- Upstream bugfix release.
2d8b88
2d8b88
* Sat Aug 4 2007 Linus Walleij <triad@df.lth.se> 0.2.0-1
2d8b88
- New upstream release.
2d8b88
- Fixes (hopefully) the issues found by Harald.
2d8b88
- Dependent apps will need to recompile and patch some minor code.
2d8b88
2d8b88
* Mon Jul 30 2007 Harald Hoyer <harald@redhat.com> - 0.1.5-2
2d8b88
- changed udev rules for new kernel and udev versions
2d8b88
2d8b88
* Mon Mar 26 2007 Linus Walleij <triad@df.lth.se> 0.1.5-1
2d8b88
- New upstream release.
2d8b88
- Candidate for FC5, FC6 backport.
2d8b88
- Hopefully API/ABI compatible, testing in devel tree.
2d8b88
2d8b88
* Wed Mar 7 2007 Linus Walleij <triad@df.lth.se> 0.1.4-1
2d8b88
- New upstream release.
2d8b88
- Candidate for FC5, FC6 backport.
2d8b88
- Hopefully API/ABI compatible, testing in devel tree.
2d8b88
2d8b88
* Wed Jan 17 2007 Linus Walleij <triad@df.lth.se> 0.1.3-1
2d8b88
- New upstream release.
2d8b88
- Candidate for FC5, FC6 backport.
2d8b88
2d8b88
* Thu Dec 7 2006 Linus Walleij <triad@df.lth.se> 0.1.0-1
2d8b88
- New upstream release.
2d8b88
- Start providing HAL rules.
2d8b88
2d8b88
* Fri Oct 20 2006 Linus Walleij <triad@df.lth.se> 0.0.21-1
2d8b88
- New upstream release.
2d8b88
2d8b88
* Tue Sep 26 2006 Linus Walleij <triad@df.lth.se> 0.0.20-1
2d8b88
- New upstream release.
2d8b88
- Updated after review by Parag AN, Kevin Fenzi and Ralf Corsepius.
2d8b88
- Fixed pkgconfig bug upstream after being detected by Ralf...
2d8b88
2d8b88
* Sun Aug 27 2006 Linus Walleij <triad@df.lth.se> 0.0.15-1
2d8b88
- New upstream release.
2d8b88
2d8b88
* Wed Aug 23 2006 Linus Walleij <triad@df.lth.se> 0.0.13-1
2d8b88
- First RPM'ed