2023-11-13 16:11:51 +00:00
|
|
|
%global appstream_version 0.15.0
|
2021-08-31 16:02:18 +00:00
|
|
|
%global debugedit_version 5.0
|
2023-02-09 18:21:43 +00:00
|
|
|
%global glib2_version 2.66
|
2017-12-15 13:59:29 +00:00
|
|
|
%global ostree_version 2017.14
|
2018-07-10 16:34:56 +00:00
|
|
|
%global flatpak_version 0.99.1
|
2017-09-04 18:42:53 +00:00
|
|
|
|
|
|
|
Name: flatpak-builder
|
2023-11-19 22:21:42 +00:00
|
|
|
Version: 1.3.5
|
2023-11-13 16:11:51 +00:00
|
|
|
Release: 1%{?dist}
|
2017-09-04 18:42:53 +00:00
|
|
|
Summary: Tool to build flatpaks from source
|
|
|
|
|
2018-08-13 14:31:19 +00:00
|
|
|
# src/builder-utils.c has portions derived from GPLv2+ code,
|
|
|
|
# the rest is LGPLv2+
|
2022-12-26 22:57:09 +00:00
|
|
|
License: LGPL-2.1-or-later AND GPL-2.0-or-later
|
2022-11-29 07:47:19 +00:00
|
|
|
URL: https://flatpak.org/
|
2017-09-04 18:42:53 +00:00
|
|
|
Source0: https://github.com/flatpak/flatpak-builder/releases/download/%{version}/%{name}-%{version}.tar.xz
|
|
|
|
|
2023-11-13 16:11:51 +00:00
|
|
|
BuildRequires: appstream-compose >= %{appstream_version}
|
2017-09-04 18:42:53 +00:00
|
|
|
BuildRequires: gettext
|
2021-08-31 16:02:18 +00:00
|
|
|
BuildRequires: debugedit >= %{debugedit_version}
|
2017-09-04 18:42:53 +00:00
|
|
|
BuildRequires: docbook-dtds
|
|
|
|
BuildRequires: docbook-style-xsl
|
|
|
|
BuildRequires: flatpak >= %{flatpak_version}
|
|
|
|
BuildRequires: libcap-devel
|
2023-03-21 10:30:08 +00:00
|
|
|
BuildRequires: meson
|
2017-09-04 18:42:53 +00:00
|
|
|
BuildRequires: pkgconfig(glib-2.0) >= %{glib2_version}
|
|
|
|
BuildRequires: pkgconfig(gobject-introspection-1.0)
|
|
|
|
BuildRequires: pkgconfig(json-glib-1.0)
|
2018-06-25 08:31:10 +00:00
|
|
|
BuildRequires: pkgconfig(libcurl)
|
2017-09-04 18:42:53 +00:00
|
|
|
BuildRequires: pkgconfig(libelf)
|
2023-02-09 18:29:43 +00:00
|
|
|
BuildRequires: pkgconfig(libxml-2.0)
|
2017-09-04 18:42:53 +00:00
|
|
|
BuildRequires: pkgconfig(ostree-1) >= %{ostree_version}
|
2018-04-27 13:39:36 +00:00
|
|
|
BuildRequires: pkgconfig(yaml-0.1)
|
2017-09-04 18:42:53 +00:00
|
|
|
BuildRequires: /usr/bin/xmlto
|
|
|
|
BuildRequires: /usr/bin/xsltproc
|
|
|
|
|
2023-11-13 16:11:51 +00:00
|
|
|
Requires: appstream-compose >= %{appstream_version}
|
2021-08-31 16:02:18 +00:00
|
|
|
Requires: debugedit >= %{debugedit_version}
|
2017-09-04 18:42:53 +00:00
|
|
|
Requires: flatpak%{?_isa} >= %{flatpak_version}
|
|
|
|
Requires: glib2%{?_isa} >= %{glib2_version}
|
|
|
|
Requires: ostree-libs%{?_isa} >= %{ostree_version}
|
2018-04-27 13:39:36 +00:00
|
|
|
Requires: /usr/bin/rofiles-fuse
|
2021-03-25 13:06:42 +00:00
|
|
|
|
|
|
|
# Recommend various things that may or may not be needed depending on the code being built
|
|
|
|
Recommends: /usr/bin/bzip2
|
|
|
|
Recommends: /usr/bin/eu-strip
|
|
|
|
Recommends: /usr/bin/git
|
|
|
|
Recommends: /usr/bin/patch
|
|
|
|
Recommends: /usr/bin/strip
|
|
|
|
Recommends: /usr/bin/tar
|
|
|
|
Recommends: /usr/bin/unzip
|
2022-01-18 23:44:47 +00:00
|
|
|
Recommends: /usr/bin/zstd
|
2021-03-25 13:06:42 +00:00
|
|
|
Recommends: ccache
|
2017-09-04 18:42:53 +00:00
|
|
|
|
2021-03-29 10:40:03 +00:00
|
|
|
# Uncommon enough that we don't want to pull them in by default
|
2022-03-09 11:09:39 +00:00
|
|
|
#Recommends: /usr/bin/brz
|
2021-03-29 10:40:03 +00:00
|
|
|
#Recommends: /usr/bin/lzip
|
|
|
|
#Recommends: /usr/bin/svn
|
|
|
|
|
2017-09-04 18:42:53 +00:00
|
|
|
%description
|
|
|
|
Flatpak-builder is a tool for building flatpaks from sources.
|
|
|
|
|
2022-11-29 07:47:19 +00:00
|
|
|
See https://flatpak.org/ for more information.
|
2017-09-04 18:42:53 +00:00
|
|
|
|
2023-11-13 16:11:51 +00:00
|
|
|
%package tests
|
|
|
|
Summary: Tests for %{name}
|
|
|
|
Requires: %{name}%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
|
|
|
|
|
|
|
|
%description tests
|
2023-11-23 13:11:30 +00:00
|
|
|
This package contains installed tests for %{name}.
|
2023-11-13 16:11:51 +00:00
|
|
|
|
2017-09-04 18:42:53 +00:00
|
|
|
|
|
|
|
%prep
|
|
|
|
%autosetup -p1
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
2023-11-13 16:11:51 +00:00
|
|
|
%meson -Ddocs=enabled -Dfuse=3 -Dinstalled_tests=true -Dyaml=enabled
|
2023-03-21 10:30:08 +00:00
|
|
|
%meson_build
|
2017-09-04 18:42:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
%install
|
2023-03-21 10:30:08 +00:00
|
|
|
%meson_install
|
|
|
|
install -pm 644 NEWS README.md %{buildroot}/%{_pkgdocdir}
|
|
|
|
|
|
|
|
|
2023-11-14 08:50:14 +00:00
|
|
|
# %%check
|
|
|
|
# %%meson_test
|
2017-09-04 18:42:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
%license COPYING
|
|
|
|
%doc %{_pkgdocdir}
|
|
|
|
%{_bindir}/flatpak-builder
|
|
|
|
%{_mandir}/man1/flatpak-builder.1*
|
|
|
|
%{_mandir}/man5/flatpak-manifest.5*
|
|
|
|
|
2023-11-13 16:11:51 +00:00
|
|
|
%files tests
|
|
|
|
%{_datadir}/installed-tests
|
|
|
|
%{_libexecdir}/installed-tests
|
|
|
|
|
2017-09-04 18:42:53 +00:00
|
|
|
|
|
|
|
%changelog
|
2023-11-19 22:21:42 +00:00
|
|
|
* Sun Nov 19 2023 Kalev Lember <klember@redhat.com> - 1.3.5-1
|
|
|
|
- Update to 1.3.5
|
|
|
|
|
2023-11-13 16:11:51 +00:00
|
|
|
* Mon Nov 13 2023 Debarshi Ray <rishi@fedoraproject.org> - 1.3.4-1
|
|
|
|
- Update to 1.3.4 (#2212349)
|
|
|
|
- Enable installed tests
|
2023-11-14 08:50:14 +00:00
|
|
|
- Disable %%check
|
2023-11-13 16:11:51 +00:00
|
|
|
|
2023-07-19 19:49:16 +00:00
|
|
|
* Wed Jul 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
|
|
|
2023-03-21 10:30:08 +00:00
|
|
|
* Tue Mar 21 2023 David King <amigadave@amigadave.com> - 1.3.3-1
|
|
|
|
- Update to 1.3.3 (#2179415)
|
|
|
|
|
2023-02-09 18:21:43 +00:00
|
|
|
* Thu Feb 09 2023 David King <amigadave@amigadave.com> - 1.3.1-1
|
|
|
|
- Update to 1.3.1 (#2159101)
|
|
|
|
|
2023-01-19 03:32:43 +00:00
|
|
|
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.3-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
|
|
|
2022-12-26 22:57:09 +00:00
|
|
|
* Mon Dec 26 2022 msuchy <msuchy@redhat.com> - 1.2.3-2
|
|
|
|
- migrate to SPDX license
|
|
|
|
|
2022-11-29 07:47:19 +00:00
|
|
|
* Tue Nov 29 2022 David King <amigadave@amigadave.com> - 1.2.3-1
|
|
|
|
- Update to 1.2.3 (#2149163)
|
|
|
|
|
2022-07-21 03:16:27 +00:00
|
|
|
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.2-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
|
2022-04-01 22:16:27 +00:00
|
|
|
* Fri Apr 01 2022 Debarshi Ray <rishi@fedoraproject.org> - 1.2.2-3
|
|
|
|
- Work with both FUSE 2 and FUSE 3
|
|
|
|
|
2022-01-20 03:06:11 +00:00
|
|
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
2022-01-18 23:56:06 +00:00
|
|
|
* Wed Jan 19 2022 Debarshi Ray <rishi@fedoraproject.org> - 1.2.2-1
|
|
|
|
- Update to 1.2.2
|
|
|
|
|
2022-01-18 23:44:47 +00:00
|
|
|
* Wed Jan 19 2022 Debarshi Ray <rishi@fedoraproject.org> - 1.2.1-2
|
|
|
|
- Add 'Recommends: /usr/bin/zstd' to go with the new *.tar.zst support
|
|
|
|
|
2022-01-18 22:59:59 +00:00
|
|
|
* Wed Jan 19 2022 Debarshi Ray <rishi@fedoraproject.org> - 1.2.1-1
|
|
|
|
- Update to 1.2.1
|
|
|
|
|
2021-10-11 23:55:52 +00:00
|
|
|
* Tue Oct 12 2021 Debarshi Ray <rishi@fedoraproject.org> - 1.2.0-1
|
|
|
|
- Update to 1.2.0
|
|
|
|
|
2021-09-23 15:24:04 +00:00
|
|
|
* Thu Sep 23 2021 Debarshi Ray <rishi@fedoraproject.org> - 1.1.2-1
|
|
|
|
- Update to 1.1.2
|
|
|
|
|
2021-08-31 16:02:18 +00:00
|
|
|
* Tue Aug 31 2021 Debarshi Ray <rishi@fedoraproject.org> - 1.1.1-1
|
|
|
|
- Update to 1.1.1
|
|
|
|
|
2021-08-31 15:03:54 +00:00
|
|
|
* Tue Aug 31 2021 Debarshi Ray <rishi@fedoraproject.org> - 1.0.14-1
|
|
|
|
- Update to 1.0.14
|
|
|
|
|
2021-07-21 23:03:39 +00:00
|
|
|
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.12-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
2021-03-29 10:40:03 +00:00
|
|
|
* Mon Mar 29 2021 Kalev Lember <klember@redhat.com> - 1.0.12-3
|
|
|
|
- Remove bzr, lzip and svn recommends as they are not common enough
|
|
|
|
|
2021-03-25 13:06:42 +00:00
|
|
|
* Thu Mar 25 2021 Kalev Lember <klember@redhat.com> - 1.0.12-2
|
|
|
|
- Recommend all the archive handlers etc, instead of hard requiring
|
|
|
|
|
2021-02-17 12:37:25 +00:00
|
|
|
* Wed Feb 17 2021 Kalev Lember <klember@redhat.com> - 1.0.12-1
|
|
|
|
- Update to 1.0.12
|
|
|
|
|
2021-01-26 05:38:10 +00:00
|
|
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.10-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2020-12-08 15:34:34 +00:00
|
|
|
* Tue Dec 08 2020 Bastien Nocera <bnocera@redhat.com> - 1.0.10-3
|
|
|
|
+ flatpak-builder-1.0.10-3
|
|
|
|
- Require ccache on Fedora where it is available
|
|
|
|
|
2020-07-27 17:32:37 +00:00
|
|
|
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.10-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-03-20 09:35:02 +00:00
|
|
|
* Fri Mar 20 2020 Kalev Lember <klember@redhat.com> - 1.0.10-1
|
|
|
|
- Update to 1.0.10
|
|
|
|
|
2020-02-25 11:49:06 +00:00
|
|
|
* Tue Feb 25 2020 David King <amigadave@amigadave.com> - 1.0.9-3
|
|
|
|
- Use elfutils instead of libdwarf
|
|
|
|
|
2020-01-28 18:37:01 +00:00
|
|
|
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.9-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2019-09-14 09:47:12 +00:00
|
|
|
* Sat Sep 14 2019 David King <amigadave@amigadave.com> - 1.0.9-1
|
|
|
|
- Update to 1.0.9
|
|
|
|
|
2019-07-25 00:40:53 +00:00
|
|
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.7-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-05-10 07:59:10 +00:00
|
|
|
* Fri May 10 2019 Kalev Lember <klember@redhat.com> - 1.0.7-1
|
|
|
|
- Update to 1.0.7
|
|
|
|
|
2019-02-08 10:51:15 +00:00
|
|
|
* Fri Feb 08 2019 Kalev Lember <klember@redhat.com> - 1.0.5-1
|
|
|
|
- Update to 1.0.5
|
|
|
|
|
2019-02-05 13:23:13 +00:00
|
|
|
* Tue Feb 05 2019 Kalev Lember <klember@redhat.com> - 1.0.4-1
|
|
|
|
- Update to 1.0.4
|
|
|
|
|
2019-01-31 19:48:28 +00:00
|
|
|
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.3-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2019-01-30 09:15:29 +00:00
|
|
|
* Wed Jan 30 2019 David King <amigadave@amigadave.com> - 1.0.3-2
|
|
|
|
- Add dependency on lzip
|
|
|
|
|
2019-01-28 12:52:18 +00:00
|
|
|
* Mon Jan 28 2019 David King <amigadave@amigadave.com> - 1.0.3-1
|
|
|
|
- Update to 1.0.3
|
|
|
|
|
2019-01-15 15:28:11 +00:00
|
|
|
* Tue Jan 15 2019 Kalev Lember <klember@redhat.com> - 1.0.2-1
|
2019-01-15 15:29:08 +00:00
|
|
|
- Update to 1.0.2
|
2019-01-15 15:28:11 +00:00
|
|
|
- Change bzr requires to recommends
|
|
|
|
|
2018-10-16 12:45:38 +00:00
|
|
|
* Tue Oct 16 2018 Kalev Lember <klember@redhat.com> - 1.0.1-2
|
|
|
|
- Change svn requires to recommends (#1639355)
|
|
|
|
|
2018-10-04 13:13:29 +00:00
|
|
|
* Thu Oct 04 2018 Kalev Lember <klember@redhat.com> - 1.0.1-1
|
|
|
|
- Update to 1.0.1
|
|
|
|
|
2018-08-20 10:10:04 +00:00
|
|
|
* Mon Aug 20 2018 David King <amigadave@amigadave.com> - 1.0.0-1
|
|
|
|
- Update to 1.0.0
|
|
|
|
|
2018-08-13 14:31:19 +00:00
|
|
|
* Mon Aug 13 2018 Kalev Lember <klember@redhat.com> - 0.99.3-4
|
|
|
|
- Update license to "LGPLv2+ and GPLv2+"
|
|
|
|
|
2018-07-31 12:34:30 +00:00
|
|
|
* Tue Jul 31 2018 Florian Weimer <fweimer@redhat.com> - 0.99.3-3
|
|
|
|
- Rebuild with fixed binutils
|
|
|
|
|
2018-07-13 00:37:41 +00:00
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.99.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-07-10 16:34:56 +00:00
|
|
|
* Tue Jul 10 2018 Kalev Lember <klember@redhat.com> - 0.99.3-1
|
|
|
|
- Update to 0.99.3
|
|
|
|
|
2018-06-27 12:56:26 +00:00
|
|
|
* Wed Jun 27 2018 Kalev Lember <klember@redhat.com> - 0.99.2-1
|
|
|
|
- Update to 0.99.2
|
|
|
|
|
2018-06-25 08:31:10 +00:00
|
|
|
* Mon Jun 25 2018 David King <amigadave@amigadave.com> - 0.99.1-1
|
|
|
|
- Update to 0.99.1
|
|
|
|
|
2018-04-27 13:39:36 +00:00
|
|
|
* Fri Apr 27 2018 David King <amigadave@amigadave.com> - 0.10.10-2
|
|
|
|
- Add some extra dependencies
|
|
|
|
|
2018-04-26 21:35:48 +00:00
|
|
|
* Thu Apr 26 2018 Kalev Lember <klember@redhat.com> - 0.10.10-1
|
|
|
|
- Update to 0.10.10
|
|
|
|
|
2018-02-19 10:07:16 +00:00
|
|
|
* Mon Feb 19 2018 David King <amigadave@amigadave.com> - 0.10.9-1
|
|
|
|
- Update to 0.10.9
|
|
|
|
|
2018-02-07 09:46:39 +00:00
|
|
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.10.6-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2017-12-15 13:59:29 +00:00
|
|
|
* Fri Dec 15 2017 Kalev Lember <klember@redhat.com> - 0.10.6-1
|
|
|
|
- Update to 0.10.6
|
|
|
|
|
2017-11-28 15:11:05 +00:00
|
|
|
* Tue Nov 28 2017 David King <amigadave@amigadave.com> - 0.10.5-1
|
|
|
|
- Update to 0.10.5
|
|
|
|
|
2017-11-06 14:29:16 +00:00
|
|
|
* Mon Nov 06 2017 Kalev Lember <klember@redhat.com> - 0.10.4-1
|
|
|
|
- Update to 0.10.4
|
|
|
|
|
2017-10-31 13:32:03 +00:00
|
|
|
* Tue Oct 31 2017 David King <amigadave@amigadave.com> - 0.10.3-1
|
|
|
|
- Update to 0.10.3
|
|
|
|
|
2017-10-30 14:38:15 +00:00
|
|
|
* Mon Oct 30 2017 David King <amigadave@amigadave.com> - 0.10.2-1
|
|
|
|
- Update to 0.10.2
|
|
|
|
|
2017-10-27 14:27:43 +00:00
|
|
|
* Fri Oct 27 2017 Kalev Lember <klember@redhat.com> - 0.10.1-1
|
|
|
|
- Update to 0.10.1
|
|
|
|
|
2017-10-26 08:44:24 +00:00
|
|
|
* Thu Oct 26 2017 Kalev Lember <klember@redhat.com> - 0.10.0-1
|
|
|
|
- Update to 0.10.0
|
|
|
|
|
2017-10-09 10:42:37 +00:00
|
|
|
* Mon Oct 09 2017 Kalev Lember <klember@redhat.com> - 0.9.99-1
|
|
|
|
- Update to 0.9.99
|
|
|
|
|
2017-09-25 17:46:19 +00:00
|
|
|
* Mon Sep 25 2017 Kalev Lember <klember@redhat.com> - 0.9.98-1
|
|
|
|
- Update to 0.9.98
|
|
|
|
|
2017-09-13 17:51:42 +00:00
|
|
|
* Wed Sep 13 2017 Kalev Lember <klember@redhat.com> - 0.9.11-1
|
|
|
|
- Update to 0.9.11
|
|
|
|
|
2017-09-04 18:42:53 +00:00
|
|
|
* Mon Sep 04 2017 Kalev Lember <klember@redhat.com> - 0.9.9-1
|
|
|
|
- Initial flatpak-builder package
|