Compare commits
No commits in common. "c8s" and "c9" have entirely different histories.
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,2 +1 @@
|
|||||||
SOURCES/libmtp-1.1.14.tar.gz
|
SOURCES/libmtp-1.1.18.tar.gz
|
||||||
/libmtp-1.1.14.tar.gz
|
|
||||||
|
1
.libmtp.metadata
Normal file
1
.libmtp.metadata
Normal file
@ -0,0 +1 @@
|
|||||||
|
b2a1fe4cb2b908ee1ca5b1c7eb3615b9dbdb109f SOURCES/libmtp-1.1.18.tar.gz
|
@ -2,17 +2,21 @@
|
|||||||
# RPM repository.
|
# RPM repository.
|
||||||
|
|
||||||
Name: libmtp
|
Name: libmtp
|
||||||
Version: 1.1.14
|
Version: 1.1.18
|
||||||
Release: 3%{?dist}
|
Release: 6%{?dist}
|
||||||
Summary: A software library for MTP media players
|
Summary: Software library for MTP media players
|
||||||
URL: http://libmtp.sourceforge.net/
|
URL: http://libmtp.sourceforge.net/
|
||||||
|
|
||||||
Source0: https://download.sourceforge.net/%{name}/%{name}-%{version}.tar.gz
|
Source0: https://download.sourceforge.net/%{name}/%{name}-%{version}.tar.gz
|
||||||
License: LGPLv2+
|
License: LGPLv2+
|
||||||
Requires: udev
|
Requires: udev
|
||||||
BuildRequires: libusbx-devel
|
BuildRequires: gcc
|
||||||
|
BuildRequires: make
|
||||||
|
BuildRequires: pkgconfig(libusb-1.0)
|
||||||
BuildRequires: doxygen
|
BuildRequires: doxygen
|
||||||
|
%if ! 0%{?rhel}
|
||||||
BuildRequires: libgcrypt-devel
|
BuildRequires: libgcrypt-devel
|
||||||
|
%endif
|
||||||
BuildRequires: chrpath
|
BuildRequires: chrpath
|
||||||
|
|
||||||
Patch0: 0001-doc-Don-t-document-internal-endian-macros.patch
|
Patch0: 0001-doc-Don-t-document-internal-endian-macros.patch
|
||||||
@ -33,9 +37,6 @@ devices.
|
|||||||
%package devel
|
%package devel
|
||||||
Summary: Development files for libmtp
|
Summary: Development files for libmtp
|
||||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
Requires: pkgconfig
|
|
||||||
Requires: libusb1-devel
|
|
||||||
Requires: libgcrypt-devel
|
|
||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
This package provides development files for the libmtp
|
This package provides development files for the libmtp
|
||||||
@ -47,7 +48,11 @@ library for MTP media players.
|
|||||||
|
|
||||||
%build
|
%build
|
||||||
%configure --disable-static \
|
%configure --disable-static \
|
||||||
--with-udev-rules=69-libmtp.rules
|
--with-udev-rules=69-libmtp.rules \
|
||||||
|
%if 0%{?rhel}
|
||||||
|
--disable-mtpz \
|
||||||
|
%endif
|
||||||
|
%{nil}
|
||||||
%make_build
|
%make_build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
@ -72,7 +77,7 @@ iconv -f iso-8859-1 -t utf-8 -o COPYING.utf8 COPYING
|
|||||||
touch -r COPYING COPYING.utf8; mv -f COPYING.utf8 COPYING
|
touch -r COPYING COPYING.utf8; mv -f COPYING.utf8 COPYING
|
||||||
# Copy documentation to a good place
|
# Copy documentation to a good place
|
||||||
mkdir -p -m 755 $RPM_BUILD_ROOT%{_pkgdocdir}
|
mkdir -p -m 755 $RPM_BUILD_ROOT%{_pkgdocdir}
|
||||||
install -p -m 644 AUTHORS ChangeLog README TODO \
|
install -p -m 644 AUTHORS README TODO \
|
||||||
$RPM_BUILD_ROOT%{_pkgdocdir}
|
$RPM_BUILD_ROOT%{_pkgdocdir}
|
||||||
# Move some autogenerated documentation where we want it
|
# Move some autogenerated documentation where we want it
|
||||||
if [ $RPM_BUILD_ROOT/usr/share/doc/%{name}-%{version}/html != $RPM_BUILD_ROOT%{_pkgdocdir}/html ] ; then \
|
if [ $RPM_BUILD_ROOT/usr/share/doc/%{name}-%{version}/html != $RPM_BUILD_ROOT%{_pkgdocdir}/html ] ; then \
|
||||||
@ -96,17 +101,56 @@ chrpath --delete $RPM_BUILD_ROOT{%{_bindir},/usr/lib/udev}/mtp*
|
|||||||
/usr/lib/udev/mtp-probe
|
/usr/lib/udev/mtp-probe
|
||||||
|
|
||||||
%files examples
|
%files examples
|
||||||
%defattr(-,root,root,-)
|
|
||||||
%{_bindir}/mtp-*
|
%{_bindir}/mtp-*
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%defattr(-,root,root,-)
|
|
||||||
%{_libdir}/libmtp.so
|
%{_libdir}/libmtp.so
|
||||||
%{_pkgdocdir}
|
%{_pkgdocdir}
|
||||||
%{_includedir}/libmtp.h
|
%{_includedir}/libmtp.h
|
||||||
%{_libdir}/pkgconfig/libmtp.pc
|
%{_libdir}/pkgconfig/libmtp.pc
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Jan 21 2022 Ondrej Holy <oholy@redhat.com> - 1.1.18-6
|
||||||
|
- Ship libmtp-devel in CRB (#2026310)
|
||||||
|
|
||||||
|
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1.1.18-5
|
||||||
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||||
|
Related: rhbz#1991688
|
||||||
|
|
||||||
|
* Wed May 26 2021 Ondrej Holy <oholy@redhat.com> - 1.1.18-4
|
||||||
|
- Drop redundant devel requires
|
||||||
|
- Disable MTPZ support in RHEL
|
||||||
|
- Use pkgconfig for libusb
|
||||||
|
|
||||||
|
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1.1.18-3
|
||||||
|
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
||||||
|
|
||||||
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.18-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 05 2021 Robert Scheck <robert@fedoraproject.org> - 1.1.18-1
|
||||||
|
- Upgrade to 1.1.18
|
||||||
|
|
||||||
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.16-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.16-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.16-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.16-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Nov 16 2018 Linus Walleij <linus.ml.walleij@gmail.com> - 1.1.16
|
||||||
|
+ libmtp-1.1.16-1
|
||||||
|
- New upstream release 1.1.16.
|
||||||
|
- Suddenly reappear doing package maintenance duties.
|
||||||
|
|
||||||
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.14-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.14-3
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.14-3
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
@ -1,6 +0,0 @@
|
|||||||
--- !Policy
|
|
||||||
product_versions:
|
|
||||||
- rhel-8
|
|
||||||
decision_context: osci_compose_gate
|
|
||||||
rules:
|
|
||||||
- !PassingTestCaseRule {test_case_name: desktop-qe.desktop-ci.tier1-gating.functional}
|
|
Loading…
Reference in New Issue
Block a user