[rpmfusion-free-appstream-data/f34] feat: regenerate
by Ankur Sinha
commit d659aeecd07c78ce6b52b0be956489d0db230584
Author: Ankur Sinha (Ankur Sinha Gmail) <sanjay.ankur(a)gmail.com>
Date: Wed Nov 3 20:45:41 2021 +0000
feat: regenerate
rpmfusion-free-appstream-data.spec | 5 ++++-
sources | 4 ++--
update-appdata-rpmfusion-free.sh | 14 +++++++-------
3 files changed, 13 insertions(+), 10 deletions(-)
---
diff --git a/rpmfusion-free-appstream-data.spec b/rpmfusion-free-appstream-data.spec
index fb82c3a..bb03426 100644
--- a/rpmfusion-free-appstream-data.spec
+++ b/rpmfusion-free-appstream-data.spec
@@ -3,7 +3,7 @@
Name: %{reponame}-%{repoversion}-appstream-data
Version: 34
-Release: 2%{?dist}
+Release: 3%{?dist}
Summary: Appstream metadata for the RPM Fusion free repository
BuildArch: noarch
@@ -40,6 +40,9 @@ DESTDIR=%{buildroot} appstream-util install %{SOURCE0} %{SOURCE1}
%dir %{_datadir}/app-info/xmls
%changelog
+* Wed Nov 03 2021 Ankur Sinha <ankursinha AT fedoraproject DOT org> - 34-3
+- Regenerate
+
* Mon Sep 28 2020 Leigh Scott <leigh123linux(a)gmail.com> - 34-2
- Regenerate
diff --git a/sources b/sources
index 480d849..7c0334e 100644
--- a/sources
+++ b/sources
@@ -1,2 +1,2 @@
-SHA512 (rpmfusion-free-34-icons.tar.gz) = 62b01ab3cd86648614fe5fd6db455eed13e79fe86387a21a6d1fdd586fad7d909f4d9ab8bc7b9a1abfdcb6b6f8f3bc0d860b9edf8f05ba0e6e67138946915dae
-SHA512 (rpmfusion-free-34.xml.gz) = 648ce012ef016e4b277a6020524b4168d7e7132c89f5940483a4a4388c4623b964a78a794394533d40806dd3a46fad5fedbcba328ce1beac2b1596c6c1f08e01
+SHA512 (rpmfusion-free-34-icons.tar.gz) = 0ea3f67adb32cc54ecb6dbe5bd9f9fb398d930baa0bffe530a96b96fc955440819f6da9b6ddc67fda24d8918c5b3a93e9c6c3bd61729ec1ac33dc8ff84591730
+SHA512 (rpmfusion-free-34.xml.gz) = c967d19272f08d43e8c109af33e405813ab6edfff490d0ab50d1be72a2d6389a72bca03c1fb953978b948c9b762b232ec822f5c75a03380257b9b5b7a7f449f5
diff --git a/update-appdata-rpmfusion-free.sh b/update-appdata-rpmfusion-free.sh
index cd1bb5a..99dd406 100755
--- a/update-appdata-rpmfusion-free.sh
+++ b/update-appdata-rpmfusion-free.sh
@@ -8,14 +8,14 @@ main ()
mkdir rpmfusion-free/ -pv
cd rpmfusion-free || exit -1
- if [ "$RELEASE" = "34" ]; then
+ if [ "$RELEASE" = "36" ]; then
URL="rsync://download1.rpmfusion.org/rpmfusion/free/fedora/development/rawhide..."
- elif [ "$RELEASE" = "33" ]; then
- URL="rsync://download1.rpmfusion.org/rpmfusion/free/fedora/development/33/Ever..."
- elif [ "$RELEASE" = "32" ]; then
- URL="rsync://download1.rpmfusion.org/rpmfusion/free/fedora/releases/32/Everyth..."
+ elif [ "$RELEASE" = "35" ]; then
+ URL="rsync://download1.rpmfusion.org/rpmfusion/free/fedora/development/35/Ever..."
+ elif [ "$RELEASE" = "34" ]; then
+ URL="rsync://download1.rpmfusion.org/rpmfusion/free/fedora/releases/34/Everyth..."
#URL1="rsync://download1.rpmfusion.org/rpmfusion/free/fedora/updates/32/x86_64/*"
- elif [ "$RELEASE" = "31" ]; then
+ elif [ "$RELEASE" = "33" ]; then
URL="rsync://download1.rpmfusion.org/rpmfusion/free/fedora/releases/31/Everyth..."
#URL1="rsync://download1.rpmfusion.org/rpmfusion/free/fedora/updates/31/x86_64/*"
@@ -43,7 +43,7 @@ usage ()
echo "$0 -r <release>"
echo "- update appdata for rpmfusion free repository"
echo "options:"
- echo "-r <release> one of 31, 32, 33 and 34"
+ echo "-r <release> one of 33, 34, 35 and 36"
}
3 years, 3 months
[xorg-x11-drv-nvidia] Use supported-gpus.json to generate appdata
by Leigh Scott
commit 0101b1ce851e059ba9c2587611d550795920caa1
Author: Leigh Scott <leigh123linux(a)gmail.com>
Date: Wed Nov 3 20:39:53 2021 +0000
Use supported-gpus.json to generate appdata
parse-readme.py | 61 ------------------------------------------------
parse-supported-gpus.py | 32 +++++++++++++++++++++++++
xorg-x11-drv-nvidia.spec | 7 +++---
3 files changed, 35 insertions(+), 65 deletions(-)
---
diff --git a/parse-supported-gpus.py b/parse-supported-gpus.py
new file mode 100755
index 0000000..94ac6b1
--- /dev/null
+++ b/parse-supported-gpus.py
@@ -0,0 +1,32 @@
+#!/usr/bin/python3
+# -*- coding: utf-8 -*-
+#
+# Copyright (C) 2021 Simone Caronni <negativo17(a)gmail.com>
+# Licensed under the GNU General Public License Version or later
+
+import json
+import sys
+
+def main():
+ if len(sys.argv) != 2:
+ print("usage: %s supported-gpus.json" % sys.argv[0])
+ return 1
+
+ f = open(sys.argv[1])
+ gpus_raw = json.load(f)
+ legacy = 'legacybranch'
+ devids = []
+
+ for product in gpus_raw["chips"]:
+
+ if legacy not in product.keys():
+
+ devid = int(product["devid"], 16)
+ if not devid in devids:
+ devids.append(devid)
+
+ for devid in devids:
+ print("pci:v000010DEd%08Xsv*sd*bc*sc*i*" % (devid))
+
+if __name__ == "__main__":
+ main()
diff --git a/xorg-x11-drv-nvidia.spec b/xorg-x11-drv-nvidia.spec
index 1923abf..b162dfc 100644
--- a/xorg-x11-drv-nvidia.spec
+++ b/xorg-x11-drv-nvidia.spec
@@ -35,7 +35,7 @@ Source5: alternate-install-present
Source6: nvidia.conf
Source7: 60-nvidia.rules
Source8: xorg-x11-drv-nvidia.metainfo.xml
-Source9: parse-readme.py
+Source9: parse-supported-gpus.py
Source10: 60-nvidia-uvm.rules
Source11: nvidia-uvm.conf
Source12: 99-nvidia-dracut.conf
@@ -363,9 +363,8 @@ EOF
%if 0%{?fedora} || 0%{?rhel} > 7
# install AppData and add modalias provides
-mkdir -p %{buildroot}%{_metainfodir}/
-install -pm 0644 %{SOURCE8} %{buildroot}%{_metainfodir}/
-%{SOURCE9} README.txt | xargs appstream-util add-provide %{buildroot}%{_metainfodir}/xorg-x11-drv-nvidia.metainfo.xml modalias
+install -D -p -m 0644 %{SOURCE8} %{buildroot}%{_metainfodir}/xorg-x11-drv-nvidia.metainfo.xml
+%{SOURCE9} supported-gpus/supported-gpus.json | xargs appstream-util add-provide %{buildroot}%{_metainfodir}/xorg-x11-drv-nvidia.metainfo.xml modalias
mkdir -p %{buildroot}%{_datadir}/pixmaps
install -pm 0644 nvidia-settings.png %{buildroot}%{_datadir}/pixmaps/%{name}.png
%endif
3 years, 3 months
[rpmfusion-free-appstream-data/f35] feat: regenerate for f35
by Ankur Sinha
commit 759f655809a4b308d15bc2ff808579ecde73e158
Author: Ankur Sinha (Ankur Sinha Gmail) <sanjay.ankur(a)gmail.com>
Date: Wed Nov 3 20:32:51 2021 +0000
feat: regenerate for f35
.gitignore | 2 ++
rpmfusion-free-appstream-data.spec | 7 +++++--
sources | 4 ++--
update-appdata-rpmfusion-free.sh | 14 +++++++-------
4 files changed, 16 insertions(+), 11 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index c90b998..70c8bfe 100644
--- a/.gitignore
+++ b/.gitignore
@@ -15,3 +15,5 @@ tags
/rpmfusion-free-33.xml.gz
/rpmfusion-free-34-icons.tar.gz
/rpmfusion-free-34.xml.gz
+/rpmfusion-free-35-icons.tar.gz
+/rpmfusion-free-35.xml.gz
diff --git a/rpmfusion-free-appstream-data.spec b/rpmfusion-free-appstream-data.spec
index fb82c3a..c353c8c 100644
--- a/rpmfusion-free-appstream-data.spec
+++ b/rpmfusion-free-appstream-data.spec
@@ -2,8 +2,8 @@
%global repoversion free
Name: %{reponame}-%{repoversion}-appstream-data
-Version: 34
-Release: 2%{?dist}
+Version: 35
+Release: 1%{?dist}
Summary: Appstream metadata for the RPM Fusion free repository
BuildArch: noarch
@@ -40,6 +40,9 @@ DESTDIR=%{buildroot} appstream-util install %{SOURCE0} %{SOURCE1}
%dir %{_datadir}/app-info/xmls
%changelog
+* Wed Nov 03 2021 Ankur Sinha <ankursinha AT fedoraproject DOT org> - 35-1
+- Regenerate
+
* Mon Sep 28 2020 Leigh Scott <leigh123linux(a)gmail.com> - 34-2
- Regenerate
diff --git a/sources b/sources
index 480d849..9955262 100644
--- a/sources
+++ b/sources
@@ -1,2 +1,2 @@
-SHA512 (rpmfusion-free-34-icons.tar.gz) = 62b01ab3cd86648614fe5fd6db455eed13e79fe86387a21a6d1fdd586fad7d909f4d9ab8bc7b9a1abfdcb6b6f8f3bc0d860b9edf8f05ba0e6e67138946915dae
-SHA512 (rpmfusion-free-34.xml.gz) = 648ce012ef016e4b277a6020524b4168d7e7132c89f5940483a4a4388c4623b964a78a794394533d40806dd3a46fad5fedbcba328ce1beac2b1596c6c1f08e01
+SHA512 (rpmfusion-free-35-icons.tar.gz) = 6161055c61f8aa6ddb8552c196c20175c06064f1db640ec0fb80ab8f630e687b8bb8d6d754b7693daae5e169a7f3655ccd20bf7191e41af73009680bfe0c11c3
+SHA512 (rpmfusion-free-35.xml.gz) = eaefada197f714b54de9552c340e891d005bc1e9ab828bdc425590289a4cbe31c68ae5eb5fd8e3f46e745247bf630b4645aad9f797b94f537af941585745f8ac
diff --git a/update-appdata-rpmfusion-free.sh b/update-appdata-rpmfusion-free.sh
index cd1bb5a..9583870 100755
--- a/update-appdata-rpmfusion-free.sh
+++ b/update-appdata-rpmfusion-free.sh
@@ -8,14 +8,14 @@ main ()
mkdir rpmfusion-free/ -pv
cd rpmfusion-free || exit -1
- if [ "$RELEASE" = "34" ]; then
+ if [ "$RELEASE" = "36" ]; then
URL="rsync://download1.rpmfusion.org/rpmfusion/free/fedora/development/rawhide..."
- elif [ "$RELEASE" = "33" ]; then
- URL="rsync://download1.rpmfusion.org/rpmfusion/free/fedora/development/33/Ever..."
- elif [ "$RELEASE" = "32" ]; then
- URL="rsync://download1.rpmfusion.org/rpmfusion/free/fedora/releases/32/Everyth..."
+ elif [ "$RELEASE" = "35" ]; then
+ URL="rsync://download1.rpmfusion.org/rpmfusion/free/fedora/releases/35/Everyth..."
+ elif [ "$RELEASE" = "34" ]; then
+ URL="rsync://download1.rpmfusion.org/rpmfusion/free/fedora/releases/34/Everyth..."
#URL1="rsync://download1.rpmfusion.org/rpmfusion/free/fedora/updates/32/x86_64/*"
- elif [ "$RELEASE" = "31" ]; then
+ elif [ "$RELEASE" = "33" ]; then
URL="rsync://download1.rpmfusion.org/rpmfusion/free/fedora/releases/31/Everyth..."
#URL1="rsync://download1.rpmfusion.org/rpmfusion/free/fedora/updates/31/x86_64/*"
@@ -43,7 +43,7 @@ usage ()
echo "$0 -r <release>"
echo "- update appdata for rpmfusion free repository"
echo "options:"
- echo "-r <release> one of 31, 32, 33 and 34"
+ echo "-r <release> one of 33, 34, 35 and 36"
}
3 years, 3 months
[rpmfusion-free-appstream-data] feat: regenerate for f36
by Ankur Sinha
commit 58fa7d2da33f8cb474399f2f3981a03c89afd1f0
Author: Ankur Sinha (Ankur Sinha Gmail) <sanjay.ankur(a)gmail.com>
Date: Wed Nov 3 20:18:54 2021 +0000
feat: regenerate for f36
.gitignore | 2 ++
rpmfusion-free-appstream-data.spec | 7 +++++--
sources | 4 ++--
update-appdata-rpmfusion-free.sh | 14 +++++++-------
4 files changed, 16 insertions(+), 11 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index c90b998..5dafd9c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -15,3 +15,5 @@ tags
/rpmfusion-free-33.xml.gz
/rpmfusion-free-34-icons.tar.gz
/rpmfusion-free-34.xml.gz
+/rpmfusion-free-36-icons.tar.gz
+/rpmfusion-free-36.xml.gz
diff --git a/rpmfusion-free-appstream-data.spec b/rpmfusion-free-appstream-data.spec
index fb82c3a..03dab08 100644
--- a/rpmfusion-free-appstream-data.spec
+++ b/rpmfusion-free-appstream-data.spec
@@ -2,8 +2,8 @@
%global repoversion free
Name: %{reponame}-%{repoversion}-appstream-data
-Version: 34
-Release: 2%{?dist}
+Version: 36
+Release: 1%{?dist}
Summary: Appstream metadata for the RPM Fusion free repository
BuildArch: noarch
@@ -40,6 +40,9 @@ DESTDIR=%{buildroot} appstream-util install %{SOURCE0} %{SOURCE1}
%dir %{_datadir}/app-info/xmls
%changelog
+* Wed Nov 03 2021 Ankur Sinha <ankursinha AT fedoraproject DOT org> - 36-1
+- Regenerated
+
* Mon Sep 28 2020 Leigh Scott <leigh123linux(a)gmail.com> - 34-2
- Regenerate
diff --git a/sources b/sources
index 480d849..094bd39 100644
--- a/sources
+++ b/sources
@@ -1,2 +1,2 @@
-SHA512 (rpmfusion-free-34-icons.tar.gz) = 62b01ab3cd86648614fe5fd6db455eed13e79fe86387a21a6d1fdd586fad7d909f4d9ab8bc7b9a1abfdcb6b6f8f3bc0d860b9edf8f05ba0e6e67138946915dae
-SHA512 (rpmfusion-free-34.xml.gz) = 648ce012ef016e4b277a6020524b4168d7e7132c89f5940483a4a4388c4623b964a78a794394533d40806dd3a46fad5fedbcba328ce1beac2b1596c6c1f08e01
+SHA512 (rpmfusion-free-36-icons.tar.gz) = a35f8687ba7c9c2542ecea74201d74bf3a82e84c4bcbadda6cb8dde6e005fac4f667695b209db8a448dcf35648b8224a7b87802d04efdbcace31903c26d735b8
+SHA512 (rpmfusion-free-36.xml.gz) = 39b1b5e701a7b693211d6b4d83a290f1f5e722990d41efa71b99c6c969d6bd8b401f31431cb38632e92b0aafa1110313052c2adc81c49b37e3700d4a10414154
diff --git a/update-appdata-rpmfusion-free.sh b/update-appdata-rpmfusion-free.sh
index cd1bb5a..99dd406 100755
--- a/update-appdata-rpmfusion-free.sh
+++ b/update-appdata-rpmfusion-free.sh
@@ -8,14 +8,14 @@ main ()
mkdir rpmfusion-free/ -pv
cd rpmfusion-free || exit -1
- if [ "$RELEASE" = "34" ]; then
+ if [ "$RELEASE" = "36" ]; then
URL="rsync://download1.rpmfusion.org/rpmfusion/free/fedora/development/rawhide..."
- elif [ "$RELEASE" = "33" ]; then
- URL="rsync://download1.rpmfusion.org/rpmfusion/free/fedora/development/33/Ever..."
- elif [ "$RELEASE" = "32" ]; then
- URL="rsync://download1.rpmfusion.org/rpmfusion/free/fedora/releases/32/Everyth..."
+ elif [ "$RELEASE" = "35" ]; then
+ URL="rsync://download1.rpmfusion.org/rpmfusion/free/fedora/development/35/Ever..."
+ elif [ "$RELEASE" = "34" ]; then
+ URL="rsync://download1.rpmfusion.org/rpmfusion/free/fedora/releases/34/Everyth..."
#URL1="rsync://download1.rpmfusion.org/rpmfusion/free/fedora/updates/32/x86_64/*"
- elif [ "$RELEASE" = "31" ]; then
+ elif [ "$RELEASE" = "33" ]; then
URL="rsync://download1.rpmfusion.org/rpmfusion/free/fedora/releases/31/Everyth..."
#URL1="rsync://download1.rpmfusion.org/rpmfusion/free/fedora/updates/31/x86_64/*"
@@ -43,7 +43,7 @@ usage ()
echo "$0 -r <release>"
echo "- update appdata for rpmfusion free repository"
echo "options:"
- echo "-r <release> one of 31, 32, 33 and 34"
+ echo "-r <release> one of 33, 34, 35 and 36"
}
3 years, 3 months
[qarte/f33] Update qarte to 4.15.1
by Sérgio M. Basto
Summary of changes:
7784b72... Update qarte to 4.15.1 (*)
(*) This commit already existed in another branch; no separate mail sent
3 years, 3 months
[qarte/f34] Update qarte to 4.15.1
by Sérgio M. Basto
Summary of changes:
7784b72... Update qarte to 4.15.1 (*)
(*) This commit already existed in another branch; no separate mail sent
3 years, 3 months
[qarte/f35] Update qarte to 4.15.1
by Sérgio M. Basto
Summary of changes:
7784b72... Update qarte to 4.15.1 (*)
(*) This commit already existed in another branch; no separate mail sent
3 years, 3 months
[qarte] Update qarte to 4.15.1
by Sérgio M. Basto
commit 7784b724f69ecc033ffbcfa2548c95d0ffb3f100
Author: Sérgio M. Basto <sergio(a)serjux.com>
Date: Tue Nov 2 23:15:51 2021 +0000
Update qarte to 4.15.1
65_64.diff | 162 -------------------------------------------------------------
66_65.diff | 92 -----------------------------------
qarte.spec | 5 +-
sources | 2 +-
4 files changed, 5 insertions(+), 256 deletions(-)
---
diff --git a/qarte.spec b/qarte.spec
index 778d14d..2264a44 100644
--- a/qarte.spec
+++ b/qarte.spec
@@ -2,7 +2,7 @@
%global __python %{__python3}
Name: qarte
-Version: 4.15.0
+Version: 4.15.1
Release: 1%{?dist}
License: GPLv3+
URL: https://launchpad.net/qarte
@@ -49,6 +49,9 @@ cp -pR locale %{buildroot}%{_datadir}
%{_datadir}/icons/hicolor/96x96/apps/%{name}.png
%changelog
+* Tue Nov 02 2021 Sérgio Basto <sergio(a)serjux.com> - 4.15.1-1
+- Update qarte to 4.15.1
+
* Tue Nov 02 2021 Sérgio Basto <sergio(a)serjux.com> - 4.15.0-1
- Update qarte to 4.15.0
diff --git a/sources b/sources
index fafb072..4e02c92 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (qarte-4.15.0.tar.gz) = 7dcdd51fec4c8d1db346cc4efea66516199ed0b5305dbac767944b03a8ad8b5bc5ab81244160af67be055ace2330c001a26fb98d635a0fbd8209c815b623f41c
+SHA512 (qarte-4.15.1.tar.gz) = 242e78af33a6210b5c8da05b456429de7846fe798cda08c1cfa0fb89929584f3655b785f77869b076290d1ae63a1eb1badb1971c34d2edfeaedb72e8b6907ff1
3 years, 3 months