public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/flatpak-runtime-config] f45: Add metainfo for KDE runtimes
@ 2026-09-10 21:21 Yaakov Selkowitz
  0 siblings, 0 replies; only message in thread
From: Yaakov Selkowitz @ 2026-09-10 21:21 UTC (permalink / raw)
  To: git-commits

            A new commit has been pushed.

            Repo   : rpms/flatpak-runtime-config
            Branch : f45
            Commit : 44e2d9720aac6e8238fcb284e5a96341f4f02022
            Author : Yaakov Selkowitz <yselkowi@redhat.com>
            Date   : 2023-02-22T11:43:55-05:00
            Stats  : +101/-10 in 7 file(s)
            URL    : https://src.fedoraproject.org/rpms/flatpak-runtime-config/c/44e2d9720aac6e8238fcb284e5a96341f4f02022?branch=f45

            Log:
            Add metainfo for KDE runtimes

Also, use SPDX license names in AppData.

---
diff --git a/flatpak-runtime-config.spec b/flatpak-runtime-config.spec
index 6c4e2b0..669e567 100644
--- a/flatpak-runtime-config.spec
+++ b/flatpak-runtime-config.spec
@@ -4,13 +4,17 @@
 
 Name:           flatpak-runtime-config
 Version:        37
-Release:        3%{?dist}
+Release:        4%{?dist}
 Summary:        Configuration files that live inside the flatpak runtime
 Source1:        50-flatpak.conf
 Source2:        usercustomize.py
-Source3:        org.fedoraproject.Platform.appdata.xml
-Source4:        org.fedoraproject.Sdk.appdata.xml
-Source5:        defaults.json.in
+Source3:        defaults.json.in
+Source4:        org.fedoraproject.Platform.appdata.xml
+Source5:        org.fedoraproject.Sdk.appdata.xml
+Source6:        org.fedoraproject.KDE5Platform.appdata.xml
+Source7:        org.fedoraproject.KDE5Sdk.appdata.xml
+Source8:        org.fedoraproject.KDE6Platform.appdata.xml
+Source9:        org.fedoraproject.KDE6Sdk.appdata.xml
 
 License:        MIT
 
@@ -43,8 +47,12 @@ done
 
 # Install appdata for both the Platform and the Sdk
 mkdir -p $RPM_BUILD_ROOT%{_datadir}/metainfo
-install -t $RPM_BUILD_ROOT%{_datadir}/metainfo -p -m 0644 %{SOURCE3}
 install -t $RPM_BUILD_ROOT%{_datadir}/metainfo -p -m 0644 %{SOURCE4}
+install -t $RPM_BUILD_ROOT%{_datadir}/metainfo -p -m 0644 %{SOURCE5}
+install -t $RPM_BUILD_ROOT%{_datadir}/metainfo -p -m 0644 %{SOURCE6}
+install -t $RPM_BUILD_ROOT%{_datadir}/metainfo -p -m 0644 %{SOURCE7}
+install -t $RPM_BUILD_ROOT%{_datadir}/metainfo -p -m 0644 %{SOURCE8}
+install -t $RPM_BUILD_ROOT%{_datadir}/metainfo -p -m 0644 %{SOURCE9}
 
 # Install flatpak-builder config file
 mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/flatpak-builder
@@ -53,7 +61,7 @@ sed -e 's|%%{_libdir}|%{_libdir}|' \
     -e 's|%%{build_cflags}|%{build_cflags}|' \
     -e 's|%%{build_cxxflags}|%{build_cxxflags}|' \
     -e 's|%%{build_ldflags}|%{build_ldflags}|' \
-    %{SOURCE5} > $RPM_BUILD_ROOT%{_sysconfdir}/flatpak-builder/defaults.json
+    %{SOURCE3} > $RPM_BUILD_ROOT%{_sysconfdir}/flatpak-builder/defaults.json
 
 mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/ld.so.conf.d/
 echo "/app/%{_lib}" > $RPM_BUILD_ROOT%{_sysconfdir}/ld.so.conf.d/app.conf
@@ -90,6 +98,9 @@ HOME=/root /usr/bin/fc-cache -s
 %{_sysconfdir}/ld.so.conf.d/app.conf
 
 %changelog
+* Tue Feb 21 2023 Yaakov Selkowitz <yselkowi@redhat.com> - 37-4
+- Add metainfo for KDE runtimes
+
 * Tue Feb 21 2023 Yaakov Selkowitz <yselkowi@redhat.com> - 37-3
 - Remove package notes from flatpak-builder compile flags
 

diff --git a/org.fedoraproject.KDE5Platform.appdata.xml b/org.fedoraproject.KDE5Platform.appdata.xml
new file mode 100644
index 0000000..20093ca
--- /dev/null
+++ b/org.fedoraproject.KDE5Platform.appdata.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<component type="runtime">
+  <id>org.fedoraproject.KDE5Platform</id>
+  <metadata_license>CC0-1.0</metadata_license>
+  <!-- FIXME -->
+  <project_license>GPL-2.0-or-later</project_license>
+  <name>Fedora KDE 5 Platform</name>
+  <summary>Shared libraries</summary>
+  <releases>
+    <release version="37" date="2023-02-07"/>
+  </releases>
+  <description>
+    <p>
+       The Fedora KDE 5 Platform is a runtime for Flatpak applications.
+       It contains common libraries that are shared between Qt and KDE 5
+       applications.
+    </p>
+  </description>
+  <url type="homepage">https://fedoraproject.org/</url>
+</component>

diff --git a/org.fedoraproject.KDE5Sdk.appdata.xml b/org.fedoraproject.KDE5Sdk.appdata.xml
new file mode 100644
index 0000000..042152f
--- /dev/null
+++ b/org.fedoraproject.KDE5Sdk.appdata.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<component type="runtime">
+  <id>org.fedoraproject.KDE5Sdk</id>
+  <metadata_license>CC0-1.0</metadata_license>
+  <!-- FIXME -->
+  <project_license>GPL-2.0-or-later</project_license>
+  <name>Fedora KDE 5 SDK</name>
+  <summary>Tools and headers for developing KDE 5 applications</summary>
+  <releases>
+    <release version="37" date="2023-02-07"/>
+  </releases>
+  <description>
+    <p>
+      The Fedora KDE 5 Sdk is the development runtime that you can use to produce applications using
+      the Fedora KDE 5 Platform runtime. It contains everything that is in the platform, as well
+      as build and debugging tools and headers for the libraries.
+    </p>
+  </description>
+  <url type="homepage">https://fedoraproject.org/</url>
+</component>

diff --git a/org.fedoraproject.KDE6Platform.appdata.xml b/org.fedoraproject.KDE6Platform.appdata.xml
new file mode 100644
index 0000000..7190f22
--- /dev/null
+++ b/org.fedoraproject.KDE6Platform.appdata.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<component type="runtime">
+  <id>org.fedoraproject.KDE6Platform</id>
+  <metadata_license>CC0-1.0</metadata_license>
+  <!-- FIXME -->
+  <project_license>GPL-2.0-or-later</project_license>
+  <name>Fedora KDE 6 Platform</name>
+  <summary>Shared libraries</summary>
+  <releases>
+    <release version="37" date="2023-02-07"/>
+  </releases>
+  <description>
+    <p>
+       The Fedora KDE 6 Platform is a runtime for Flatpak applications.
+       It contains common libraries that are shared between Qt and KDE 6
+       applications.
+    </p>
+  </description>
+  <url type="homepage">https://fedoraproject.org/</url>
+</component>

diff --git a/org.fedoraproject.KDE6Sdk.appdata.xml b/org.fedoraproject.KDE6Sdk.appdata.xml
new file mode 100644
index 0000000..a959717
--- /dev/null
+++ b/org.fedoraproject.KDE6Sdk.appdata.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<component type="runtime">
+  <id>org.fedoraproject.KDE6Sdk</id>
+  <metadata_license>CC0-1.0</metadata_license>
+  <!-- FIXME -->
+  <project_license>GPL-2.0-or-later</project_license>
+  <name>Fedora KDE 6 SDK</name>
+  <summary>Tools and headers for developing KDE applications</summary>
+  <releases>
+    <release version="37" date="2023-02-07"/>
+  </releases>
+  <description>
+    <p>
+      The Fedora KDE 6 Sdk is the development runtime that you can use to produce applications using
+      the Fedora KDE 6 Platform runtime. It contains everything that is in the platform, as well
+      as build and debugging tools and headers for the libraries.
+    </p>
+  </description>
+  <url type="homepage">https://fedoraproject.org/</url>
+</component>

diff --git a/org.fedoraproject.Platform.appdata.xml b/org.fedoraproject.Platform.appdata.xml
index e0e2031..1ba2a1b 100644
--- a/org.fedoraproject.Platform.appdata.xml
+++ b/org.fedoraproject.Platform.appdata.xml
@@ -1,9 +1,9 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <component type="runtime">
   <id>org.fedoraproject.Platform</id>
-  <metadata_license>CC0</metadata_license>
+  <metadata_license>CC0-1.0</metadata_license>
   <!-- FIXME -->
-  <project_license>GPL-2.0+</project_license>
+  <project_license>GPL-2.0-or-later</project_license>
   <name>Fedora Platform</name>
   <summary>Shared libraries</summary>
   <releases>

diff --git a/org.fedoraproject.Sdk.appdata.xml b/org.fedoraproject.Sdk.appdata.xml
index 837de13..c019151 100644
--- a/org.fedoraproject.Sdk.appdata.xml
+++ b/org.fedoraproject.Sdk.appdata.xml
@@ -1,9 +1,9 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <component type="runtime">
   <id>org.fedoraproject.Sdk</id>
-  <metadata_license>CC0</metadata_license>
+  <metadata_license>CC0-1.0</metadata_license>
   <!-- FIXME -->
-  <project_license>GPL-2.0+</project_license>
+  <project_license>GPL-2.0-or-later</project_license>
   <name>Fedora SDK</name>
   <summary>Tools and headers for developing applications</summary>
   <releases>

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2026-09-10 21:21 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-10 21:21 [rpms/flatpak-runtime-config] f45: Add metainfo for KDE runtimes Yaakov Selkowitz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox