Compare commits
2 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d5745bdf3f |
||
|
|
ed145aa114 |
4 changed files with 18 additions and 102 deletions
5
.gitignore
vendored
5
.gitignore
vendored
|
|
@ -3,8 +3,3 @@
|
||||||
/android-file-transfer-linux-3.7.tar.gz
|
/android-file-transfer-linux-3.7.tar.gz
|
||||||
/android-file-transfer-linux-3.8.tar.gz
|
/android-file-transfer-linux-3.8.tar.gz
|
||||||
/android-file-transfer-linux-3.9.tar.gz
|
/android-file-transfer-linux-3.9.tar.gz
|
||||||
/android-file-transfer-linux-4.0.tar.gz
|
|
||||||
/android-file-transfer-linux-4.1.tar.gz
|
|
||||||
/android-file-transfer-linux-4.2.tar.gz
|
|
||||||
/android-file-transfer-linux-4.4.tar.gz
|
|
||||||
/android-file-transfer-linux-4.5.tar.gz
|
|
||||||
|
|
|
||||||
16
.packit.yaml
16
.packit.yaml
|
|
@ -1,16 +0,0 @@
|
||||||
# See the documentation for more information:
|
|
||||||
# https://packit.dev/docs/configuration/
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
- job: pull_from_upstream
|
|
||||||
trigger: release
|
|
||||||
dist_git_branches:
|
|
||||||
- fedora-rawhide
|
|
||||||
- job: koji_build
|
|
||||||
trigger: commit
|
|
||||||
dist_git_branches:
|
|
||||||
- fedora-rawhide
|
|
||||||
- job: bodhi_update
|
|
||||||
trigger: commit
|
|
||||||
dist_git_branches:
|
|
||||||
- fedora-rawhide
|
|
||||||
|
|
@ -1,29 +1,30 @@
|
||||||
# Force out of source build
|
# Force out of source build
|
||||||
%undefine __cmake_in_source_build
|
%undefine __cmake_in_source_build
|
||||||
|
|
||||||
|
# Build with lto enabled will lead to crash
|
||||||
|
# see
|
||||||
|
# https://bugzilla.redhat.com/show_bug.cgi?id=1894585
|
||||||
|
# Disabling lto until upstream fixes this problem
|
||||||
|
%define _lto_cflags %{nil}
|
||||||
|
|
||||||
Name: android-file-transfer
|
Name: android-file-transfer
|
||||||
Version: 4.5
|
Version: 3.9
|
||||||
Release: 5%{?dist}
|
Release: 8%{?dist}
|
||||||
Summary: Reliable Android MTP client with minimalist UI
|
Summary: Reliable Android MTP client with minimalist UI
|
||||||
|
|
||||||
License: LGPL-2.1-only
|
License: LGPLv2+
|
||||||
URL: https://github.com/whoozle/android-file-transfer-linux
|
URL: https://github.com/whoozle/android-file-transfer-linux
|
||||||
Source0: %{url}/archive/v%{version}/%{name}-linux-%{version}.tar.gz
|
Source0: %{url}/archive/v%{version}/%{name}-linux-%{version}.tar.gz
|
||||||
|
|
||||||
Requires: hicolor-icon-theme
|
Requires: hicolor-icon-theme
|
||||||
BuildRequires: cmake
|
BuildRequires: cmake
|
||||||
BuildRequires: cmake(pybind11)
|
|
||||||
BuildRequires: cmake(Qt6LinguistTools)
|
|
||||||
BuildRequires: desktop-file-utils
|
|
||||||
BuildRequires: gcc-c++
|
BuildRequires: gcc-c++
|
||||||
BuildRequires: libappstream-glib
|
|
||||||
BuildRequires: ninja-build
|
BuildRequires: ninja-build
|
||||||
BuildRequires: pkgconfig(fuse3)
|
BuildRequires: pkgconfig(Qt5)
|
||||||
BuildRequires: pkgconfig(libmagic)
|
BuildRequires: pkgconfig(fuse)
|
||||||
BuildRequires: pkgconfig(openssl)
|
BuildRequires: readline-devel
|
||||||
BuildRequires: pkgconfig(Qt6)
|
BuildRequires: desktop-file-utils
|
||||||
BuildRequires: pkgconfig(readline)
|
BuildRequires: libappstream-glib
|
||||||
BuildRequires: pkgconfig(taglib)
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Android File Transfer for Linux — reliable MTP client with minimalist UI
|
Android File Transfer for Linux — reliable MTP client with minimalist UI
|
||||||
|
|
@ -43,7 +44,7 @@ Features:
|
||||||
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
# QT requires the main program not to perform local symbol binding,
|
# QT requires the main progrma not to perform local symbol binding,
|
||||||
# -fPIC accomplishes that
|
# -fPIC accomplishes that
|
||||||
export CXXFLAGS="-fPIC $RPM_OPT_FLAGS"
|
export CXXFLAGS="-fPIC $RPM_OPT_FLAGS"
|
||||||
%cmake -GNinja
|
%cmake -GNinja
|
||||||
|
|
@ -73,72 +74,8 @@ appstream-util validate-relax --nonet %{buildroot}%{_metainfodir}/%{name}.appdat
|
||||||
%{_datadir}/metainfo/%{name}.appdata.xml
|
%{_datadir}/metainfo/%{name}.appdata.xml
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Fri Jan 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 4.5-5
|
* Sun Nov 15 18:00:15 CST 2020 Qiyu Yan <yanqiyu@fedoraproject.org> - 3.9-8
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
- disable LTO #1894585
|
||||||
|
|
||||||
* Tue Nov 4 2025 Tom Callaway <spot@fedoraproject.org> - 4.5-4
|
|
||||||
- rebuild for new fuse3
|
|
||||||
|
|
||||||
* Wed Jul 23 2025 Fedora Release Engineering <releng@fedoraproject.org> - 4.5-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed May 21 2025 Marek Blaha <mblaha@redhat.com> - 4.5-2
|
|
||||||
- Switch to fuse3
|
|
||||||
|
|
||||||
* Thu May 15 2025 Marek Blaha <mblaha@redhat.com> - 4.5-1
|
|
||||||
- Update to version 4.5
|
|
||||||
|
|
||||||
* Tue Apr 01 2025 Marek Blaha <mblaha@redhat.com> - 4.4-1
|
|
||||||
- Update to version 4.4
|
|
||||||
- Switch to Qt6
|
|
||||||
|
|
||||||
* Thu Jan 16 2025 Fedora Release Engineering <releng@fedoraproject.org> - 4.2-14
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jul 17 2024 Fedora Release Engineering <releng@fedoraproject.org> - 4.2-13
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Jan 22 2024 Fedora Release Engineering <releng@fedoraproject.org> - 4.2-12
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 4.2-11
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jul 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 4.2-10
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed May 3 2023 Marek Blaha <mblaha@redhat.com> - 4.2-9
|
|
||||||
- Add missing build dependencies (OpenSSL, taglib, libmagic)
|
|
||||||
|
|
||||||
* Tue May 2 2023 Marek Blaha <mblaha@redhat.com> - 4.2-8
|
|
||||||
- Backport fix to build with GCC 13
|
|
||||||
|
|
||||||
* Thu Mar 30 2023 Marek Blaha <mblaha@redhat.com> - 4.2-7
|
|
||||||
- migrated to SPDX license
|
|
||||||
|
|
||||||
* Wed Jan 18 2023 Fedora Release Engineering <releng@fedoraproject.org> - 4.2-6
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jul 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 4.2-5
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jan 19 2022 Fedora Release Engineering <releng@fedoraproject.org> - 4.2-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4.2-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4.2-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Jan 5 2020 Marek Blaha <mblaha@redhat.com> - 4.2-1
|
|
||||||
- New upstream release 4.2
|
|
||||||
|
|
||||||
* Wed Dec 16 2020 Marek Blaha <mblaha@redhat.com> - 4.1-1
|
|
||||||
- New upstream release 4.1
|
|
||||||
|
|
||||||
* Mon Nov 30 2020 Marek Blaha <mblaha@redhat.com> - 4.0-1
|
|
||||||
- New upstream release 4.0
|
|
||||||
|
|
||||||
* Fri Oct 2 2020 Jeff Law <law@redhat.com> - 3.9-7
|
* Fri Oct 2 2020 Jeff Law <law@redhat.com> - 3.9-7
|
||||||
- Add -fPIC to compilation flags
|
- Add -fPIC to compilation flags
|
||||||
|
|
|
||||||
2
sources
2
sources
|
|
@ -1 +1 @@
|
||||||
SHA512 (android-file-transfer-linux-4.5.tar.gz) = 7aff608f83055a92fb35ccec768e531c60984d3fc8293c04443bb52a2eeef208c50f6baeccabd951ebc630711b07f043f6ed118bf4e308836c5c796281d68ffd
|
SHA512 (android-file-transfer-linux-3.9.tar.gz) = 7468ff19d2b4ae0f768eea70ec45246da11c4e541d07a9548d057c080adbbc905f76dcdff18c4c8478cd19aee6992d02beaf8b4275d7302997652e25351ab5c8
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue