public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [flatpaks/flatpak-runtime] f45: Remove the F26 runtime column from the runtime report
@ 2026-09-11 14:40 Owen W. Taylor
0 siblings, 0 replies; only message in thread
From: Owen W. Taylor @ 2026-09-11 14:40 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : flatpaks/flatpak-runtime
Branch : f45
Commit : aa6569a11a7f49093c1939f50f672c2e3b09c0ad
Author : Owen W. Taylor <otaylor@fishsoup.net>
Date : 2020-03-20T21:51:58+01:00
Stats : +0/-10 in 2 file(s)
URL : https://src.fedoraproject.org/flatpaks/flatpak-runtime/c/aa6569a11a7f49093c1939f50f672c2e3b09c0ad?branch=f45
Log:
Remove the F26 runtime column from the runtime report
---
diff --git a/runtime-template.html b/runtime-template.html
index e7c990d..2fa1dc3 100644
--- a/runtime-template.html
+++ b/runtime-template.html
@@ -31,7 +31,6 @@
<tr><td>FD/S</td><td> - org.freedesktop.Sdk</td></tr>
<tr><td>GN/S</td><td> - org.gnome.Sdk</td></tr>
<tr><td>LIVE</td><td> - F27 live image</td></tr>
- <tr><td>RF26</td><td> - F26 org.fedora.Platform</td></tr>
<tr><td class="build-platform"></td><td> - Build in desktop-runtime module</td></tr>
<tr><td class="build-sdk"></td><td> - Build in flatpak-runtime module</td></tr>
<tr><td class="root"></td><td> - Root package, only included because of files in runtime</td></tr>
@@ -54,7 +53,6 @@
<th title="org.freedesktop.Sdk">FD/S</th>
<th title="org.gnome.Sdk">GN/S</th>
<th>LIVE</th>
- <th>RF26</th>
<th></th>
</tr>
{% for spackage in letter.packages %}
@@ -65,7 +63,6 @@
<td></td>
<td></td>
<td></td>
- <td></td>
<td>{{ spackage.modules }}</td>
</tr>
{% for package in spackage.packages %}
@@ -76,7 +73,6 @@
<td class="{{package.freedesktop_sdk_inclusion}}" title="{{ package.freedesktop_sdk_why }}"></td>
<td class="{{package.gnome_sdk_inclusion}}" title="{{ package.gnome_sdk_why }}"></td>
<td class="{{package.live_inclusion}}"></td>
- <td class="{{package.rf26_inclusion}}"></td>
<td>{{ package.note }}</td>
</tr>
{% endfor %}
diff --git a/tools/generate-runtime-report.py b/tools/generate-runtime-report.py
index c75b0cc..9f16499 100755
--- a/tools/generate-runtime-report.py
+++ b/tools/generate-runtime-report.py
@@ -57,7 +57,6 @@ class Package(object):
self.gnome_sdk_files = None
self.gnome_sdk_required_by = None
self.live = 0
- self.rf26 = 0
self.source_package = None
self.flag = None
self._note = None
@@ -177,10 +176,6 @@ class Package(object):
def live_inclusion(self):
return self.inclusion('live')
- @property
- def rf26_inclusion(self):
- return self.inclusion('rf26')
-
class SourcePackage(object):
def __init__(self, name):
self.name = name
@@ -344,7 +339,6 @@ add_packages('out/freedesktop-Sdk.packages', 'freedesktop_sdk', resolve_deps=Tru
add_packages('out/gnome-Platform.packages', 'gnome_platform', resolve_deps=True)
add_packages('out/gnome-Sdk.packages', 'gnome_sdk', resolve_deps=True)
add_packages('data/f27-live.packages', 'live', only_if_exists=True)
-add_packages('data/f26-flatpak-runtime.packages', 'rf26', only_if_exists=True)
add_package_files('out/freedesktop-Platform.matched', 'freedesktop_platform')
add_package_files('out/freedesktop-Sdk.matched', 'freedesktop_sdk')
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-09-11 14:40 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-11 14:40 [flatpaks/flatpak-runtime] f45: Remove the F26 runtime column from the runtime report Owen W. Taylor
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox