From 748bcf5118829456be6216b239178aeb04d8d9ad Mon Sep 17 00:00:00 2001 From: windowsboy111 Date: Sun, 20 Nov 2022 13:26:34 +0800 Subject: [PATCH 01/74] Add chkupdate (#32) --- .../elementary/contractor/chkupdate.py | 19 +++++++++++++++++++ .../elementary/editorconfig/chkupdate.py | 19 +++++++++++++++++++ .../elementary-calculator/chkupdate.py | 19 +++++++++++++++++++ .../elementary/elementary-camera/chkupdate.py | 19 +++++++++++++++++++ .../elementary-capnet-assist/chkupdate.py | 19 +++++++++++++++++++ .../elementary/elementary-code/chkupdate.py | 19 +++++++++++++++++++ .../elementary-greeter/chkupdate.py | 19 +++++++++++++++++++ .../elementary-notifications/chkupdate.py | 19 +++++++++++++++++++ .../elementary-onboarding/chkupdate.py | 19 +++++++++++++++++++ .../elementary/elementary-photos/chkupdate.py | 19 +++++++++++++++++++ .../elementary/elementary-print/chkupdate.py | 19 +++++++++++++++++++ .../elementary-screenshot-tool/chkupdate.py | 19 +++++++++++++++++++ .../elementary-settings-daemon/chkupdate.py | 19 +++++++++++++++++++ .../elementary-shortcut-overlay/chkupdate.py | 19 +++++++++++++++++++ .../elementary-sound-theme/chkupdate.py | 19 +++++++++++++++++++ .../elementary/elementary-tasks/chkupdate.py | 19 +++++++++++++++++++ .../elementary/elementary-theme/chkupdate.py | 19 +++++++++++++++++++ .../elementary/elementary-videos/chkupdate.py | 19 +++++++++++++++++++ .../impallari-raleway-fonts/chkupdate.py | 19 +++++++++++++++++++ .../pantheon-agent-geoclue2/chkupdate.py | 19 +++++++++++++++++++ .../pantheon-agent-polkit/chkupdate.py | 19 +++++++++++++++++++ 21 files changed, 399 insertions(+) create mode 100644 anda/desktops/elementary/contractor/chkupdate.py create mode 100644 anda/desktops/elementary/editorconfig/chkupdate.py create mode 100644 anda/desktops/elementary/elementary-calculator/chkupdate.py create mode 100644 anda/desktops/elementary/elementary-camera/chkupdate.py create mode 100644 anda/desktops/elementary/elementary-capnet-assist/chkupdate.py create mode 100644 anda/desktops/elementary/elementary-code/chkupdate.py create mode 100644 anda/desktops/elementary/elementary-greeter/chkupdate.py create mode 100644 anda/desktops/elementary/elementary-notifications/chkupdate.py create mode 100644 anda/desktops/elementary/elementary-onboarding/chkupdate.py create mode 100644 anda/desktops/elementary/elementary-photos/chkupdate.py create mode 100644 anda/desktops/elementary/elementary-print/chkupdate.py create mode 100644 anda/desktops/elementary/elementary-screenshot-tool/chkupdate.py create mode 100644 anda/desktops/elementary/elementary-settings-daemon/chkupdate.py create mode 100644 anda/desktops/elementary/elementary-shortcut-overlay/chkupdate.py create mode 100644 anda/desktops/elementary/elementary-sound-theme/chkupdate.py create mode 100644 anda/desktops/elementary/elementary-tasks/chkupdate.py create mode 100644 anda/desktops/elementary/elementary-theme/chkupdate.py create mode 100644 anda/desktops/elementary/elementary-videos/chkupdate.py create mode 100644 anda/desktops/elementary/impallari-raleway-fonts/chkupdate.py create mode 100644 anda/desktops/elementary/pantheon-agent-geoclue2/chkupdate.py create mode 100644 anda/desktops/elementary/pantheon-agent-polkit/chkupdate.py diff --git a/anda/desktops/elementary/contractor/chkupdate.py b/anda/desktops/elementary/contractor/chkupdate.py new file mode 100644 index 0000000000..464cc74a07 --- /dev/null +++ b/anda/desktops/elementary/contractor/chkupdate.py @@ -0,0 +1,19 @@ +import os +import requests +import re + +NAME = 'contractor' +REPO = "elementary/contractor" +REGEX_VER = r'Version:\s*([\.\d]+)\n' +SPEC = f"{NAME}.spec" +LINK = f'https://api.github.com/repos/{REPO}/releases/latest' + + +ver = requests.get(LINK).json()['tag_name'] +with open(SPEC, 'r') as f: + matches = re.findall(REGEX_VER, f.read()) +if not len(matches): exit(f"{NAME}: Failed to match regex!") +cur = matches[0] +if ver == cur: exit(f'{NAME}: Up to date!') +print(f'{NAME}: {cur} -> {ver}') +os.system(f'rpmdev-bumpspec -n {ver} {SPEC}') diff --git a/anda/desktops/elementary/editorconfig/chkupdate.py b/anda/desktops/elementary/editorconfig/chkupdate.py new file mode 100644 index 0000000000..dcd4ad28f7 --- /dev/null +++ b/anda/desktops/elementary/editorconfig/chkupdate.py @@ -0,0 +1,19 @@ +import os +import requests +import re + +NAME = 'editorconfig' +REPO = "elementary/editorconfig-core-c" +REGEX_VER = r'Version:\s*([\.\d]+)\n' +SPEC = f"{NAME}.spec" +LINK = f'https://api.github.com/repos/{REPO}/releases/latest' + + +ver = requests.get(LINK).json()['tag_name'] +with open(SPEC, 'r') as f: + matches = re.findall(REGEX_VER, f.read()) +if not len(matches): exit(f"{NAME}: Failed to match regex!") +cur = matches[0] +if ver == cur: exit(f'{NAME}: Up to date!') +print(f'{NAME}: {cur} -> {ver}') +os.system(f'rpmdev-bumpspec -n {ver} {SPEC}') diff --git a/anda/desktops/elementary/elementary-calculator/chkupdate.py b/anda/desktops/elementary/elementary-calculator/chkupdate.py new file mode 100644 index 0000000000..c60f46f02a --- /dev/null +++ b/anda/desktops/elementary/elementary-calculator/chkupdate.py @@ -0,0 +1,19 @@ +import os +import requests +import re + +NAME = 'elementary-calculator' +REPO = "elementary/calculator" +REGEX_VER = r'Version:\s*([\.\d]+)\n' +SPEC = f"{NAME}.spec" +LINK = f'https://api.github.com/repos/{REPO}/releases/latest' + + +ver = requests.get(LINK).json()['tag_name'] +with open(SPEC, 'r') as f: + matches = re.findall(REGEX_VER, f.read()) +if not len(matches): exit(f"{NAME}: Failed to match regex!") +cur = matches[0] +if ver == cur: exit(f'{NAME}: Up to date!') +print(f'{NAME}: {cur} -> {ver}') +os.system(f'rpmdev-bumpspec -n {ver} {SPEC}') diff --git a/anda/desktops/elementary/elementary-camera/chkupdate.py b/anda/desktops/elementary/elementary-camera/chkupdate.py new file mode 100644 index 0000000000..8b8985cf89 --- /dev/null +++ b/anda/desktops/elementary/elementary-camera/chkupdate.py @@ -0,0 +1,19 @@ +import os +import requests +import re + +NAME = 'elementary-camera' +REPO = "elementary/camera" +REGEX_VER = r'Version:\s*([\.\d]+)\n' +SPEC = f"{NAME}.spec" +LINK = f'https://api.github.com/repos/{REPO}/releases/latest' + + +ver = requests.get(LINK).json()['tag_name'] +with open(SPEC, 'r') as f: + matches = re.findall(REGEX_VER, f.read()) +if not len(matches): exit(f"{NAME}: Failed to match regex!") +cur = matches[0] +if ver == cur: exit(f'{NAME}: Up to date!') +print(f'{NAME}: {cur} -> {ver}') +os.system(f'rpmdev-bumpspec -n {ver} {SPEC}') diff --git a/anda/desktops/elementary/elementary-capnet-assist/chkupdate.py b/anda/desktops/elementary/elementary-capnet-assist/chkupdate.py new file mode 100644 index 0000000000..d682596e3b --- /dev/null +++ b/anda/desktops/elementary/elementary-capnet-assist/chkupdate.py @@ -0,0 +1,19 @@ +import os +import requests +import re + +NAME = 'elementary-capnet-assist' +REPO = "elementary/capnet-assist" +REGEX_VER = r'Version:\s*([\.\d]+)\n' +SPEC = f"{NAME}.spec" +LINK = f'https://api.github.com/repos/{REPO}/releases/latest' + + +ver = requests.get(LINK).json()['tag_name'] +with open(SPEC, 'r') as f: + matches = re.findall(REGEX_VER, f.read()) +if not len(matches): exit(f"{NAME}: Failed to match regex!") +cur = matches[0] +if ver == cur: exit(f'{NAME}: Up to date!') +print(f'{NAME}: {cur} -> {ver}') +os.system(f'rpmdev-bumpspec -n {ver} {SPEC}') diff --git a/anda/desktops/elementary/elementary-code/chkupdate.py b/anda/desktops/elementary/elementary-code/chkupdate.py new file mode 100644 index 0000000000..dac1cc8e08 --- /dev/null +++ b/anda/desktops/elementary/elementary-code/chkupdate.py @@ -0,0 +1,19 @@ +import os +import requests +import re + +NAME = 'elementary-code' +REPO = "elementary/code" +REGEX_VER = r'Version:\s*([\.\d]+)\n' +SPEC = f"{NAME}.spec" +LINK = f'https://api.github.com/repos/{REPO}/releases/latest' + + +ver = requests.get(LINK).json()['tag_name'] +with open(SPEC, 'r') as f: + matches = re.findall(REGEX_VER, f.read()) +if not len(matches): exit(f"{NAME}: Failed to match regex!") +cur = matches[0] +if ver == cur: exit(f'{NAME}: Up to date!') +print(f'{NAME}: {cur} -> {ver}') +os.system(f'rpmdev-bumpspec -n {ver} {SPEC}') diff --git a/anda/desktops/elementary/elementary-greeter/chkupdate.py b/anda/desktops/elementary/elementary-greeter/chkupdate.py new file mode 100644 index 0000000000..68b59f3785 --- /dev/null +++ b/anda/desktops/elementary/elementary-greeter/chkupdate.py @@ -0,0 +1,19 @@ +import os +import requests +import re + +NAME = 'elementary-greeter' +REPO = "elementary/greeter" +REGEX_VER = r'Version:\s*([\.\d]+)\n' +SPEC = f"{NAME}.spec" +LINK = f'https://api.github.com/repos/{REPO}/releases/latest' + + +ver = requests.get(LINK).json()['tag_name'] +with open(SPEC, 'r') as f: + matches = re.findall(REGEX_VER, f.read()) +if not len(matches): exit(f"{NAME}: Failed to match regex!") +cur = matches[0] +if ver == cur: exit(f'{NAME}: Up to date!') +print(f'{NAME}: {cur} -> {ver}') +os.system(f'rpmdev-bumpspec -n {ver} {SPEC}') diff --git a/anda/desktops/elementary/elementary-notifications/chkupdate.py b/anda/desktops/elementary/elementary-notifications/chkupdate.py new file mode 100644 index 0000000000..b0fcee367c --- /dev/null +++ b/anda/desktops/elementary/elementary-notifications/chkupdate.py @@ -0,0 +1,19 @@ +import os +import requests +import re + +NAME = 'elementary-notifications' +REPO = "elementary/notifications" +REGEX_VER = r'Version:\s*([\.\d]+)\n' +SPEC = f"{NAME}.spec" +LINK = f'https://api.github.com/repos/{REPO}/releases/latest' + + +ver = requests.get(LINK).json()['tag_name'] +with open(SPEC, 'r') as f: + matches = re.findall(REGEX_VER, f.read()) +if not len(matches): exit(f"{NAME}: Failed to match regex!") +cur = matches[0] +if ver == cur: exit(f'{NAME}: Up to date!') +print(f'{NAME}: {cur} -> {ver}') +os.system(f'rpmdev-bumpspec -n {ver} {SPEC}') diff --git a/anda/desktops/elementary/elementary-onboarding/chkupdate.py b/anda/desktops/elementary/elementary-onboarding/chkupdate.py new file mode 100644 index 0000000000..879c4e4741 --- /dev/null +++ b/anda/desktops/elementary/elementary-onboarding/chkupdate.py @@ -0,0 +1,19 @@ +import os +import requests +import re + +NAME = 'elementary-onboarding' +REPO = "elementary/onboarding" +REGEX_VER = r'Version:\s*([\.\d]+)\n' +SPEC = f"{NAME}.spec" +LINK = f'https://api.github.com/repos/{REPO}/releases/latest' + + +ver = requests.get(LINK).json()['tag_name'] +with open(SPEC, 'r') as f: + matches = re.findall(REGEX_VER, f.read()) +if not len(matches): exit(f"{NAME}: Failed to match regex!") +cur = matches[0] +if ver == cur: exit(f'{NAME}: Up to date!') +print(f'{NAME}: {cur} -> {ver}') +os.system(f'rpmdev-bumpspec -n {ver} {SPEC}') diff --git a/anda/desktops/elementary/elementary-photos/chkupdate.py b/anda/desktops/elementary/elementary-photos/chkupdate.py new file mode 100644 index 0000000000..c05849a807 --- /dev/null +++ b/anda/desktops/elementary/elementary-photos/chkupdate.py @@ -0,0 +1,19 @@ +import os +import requests +import re + +NAME = 'elementary-photos' +REPO = "elementary/photos" +REGEX_VER = r'Version:\s*([\.\d]+)\n' +SPEC = f"{NAME}.spec" +LINK = f'https://api.github.com/repos/{REPO}/releases/latest' + + +ver = requests.get(LINK).json()['tag_name'] +with open(SPEC, 'r') as f: + matches = re.findall(REGEX_VER, f.read()) +if not len(matches): exit(f"{NAME}: Failed to match regex!") +cur = matches[0] +if ver == cur: exit(f'{NAME}: Up to date!') +print(f'{NAME}: {cur} -> {ver}') +os.system(f'rpmdev-bumpspec -n {ver} {SPEC}') diff --git a/anda/desktops/elementary/elementary-print/chkupdate.py b/anda/desktops/elementary/elementary-print/chkupdate.py new file mode 100644 index 0000000000..dd76792462 --- /dev/null +++ b/anda/desktops/elementary/elementary-print/chkupdate.py @@ -0,0 +1,19 @@ +import os +import requests +import re + +NAME = 'elementary-print' +REPO = "elementary/print" +REGEX_VER = r'Version:\s*([\.\d]+)\n' +SPEC = f"{NAME}.spec" +LINK = f'https://api.github.com/repos/{REPO}/releases/latest' + + +ver = requests.get(LINK).json()['tag_name'] +with open(SPEC, 'r') as f: + matches = re.findall(REGEX_VER, f.read()) +if not len(matches): exit(f"{NAME}: Failed to match regex!") +cur = matches[0] +if ver == cur: exit(f'{NAME}: Up to date!') +print(f'{NAME}: {cur} -> {ver}') +os.system(f'rpmdev-bumpspec -n {ver} {SPEC}') diff --git a/anda/desktops/elementary/elementary-screenshot-tool/chkupdate.py b/anda/desktops/elementary/elementary-screenshot-tool/chkupdate.py new file mode 100644 index 0000000000..66e032de8e --- /dev/null +++ b/anda/desktops/elementary/elementary-screenshot-tool/chkupdate.py @@ -0,0 +1,19 @@ +import os +import requests +import re + +NAME = 'elementary-screenshot-tool' +REPO = "elementary/screenshot" +REGEX_VER = r'Version:\s*([\.\d]+)\n' +SPEC = f"{NAME}.spec" +LINK = f'https://api.github.com/repos/{REPO}/releases/latest' + + +ver = requests.get(LINK).json()['tag_name'] +with open(SPEC, 'r') as f: + matches = re.findall(REGEX_VER, f.read()) +if not len(matches): exit(f"{NAME}: Failed to match regex!") +cur = matches[0] +if ver == cur: exit(f'{NAME}: Up to date!') +print(f'{NAME}: {cur} -> {ver}') +os.system(f'rpmdev-bumpspec -n {ver} {SPEC}') diff --git a/anda/desktops/elementary/elementary-settings-daemon/chkupdate.py b/anda/desktops/elementary/elementary-settings-daemon/chkupdate.py new file mode 100644 index 0000000000..024eb1519c --- /dev/null +++ b/anda/desktops/elementary/elementary-settings-daemon/chkupdate.py @@ -0,0 +1,19 @@ +import os +import requests +import re + +NAME = 'elementary-settings-daemon' +REPO = "elementary/settings-daemon" +REGEX_VER = r'Version:\s*([\.\d]+)\n' +SPEC = f"{NAME}.spec" +LINK = f'https://api.github.com/repos/{REPO}/releases/latest' + + +ver = requests.get(LINK).json()['tag_name'] +with open(SPEC, 'r') as f: + matches = re.findall(REGEX_VER, f.read()) +if not len(matches): exit(f"{NAME}: Failed to match regex!") +cur = matches[0] +if ver == cur: exit(f'{NAME}: Up to date!') +print(f'{NAME}: {cur} -> {ver}') +os.system(f'rpmdev-bumpspec -n {ver} {SPEC}') diff --git a/anda/desktops/elementary/elementary-shortcut-overlay/chkupdate.py b/anda/desktops/elementary/elementary-shortcut-overlay/chkupdate.py new file mode 100644 index 0000000000..7c93185d81 --- /dev/null +++ b/anda/desktops/elementary/elementary-shortcut-overlay/chkupdate.py @@ -0,0 +1,19 @@ +import os +import requests +import re + +NAME = 'elementary-shortcut-overlay' +REPO = "elementary/shortcut-overlay" +REGEX_VER = r'Version:\s*([\.\d]+)\n' +SPEC = f"{NAME}.spec" +LINK = f'https://api.github.com/repos/{REPO}/releases/latest' + + +ver = requests.get(LINK).json()['tag_name'] +with open(SPEC, 'r') as f: + matches = re.findall(REGEX_VER, f.read()) +if not len(matches): exit(f"{NAME}: Failed to match regex!") +cur = matches[0] +if ver == cur: exit(f'{NAME}: Up to date!') +print(f'{NAME}: {cur} -> {ver}') +os.system(f'rpmdev-bumpspec -n {ver} {SPEC}') diff --git a/anda/desktops/elementary/elementary-sound-theme/chkupdate.py b/anda/desktops/elementary/elementary-sound-theme/chkupdate.py new file mode 100644 index 0000000000..1097665687 --- /dev/null +++ b/anda/desktops/elementary/elementary-sound-theme/chkupdate.py @@ -0,0 +1,19 @@ +import os +import requests +import re + +NAME = 'elementary-sound-theme' +REPO = "elementary/sound-theme" +REGEX_VER = r'Version:\s*([\.\d]+)\n' +SPEC = f"{NAME}.spec" +LINK = f'https://api.github.com/repos/{REPO}/releases/latest' + + +ver = requests.get(LINK).json()['tag_name'] +with open(SPEC, 'r') as f: + matches = re.findall(REGEX_VER, f.read()) +if not len(matches): exit(f"{NAME}: Failed to match regex!") +cur = matches[0] +if ver == cur: exit(f'{NAME}: Up to date!') +print(f'{NAME}: {cur} -> {ver}') +os.system(f'rpmdev-bumpspec -n {ver} {SPEC}') diff --git a/anda/desktops/elementary/elementary-tasks/chkupdate.py b/anda/desktops/elementary/elementary-tasks/chkupdate.py new file mode 100644 index 0000000000..7062745cfe --- /dev/null +++ b/anda/desktops/elementary/elementary-tasks/chkupdate.py @@ -0,0 +1,19 @@ +import os +import requests +import re + +NAME = 'elementary-tasks' +REPO = "elementary/tasks" +REGEX_VER = r'Version:\s*([\.\d]+)\n' +SPEC = f"{NAME}.spec" +LINK = f'https://api.github.com/repos/{REPO}/releases/latest' + + +ver = requests.get(LINK).json()['tag_name'] +with open(SPEC, 'r') as f: + matches = re.findall(REGEX_VER, f.read()) +if not len(matches): exit(f"{NAME}: Failed to match regex!") +cur = matches[0] +if ver == cur: exit(f'{NAME}: Up to date!') +print(f'{NAME}: {cur} -> {ver}') +os.system(f'rpmdev-bumpspec -n {ver} {SPEC}') diff --git a/anda/desktops/elementary/elementary-theme/chkupdate.py b/anda/desktops/elementary/elementary-theme/chkupdate.py new file mode 100644 index 0000000000..c9ead73f47 --- /dev/null +++ b/anda/desktops/elementary/elementary-theme/chkupdate.py @@ -0,0 +1,19 @@ +import os +import requests +import re + +NAME = 'elementary-theme' +REPO = "elementary/stylesheet" +REGEX_VER = r'Version:\s*([\.\d]+)\n' +SPEC = f"{NAME}.spec" +LINK = f'https://api.github.com/repos/{REPO}/releases/latest' + + +ver = requests.get(LINK).json()['tag_name'] +with open(SPEC, 'r') as f: + matches = re.findall(REGEX_VER, f.read()) +if not len(matches): exit(f"{NAME}: Failed to match regex!") +cur = matches[0] +if ver == cur: exit(f'{NAME}: Up to date!') +print(f'{NAME}: {cur} -> {ver}') +os.system(f'rpmdev-bumpspec -n {ver} {SPEC}') diff --git a/anda/desktops/elementary/elementary-videos/chkupdate.py b/anda/desktops/elementary/elementary-videos/chkupdate.py new file mode 100644 index 0000000000..fea2278962 --- /dev/null +++ b/anda/desktops/elementary/elementary-videos/chkupdate.py @@ -0,0 +1,19 @@ +import os +import requests +import re + +NAME = 'elementary-videos' +REPO = "elementary/videos" +REGEX_VER = r'Version:\s*([\.\d]+)\n' +SPEC = f"{NAME}.spec" +LINK = f'https://api.github.com/repos/{REPO}/releases/latest' + + +ver = requests.get(LINK).json()['tag_name'] +with open(SPEC, 'r') as f: + matches = re.findall(REGEX_VER, f.read()) +if not len(matches): exit(f"{NAME}: Failed to match regex!") +cur = matches[0] +if ver == cur: exit(f'{NAME}: Up to date!') +print(f'{NAME}: {cur} -> {ver}') +os.system(f'rpmdev-bumpspec -n {ver} {SPEC}') diff --git a/anda/desktops/elementary/impallari-raleway-fonts/chkupdate.py b/anda/desktops/elementary/impallari-raleway-fonts/chkupdate.py new file mode 100644 index 0000000000..d1f19f980e --- /dev/null +++ b/anda/desktops/elementary/impallari-raleway-fonts/chkupdate.py @@ -0,0 +1,19 @@ +import os +import requests +import re + +NAME = 'impallari-raleway-fonts' +REPO = "alexeiva/Raleway" +REGEX_VER = r'Version:\s*([\.\d]+)\n' +SPEC = f"{NAME}.spec" +LINK = f'https://api.github.com/repos/{REPO}/releases/latest' + + +ver = requests.get(LINK).json()['tag_name'] +with open(SPEC, 'r') as f: + matches = re.findall(REGEX_VER, f.read()) +if not len(matches): exit(f"{NAME}: Failed to match regex!") +cur = matches[0] +if ver == cur: exit(f'{NAME}: Up to date!') +print(f'{NAME}: {cur} -> {ver}') +os.system(f'rpmdev-bumpspec -n {ver} {SPEC}') diff --git a/anda/desktops/elementary/pantheon-agent-geoclue2/chkupdate.py b/anda/desktops/elementary/pantheon-agent-geoclue2/chkupdate.py new file mode 100644 index 0000000000..04527639e4 --- /dev/null +++ b/anda/desktops/elementary/pantheon-agent-geoclue2/chkupdate.py @@ -0,0 +1,19 @@ +import os +import requests +import re + +NAME = 'pantheon-agent-geoclue2' +REPO = "elementary/pantheon-agent-geoclue2" +REGEX_VER = r'Version:\s*([\.\d]+)\n' +SPEC = f"{NAME}.spec" +LINK = f'https://api.github.com/repos/{REPO}/releases/latest' + + +ver = requests.get(LINK).json()['tag_name'] +with open(SPEC, 'r') as f: + matches = re.findall(REGEX_VER, f.read()) +if not len(matches): exit(f"{NAME}: Failed to match regex!") +cur = matches[0] +if ver == cur: exit(f'{NAME}: Up to date!') +print(f'{NAME}: {cur} -> {ver}') +os.system(f'rpmdev-bumpspec -n {ver} {SPEC}') diff --git a/anda/desktops/elementary/pantheon-agent-polkit/chkupdate.py b/anda/desktops/elementary/pantheon-agent-polkit/chkupdate.py new file mode 100644 index 0000000000..54d5c1bc56 --- /dev/null +++ b/anda/desktops/elementary/pantheon-agent-polkit/chkupdate.py @@ -0,0 +1,19 @@ +import os +import requests +import re + +NAME = 'pantheon-agent-polkit' +REPO = "elementary/pantheon-agent-polkit" +REGEX_VER = r'Version:\s*([\.\d]+)\n' +SPEC = f"{NAME}.spec" +LINK = f'https://api.github.com/repos/{REPO}/releases/latest' + + +ver = requests.get(LINK).json()['tag_name'] +with open(SPEC, 'r') as f: + matches = re.findall(REGEX_VER, f.read()) +if not len(matches): exit(f"{NAME}: Failed to match regex!") +cur = matches[0] +if ver == cur: exit(f'{NAME}: Up to date!') +print(f'{NAME}: {cur} -> {ver}') +os.system(f'rpmdev-bumpspec -n {ver} {SPEC}') From 9e7c610316bcc5423b32f197df76d1fdfe65dd38 Mon Sep 17 00:00:00 2001 From: Package Update Checker <> Date: Sun, 20 Nov 2022 06:09:27 +0000 Subject: [PATCH 02/74] Automatic Update: elementary-calculator elementary-greeter elementary-onboarding elementary-photos elementary-shortcut-overlay elementary-tasks elementary-theme pantheon-agent-geoclue2 --- .../elementary/elementary-calculator/elementary-calculator.spec | 2 +- .../elementary/elementary-greeter/elementary-greeter.spec | 2 +- .../elementary/elementary-onboarding/elementary-onboarding.spec | 2 +- .../elementary/elementary-photos/elementary-photos.spec | 2 +- .../elementary-shortcut-overlay.spec | 2 +- anda/desktops/elementary/elementary-tasks/elementary-tasks.spec | 2 +- anda/desktops/elementary/elementary-theme/elementary-theme.spec | 2 +- .../pantheon-agent-geoclue2/pantheon-agent-geoclue2.spec | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/anda/desktops/elementary/elementary-calculator/elementary-calculator.spec b/anda/desktops/elementary/elementary-calculator/elementary-calculator.spec index e7d424f589..6670b503d1 100644 --- a/anda/desktops/elementary/elementary-calculator/elementary-calculator.spec +++ b/anda/desktops/elementary/elementary-calculator/elementary-calculator.spec @@ -3,7 +3,7 @@ Name: elementary-calculator Summary: Calculator app designed for elementary -Version: 1.7.2 +Version: 2.0.0 Release: %autorelease License: GPLv3+ diff --git a/anda/desktops/elementary/elementary-greeter/elementary-greeter.spec b/anda/desktops/elementary/elementary-greeter/elementary-greeter.spec index d2093c4062..6044fd9d4b 100644 --- a/anda/desktops/elementary/elementary-greeter/elementary-greeter.spec +++ b/anda/desktops/elementary/elementary-greeter/elementary-greeter.spec @@ -3,7 +3,7 @@ Name: elementary-greeter Summary: LightDM Login Screen for the elementary desktop -Version: 6.1.0 +Version: 6.1.1 Release: %autorelease License: GPLv3 diff --git a/anda/desktops/elementary/elementary-onboarding/elementary-onboarding.spec b/anda/desktops/elementary/elementary-onboarding/elementary-onboarding.spec index 6753b72f69..d2c8632e07 100644 --- a/anda/desktops/elementary/elementary-onboarding/elementary-onboarding.spec +++ b/anda/desktops/elementary/elementary-onboarding/elementary-onboarding.spec @@ -3,7 +3,7 @@ Name: elementary-onboarding Summary: Onboarding app for new users -Version: 6.1.0 +Version: 7.0.1 Release: %autorelease License: GPLv3+ diff --git a/anda/desktops/elementary/elementary-photos/elementary-photos.spec b/anda/desktops/elementary/elementary-photos/elementary-photos.spec index d9aea2a123..098a311121 100644 --- a/anda/desktops/elementary/elementary-photos/elementary-photos.spec +++ b/anda/desktops/elementary/elementary-photos/elementary-photos.spec @@ -5,7 +5,7 @@ Name: elementary-photos Summary: Photo manager and viewer from elementary -Version: 2.7.5 +Version: 2.8.0 Release: %autorelease License: LGPLv2+ diff --git a/anda/desktops/elementary/elementary-shortcut-overlay/elementary-shortcut-overlay.spec b/anda/desktops/elementary/elementary-shortcut-overlay/elementary-shortcut-overlay.spec index 9c08e01a27..1c4954cde8 100644 --- a/anda/desktops/elementary/elementary-shortcut-overlay/elementary-shortcut-overlay.spec +++ b/anda/desktops/elementary/elementary-shortcut-overlay/elementary-shortcut-overlay.spec @@ -3,7 +3,7 @@ Name: elementary-shortcut-overlay Summary: Native, OS-wide shortcut overlay -Version: 1.2.1 +Version: 2.0.1 Release: %autorelease License: GPLv3 diff --git a/anda/desktops/elementary/elementary-tasks/elementary-tasks.spec b/anda/desktops/elementary/elementary-tasks/elementary-tasks.spec index 5aa52ffdb1..efdc53e30a 100644 --- a/anda/desktops/elementary/elementary-tasks/elementary-tasks.spec +++ b/anda/desktops/elementary/elementary-tasks/elementary-tasks.spec @@ -3,7 +3,7 @@ Name: elementary-tasks Summary: Synced tasks and reminders application -Version: 6.3.0 +Version: 6.3.1 Release: %autorelease License: GPLv3+ diff --git a/anda/desktops/elementary/elementary-theme/elementary-theme.spec b/anda/desktops/elementary/elementary-theme/elementary-theme.spec index 164acd1068..624cf97785 100644 --- a/anda/desktops/elementary/elementary-theme/elementary-theme.spec +++ b/anda/desktops/elementary/elementary-theme/elementary-theme.spec @@ -3,7 +3,7 @@ Name: elementary-theme Summary: elementary GTK+ Stylesheet -Version: 6.1.1 +Version: 7.0.1 Release: %autorelease License: GPLv3 diff --git a/anda/desktops/elementary/pantheon-agent-geoclue2/pantheon-agent-geoclue2.spec b/anda/desktops/elementary/pantheon-agent-geoclue2/pantheon-agent-geoclue2.spec index f6acd750c2..0d0790be4b 100644 --- a/anda/desktops/elementary/pantheon-agent-geoclue2/pantheon-agent-geoclue2.spec +++ b/anda/desktops/elementary/pantheon-agent-geoclue2/pantheon-agent-geoclue2.spec @@ -3,7 +3,7 @@ Name: pantheon-agent-geoclue2 Summary: Pantheon Geoclue2 Agent -Version: 1.0.5 +Version: 1.0.6 Release: %autorelease License: GPLv3 From 3a87a4b5cc4dbfe08b3be4f18c8a435562c94e6f Mon Sep 17 00:00:00 2001 From: lleyton Date: Sun, 20 Nov 2022 19:47:32 -0800 Subject: [PATCH 03/74] Add tau-hydrogen spec --- anda/tau-hydrogen/anda.hcl | 5 +++++ anda/tau-hydrogen/chkupdate.py | 19 +++++++++++++++++ anda/tau-hydrogen/tau-helium.spec | 35 +++++++++++++++++++++++++++++++ 3 files changed, 59 insertions(+) create mode 100644 anda/tau-hydrogen/anda.hcl create mode 100644 anda/tau-hydrogen/chkupdate.py create mode 100644 anda/tau-hydrogen/tau-helium.spec diff --git a/anda/tau-hydrogen/anda.hcl b/anda/tau-hydrogen/anda.hcl new file mode 100644 index 0000000000..86d42cce6c --- /dev/null +++ b/anda/tau-hydrogen/anda.hcl @@ -0,0 +1,5 @@ +project "pkg" { + rpm { + spec = "tau-hydrogen.spec" + } +} \ No newline at end of file diff --git a/anda/tau-hydrogen/chkupdate.py b/anda/tau-hydrogen/chkupdate.py new file mode 100644 index 0000000000..89ee38857d --- /dev/null +++ b/anda/tau-hydrogen/chkupdate.py @@ -0,0 +1,19 @@ +import os +import requests +import re + +NAME = 'tau-hydrogen' +REPO = "tau-OS/tau-hydrogen" +REGEX_VER = r'Version:\s*([\.\d]+)\n' +SPEC = f"{NAME}.spec" +LINK = f'https://api.github.com/repos/{REPO}/releases/latest' + + +ver = requests.get(LINK).json()['tag_name'] +with open(SPEC, 'r') as f: + matches = re.findall(REGEX_VER, f.read()) +if not len(matches): exit(f"{NAME}: Failed to match regex!") +cur = matches[0] +if ver == cur: exit(f'{NAME}: Up to date!') +print(f'{NAME}: {cur} -> {ver}') +os.system(f'rpmdev-bumpspec -n {ver} {SPEC}') diff --git a/anda/tau-hydrogen/tau-helium.spec b/anda/tau-hydrogen/tau-helium.spec new file mode 100644 index 0000000000..f5c074c1b3 --- /dev/null +++ b/anda/tau-hydrogen/tau-helium.spec @@ -0,0 +1,35 @@ +Summary: tauOS Icon Theme +Name: tau-hydrogen +Version: 1.0.1 +Release: 1%{?dist} +License: GPLv3 +URL: https://github.com/tau-OS/tau-hydrogen +Source0: https://github.com/tau-OS/tau-hydrogen/archive/refs/tags/%{version}.tar.gz +BuildArch: noarch +BuildRequires: meson +BuildRequires: ninja-build + +%description +Hydrogen is the default icon theme in tauOS + +%prep +%autosetup -n tau-hydrogen-%{version} + +%build +%meson +%meson_build + +%install +# Install licenses +mkdir -p licenses +%meson_install + +%files +%license LICENSE +%doc README.md +%{_datadir}/themes/Helium/* +%{_datadir}/themes/Helium-dark/* + +%changelog +* Sun Nov 20 2022 Lleyton Gray - 1.0.1 +- Terra Release From bd6e26f2bedd97b36a3a96ce16a5fd54de523763 Mon Sep 17 00:00:00 2001 From: lleyton Date: Sun, 20 Nov 2022 19:53:40 -0800 Subject: [PATCH 04/74] use the correct name for the spec --- anda/tau-hydrogen/{tau-helium.spec => tau-hydrogen.spec} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename anda/tau-hydrogen/{tau-helium.spec => tau-hydrogen.spec} (100%) diff --git a/anda/tau-hydrogen/tau-helium.spec b/anda/tau-hydrogen/tau-hydrogen.spec similarity index 100% rename from anda/tau-hydrogen/tau-helium.spec rename to anda/tau-hydrogen/tau-hydrogen.spec From 21e197b846227cae7c5e3ec27be6727dd5038d90 Mon Sep 17 00:00:00 2001 From: Lleyton Gray Date: Mon, 21 Nov 2022 04:22:51 +0000 Subject: [PATCH 05/74] complete spec, and throw in devcontainer config too --- .devcontainer/Dockerfile | 10 ++++++++++ .devcontainer/devcontainer.json | 11 +++++++++++ anda/tau-hydrogen/tau-hydrogen.spec | 7 +++++-- 3 files changed, 26 insertions(+), 2 deletions(-) create mode 100644 .devcontainer/Dockerfile create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile new file mode 100644 index 0000000000..9d911cb3ac --- /dev/null +++ b/.devcontainer/Dockerfile @@ -0,0 +1,10 @@ +ARG VARIANT="37" +FROM fedora:${VARIANT} + +RUN useradd -m vscode +RUN groupadd mock +RUN usermod -aG mock vscode +RUN echo vscode ALL=\(root\) NOPASSWD:ALL > /etc/sudoers.d/vscode +RUN dnf -y install git 'dnf-command(config-manager)' mock createrepo_c +RUN dnf config-manager --add-repo='https://raw.githubusercontent.com/terrapkg/subatomic-repos/main/terra.repo' +RUN dnf -y install anda diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000000..cb097274fe --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,11 @@ +{ + "name": "Fedora", + "build": { + "dockerfile": "Dockerfile", + "args": { "VARIANT": "37" } + }, + "settings": {}, + "extensions": [], + "remoteUser": "vscode", + "runArgs": ["--privileged"] +} diff --git a/anda/tau-hydrogen/tau-hydrogen.spec b/anda/tau-hydrogen/tau-hydrogen.spec index f5c074c1b3..dce742df80 100644 --- a/anda/tau-hydrogen/tau-hydrogen.spec +++ b/anda/tau-hydrogen/tau-hydrogen.spec @@ -8,6 +8,8 @@ Source0: https://github.com/tau-OS/tau-hydrogen/archive/refs/tags/%{versi BuildArch: noarch BuildRequires: meson BuildRequires: ninja-build +BuildRequires: librsvg2-tools +BuildRequires: xcursorgen %description Hydrogen is the default icon theme in tauOS @@ -27,8 +29,9 @@ mkdir -p licenses %files %license LICENSE %doc README.md -%{_datadir}/themes/Helium/* -%{_datadir}/themes/Helium-dark/* +%{_datadir}/icons/Hydrogen/* +%{_datadir}/gimp/2.0/palettes/Helium.gpl +%{_datadir}/inkscape/palettes/Helium.gpl %changelog * Sun Nov 20 2022 Lleyton Gray - 1.0.1 From 82625f3d98ff773e4af0cedfca673f840f48aaf4 Mon Sep 17 00:00:00 2001 From: Package Update Checker <> Date: Mon, 21 Nov 2022 12:13:29 +0000 Subject: [PATCH 06/74] Automatic Update: prismlauncher-nightly --- anda/games/prismlauncher-nightly/prismlauncher-nightly.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anda/games/prismlauncher-nightly/prismlauncher-nightly.spec b/anda/games/prismlauncher-nightly/prismlauncher-nightly.spec index f78798f4bb..3934cc50a9 100644 --- a/anda/games/prismlauncher-nightly/prismlauncher-nightly.spec +++ b/anda/games/prismlauncher-nightly/prismlauncher-nightly.spec @@ -2,7 +2,7 @@ %global real_name prismlauncher %global repo https://github.com/%{fancy_name}/%{fancy_name} -%global commit 30607c34a153fd32085712e18827983772d77f7b +%global commit c74f852364d512dd850111f92cc989c0c2ce7392 %global shortcommit %(c=%{commit}; echo ${c:0:7}) %global filesystem_commit cd6805e94dd5d6346be1b75a54cdc27787319dd2 %global libnbtplusplus_commit 2203af7eeb48c45398139b583615134efd8d407f From 43c23bff710c9d13950eb1ede4c03c7c3fe2c0d7 Mon Sep 17 00:00:00 2001 From: windowsboy111 Date: Mon, 21 Nov 2022 20:19:54 +0800 Subject: [PATCH 07/74] Fix builds --- .../elementary-calculator.spec | 1 + .../elementary-greeter.spec | 6 ++--- .../elementary-music/elementary-music.spec | 2 +- .../elementary-onboarding.spec | 2 +- .../elementary-photos/elementary-photos.spec | 1 + ...recated-positional-arguments-from-i1.patch | 24 ------------------- .../elementary-shortcut-overlay.spec | 3 --- .../elementary-theme/elementary-theme.spec | 1 + .../pantheon-agent-geoclue2.spec | 1 + .../58-impallari-raleway-fonts.xml | 0 .../impallari-raleway-fonts/anda.hcl | 0 .../impallari-raleway-fonts.spec | 0 12 files changed, 9 insertions(+), 32 deletions(-) delete mode 100644 anda/desktops/elementary/elementary-shortcut-overlay/0001-meson-remove-deprecated-positional-arguments-from-i1.patch rename anda/{desktops/elementary => fonts}/impallari-raleway-fonts/58-impallari-raleway-fonts.xml (100%) rename anda/{desktops/elementary => fonts}/impallari-raleway-fonts/anda.hcl (100%) rename anda/{desktops/elementary => fonts}/impallari-raleway-fonts/impallari-raleway-fonts.spec (100%) diff --git a/anda/desktops/elementary/elementary-calculator/elementary-calculator.spec b/anda/desktops/elementary/elementary-calculator/elementary-calculator.spec index e7d424f589..eb6f7cd747 100644 --- a/anda/desktops/elementary/elementary-calculator/elementary-calculator.spec +++ b/anda/desktops/elementary/elementary-calculator/elementary-calculator.spec @@ -19,6 +19,7 @@ BuildRequires: vala BuildRequires: pkgconfig(granite) >= 6.0.0 BuildRequires: pkgconfig(gtk+-3.0) >= 3.11.6 BuildRequires: pkgconfig(libhandy-1) >= 0.91.0 +BuildRequires: pkgconfig(gtk4) Requires: hicolor-icon-theme diff --git a/anda/desktops/elementary/elementary-greeter/elementary-greeter.spec b/anda/desktops/elementary/elementary-greeter/elementary-greeter.spec index d2093c4062..6b9625b7e4 100644 --- a/anda/desktops/elementary/elementary-greeter/elementary-greeter.spec +++ b/anda/desktops/elementary/elementary-greeter/elementary-greeter.spec @@ -33,9 +33,9 @@ BuildRequires: pkgconfig(granite) >= 5.0 BuildRequires: pkgconfig(gtk+-3.0) BuildRequires: pkgconfig(libhandy-1) BuildRequires: pkgconfig(liblightdm-gobject-1) -BuildRequires: pkgconfig(mutter-clutter-10) -BuildRequires: pkgconfig(mutter-cogl-10) -BuildRequires: pkgconfig(mutter-cogl-pango-10) +BuildRequires: pkgconfig(mutter-clutter-11) +BuildRequires: pkgconfig(mutter-cogl-11) +BuildRequires: pkgconfig(mutter-cogl-pango-11) BuildRequires: pkgconfig(x11) Provides: pantheon-greeter = %{version}-%{release} diff --git a/anda/desktops/elementary/elementary-music/elementary-music.spec b/anda/desktops/elementary/elementary-music/elementary-music.spec index 573f8582ab..ce9391be5e 100644 --- a/anda/desktops/elementary/elementary-music/elementary-music.spec +++ b/anda/desktops/elementary/elementary-music/elementary-music.spec @@ -28,7 +28,7 @@ BuildRequires: pkgconfig(gee-0.8) BuildRequires: pkgconfig(gio-2.0) BuildRequires: pkgconfig(glib-2.0) >= 2.40 BuildRequires: pkgconfig(gobject-2.0) -BuildRequires: pkgconfig(granite) >= 6.0.0 +BuildRequires: granite-devel >= 7.0.0 BuildRequires: pkgconfig(gstreamer-1.0) BuildRequires: pkgconfig(gstreamer-pbutils-1.0) BuildRequires: pkgconfig(gstreamer-tag-1.0) diff --git a/anda/desktops/elementary/elementary-onboarding/elementary-onboarding.spec b/anda/desktops/elementary/elementary-onboarding/elementary-onboarding.spec index 6753b72f69..d86808880a 100644 --- a/anda/desktops/elementary/elementary-onboarding/elementary-onboarding.spec +++ b/anda/desktops/elementary/elementary-onboarding/elementary-onboarding.spec @@ -12,7 +12,7 @@ Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz # Patch to fix "NotShowIn" in group "Desktop Entry" contains an unregistered value "Installer" # https://github.com/elementary/onboarding/issues/154 -Patch0: %{url}/pull/155.patch +# Patch0: %%{url}/pull/155.patch BuildRequires: desktop-file-utils BuildRequires: gettext diff --git a/anda/desktops/elementary/elementary-photos/elementary-photos.spec b/anda/desktops/elementary/elementary-photos/elementary-photos.spec index d9aea2a123..2a58e238ef 100644 --- a/anda/desktops/elementary/elementary-photos/elementary-photos.spec +++ b/anda/desktops/elementary/elementary-photos/elementary-photos.spec @@ -92,6 +92,7 @@ appstream-util validate-relax --nonet \ %{_datadir}/glib-2.0/schemas/%{appname}.gschema.xml %{_datadir}/glib-2.0/schemas/%{appname}-extras.gschema.xml %{_datadir}/icons/hicolor/*/apps/%{appname}.svg +%{_datadir}/icons/hicolor/*/apps/%{appname}-viewer.svg %{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/elementary-shortcut-overlay/0001-meson-remove-deprecated-positional-arguments-from-i1.patch b/anda/desktops/elementary/elementary-shortcut-overlay/0001-meson-remove-deprecated-positional-arguments-from-i1.patch deleted file mode 100644 index 664e1745d3..0000000000 --- a/anda/desktops/elementary/elementary-shortcut-overlay/0001-meson-remove-deprecated-positional-arguments-from-i1.patch +++ /dev/null @@ -1,24 +0,0 @@ -From 0ab2622c947396a43cf325324d693898751b126e Mon Sep 17 00:00:00 2001 -From: Fabio Valentini -Date: Wed, 13 Jul 2022 14:21:29 +0200 -Subject: [PATCH] meson: remove deprecated positional arguments from - i18n.merge_file calls - ---- - data/meson.build | 1 - - 1 file changed, 1 deletion(-) - -diff --git a/data/meson.build b/data/meson.build -index 77a7909..09feaa7 100644 ---- a/data/meson.build -+++ b/data/meson.build -@@ -8,7 +8,6 @@ i18n.merge_file ( - ) - - i18n.merge_file ( -- 'desktop', - input: 'shortcut-overlay.desktop.in', - output: meson.project_name() + '.desktop', - po_dir: join_paths(meson.source_root (), 'po', 'extra'), --- -2.37.1 diff --git a/anda/desktops/elementary/elementary-shortcut-overlay/elementary-shortcut-overlay.spec b/anda/desktops/elementary/elementary-shortcut-overlay/elementary-shortcut-overlay.spec index 9c08e01a27..e12f8dd403 100644 --- a/anda/desktops/elementary/elementary-shortcut-overlay/elementary-shortcut-overlay.spec +++ b/anda/desktops/elementary/elementary-shortcut-overlay/elementary-shortcut-overlay.spec @@ -10,9 +10,6 @@ License: GPLv3 URL: https://github.com/elementary/shortcut-overlay Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz -# meson: remove deprecated positional arguments from i18n.merge_file calls -Patch1: 0001-meson-remove-deprecated-positional-arguments-from-i1.patch - BuildRequires: desktop-file-utils BuildRequires: gettext BuildRequires: libappstream-glib diff --git a/anda/desktops/elementary/elementary-theme/elementary-theme.spec b/anda/desktops/elementary/elementary-theme/elementary-theme.spec index 164acd1068..208ae20e09 100644 --- a/anda/desktops/elementary/elementary-theme/elementary-theme.spec +++ b/anda/desktops/elementary/elementary-theme/elementary-theme.spec @@ -66,6 +66,7 @@ appstream-util validate-relax --nonet \ %dir %{_datadir}/themes/%{appname}.*/ %{_datadir}/themes/%{appname}.*/gtk-3.0/ +%{_datadir}/themes/%{appname}.*/gtk-4.0/ %{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/pantheon-agent-geoclue2/pantheon-agent-geoclue2.spec b/anda/desktops/elementary/pantheon-agent-geoclue2/pantheon-agent-geoclue2.spec index f6acd750c2..de5507874f 100644 --- a/anda/desktops/elementary/pantheon-agent-geoclue2/pantheon-agent-geoclue2.spec +++ b/anda/desktops/elementary/pantheon-agent-geoclue2/pantheon-agent-geoclue2.spec @@ -21,6 +21,7 @@ BuildRequires: pkgconfig(glib-2.0) >= 2.32.0 BuildRequires: pkgconfig(gobject-2.0) BuildRequires: pkgconfig(gtk+-3.0) BuildRequires: pkgconfig(libgeoclue-2.0) +BuildRequires: pkgconfig(granite) %description Provides a dialog asking for the user's permission when an application diff --git a/anda/desktops/elementary/impallari-raleway-fonts/58-impallari-raleway-fonts.xml b/anda/fonts/impallari-raleway-fonts/58-impallari-raleway-fonts.xml similarity index 100% rename from anda/desktops/elementary/impallari-raleway-fonts/58-impallari-raleway-fonts.xml rename to anda/fonts/impallari-raleway-fonts/58-impallari-raleway-fonts.xml diff --git a/anda/desktops/elementary/impallari-raleway-fonts/anda.hcl b/anda/fonts/impallari-raleway-fonts/anda.hcl similarity index 100% rename from anda/desktops/elementary/impallari-raleway-fonts/anda.hcl rename to anda/fonts/impallari-raleway-fonts/anda.hcl diff --git a/anda/desktops/elementary/impallari-raleway-fonts/impallari-raleway-fonts.spec b/anda/fonts/impallari-raleway-fonts/impallari-raleway-fonts.spec similarity index 100% rename from anda/desktops/elementary/impallari-raleway-fonts/impallari-raleway-fonts.spec rename to anda/fonts/impallari-raleway-fonts/impallari-raleway-fonts.spec From 63b8b0b75f20bf02374cc439a921085496d4fef6 Mon Sep 17 00:00:00 2001 From: windowsboy111 Date: Mon, 21 Nov 2022 20:20:16 +0800 Subject: [PATCH 08/74] Add kanjistrokeorders-fonts --- anda/fonts/kanjistrokeorders/anda.hcl | 6 + .../kanjistrokeorders-fonts.spec | 106 ++++++++++++++++++ 2 files changed, 112 insertions(+) create mode 100644 anda/fonts/kanjistrokeorders/anda.hcl create mode 100644 anda/fonts/kanjistrokeorders/kanjistrokeorders-fonts.spec diff --git a/anda/fonts/kanjistrokeorders/anda.hcl b/anda/fonts/kanjistrokeorders/anda.hcl new file mode 100644 index 0000000000..267cb364d1 --- /dev/null +++ b/anda/fonts/kanjistrokeorders/anda.hcl @@ -0,0 +1,6 @@ +project "pkg" { + rpm { + spec = "kanjistrokeorders-fonts.spec" + sources = "." + } +} diff --git a/anda/fonts/kanjistrokeorders/kanjistrokeorders-fonts.spec b/anda/fonts/kanjistrokeorders/kanjistrokeorders-fonts.spec new file mode 100644 index 0000000000..7144174c82 --- /dev/null +++ b/anda/fonts/kanjistrokeorders/kanjistrokeorders-fonts.spec @@ -0,0 +1,106 @@ +Name: kanjistrokeorders-fonts +Version: 4.004 +Release: %autorelease +URL: https://sites.google.com/site/nihilistorguk +License: custom +Summary: Kanji stroke order font +BuildRequires: unzip + +%description +%{summary}. + + +%prep +curl -L --http1.1 http://www.dropbox.com/s/9jv2pnw4ohxzaml/KanjiStrokeOrders_v%{version}.zip > a.zip +unzip a.zip + + +%install +mkdir -p $RPM_BUILD_ROOT/%{prefix}/%{name}/ +cp -r *.ttf $RPM_BUILD_ROOT/%{prefix}/%{name}/ + + +%clean +rm -rf $RPM_BUILD_ROOT + + +%post +{ + if test -x /sbin/conf.d/SuSEconfig.fonts ; then + # This is a SUSE system. Use proprietary SuSE tools... + if test "$YAST_IS_RUNNING" != "instsys" ; then + if test -x /sbin/SuSEconfig -a -f /sbin/conf.d/SuSEconfig.fonts ; then + /sbin/SuSEconfig --module fonts + else + echo -e "\nERROR: SuSEconfig or requested SuSEconfig module not present!\n" ; exit 1 + fi + fi + + if test -x /sbin/conf.d/SuSEconfig.pango ; then + if test "$YAST_IS_RUNNING" != "instsys" ; then + if test -x /sbin/SuSEconfig -a -f /sbin/conf.d/SuSEconfig.pango ; then + /sbin/SuSEconfig --module pango + else + echo -e "\nERROR: SuSEconfig or requested SuSEconfig module not present!\n" ; exit 1 + fi + fi + fi + else + # Use regular open standards methods... + ttmkfdir -d %{prefix}/%{name} \ + -o %{prefix}/%{name}/fonts.scale + umask 133 + /usr/X11R6/bin/mkfontdir %{prefix}/%{name} + /usr/sbin/chkfontpath -q -a %{prefix}/%{name} + [ -x /usr/bin/fc-cache ] && /usr/bin/fc-cache + fi +} &> /dev/null || : + + +%preun +{ + if [ "$1" = "0" ]; then + cd %{prefix}/%{name} + rm -f fonts.dir fonts.scale fonts.cache* + fi +} &> /dev/null || : + +%postun + +{ + if test -x /sbin/conf.d/SuSEconfig.fonts ; then + # This is a SUSE system. Use proprietary SuSE tools... + if test "$YAST_IS_RUNNING" != "instsys" ; then + if test -x /sbin/SuSEconfig -a -f /sbin/conf.d/SuSEconfig.fonts ; then + /sbin/SuSEconfig --module fonts + else + echo -e "\nERROR: SuSEconfig or requested SuSEconfig module not present!\n" ; exit 1 + fi + fi + + if test -x /sbin/conf.d/SuSEconfig.pango ; then + if test "$YAST_IS_RUNNING" != "instsys" ; then + if test -x /sbin/SuSEconfig -a -f /sbin/conf.d/SuSEconfig.pango ; then + /sbin/SuSEconfig --module pango + else + echo -e "\nERROR: SuSEconfig or requested SuSEconfig module not present!\n" ; exit 1 + fi + fi + fi + else + # Use regular open standards methods... + if [ "$1" = "0" ]; then + /usr/sbin/chkfontpath -q -r %{prefix}/%{name} + fi + [ -x /usr/bin/fc-cache ] && /usr/bin/fc-cache + fi +} &> /dev/null || : + + +%files +%defattr(-,root,root,0755) +/%{prefix}/%{name} + +%changelog +* Mon Nov 21 2022 windowsboy111 - 4.004 +- Initial package From 2969006d194ff0ed9501756a0a132198beef0ae9 Mon Sep 17 00:00:00 2001 From: windowsboy111 Date: Mon, 21 Nov 2022 20:44:29 +0800 Subject: [PATCH 09/74] Add mini-wakuwaku-fonts --- anda/fonts/mini-wakuwaku/anda.hcl | 6 + .../mini-wakuwaku/mini-wakuwaku-fonts.spec | 107 ++++++++++++++++++ 2 files changed, 113 insertions(+) create mode 100644 anda/fonts/mini-wakuwaku/anda.hcl create mode 100644 anda/fonts/mini-wakuwaku/mini-wakuwaku-fonts.spec diff --git a/anda/fonts/mini-wakuwaku/anda.hcl b/anda/fonts/mini-wakuwaku/anda.hcl new file mode 100644 index 0000000000..550d6edd1f --- /dev/null +++ b/anda/fonts/mini-wakuwaku/anda.hcl @@ -0,0 +1,6 @@ +project "pkg" { + rpm { + spec = "mini-wakuwaku-fonts.spec" + sources = "." + } +} diff --git a/anda/fonts/mini-wakuwaku/mini-wakuwaku-fonts.spec b/anda/fonts/mini-wakuwaku/mini-wakuwaku-fonts.spec new file mode 100644 index 0000000000..29b729ce96 --- /dev/null +++ b/anda/fonts/mini-wakuwaku/mini-wakuwaku-fonts.spec @@ -0,0 +1,107 @@ +Name: mini-wakuwaku-fonts +Version: 1.0 +Release: %autorelease +URL: http://mini-design.jp/font/mini-wakuwaku.html +Source0: http://mini-design.jp/font/img/mini-wakuwaku.zip +License: custom +Summary: A fat looking, rounded and cute Japanese font +BuildRequires: unzip + +%description +%{summary}. + + +%prep +%setup -n mini-wakuwaku + + +%install +mkdir -p $RPM_BUILD_ROOT/%{prefix}/%{name}/ +cp -r *.otf $RPM_BUILD_ROOT/%{prefix}/%{name}/ + + +%clean +rm -rf $RPM_BUILD_ROOT + + +%post +{ + if test -x /sbin/conf.d/SuSEconfig.fonts ; then + # This is a SUSE system. Use proprietary SuSE tools... + if test "$YAST_IS_RUNNING" != "instsys" ; then + if test -x /sbin/SuSEconfig -a -f /sbin/conf.d/SuSEconfig.fonts ; then + /sbin/SuSEconfig --module fonts + else + echo -e "\nERROR: SuSEconfig or requested SuSEconfig module not present!\n" ; exit 1 + fi + fi + + if test -x /sbin/conf.d/SuSEconfig.pango ; then + if test "$YAST_IS_RUNNING" != "instsys" ; then + if test -x /sbin/SuSEconfig -a -f /sbin/conf.d/SuSEconfig.pango ; then + /sbin/SuSEconfig --module pango + else + echo -e "\nERROR: SuSEconfig or requested SuSEconfig module not present!\n" ; exit 1 + fi + fi + fi + else + # Use regular open standards methods... + ttmkfdir -d %{prefix}/%{name} \ + -o %{prefix}/%{name}/fonts.scale + umask 133 + /usr/X11R6/bin/mkfontdir %{prefix}/%{name} + /usr/sbin/chkfontpath -q -a %{prefix}/%{name} + [ -x /usr/bin/fc-cache ] && /usr/bin/fc-cache + fi +} &> /dev/null || : + + +%preun +{ + if [ "$1" = "0" ]; then + cd %{prefix}/%{name} + rm -f fonts.dir fonts.scale fonts.cache* + fi +} &> /dev/null || : + +%postun + +{ + if test -x /sbin/conf.d/SuSEconfig.fonts ; then + # This is a SUSE system. Use proprietary SuSE tools... + if test "$YAST_IS_RUNNING" != "instsys" ; then + if test -x /sbin/SuSEconfig -a -f /sbin/conf.d/SuSEconfig.fonts ; then + /sbin/SuSEconfig --module fonts + else + echo -e "\nERROR: SuSEconfig or requested SuSEconfig module not present!\n" ; exit 1 + fi + fi + + if test -x /sbin/conf.d/SuSEconfig.pango ; then + if test "$YAST_IS_RUNNING" != "instsys" ; then + if test -x /sbin/SuSEconfig -a -f /sbin/conf.d/SuSEconfig.pango ; then + /sbin/SuSEconfig --module pango + else + echo -e "\nERROR: SuSEconfig or requested SuSEconfig module not present!\n" ; exit 1 + fi + fi + fi + else + # Use regular open standards methods... + if [ "$1" = "0" ]; then + /usr/sbin/chkfontpath -q -r %{prefix}/%{name} + fi + [ -x /usr/bin/fc-cache ] && /usr/bin/fc-cache + fi +} &> /dev/null || : + + +%files +%doc readme.html +%defattr(-,root,root,0755) +/%{prefix}/%{name} + +%changelog +* Mon Nov 21 2022 windowsboy111 - 4.004 +- Initial package From 3c85d588528bd8d4e553cd542370ff0e5516a76f Mon Sep 17 00:00:00 2001 From: windowsboy111 Date: Mon, 21 Nov 2022 21:07:13 +0800 Subject: [PATCH 10/74] Add hannom-fonts --- anda/fonts/hannom/COPYING | 7 ++ anda/fonts/hannom/anda.hcl | 6 ++ anda/fonts/hannom/hannom-fonts.spec | 108 ++++++++++++++++++++++++++++ 3 files changed, 121 insertions(+) create mode 100644 anda/fonts/hannom/COPYING create mode 100644 anda/fonts/hannom/anda.hcl create mode 100644 anda/fonts/hannom/hannom-fonts.spec diff --git a/anda/fonts/hannom/COPYING b/anda/fonts/hannom/COPYING new file mode 100644 index 0000000000..7708774b73 --- /dev/null +++ b/anda/fonts/hannom/COPYING @@ -0,0 +1,7 @@ +Complete licensing information is embedded in the TTF files; most importantly: + + Chỉ được dùng riêng, tuyệt đối không được dùng để kinh doanh & vụ lợi + +Loose translation: + + For non-commercial, non-profit, personal use only. diff --git a/anda/fonts/hannom/anda.hcl b/anda/fonts/hannom/anda.hcl new file mode 100644 index 0000000000..2e977f01d3 --- /dev/null +++ b/anda/fonts/hannom/anda.hcl @@ -0,0 +1,6 @@ +project "pkg" { + rpm { + spec = "hannom-fonts.spec" + sources = "." + } +} diff --git a/anda/fonts/hannom/hannom-fonts.spec b/anda/fonts/hannom/hannom-fonts.spec new file mode 100644 index 0000000000..f25fdd57a5 --- /dev/null +++ b/anda/fonts/hannom/hannom-fonts.spec @@ -0,0 +1,108 @@ +Name: hannom-fonts +Version: 2005 +Release: %autorelease +URL: http://vietunicode.sourceforge.net/fonts/fonts_hannom.html +Source0: https://downloads.sourceforge.net/project/vietunicode/hannom/hannom%20v%{version}/hannomH.zip +Source1: COPYING +License: custom +Summary: Chinese and Vietnamese TrueType fonts +BuildRequires: unzip + +%description +%{summary}. + + +%prep +unzip %{SOURCE0} + + +%install +mkdir -p $RPM_BUILD_ROOT/%{prefix}/%{name}/ +cp -r *.ttf $RPM_BUILD_ROOT/%{prefix}/%{name}/ + + +%clean +rm -rf $RPM_BUILD_ROOT + + +%post +{ + if test -x /sbin/conf.d/SuSEconfig.fonts ; then + # This is a SUSE system. Use proprietary SuSE tools... + if test "$YAST_IS_RUNNING" != "instsys" ; then + if test -x /sbin/SuSEconfig -a -f /sbin/conf.d/SuSEconfig.fonts ; then + /sbin/SuSEconfig --module fonts + else + echo -e "\nERROR: SuSEconfig or requested SuSEconfig module not present!\n" ; exit 1 + fi + fi + + if test -x /sbin/conf.d/SuSEconfig.pango ; then + if test "$YAST_IS_RUNNING" != "instsys" ; then + if test -x /sbin/SuSEconfig -a -f /sbin/conf.d/SuSEconfig.pango ; then + /sbin/SuSEconfig --module pango + else + echo -e "\nERROR: SuSEconfig or requested SuSEconfig module not present!\n" ; exit 1 + fi + fi + fi + else + # Use regular open standards methods... + ttmkfdir -d %{prefix}/%{name} \ + -o %{prefix}/%{name}/fonts.scale + umask 133 + /usr/X11R6/bin/mkfontdir %{prefix}/%{name} + /usr/sbin/chkfontpath -q -a %{prefix}/%{name} + [ -x /usr/bin/fc-cache ] && /usr/bin/fc-cache + fi +} &> /dev/null || : + + +%preun +{ + if [ "$1" = "0" ]; then + cd %{prefix}/%{name} + rm -f fonts.dir fonts.scale fonts.cache* + fi +} &> /dev/null || : + +%postun + +{ + if test -x /sbin/conf.d/SuSEconfig.fonts ; then + # This is a SUSE system. Use proprietary SuSE tools... + if test "$YAST_IS_RUNNING" != "instsys" ; then + if test -x /sbin/SuSEconfig -a -f /sbin/conf.d/SuSEconfig.fonts ; then + /sbin/SuSEconfig --module fonts + else + echo -e "\nERROR: SuSEconfig or requested SuSEconfig module not present!\n" ; exit 1 + fi + fi + + if test -x /sbin/conf.d/SuSEconfig.pango ; then + if test "$YAST_IS_RUNNING" != "instsys" ; then + if test -x /sbin/SuSEconfig -a -f /sbin/conf.d/SuSEconfig.pango ; then + /sbin/SuSEconfig --module pango + else + echo -e "\nERROR: SuSEconfig or requested SuSEconfig module not present!\n" ; exit 1 + fi + fi + fi + else + # Use regular open standards methods... + if [ "$1" = "0" ]; then + /usr/sbin/chkfontpath -q -r %{prefix}/%{name} + fi + [ -x /usr/bin/fc-cache ] && /usr/bin/fc-cache + fi +} &> /dev/null || : + + +%files +# %license %{SOURCE1} +%defattr(-,root,root,0755) +/%{prefix}/%{name} + +%changelog +* Mon Nov 21 2022 windowsboy111 - 4.004 +- Initial package From a5052f9be23999ce00a37b3c3937f2abc342d993 Mon Sep 17 00:00:00 2001 From: windowsboy111 Date: Mon, 21 Nov 2022 21:07:31 +0800 Subject: [PATCH 11/74] Add arphic-ukai-fonts --- anda/fonts/arphic-ukai/anda.hcl | 6 + anda/fonts/arphic-ukai/arphic-ukai-fonts.spec | 107 ++++++++++++++++++ 2 files changed, 113 insertions(+) create mode 100644 anda/fonts/arphic-ukai/anda.hcl create mode 100644 anda/fonts/arphic-ukai/arphic-ukai-fonts.spec diff --git a/anda/fonts/arphic-ukai/anda.hcl b/anda/fonts/arphic-ukai/anda.hcl new file mode 100644 index 0000000000..094b7ee897 --- /dev/null +++ b/anda/fonts/arphic-ukai/anda.hcl @@ -0,0 +1,6 @@ +project "pkg" { + rpm { + spec = "arphic-ukai-fonts.spec" + sources = "." + } +} diff --git a/anda/fonts/arphic-ukai/arphic-ukai-fonts.spec b/anda/fonts/arphic-ukai/arphic-ukai-fonts.spec new file mode 100644 index 0000000000..66e0d77950 --- /dev/null +++ b/anda/fonts/arphic-ukai/arphic-ukai-fonts.spec @@ -0,0 +1,107 @@ +Name: arphic-ukai-fonts +Version: 0.2.20080216.2 +Release: %autorelease +URL: https://www.freedesktop.org/wiki/Software/CJKUnifonts +Source0: https://deb.debian.org/debian/pool/main/f/fonts-arphic-ukai/fonts-arphic-ukai_%{version}.orig.tar.bz2 +License: custom +Summary: A fat looking, rounded and cute Japanese font +BuildRequires: unzip + +%description +%{summary}. + + +%prep +%setup -n fonts-arphic-ukai-%{version} + + +%install +install -D -m644 ukai.ttc %{buildroot}/%{_datadir}/fonts/TTF/ukai.ttc + + +%clean +rm -rf $RPM_BUILD_ROOT + + +%post +{ + if test -x /sbin/conf.d/SuSEconfig.fonts ; then + # This is a SUSE system. Use proprietary SuSE tools... + if test "$YAST_IS_RUNNING" != "instsys" ; then + if test -x /sbin/SuSEconfig -a -f /sbin/conf.d/SuSEconfig.fonts ; then + /sbin/SuSEconfig --module fonts + else + echo -e "\nERROR: SuSEconfig or requested SuSEconfig module not present!\n" ; exit 1 + fi + fi + + if test -x /sbin/conf.d/SuSEconfig.pango ; then + if test "$YAST_IS_RUNNING" != "instsys" ; then + if test -x /sbin/SuSEconfig -a -f /sbin/conf.d/SuSEconfig.pango ; then + /sbin/SuSEconfig --module pango + else + echo -e "\nERROR: SuSEconfig or requested SuSEconfig module not present!\n" ; exit 1 + fi + fi + fi + else + # Use regular open standards methods... + ttmkfdir -d %{prefix}/%{name} \ + -o %{prefix}/%{name}/fonts.scale + umask 133 + /usr/X11R6/bin/mkfontdir %{prefix}/%{name} + /usr/sbin/chkfontpath -q -a %{prefix}/%{name} + [ -x /usr/bin/fc-cache ] && /usr/bin/fc-cache + fi +} &> /dev/null || : + + +%preun +{ + if [ "$1" = "0" ]; then + cd %{prefix}/%{name} + rm -f fonts.dir fonts.scale fonts.cache* + fi +} &> /dev/null || : + +%postun + +{ + if test -x /sbin/conf.d/SuSEconfig.fonts ; then + # This is a SUSE system. Use proprietary SuSE tools... + if test "$YAST_IS_RUNNING" != "instsys" ; then + if test -x /sbin/SuSEconfig -a -f /sbin/conf.d/SuSEconfig.fonts ; then + /sbin/SuSEconfig --module fonts + else + echo -e "\nERROR: SuSEconfig or requested SuSEconfig module not present!\n" ; exit 1 + fi + fi + + if test -x /sbin/conf.d/SuSEconfig.pango ; then + if test "$YAST_IS_RUNNING" != "instsys" ; then + if test -x /sbin/SuSEconfig -a -f /sbin/conf.d/SuSEconfig.pango ; then + /sbin/SuSEconfig --module pango + else + echo -e "\nERROR: SuSEconfig or requested SuSEconfig module not present!\n" ; exit 1 + fi + fi + fi + else + # Use regular open standards methods... + if [ "$1" = "0" ]; then + /usr/sbin/chkfontpath -q -r %{prefix}/%{name} + fi + [ -x /usr/bin/fc-cache ] && /usr/bin/fc-cache + fi +} &> /dev/null || : + + +%files +%doc README +%license license/english/ARPHICPL.TXT +%defattr(-,root,root,0755) +/%{prefix}/%{name} + +%changelog +* Mon Nov 21 2022 windowsboy111 - 4.004 +- Initial package From c5d0a0bfeb1c1bf5f9bb7bf00a37ee3199890196 Mon Sep 17 00:00:00 2001 From: windowsboy111 Date: Mon, 21 Nov 2022 21:10:23 +0800 Subject: [PATCH 12/74] Add arphic-uming-fonts --- anda/fonts/arphic-ukai/arphic-ukai-fonts.spec | 3 +-- anda/fonts/arphic-uming/anda.hcl | 6 ++++++ 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 anda/fonts/arphic-uming/anda.hcl diff --git a/anda/fonts/arphic-ukai/arphic-ukai-fonts.spec b/anda/fonts/arphic-ukai/arphic-ukai-fonts.spec index 66e0d77950..6451b61122 100644 --- a/anda/fonts/arphic-ukai/arphic-ukai-fonts.spec +++ b/anda/fonts/arphic-ukai/arphic-ukai-fonts.spec @@ -4,8 +4,7 @@ Release: %autorelease URL: https://www.freedesktop.org/wiki/Software/CJKUnifonts Source0: https://deb.debian.org/debian/pool/main/f/fonts-arphic-ukai/fonts-arphic-ukai_%{version}.orig.tar.bz2 License: custom -Summary: A fat looking, rounded and cute Japanese font -BuildRequires: unzip +Summary: CJK Unicode font Kaiti style %description %{summary}. diff --git a/anda/fonts/arphic-uming/anda.hcl b/anda/fonts/arphic-uming/anda.hcl new file mode 100644 index 0000000000..648597dbaf --- /dev/null +++ b/anda/fonts/arphic-uming/anda.hcl @@ -0,0 +1,6 @@ +project "pkg" { + rpm { + spec = "arphic-uming-fonts.spec" + sources = "." + } +} From 9f848ef2aa3297d328da97a9d541be376e306c4a Mon Sep 17 00:00:00 2001 From: windowsboy111 Date: Mon, 21 Nov 2022 21:10:43 +0800 Subject: [PATCH 13/74] uhh forgot this --- .../arphic-uming/arphic-uming-fonts.spec | 106 ++++++++++++++++++ 1 file changed, 106 insertions(+) create mode 100644 anda/fonts/arphic-uming/arphic-uming-fonts.spec diff --git a/anda/fonts/arphic-uming/arphic-uming-fonts.spec b/anda/fonts/arphic-uming/arphic-uming-fonts.spec new file mode 100644 index 0000000000..08f27fada7 --- /dev/null +++ b/anda/fonts/arphic-uming/arphic-uming-fonts.spec @@ -0,0 +1,106 @@ +Name: arphic-uming-fonts +Version: 0.2.20080216.2 +Release: %autorelease +URL: https://www.freedesktop.org/wiki/Software/CJKUnifonts +Source0: https://deb.debian.org/debian/pool/main/f/fonts-arphic-uming/fonts-arphic-uming_%{version}.orig.tar.bz2 +License: custom +Summary: CJK Unicode font Ming style + +%description +%{summary}. + + +%prep +%setup -n fonts-arphic-uming-%{version} + + +%install +install -D -m644 uming.ttc %{buildroot}/%{_datadir}/fonts/TTF/uming.ttc + + +%clean +rm -rf $RPM_BUILD_ROOT + + +%post +{ + if test -x /sbin/conf.d/SuSEconfig.fonts ; then + # This is a SUSE system. Use proprietary SuSE tools... + if test "$YAST_IS_RUNNING" != "instsys" ; then + if test -x /sbin/SuSEconfig -a -f /sbin/conf.d/SuSEconfig.fonts ; then + /sbin/SuSEconfig --module fonts + else + echo -e "\nERROR: SuSEconfig or requested SuSEconfig module not present!\n" ; exit 1 + fi + fi + + if test -x /sbin/conf.d/SuSEconfig.pango ; then + if test "$YAST_IS_RUNNING" != "instsys" ; then + if test -x /sbin/SuSEconfig -a -f /sbin/conf.d/SuSEconfig.pango ; then + /sbin/SuSEconfig --module pango + else + echo -e "\nERROR: SuSEconfig or requested SuSEconfig module not present!\n" ; exit 1 + fi + fi + fi + else + # Use regular open standards methods... + ttmkfdir -d %{prefix}/%{name} \ + -o %{prefix}/%{name}/fonts.scale + umask 133 + /usr/X11R6/bin/mkfontdir %{prefix}/%{name} + /usr/sbin/chkfontpath -q -a %{prefix}/%{name} + [ -x /usr/bin/fc-cache ] && /usr/bin/fc-cache + fi +} &> /dev/null || : + + +%preun +{ + if [ "$1" = "0" ]; then + cd %{prefix}/%{name} + rm -f fonts.dir fonts.scale fonts.cache* + fi +} &> /dev/null || : + +%postun + +{ + if test -x /sbin/conf.d/SuSEconfig.fonts ; then + # This is a SUSE system. Use proprietary SuSE tools... + if test "$YAST_IS_RUNNING" != "instsys" ; then + if test -x /sbin/SuSEconfig -a -f /sbin/conf.d/SuSEconfig.fonts ; then + /sbin/SuSEconfig --module fonts + else + echo -e "\nERROR: SuSEconfig or requested SuSEconfig module not present!\n" ; exit 1 + fi + fi + + if test -x /sbin/conf.d/SuSEconfig.pango ; then + if test "$YAST_IS_RUNNING" != "instsys" ; then + if test -x /sbin/SuSEconfig -a -f /sbin/conf.d/SuSEconfig.pango ; then + /sbin/SuSEconfig --module pango + else + echo -e "\nERROR: SuSEconfig or requested SuSEconfig module not present!\n" ; exit 1 + fi + fi + fi + else + # Use regular open standards methods... + if [ "$1" = "0" ]; then + /usr/sbin/chkfontpath -q -r %{prefix}/%{name} + fi + [ -x /usr/bin/fc-cache ] && /usr/bin/fc-cache + fi +} &> /dev/null || : + + +%files +%doc README +%license license/english/ARPHICPL.TXT +%defattr(-,root,root,0755) +/%{prefix}/%{name} + +%changelog +* Mon Nov 21 2022 windowsboy111 - 4.004 +- Initial package From eae8171645e6d290f39ebaab81c3c8eb0132a110 Mon Sep 17 00:00:00 2001 From: windowsboy111 Date: Mon, 21 Nov 2022 23:03:41 +0800 Subject: [PATCH 14/74] pipeline issue ugh --- anda/fonts/arphic-ukai/arphic-ukai-fonts.spec | 79 +------------------ .../arphic-uming/arphic-uming-fonts.spec | 79 +------------------ anda/fonts/hannom/hannom-fonts.spec | 1 - .../kanjistrokeorders-fonts.spec | 1 + .../mini-wakuwaku/mini-wakuwaku-fonts.spec | 1 + 5 files changed, 4 insertions(+), 157 deletions(-) diff --git a/anda/fonts/arphic-ukai/arphic-ukai-fonts.spec b/anda/fonts/arphic-ukai/arphic-ukai-fonts.spec index 6451b61122..da3c287159 100644 --- a/anda/fonts/arphic-ukai/arphic-ukai-fonts.spec +++ b/anda/fonts/arphic-ukai/arphic-ukai-fonts.spec @@ -18,88 +18,11 @@ Summary: CJK Unicode font Kaiti style install -D -m644 ukai.ttc %{buildroot}/%{_datadir}/fonts/TTF/ukai.ttc -%clean -rm -rf $RPM_BUILD_ROOT - - -%post -{ - if test -x /sbin/conf.d/SuSEconfig.fonts ; then - # This is a SUSE system. Use proprietary SuSE tools... - if test "$YAST_IS_RUNNING" != "instsys" ; then - if test -x /sbin/SuSEconfig -a -f /sbin/conf.d/SuSEconfig.fonts ; then - /sbin/SuSEconfig --module fonts - else - echo -e "\nERROR: SuSEconfig or requested SuSEconfig module not present!\n" ; exit 1 - fi - fi - - if test -x /sbin/conf.d/SuSEconfig.pango ; then - if test "$YAST_IS_RUNNING" != "instsys" ; then - if test -x /sbin/SuSEconfig -a -f /sbin/conf.d/SuSEconfig.pango ; then - /sbin/SuSEconfig --module pango - else - echo -e "\nERROR: SuSEconfig or requested SuSEconfig module not present!\n" ; exit 1 - fi - fi - fi - else - # Use regular open standards methods... - ttmkfdir -d %{prefix}/%{name} \ - -o %{prefix}/%{name}/fonts.scale - umask 133 - /usr/X11R6/bin/mkfontdir %{prefix}/%{name} - /usr/sbin/chkfontpath -q -a %{prefix}/%{name} - [ -x /usr/bin/fc-cache ] && /usr/bin/fc-cache - fi -} &> /dev/null || : - - -%preun -{ - if [ "$1" = "0" ]; then - cd %{prefix}/%{name} - rm -f fonts.dir fonts.scale fonts.cache* - fi -} &> /dev/null || : - -%postun - -{ - if test -x /sbin/conf.d/SuSEconfig.fonts ; then - # This is a SUSE system. Use proprietary SuSE tools... - if test "$YAST_IS_RUNNING" != "instsys" ; then - if test -x /sbin/SuSEconfig -a -f /sbin/conf.d/SuSEconfig.fonts ; then - /sbin/SuSEconfig --module fonts - else - echo -e "\nERROR: SuSEconfig or requested SuSEconfig module not present!\n" ; exit 1 - fi - fi - - if test -x /sbin/conf.d/SuSEconfig.pango ; then - if test "$YAST_IS_RUNNING" != "instsys" ; then - if test -x /sbin/SuSEconfig -a -f /sbin/conf.d/SuSEconfig.pango ; then - /sbin/SuSEconfig --module pango - else - echo -e "\nERROR: SuSEconfig or requested SuSEconfig module not present!\n" ; exit 1 - fi - fi - fi - else - # Use regular open standards methods... - if [ "$1" = "0" ]; then - /usr/sbin/chkfontpath -q -r %{prefix}/%{name} - fi - [ -x /usr/bin/fc-cache ] && /usr/bin/fc-cache - fi -} &> /dev/null || : - - %files %doc README %license license/english/ARPHICPL.TXT %defattr(-,root,root,0755) -/%{prefix}/%{name} +/%{_datadir}/fonts/TTF/ukai.ttc %changelog * Mon Nov 21 2022 windowsboy111 - 4.004 diff --git a/anda/fonts/arphic-uming/arphic-uming-fonts.spec b/anda/fonts/arphic-uming/arphic-uming-fonts.spec index 08f27fada7..5386948f8b 100644 --- a/anda/fonts/arphic-uming/arphic-uming-fonts.spec +++ b/anda/fonts/arphic-uming/arphic-uming-fonts.spec @@ -18,88 +18,11 @@ Summary: CJK Unicode font Ming style install -D -m644 uming.ttc %{buildroot}/%{_datadir}/fonts/TTF/uming.ttc -%clean -rm -rf $RPM_BUILD_ROOT - - -%post -{ - if test -x /sbin/conf.d/SuSEconfig.fonts ; then - # This is a SUSE system. Use proprietary SuSE tools... - if test "$YAST_IS_RUNNING" != "instsys" ; then - if test -x /sbin/SuSEconfig -a -f /sbin/conf.d/SuSEconfig.fonts ; then - /sbin/SuSEconfig --module fonts - else - echo -e "\nERROR: SuSEconfig or requested SuSEconfig module not present!\n" ; exit 1 - fi - fi - - if test -x /sbin/conf.d/SuSEconfig.pango ; then - if test "$YAST_IS_RUNNING" != "instsys" ; then - if test -x /sbin/SuSEconfig -a -f /sbin/conf.d/SuSEconfig.pango ; then - /sbin/SuSEconfig --module pango - else - echo -e "\nERROR: SuSEconfig or requested SuSEconfig module not present!\n" ; exit 1 - fi - fi - fi - else - # Use regular open standards methods... - ttmkfdir -d %{prefix}/%{name} \ - -o %{prefix}/%{name}/fonts.scale - umask 133 - /usr/X11R6/bin/mkfontdir %{prefix}/%{name} - /usr/sbin/chkfontpath -q -a %{prefix}/%{name} - [ -x /usr/bin/fc-cache ] && /usr/bin/fc-cache - fi -} &> /dev/null || : - - -%preun -{ - if [ "$1" = "0" ]; then - cd %{prefix}/%{name} - rm -f fonts.dir fonts.scale fonts.cache* - fi -} &> /dev/null || : - -%postun - -{ - if test -x /sbin/conf.d/SuSEconfig.fonts ; then - # This is a SUSE system. Use proprietary SuSE tools... - if test "$YAST_IS_RUNNING" != "instsys" ; then - if test -x /sbin/SuSEconfig -a -f /sbin/conf.d/SuSEconfig.fonts ; then - /sbin/SuSEconfig --module fonts - else - echo -e "\nERROR: SuSEconfig or requested SuSEconfig module not present!\n" ; exit 1 - fi - fi - - if test -x /sbin/conf.d/SuSEconfig.pango ; then - if test "$YAST_IS_RUNNING" != "instsys" ; then - if test -x /sbin/SuSEconfig -a -f /sbin/conf.d/SuSEconfig.pango ; then - /sbin/SuSEconfig --module pango - else - echo -e "\nERROR: SuSEconfig or requested SuSEconfig module not present!\n" ; exit 1 - fi - fi - fi - else - # Use regular open standards methods... - if [ "$1" = "0" ]; then - /usr/sbin/chkfontpath -q -r %{prefix}/%{name} - fi - [ -x /usr/bin/fc-cache ] && /usr/bin/fc-cache - fi -} &> /dev/null || : - - %files %doc README %license license/english/ARPHICPL.TXT %defattr(-,root,root,0755) -/%{prefix}/%{name} +/%{_datadir}/fonts/TTF/uming.ttc %changelog * Mon Nov 21 2022 windowsboy111 - 4.004 diff --git a/anda/fonts/hannom/hannom-fonts.spec b/anda/fonts/hannom/hannom-fonts.spec index f25fdd57a5..9ebd5d544c 100644 --- a/anda/fonts/hannom/hannom-fonts.spec +++ b/anda/fonts/hannom/hannom-fonts.spec @@ -11,7 +11,6 @@ BuildRequires: unzip %description %{summary}. - %prep unzip %{SOURCE0} diff --git a/anda/fonts/kanjistrokeorders/kanjistrokeorders-fonts.spec b/anda/fonts/kanjistrokeorders/kanjistrokeorders-fonts.spec index 7144174c82..35bdb34f6e 100644 --- a/anda/fonts/kanjistrokeorders/kanjistrokeorders-fonts.spec +++ b/anda/fonts/kanjistrokeorders/kanjistrokeorders-fonts.spec @@ -6,6 +6,7 @@ License: custom Summary: Kanji stroke order font BuildRequires: unzip + %description %{summary}. diff --git a/anda/fonts/mini-wakuwaku/mini-wakuwaku-fonts.spec b/anda/fonts/mini-wakuwaku/mini-wakuwaku-fonts.spec index 29b729ce96..e18181ee0c 100644 --- a/anda/fonts/mini-wakuwaku/mini-wakuwaku-fonts.spec +++ b/anda/fonts/mini-wakuwaku/mini-wakuwaku-fonts.spec @@ -7,6 +7,7 @@ License: custom Summary: A fat looking, rounded and cute Japanese font BuildRequires: unzip + %description %{summary}. From 18933cb26baad91c2e43dd9e3072b7cbd754f10c Mon Sep 17 00:00:00 2001 From: windowsboy111 Date: Mon, 21 Nov 2022 23:18:48 +0800 Subject: [PATCH 15/74] Fix arphic-uming-fonts --- anda/fonts/arphic-uming/arphic-uming-fonts.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anda/fonts/arphic-uming/arphic-uming-fonts.spec b/anda/fonts/arphic-uming/arphic-uming-fonts.spec index 5386948f8b..09c81244e5 100644 --- a/anda/fonts/arphic-uming/arphic-uming-fonts.spec +++ b/anda/fonts/arphic-uming/arphic-uming-fonts.spec @@ -11,7 +11,7 @@ Summary: CJK Unicode font Ming style %prep -%setup -n fonts-arphic-uming-%{version} +%setup -n ttf-arphic-uming-%{version} %install From 58f8cdfda821aac7679a66beace6597b89ca52ee Mon Sep 17 00:00:00 2001 From: windowsboy111 Date: Mon, 21 Nov 2022 23:19:53 +0800 Subject: [PATCH 16/74] Fix buildarch --- anda/fonts/arphic-ukai/arphic-ukai-fonts.spec | 1 + anda/fonts/arphic-uming/arphic-uming-fonts.spec | 1 + anda/fonts/hannom/hannom-fonts.spec | 1 + anda/fonts/kanjistrokeorders/kanjistrokeorders-fonts.spec | 1 + anda/fonts/mini-wakuwaku/mini-wakuwaku-fonts.spec | 1 + 5 files changed, 5 insertions(+) diff --git a/anda/fonts/arphic-ukai/arphic-ukai-fonts.spec b/anda/fonts/arphic-ukai/arphic-ukai-fonts.spec index da3c287159..4ede0688d0 100644 --- a/anda/fonts/arphic-ukai/arphic-ukai-fonts.spec +++ b/anda/fonts/arphic-ukai/arphic-ukai-fonts.spec @@ -5,6 +5,7 @@ URL: https://www.freedesktop.org/wiki/Software/CJKUnifonts Source0: https://deb.debian.org/debian/pool/main/f/fonts-arphic-ukai/fonts-arphic-ukai_%{version}.orig.tar.bz2 License: custom Summary: CJK Unicode font Kaiti style +BuildArch: noarch %description %{summary}. diff --git a/anda/fonts/arphic-uming/arphic-uming-fonts.spec b/anda/fonts/arphic-uming/arphic-uming-fonts.spec index 09c81244e5..3b695aeead 100644 --- a/anda/fonts/arphic-uming/arphic-uming-fonts.spec +++ b/anda/fonts/arphic-uming/arphic-uming-fonts.spec @@ -5,6 +5,7 @@ URL: https://www.freedesktop.org/wiki/Software/CJKUnifonts Source0: https://deb.debian.org/debian/pool/main/f/fonts-arphic-uming/fonts-arphic-uming_%{version}.orig.tar.bz2 License: custom Summary: CJK Unicode font Ming style +BuildArch: noarch %description %{summary}. diff --git a/anda/fonts/hannom/hannom-fonts.spec b/anda/fonts/hannom/hannom-fonts.spec index 9ebd5d544c..107e315713 100644 --- a/anda/fonts/hannom/hannom-fonts.spec +++ b/anda/fonts/hannom/hannom-fonts.spec @@ -7,6 +7,7 @@ Source1: COPYING License: custom Summary: Chinese and Vietnamese TrueType fonts BuildRequires: unzip +BuildArch: noarch %description %{summary}. diff --git a/anda/fonts/kanjistrokeorders/kanjistrokeorders-fonts.spec b/anda/fonts/kanjistrokeorders/kanjistrokeorders-fonts.spec index 35bdb34f6e..a6d893b26d 100644 --- a/anda/fonts/kanjistrokeorders/kanjistrokeorders-fonts.spec +++ b/anda/fonts/kanjistrokeorders/kanjistrokeorders-fonts.spec @@ -5,6 +5,7 @@ URL: https://sites.google.com/site/nihilistorguk License: custom Summary: Kanji stroke order font BuildRequires: unzip +BuildArch: noarch %description diff --git a/anda/fonts/mini-wakuwaku/mini-wakuwaku-fonts.spec b/anda/fonts/mini-wakuwaku/mini-wakuwaku-fonts.spec index e18181ee0c..58036cb70a 100644 --- a/anda/fonts/mini-wakuwaku/mini-wakuwaku-fonts.spec +++ b/anda/fonts/mini-wakuwaku/mini-wakuwaku-fonts.spec @@ -6,6 +6,7 @@ Source0: http://mini-design.jp/font/img/mini-wakuwaku.zip License: custom Summary: A fat looking, rounded and cute Japanese font BuildRequires: unzip +BuildArch: noarch %description From 43470bbbaa773c1dc14e81d74746bf0932f1abc6 Mon Sep 17 00:00:00 2001 From: Package Update Checker <> Date: Tue, 22 Nov 2022 00:36:49 +0000 Subject: [PATCH 17/74] Automatic Update: prismlauncher-nightly --- anda/games/prismlauncher-nightly/prismlauncher-nightly.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anda/games/prismlauncher-nightly/prismlauncher-nightly.spec b/anda/games/prismlauncher-nightly/prismlauncher-nightly.spec index 3934cc50a9..9b155812ac 100644 --- a/anda/games/prismlauncher-nightly/prismlauncher-nightly.spec +++ b/anda/games/prismlauncher-nightly/prismlauncher-nightly.spec @@ -2,7 +2,7 @@ %global real_name prismlauncher %global repo https://github.com/%{fancy_name}/%{fancy_name} -%global commit c74f852364d512dd850111f92cc989c0c2ce7392 +%global commit 68b7aa0a4d124b231ba351ae8d37ea6c55b333a2 %global shortcommit %(c=%{commit}; echo ${c:0:7}) %global filesystem_commit cd6805e94dd5d6346be1b75a54cdc27787319dd2 %global libnbtplusplus_commit 2203af7eeb48c45398139b583615134efd8d407f From 7f372712b78f016a3f7e9de175b7adb1eac4d241 Mon Sep 17 00:00:00 2001 From: Lleyton Gray Date: Tue, 22 Nov 2022 03:31:49 +0000 Subject: [PATCH 18/74] granite -> granite-7 --- anda/desktops/elementary/{granite => granite-7}/anda.hcl | 2 +- anda/desktops/elementary/{granite => granite-7}/chkupdate.py | 2 +- .../{granite/granite.spec => granite-7/granite-7.spec} | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) rename anda/desktops/elementary/{granite => granite-7}/anda.hcl (63%) rename anda/desktops/elementary/{granite => granite-7}/chkupdate.py (96%) rename anda/desktops/elementary/{granite/granite.spec => granite-7/granite-7.spec} (98%) diff --git a/anda/desktops/elementary/granite/anda.hcl b/anda/desktops/elementary/granite-7/anda.hcl similarity index 63% rename from anda/desktops/elementary/granite/anda.hcl rename to anda/desktops/elementary/granite-7/anda.hcl index 9df96bff7c..8c9f18fdd0 100644 --- a/anda/desktops/elementary/granite/anda.hcl +++ b/anda/desktops/elementary/granite-7/anda.hcl @@ -1,6 +1,6 @@ project "pkg" { rpm { - spec = "granite.spec" + spec = "granite-7.spec" sources = "." } } diff --git a/anda/desktops/elementary/granite/chkupdate.py b/anda/desktops/elementary/granite-7/chkupdate.py similarity index 96% rename from anda/desktops/elementary/granite/chkupdate.py rename to anda/desktops/elementary/granite-7/chkupdate.py index 873df2e70a..f91a3df2f9 100644 --- a/anda/desktops/elementary/granite/chkupdate.py +++ b/anda/desktops/elementary/granite-7/chkupdate.py @@ -2,7 +2,7 @@ import os import requests import re -NAME = 'granite' +NAME = 'granite-7' REPO = "elementary/granite" REGEX_VER = r'Version:\s*([\.\d]+)\n' SPEC = f"{NAME}.spec" diff --git a/anda/desktops/elementary/granite/granite.spec b/anda/desktops/elementary/granite-7/granite-7.spec similarity index 98% rename from anda/desktops/elementary/granite/granite.spec rename to anda/desktops/elementary/granite-7/granite-7.spec index 75f00aa21b..77da59b086 100644 --- a/anda/desktops/elementary/granite/granite.spec +++ b/anda/desktops/elementary/granite-7/granite-7.spec @@ -3,7 +3,7 @@ Granite is a companion library for GTK+ and GLib. Among other things, it provides complex widgets and convenience functions designed for use in apps built for elementary.} -Name: granite +Name: granite-7 Summary: elementary companion library for GTK+ and GLib Version: 7.1.0 Release: 1%{?dist} From a37505d2983a69d4fd1e19615e104b99aa8227fe Mon Sep 17 00:00:00 2001 From: Lleyton Gray Date: Tue, 22 Nov 2022 03:39:47 +0000 Subject: [PATCH 19/74] Fix elementary-calculator --- .../elementary/elementary-calculator/elementary-calculator.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anda/desktops/elementary/elementary-calculator/elementary-calculator.spec b/anda/desktops/elementary/elementary-calculator/elementary-calculator.spec index 2abd615d29..6a10134bd6 100644 --- a/anda/desktops/elementary/elementary-calculator/elementary-calculator.spec +++ b/anda/desktops/elementary/elementary-calculator/elementary-calculator.spec @@ -16,7 +16,7 @@ BuildRequires: libappstream-glib BuildRequires: meson >= 0.49 BuildRequires: vala -BuildRequires: pkgconfig(granite) >= 6.0.0 +BuildRequires: pkgconfig(granite-7) >= 7.0.0 BuildRequires: pkgconfig(gtk+-3.0) >= 3.11.6 BuildRequires: pkgconfig(libhandy-1) >= 0.91.0 BuildRequires: pkgconfig(gtk4) From 3ee7ff870bdafc2bed781c2ae0b833b044be655c Mon Sep 17 00:00:00 2001 From: Lleyton Gray Date: Tue, 22 Nov 2022 03:39:53 +0000 Subject: [PATCH 20/74] Fix elementary-oboarding --- .../elementary-onboarding/elementary-onboarding.spec | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/anda/desktops/elementary/elementary-onboarding/elementary-onboarding.spec b/anda/desktops/elementary/elementary-onboarding/elementary-onboarding.spec index f61d2386ab..8a4301b3c7 100644 --- a/anda/desktops/elementary/elementary-onboarding/elementary-onboarding.spec +++ b/anda/desktops/elementary/elementary-onboarding/elementary-onboarding.spec @@ -23,9 +23,9 @@ BuildRequires: vala BuildRequires: pkgconfig(gee-0.8) BuildRequires: pkgconfig(glib-2.0) >= 2.64.0 BuildRequires: pkgconfig(gobject-2.0) -BuildRequires: pkgconfig(granite) >= 5.5.0 -BuildRequires: pkgconfig(gtk+-3.0) -BuildRequires: pkgconfig(libhandy-1) >= 0.80.0 +BuildRequires: pkgconfig(granite-7) >= 7.0.0 +BuildRequires: pkgconfig(gtk4) +BuildRequires: pkgconfig(libadwaita-1) Requires: hicolor-icon-theme From ced61443f61fe34a1fcf51c6ac2947a934d6a55c Mon Sep 17 00:00:00 2001 From: Lleyton Gray Date: Tue, 22 Nov 2022 03:40:02 +0000 Subject: [PATCH 21/74] Fix elementary-shortcut-overlay --- .../elementary-shortcut-overlay.spec | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/anda/desktops/elementary/elementary-shortcut-overlay/elementary-shortcut-overlay.spec b/anda/desktops/elementary/elementary-shortcut-overlay/elementary-shortcut-overlay.spec index 9b1fda581a..ce3bb6c8bb 100644 --- a/anda/desktops/elementary/elementary-shortcut-overlay/elementary-shortcut-overlay.spec +++ b/anda/desktops/elementary/elementary-shortcut-overlay/elementary-shortcut-overlay.spec @@ -17,9 +17,8 @@ BuildRequires: meson BuildRequires: vala BuildRequires: pkgconfig(gee-0.8) -BuildRequires: pkgconfig(granite) >= 5.2.0 -BuildRequires: pkgconfig(gtk+-3.0) -BuildRequires: pkgconfig(libhandy-1) >= 0.80.0 +BuildRequires: pkgconfig(granite-7) >= 7.0.0 +BuildRequires: pkgconfig(gtk4) %description This GTK+ applet reads window manager and OS keyboard shortcuts from From 1579a1fcc6d7a39a8cb2ab5b05e18ca0b1981471 Mon Sep 17 00:00:00 2001 From: windowsboy111 Date: Tue, 22 Nov 2022 13:29:25 +0800 Subject: [PATCH 22/74] Fix elementary-wallpapers --- .../elementary-wallpapers/elementary-wallpapers.spec | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/anda/desktops/elementary/elementary-wallpapers/elementary-wallpapers.spec b/anda/desktops/elementary/elementary-wallpapers/elementary-wallpapers.spec index e27f68c1f1..77a1258f4d 100644 --- a/anda/desktops/elementary/elementary-wallpapers/elementary-wallpapers.spec +++ b/anda/desktops/elementary/elementary-wallpapers/elementary-wallpapers.spec @@ -1,5 +1,5 @@ %global srcname wallpapers -%global default_wallpaper "Ryan Schroeder.jpg" +%global default_wallpaper "Photo of Valley.jpg" Name: elementary-wallpapers Summary: Collection of wallpapers from the elementary project @@ -51,20 +51,22 @@ wallpapers show up in gnome-control-center. %install +cd wallpapers # copy wallpapers to install location mkdir -p %{buildroot}/%{_datadir}/backgrounds/elementary -sh -c "cp -pav *.jpg %{buildroot}/%{_datadir}/backgrounds/elementary/" +cp -pav *.jpg %{buildroot}/%{_datadir}/backgrounds/elementary/ # create default wallpaper symlink ln -s ./%{default_wallpaper} %{buildroot}/%{_datadir}/backgrounds/elementary/default # copy backgrounds list for gnome-control-center to install location mkdir -p %{buildroot}/%{_datadir}/gnome-background-properties +cd .. cp -pav %{SOURCE1} %{buildroot}/%{_datadir}/gnome-background-properties/ %files -%license debian/copyright +%license LICENSE.md %doc README.md %{_datadir}/backgrounds/elementary/ From 588c3990d38c4b45d270cc8d80261e2323edc6f5 Mon Sep 17 00:00:00 2001 From: windowsboy111 Date: Tue, 22 Nov 2022 13:32:47 +0800 Subject: [PATCH 23/74] Bump lorax to 38.2-1 --- anda/tools/lorax/anda.hcl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/anda/tools/lorax/anda.hcl b/anda/tools/lorax/anda.hcl index eafb84806f..fc53224d3c 100644 --- a/anda/tools/lorax/anda.hcl +++ b/anda/tools/lorax/anda.hcl @@ -6,10 +6,10 @@ project "pkg" { scm_opts = { method = "git" package = "lorax" - branch = "lorax-38.0-1" + branch = "lorax-38.2-1" write_tar = "true" spec = "lorax.spec" git_get = "git clone https://github.com/weldr/lorax.git" } } -} \ No newline at end of file +} From f08abdfdbd7dac6a00d2d9670be4ec96ccec6519 Mon Sep 17 00:00:00 2001 From: windowsboy111 Date: Tue, 22 Nov 2022 13:34:43 +0800 Subject: [PATCH 24/74] Bump rust-sccache to 0.3.1 --- anda/rust/sccache/rust-sccache.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/anda/rust/sccache/rust-sccache.spec b/anda/rust/sccache/rust-sccache.spec index e39f7f09a9..f0134bbc73 100644 --- a/anda/rust/sccache/rust-sccache.spec +++ b/anda/rust/sccache/rust-sccache.spec @@ -6,8 +6,8 @@ %global crate sccache Name: rust-sccache -Version: 0.3.0 -Release: 3%{?dist} +Version: 0.3.1 +Release: %autorelease Summary: Ccache-like tool License: Apache-2.0 From 5fbed2eecb9e0ef35762dc16a95902cdc30c0206 Mon Sep 17 00:00:00 2001 From: windowsboy111 Date: Tue, 22 Nov 2022 13:35:27 +0800 Subject: [PATCH 25/74] Bump rust-zellij to 0.33.0 --- anda/rust/zellij/rust-zellij.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anda/rust/zellij/rust-zellij.spec b/anda/rust/zellij/rust-zellij.spec index 9a5da37462..1491e0e29d 100644 --- a/anda/rust/zellij/rust-zellij.spec +++ b/anda/rust/zellij/rust-zellij.spec @@ -46,7 +46,7 @@ EOF\ %global crate zellij Name: rust-zellij -Version: 0.31.4 +Version: 0.33.0 Release: %autorelease Summary: Terminal workspace with batteries included From f5e65a72670f10fc5458efbe1b0a8c9770d80395 Mon Sep 17 00:00:00 2001 From: windowsboy111 Date: Tue, 22 Nov 2022 13:39:41 +0800 Subject: [PATCH 26/74] Fix elementary-wallpapers (again) --- .../elementary/elementary-wallpapers/elementary-wallpapers.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anda/desktops/elementary/elementary-wallpapers/elementary-wallpapers.spec b/anda/desktops/elementary/elementary-wallpapers/elementary-wallpapers.spec index 77a1258f4d..a8a290cbb7 100644 --- a/anda/desktops/elementary/elementary-wallpapers/elementary-wallpapers.spec +++ b/anda/desktops/elementary/elementary-wallpapers/elementary-wallpapers.spec @@ -51,7 +51,7 @@ wallpapers show up in gnome-control-center. %install -cd wallpapers +cd backgrounds # copy wallpapers to install location mkdir -p %{buildroot}/%{_datadir}/backgrounds/elementary cp -pav *.jpg %{buildroot}/%{_datadir}/backgrounds/elementary/ From 2e058c4a196a07c9da1a693d90b2ee4672d77e1c Mon Sep 17 00:00:00 2001 From: windowsboy111 Date: Tue, 22 Nov 2022 13:42:59 +0800 Subject: [PATCH 27/74] Test elementary-music --- .../elementary-music/elementary-music.spec | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/anda/desktops/elementary/elementary-music/elementary-music.spec b/anda/desktops/elementary/elementary-music/elementary-music.spec index ce9391be5e..be27d439a2 100644 --- a/anda/desktops/elementary/elementary-music/elementary-music.spec +++ b/anda/desktops/elementary/elementary-music/elementary-music.spec @@ -89,28 +89,16 @@ appstream-util validate-relax --nonet \ %files -f %{appname}.lang %doc README.md -%license COPYING +%license LICENSE %{_bindir}/%{appname} -%{_libdir}/lib%{appname}-core.so.0 -%{_libdir}/lib%{appname}-core.so.0.1 - -%dir %{_libdir}/%{appname} -%dir %{_libdir}/%{appname}/plugins - -%{_libdir}/%{appname}/plugins/audioplayer-device.plugin -%{_libdir}/%{appname}/plugins/libaudioplayer-device.so -%{_libdir}/%{appname}/plugins/ipod-device.plugin -%{_libdir}/%{appname}/plugins/libipod-device.so - %{_datadir}/applications/%{appname}.desktop %{_datadir}/glib-2.0/schemas/%{appname}.gschema.xml %{_datadir}/icons/hicolor/*/apps/%{appname}.svg %{_datadir}/metainfo/%{appname}.appdata.xml %files devel -%{_libdir}/lib%{appname}-core.so %{_libdir}/pkgconfig/%{appname}-core.pc %{_includedir}/%{appname}-core.h From 33b15dfaea3452d04d66364a4798d14d8f820f04 Mon Sep 17 00:00:00 2001 From: windowsboy111 Date: Tue, 22 Nov 2022 13:54:27 +0800 Subject: [PATCH 28/74] Test elementary-music again --- .../elementary/elementary-music/elementary-music.spec | 7 ------- 1 file changed, 7 deletions(-) diff --git a/anda/desktops/elementary/elementary-music/elementary-music.spec b/anda/desktops/elementary/elementary-music/elementary-music.spec index be27d439a2..8108a4ac61 100644 --- a/anda/desktops/elementary/elementary-music/elementary-music.spec +++ b/anda/desktops/elementary/elementary-music/elementary-music.spec @@ -99,13 +99,6 @@ appstream-util validate-relax --nonet \ %{_datadir}/metainfo/%{appname}.appdata.xml %files devel -%{_libdir}/pkgconfig/%{appname}-core.pc - -%{_includedir}/%{appname}-core.h - -%{_datadir}/vala/vapi/%{appname}-core.deps -%{_datadir}/vala/vapi/%{appname}-core.vapi - %changelog * Thu Nov 17 2022 windowsboy111 - 7.0.0-1 From 72061b649a39bdc7ebe7f1e213e083b0367fc357 Mon Sep 17 00:00:00 2001 From: windowsboy111 Date: Tue, 22 Nov 2022 14:24:59 +0800 Subject: [PATCH 29/74] Update elementary-music.spec --- .../elementary/elementary-music/elementary-music.spec | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/anda/desktops/elementary/elementary-music/elementary-music.spec b/anda/desktops/elementary/elementary-music/elementary-music.spec index 8108a4ac61..ca009e0e02 100644 --- a/anda/desktops/elementary/elementary-music/elementary-music.spec +++ b/anda/desktops/elementary/elementary-music/elementary-music.spec @@ -11,7 +11,7 @@ utilizes Granite for a consistent and slick UI.} Name: elementary-music Summary: Music player and library from elementary Version: 7.0.0 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ URL: https://github.com/elementary/%{srcname} @@ -76,6 +76,11 @@ This package contains files needed for developing with Music. %install %meson_install +ls %{_libdir} +ls %{_libdir}/pkgconfig +ls %{_includedir} +ls %{datadir}/vala/* + %find_lang %{appname} @@ -97,6 +102,7 @@ appstream-util validate-relax --nonet \ %{_datadir}/glib-2.0/schemas/%{appname}.gschema.xml %{_datadir}/icons/hicolor/*/apps/%{appname}.svg %{_datadir}/metainfo/%{appname}.appdata.xml +%{_datadir}/locale/*/LC_MESSAGES/%{appname}.mo %files devel From eda99eb6e832346503c9981a9bddd52f77266206 Mon Sep 17 00:00:00 2001 From: windowsboy111 Date: Tue, 22 Nov 2022 18:43:27 +0800 Subject: [PATCH 30/74] Revert elementary-music --- .../elementary/elementary-music/elementary-music.spec | 6 ------ 1 file changed, 6 deletions(-) diff --git a/anda/desktops/elementary/elementary-music/elementary-music.spec b/anda/desktops/elementary/elementary-music/elementary-music.spec index ca009e0e02..3a6b06a65e 100644 --- a/anda/desktops/elementary/elementary-music/elementary-music.spec +++ b/anda/desktops/elementary/elementary-music/elementary-music.spec @@ -75,12 +75,6 @@ This package contains files needed for developing with Music. %install %meson_install - -ls %{_libdir} -ls %{_libdir}/pkgconfig -ls %{_includedir} -ls %{datadir}/vala/* - %find_lang %{appname} From 62d05f227917adcadab41f07b3ace1bc309a328a Mon Sep 17 00:00:00 2001 From: windowsboy111 Date: Tue, 22 Nov 2022 18:50:40 +0800 Subject: [PATCH 31/74] Add seto-fonts --- anda/fonts/seto/anda.hcl | 6 ++ anda/fonts/seto/seto-fonts.spec | 109 ++++++++++++++++++++++++++++++++ 2 files changed, 115 insertions(+) create mode 100644 anda/fonts/seto/anda.hcl create mode 100644 anda/fonts/seto/seto-fonts.spec diff --git a/anda/fonts/seto/anda.hcl b/anda/fonts/seto/anda.hcl new file mode 100644 index 0000000000..b4afe97aa1 --- /dev/null +++ b/anda/fonts/seto/anda.hcl @@ -0,0 +1,6 @@ +project "pkg" { + rpm { + spec = "seto-fonts.spec" + sources = "." + } +} diff --git a/anda/fonts/seto/seto-fonts.spec b/anda/fonts/seto/seto-fonts.spec new file mode 100644 index 0000000000..db85cacb9b --- /dev/null +++ b/anda/fonts/seto/seto-fonts.spec @@ -0,0 +1,109 @@ +Name: seto-fonts +Version: 6.20 +Release: %autorelease +URL: https://setofont.osdn.jp/ +Source0: https://osdn.net/frs/redir.php?m=nchc&f=setofont%2F61995%2Fsetofont_v_6_20.zip +License: OFLv1.1 +Summary: A handwritten font that contains kanji up to JIS 4th level and difficult kanji +BuildRequires: unzip +BuildArch: noarch + + +%description +%{summary}. + + +%prep +%setup -n setofont + + +%install +mkdir -p $RPM_BUILD_ROOT/%{prefix}/%{name}/ +cp -r *.ttf $RPM_BUILD_ROOT/%{prefix}/%{name}/ + + +%clean +rm -rf $RPM_BUILD_ROOT + + +%post +{ + if test -x /sbin/conf.d/SuSEconfig.fonts ; then + # This is a SUSE system. Use proprietary SuSE tools... + if test "$YAST_IS_RUNNING" != "instsys" ; then + if test -x /sbin/SuSEconfig -a -f /sbin/conf.d/SuSEconfig.fonts ; then + /sbin/SuSEconfig --module fonts + else + echo -e "\nERROR: SuSEconfig or requested SuSEconfig module not present!\n" ; exit 1 + fi + fi + + if test -x /sbin/conf.d/SuSEconfig.pango ; then + if test "$YAST_IS_RUNNING" != "instsys" ; then + if test -x /sbin/SuSEconfig -a -f /sbin/conf.d/SuSEconfig.pango ; then + /sbin/SuSEconfig --module pango + else + echo -e "\nERROR: SuSEconfig or requested SuSEconfig module not present!\n" ; exit 1 + fi + fi + fi + else + # Use regular open standards methods... + ttmkfdir -d %{prefix}/%{name} \ + -o %{prefix}/%{name}/fonts.scale + umask 133 + /usr/X11R6/bin/mkfontdir %{prefix}/%{name} + /usr/sbin/chkfontpath -q -a %{prefix}/%{name} + [ -x /usr/bin/fc-cache ] && /usr/bin/fc-cache + fi +} &> /dev/null || : + + +%preun +{ + if [ "$1" = "0" ]; then + cd %{prefix}/%{name} + rm -f fonts.dir fonts.scale fonts.cache* + fi +} &> /dev/null || : + +%postun + +{ + if test -x /sbin/conf.d/SuSEconfig.fonts ; then + # This is a SUSE system. Use proprietary SuSE tools... + if test "$YAST_IS_RUNNING" != "instsys" ; then + if test -x /sbin/SuSEconfig -a -f /sbin/conf.d/SuSEconfig.fonts ; then + /sbin/SuSEconfig --module fonts + else + echo -e "\nERROR: SuSEconfig or requested SuSEconfig module not present!\n" ; exit 1 + fi + fi + + if test -x /sbin/conf.d/SuSEconfig.pango ; then + if test "$YAST_IS_RUNNING" != "instsys" ; then + if test -x /sbin/SuSEconfig -a -f /sbin/conf.d/SuSEconfig.pango ; then + /sbin/SuSEconfig --module pango + else + echo -e "\nERROR: SuSEconfig or requested SuSEconfig module not present!\n" ; exit 1 + fi + fi + fi + else + # Use regular open standards methods... + if [ "$1" = "0" ]; then + /usr/sbin/chkfontpath -q -r %{prefix}/%{name} + fi + [ -x /usr/bin/fc-cache ] && /usr/bin/fc-cache + fi +} &> /dev/null || : + + +%files +%doc readme.txt +%defattr(-,root,root,0755) +/%{prefix}/%{name} + +%changelog +* Tue Nov 22 2022 windowsboy111 - 6.20 +- Initial package From 9bdd4dc79fa1f17459e75cc56b2c1091e64661c9 Mon Sep 17 00:00:00 2001 From: windowsboy111 Date: Tue, 22 Nov 2022 19:17:28 +0800 Subject: [PATCH 32/74] Add naikai-fonts --- anda/fonts/naikai/anda.hcl | 5 +++ anda/fonts/naikai/naikai-fonts.spec | 53 +++++++++++++++++++++++++++++ 2 files changed, 58 insertions(+) create mode 100644 anda/fonts/naikai/anda.hcl create mode 100644 anda/fonts/naikai/naikai-fonts.spec diff --git a/anda/fonts/naikai/anda.hcl b/anda/fonts/naikai/anda.hcl new file mode 100644 index 0000000000..d3d84c5849 --- /dev/null +++ b/anda/fonts/naikai/anda.hcl @@ -0,0 +1,5 @@ +project "pkg" { + rpm { + spec = "naikai-fonts.spec" + } +} diff --git a/anda/fonts/naikai/naikai-fonts.spec b/anda/fonts/naikai/naikai-fonts.spec new file mode 100644 index 0000000000..61e2bb4f66 --- /dev/null +++ b/anda/fonts/naikai/naikai-fonts.spec @@ -0,0 +1,53 @@ +Name: naikai-fonts +Version: 1.87 +Release: %autorelease +URL: https://github.com/max32002/naikaifont +Source0: %{url}/archive/refs/tags/%{version}.tar.gz +License: OFLv1.1 +Summary: A free font family derived from setofont +BuildRequires: unzip +BuildArch: noarch + +%description +%{summary}. + +%package jp +Summary: A free font family derived from setofont (JP version) +%description jp +%{summary}. 瀬戸フォントに由来、たくさん中国語文字を加えた無料なフォント + +%package tw +Summary: A free font family derived from setofont (TW version) +%description tw +%{summary}. 瀨戶字體的繁體中文補字計畫 + + +%prep +%setup -n naikaifont-1.87 + + +%install +mkdir -p $RPM_BUILD_ROOT/%{prefix}/%{name}-{jp,tw}/ +cp -r jp/*.ttf $RPM_BUILD_ROOT/%{prefix}/%{name}-jp/ +cp -r tw/*.ttf $RPM_BUILD_ROOT/%{prefix}/%{name}-tw/ + + +%clean +rm -rf $RPM_BUILD_ROOT + + +%files jp +%doc README.md +%license SIL_Open_Font_License_1.1.txt +%defattr(-,root,root,0755) +/%{prefix}/%{name}-jp + +%files tw +%doc README.md +%license SIL_Open_Font_License_1.1.txt +%defattr(-,root,root,0755) +/%{prefix}/%{name}-tw + +%changelog +* Tue Nov 22 2022 windowsboy111 - 1.87 +- Initial package From d57e194368cbc20de63730598f1e6d4d2f4836a3 Mon Sep 17 00:00:00 2001 From: windowsboy111 Date: Tue, 22 Nov 2022 20:07:16 +0800 Subject: [PATCH 33/74] Improve spec for fonts --- anda/fonts/hannom/hannom-fonts.spec | 73 ------------------- .../kanjistrokeorders-fonts.spec | 73 ------------------- .../mini-wakuwaku/mini-wakuwaku-fonts.spec | 73 ------------------- anda/fonts/seto/seto-fonts.spec | 73 ------------------- 4 files changed, 292 deletions(-) diff --git a/anda/fonts/hannom/hannom-fonts.spec b/anda/fonts/hannom/hannom-fonts.spec index 107e315713..57d9da1c97 100644 --- a/anda/fonts/hannom/hannom-fonts.spec +++ b/anda/fonts/hannom/hannom-fonts.spec @@ -25,79 +25,6 @@ cp -r *.ttf $RPM_BUILD_ROOT/%{prefix}/%{name}/ rm -rf $RPM_BUILD_ROOT -%post -{ - if test -x /sbin/conf.d/SuSEconfig.fonts ; then - # This is a SUSE system. Use proprietary SuSE tools... - if test "$YAST_IS_RUNNING" != "instsys" ; then - if test -x /sbin/SuSEconfig -a -f /sbin/conf.d/SuSEconfig.fonts ; then - /sbin/SuSEconfig --module fonts - else - echo -e "\nERROR: SuSEconfig or requested SuSEconfig module not present!\n" ; exit 1 - fi - fi - - if test -x /sbin/conf.d/SuSEconfig.pango ; then - if test "$YAST_IS_RUNNING" != "instsys" ; then - if test -x /sbin/SuSEconfig -a -f /sbin/conf.d/SuSEconfig.pango ; then - /sbin/SuSEconfig --module pango - else - echo -e "\nERROR: SuSEconfig or requested SuSEconfig module not present!\n" ; exit 1 - fi - fi - fi - else - # Use regular open standards methods... - ttmkfdir -d %{prefix}/%{name} \ - -o %{prefix}/%{name}/fonts.scale - umask 133 - /usr/X11R6/bin/mkfontdir %{prefix}/%{name} - /usr/sbin/chkfontpath -q -a %{prefix}/%{name} - [ -x /usr/bin/fc-cache ] && /usr/bin/fc-cache - fi -} &> /dev/null || : - - -%preun -{ - if [ "$1" = "0" ]; then - cd %{prefix}/%{name} - rm -f fonts.dir fonts.scale fonts.cache* - fi -} &> /dev/null || : - -%postun - -{ - if test -x /sbin/conf.d/SuSEconfig.fonts ; then - # This is a SUSE system. Use proprietary SuSE tools... - if test "$YAST_IS_RUNNING" != "instsys" ; then - if test -x /sbin/SuSEconfig -a -f /sbin/conf.d/SuSEconfig.fonts ; then - /sbin/SuSEconfig --module fonts - else - echo -e "\nERROR: SuSEconfig or requested SuSEconfig module not present!\n" ; exit 1 - fi - fi - - if test -x /sbin/conf.d/SuSEconfig.pango ; then - if test "$YAST_IS_RUNNING" != "instsys" ; then - if test -x /sbin/SuSEconfig -a -f /sbin/conf.d/SuSEconfig.pango ; then - /sbin/SuSEconfig --module pango - else - echo -e "\nERROR: SuSEconfig or requested SuSEconfig module not present!\n" ; exit 1 - fi - fi - fi - else - # Use regular open standards methods... - if [ "$1" = "0" ]; then - /usr/sbin/chkfontpath -q -r %{prefix}/%{name} - fi - [ -x /usr/bin/fc-cache ] && /usr/bin/fc-cache - fi -} &> /dev/null || : - - %files # %license %{SOURCE1} %defattr(-,root,root,0755) diff --git a/anda/fonts/kanjistrokeorders/kanjistrokeorders-fonts.spec b/anda/fonts/kanjistrokeorders/kanjistrokeorders-fonts.spec index a6d893b26d..6f4237e58a 100644 --- a/anda/fonts/kanjistrokeorders/kanjistrokeorders-fonts.spec +++ b/anda/fonts/kanjistrokeorders/kanjistrokeorders-fonts.spec @@ -26,79 +26,6 @@ cp -r *.ttf $RPM_BUILD_ROOT/%{prefix}/%{name}/ rm -rf $RPM_BUILD_ROOT -%post -{ - if test -x /sbin/conf.d/SuSEconfig.fonts ; then - # This is a SUSE system. Use proprietary SuSE tools... - if test "$YAST_IS_RUNNING" != "instsys" ; then - if test -x /sbin/SuSEconfig -a -f /sbin/conf.d/SuSEconfig.fonts ; then - /sbin/SuSEconfig --module fonts - else - echo -e "\nERROR: SuSEconfig or requested SuSEconfig module not present!\n" ; exit 1 - fi - fi - - if test -x /sbin/conf.d/SuSEconfig.pango ; then - if test "$YAST_IS_RUNNING" != "instsys" ; then - if test -x /sbin/SuSEconfig -a -f /sbin/conf.d/SuSEconfig.pango ; then - /sbin/SuSEconfig --module pango - else - echo -e "\nERROR: SuSEconfig or requested SuSEconfig module not present!\n" ; exit 1 - fi - fi - fi - else - # Use regular open standards methods... - ttmkfdir -d %{prefix}/%{name} \ - -o %{prefix}/%{name}/fonts.scale - umask 133 - /usr/X11R6/bin/mkfontdir %{prefix}/%{name} - /usr/sbin/chkfontpath -q -a %{prefix}/%{name} - [ -x /usr/bin/fc-cache ] && /usr/bin/fc-cache - fi -} &> /dev/null || : - - -%preun -{ - if [ "$1" = "0" ]; then - cd %{prefix}/%{name} - rm -f fonts.dir fonts.scale fonts.cache* - fi -} &> /dev/null || : - -%postun - -{ - if test -x /sbin/conf.d/SuSEconfig.fonts ; then - # This is a SUSE system. Use proprietary SuSE tools... - if test "$YAST_IS_RUNNING" != "instsys" ; then - if test -x /sbin/SuSEconfig -a -f /sbin/conf.d/SuSEconfig.fonts ; then - /sbin/SuSEconfig --module fonts - else - echo -e "\nERROR: SuSEconfig or requested SuSEconfig module not present!\n" ; exit 1 - fi - fi - - if test -x /sbin/conf.d/SuSEconfig.pango ; then - if test "$YAST_IS_RUNNING" != "instsys" ; then - if test -x /sbin/SuSEconfig -a -f /sbin/conf.d/SuSEconfig.pango ; then - /sbin/SuSEconfig --module pango - else - echo -e "\nERROR: SuSEconfig or requested SuSEconfig module not present!\n" ; exit 1 - fi - fi - fi - else - # Use regular open standards methods... - if [ "$1" = "0" ]; then - /usr/sbin/chkfontpath -q -r %{prefix}/%{name} - fi - [ -x /usr/bin/fc-cache ] && /usr/bin/fc-cache - fi -} &> /dev/null || : - - %files %defattr(-,root,root,0755) /%{prefix}/%{name} diff --git a/anda/fonts/mini-wakuwaku/mini-wakuwaku-fonts.spec b/anda/fonts/mini-wakuwaku/mini-wakuwaku-fonts.spec index 58036cb70a..a72f0ee0b6 100644 --- a/anda/fonts/mini-wakuwaku/mini-wakuwaku-fonts.spec +++ b/anda/fonts/mini-wakuwaku/mini-wakuwaku-fonts.spec @@ -26,79 +26,6 @@ cp -r *.otf $RPM_BUILD_ROOT/%{prefix}/%{name}/ rm -rf $RPM_BUILD_ROOT -%post -{ - if test -x /sbin/conf.d/SuSEconfig.fonts ; then - # This is a SUSE system. Use proprietary SuSE tools... - if test "$YAST_IS_RUNNING" != "instsys" ; then - if test -x /sbin/SuSEconfig -a -f /sbin/conf.d/SuSEconfig.fonts ; then - /sbin/SuSEconfig --module fonts - else - echo -e "\nERROR: SuSEconfig or requested SuSEconfig module not present!\n" ; exit 1 - fi - fi - - if test -x /sbin/conf.d/SuSEconfig.pango ; then - if test "$YAST_IS_RUNNING" != "instsys" ; then - if test -x /sbin/SuSEconfig -a -f /sbin/conf.d/SuSEconfig.pango ; then - /sbin/SuSEconfig --module pango - else - echo -e "\nERROR: SuSEconfig or requested SuSEconfig module not present!\n" ; exit 1 - fi - fi - fi - else - # Use regular open standards methods... - ttmkfdir -d %{prefix}/%{name} \ - -o %{prefix}/%{name}/fonts.scale - umask 133 - /usr/X11R6/bin/mkfontdir %{prefix}/%{name} - /usr/sbin/chkfontpath -q -a %{prefix}/%{name} - [ -x /usr/bin/fc-cache ] && /usr/bin/fc-cache - fi -} &> /dev/null || : - - -%preun -{ - if [ "$1" = "0" ]; then - cd %{prefix}/%{name} - rm -f fonts.dir fonts.scale fonts.cache* - fi -} &> /dev/null || : - -%postun - -{ - if test -x /sbin/conf.d/SuSEconfig.fonts ; then - # This is a SUSE system. Use proprietary SuSE tools... - if test "$YAST_IS_RUNNING" != "instsys" ; then - if test -x /sbin/SuSEconfig -a -f /sbin/conf.d/SuSEconfig.fonts ; then - /sbin/SuSEconfig --module fonts - else - echo -e "\nERROR: SuSEconfig or requested SuSEconfig module not present!\n" ; exit 1 - fi - fi - - if test -x /sbin/conf.d/SuSEconfig.pango ; then - if test "$YAST_IS_RUNNING" != "instsys" ; then - if test -x /sbin/SuSEconfig -a -f /sbin/conf.d/SuSEconfig.pango ; then - /sbin/SuSEconfig --module pango - else - echo -e "\nERROR: SuSEconfig or requested SuSEconfig module not present!\n" ; exit 1 - fi - fi - fi - else - # Use regular open standards methods... - if [ "$1" = "0" ]; then - /usr/sbin/chkfontpath -q -r %{prefix}/%{name} - fi - [ -x /usr/bin/fc-cache ] && /usr/bin/fc-cache - fi -} &> /dev/null || : - - %files %doc readme.html %defattr(-,root,root,0755) diff --git a/anda/fonts/seto/seto-fonts.spec b/anda/fonts/seto/seto-fonts.spec index db85cacb9b..bb55cc2a3f 100644 --- a/anda/fonts/seto/seto-fonts.spec +++ b/anda/fonts/seto/seto-fonts.spec @@ -26,79 +26,6 @@ cp -r *.ttf $RPM_BUILD_ROOT/%{prefix}/%{name}/ rm -rf $RPM_BUILD_ROOT -%post -{ - if test -x /sbin/conf.d/SuSEconfig.fonts ; then - # This is a SUSE system. Use proprietary SuSE tools... - if test "$YAST_IS_RUNNING" != "instsys" ; then - if test -x /sbin/SuSEconfig -a -f /sbin/conf.d/SuSEconfig.fonts ; then - /sbin/SuSEconfig --module fonts - else - echo -e "\nERROR: SuSEconfig or requested SuSEconfig module not present!\n" ; exit 1 - fi - fi - - if test -x /sbin/conf.d/SuSEconfig.pango ; then - if test "$YAST_IS_RUNNING" != "instsys" ; then - if test -x /sbin/SuSEconfig -a -f /sbin/conf.d/SuSEconfig.pango ; then - /sbin/SuSEconfig --module pango - else - echo -e "\nERROR: SuSEconfig or requested SuSEconfig module not present!\n" ; exit 1 - fi - fi - fi - else - # Use regular open standards methods... - ttmkfdir -d %{prefix}/%{name} \ - -o %{prefix}/%{name}/fonts.scale - umask 133 - /usr/X11R6/bin/mkfontdir %{prefix}/%{name} - /usr/sbin/chkfontpath -q -a %{prefix}/%{name} - [ -x /usr/bin/fc-cache ] && /usr/bin/fc-cache - fi -} &> /dev/null || : - - -%preun -{ - if [ "$1" = "0" ]; then - cd %{prefix}/%{name} - rm -f fonts.dir fonts.scale fonts.cache* - fi -} &> /dev/null || : - -%postun - -{ - if test -x /sbin/conf.d/SuSEconfig.fonts ; then - # This is a SUSE system. Use proprietary SuSE tools... - if test "$YAST_IS_RUNNING" != "instsys" ; then - if test -x /sbin/SuSEconfig -a -f /sbin/conf.d/SuSEconfig.fonts ; then - /sbin/SuSEconfig --module fonts - else - echo -e "\nERROR: SuSEconfig or requested SuSEconfig module not present!\n" ; exit 1 - fi - fi - - if test -x /sbin/conf.d/SuSEconfig.pango ; then - if test "$YAST_IS_RUNNING" != "instsys" ; then - if test -x /sbin/SuSEconfig -a -f /sbin/conf.d/SuSEconfig.pango ; then - /sbin/SuSEconfig --module pango - else - echo -e "\nERROR: SuSEconfig or requested SuSEconfig module not present!\n" ; exit 1 - fi - fi - fi - else - # Use regular open standards methods... - if [ "$1" = "0" ]; then - /usr/sbin/chkfontpath -q -r %{prefix}/%{name} - fi - [ -x /usr/bin/fc-cache ] && /usr/bin/fc-cache - fi -} &> /dev/null || : - - %files %doc readme.txt %defattr(-,root,root,0755) From 095f289a435a75513006118da617a7a41b1c06c9 Mon Sep 17 00:00:00 2001 From: windowsboy111 Date: Tue, 22 Nov 2022 21:19:01 +0800 Subject: [PATCH 34/74] Fix the fonts ahhhh --- anda/fonts/arphic-ukai/arphic-ukai-fonts.spec | 4 ++-- anda/fonts/arphic-uming/arphic-uming-fonts.spec | 4 ++-- anda/fonts/hannom/hannom-fonts.spec | 10 +++------- .../kanjistrokeorders/kanjistrokeorders-fonts.spec | 7 +------ anda/fonts/mini-wakuwaku/mini-wakuwaku-fonts.spec | 10 +++------- anda/fonts/naikai/naikai-fonts.spec | 14 +++++--------- 6 files changed, 16 insertions(+), 33 deletions(-) diff --git a/anda/fonts/arphic-ukai/arphic-ukai-fonts.spec b/anda/fonts/arphic-ukai/arphic-ukai-fonts.spec index 4ede0688d0..3ba9b6bc81 100644 --- a/anda/fonts/arphic-ukai/arphic-ukai-fonts.spec +++ b/anda/fonts/arphic-ukai/arphic-ukai-fonts.spec @@ -16,14 +16,14 @@ BuildArch: noarch %install -install -D -m644 ukai.ttc %{buildroot}/%{_datadir}/fonts/TTF/ukai.ttc +install -D -m644 ukai.ttc %{buildroot}/%{_datadir}/fonts/arphic-ukai/ukai.ttc %files %doc README %license license/english/ARPHICPL.TXT %defattr(-,root,root,0755) -/%{_datadir}/fonts/TTF/ukai.ttc +/%{_datadir}/fonts/arphic-ukai/ukai.ttc %changelog * Mon Nov 21 2022 windowsboy111 - 4.004 diff --git a/anda/fonts/arphic-uming/arphic-uming-fonts.spec b/anda/fonts/arphic-uming/arphic-uming-fonts.spec index 3b695aeead..17a0743e20 100644 --- a/anda/fonts/arphic-uming/arphic-uming-fonts.spec +++ b/anda/fonts/arphic-uming/arphic-uming-fonts.spec @@ -16,14 +16,14 @@ BuildArch: noarch %install -install -D -m644 uming.ttc %{buildroot}/%{_datadir}/fonts/TTF/uming.ttc +install -D -m644 uming.ttc %{buildroot}/%{_datadir}/fonts/arphic-uming/uming.ttc %files %doc README %license license/english/ARPHICPL.TXT %defattr(-,root,root,0755) -/%{_datadir}/fonts/TTF/uming.ttc +/%{_datadir}/fonts/arphic-uming/uming.ttc %changelog * Mon Nov 21 2022 windowsboy111 - 4.004 diff --git a/anda/fonts/hannom/hannom-fonts.spec b/anda/fonts/hannom/hannom-fonts.spec index 57d9da1c97..7aa70e3335 100644 --- a/anda/fonts/hannom/hannom-fonts.spec +++ b/anda/fonts/hannom/hannom-fonts.spec @@ -17,18 +17,14 @@ unzip %{SOURCE0} %install -mkdir -p $RPM_BUILD_ROOT/%{prefix}/%{name}/ -cp -r *.ttf $RPM_BUILD_ROOT/%{prefix}/%{name}/ - - -%clean -rm -rf $RPM_BUILD_ROOT +install -D -m644 'HAN NOM A.ttf' "%{buildroot}/%{_datadir}/fonts/hannom/HAN NOM A.ttf" +install -D -m644 'HAN NOM B.ttf' "%{buildroot}/%{_datadir}/fonts/hannom/HAN NOM B.ttf" %files # %license %{SOURCE1} %defattr(-,root,root,0755) -/%{prefix}/%{name} +/%{_datadir}/fonts/hannom/ %changelog * Mon Nov 21 2022 windowsboy111 - 4.004 diff --git a/anda/fonts/kanjistrokeorders/kanjistrokeorders-fonts.spec b/anda/fonts/kanjistrokeorders/kanjistrokeorders-fonts.spec index 6f4237e58a..589cc8e733 100644 --- a/anda/fonts/kanjistrokeorders/kanjistrokeorders-fonts.spec +++ b/anda/fonts/kanjistrokeorders/kanjistrokeorders-fonts.spec @@ -18,12 +18,7 @@ unzip a.zip %install -mkdir -p $RPM_BUILD_ROOT/%{prefix}/%{name}/ -cp -r *.ttf $RPM_BUILD_ROOT/%{prefix}/%{name}/ - - -%clean -rm -rf $RPM_BUILD_ROOT +install -D -m644 KanjiStrokeOrders_v%{version}.ttf %{buildroot}/%{_datadir}/fonts/TTF/KanjiStrokeOrders_v%{version}.ttf %files diff --git a/anda/fonts/mini-wakuwaku/mini-wakuwaku-fonts.spec b/anda/fonts/mini-wakuwaku/mini-wakuwaku-fonts.spec index a72f0ee0b6..2db3634a0b 100644 --- a/anda/fonts/mini-wakuwaku/mini-wakuwaku-fonts.spec +++ b/anda/fonts/mini-wakuwaku/mini-wakuwaku-fonts.spec @@ -18,18 +18,14 @@ BuildArch: noarch %install -mkdir -p $RPM_BUILD_ROOT/%{prefix}/%{name}/ -cp -r *.otf $RPM_BUILD_ROOT/%{prefix}/%{name}/ - - -%clean -rm -rf $RPM_BUILD_ROOT +install -D -m644 mini-wakuwaku-maru.otf %{buildroot}/%{_datadir}/fonts/mini-wakuwaku/mini-wakuwaku-maru.otf +install -D -m644 mini-wakuwaku.otf %{buildroot}/%{_datadir}/fonts/mini-wakuwaku/mini-wakuwaku.otf %files %doc readme.html %defattr(-,root,root,0755) -/%{prefix}/%{name} +/%{_datadir}/fonts/mini-wakuwaku/ %changelog * Mon Nov 21 2022 windowsboy111 - 4.004 diff --git a/anda/fonts/naikai/naikai-fonts.spec b/anda/fonts/naikai/naikai-fonts.spec index 61e2bb4f66..53ba2c1cc5 100644 --- a/anda/fonts/naikai/naikai-fonts.spec +++ b/anda/fonts/naikai/naikai-fonts.spec @@ -27,26 +27,22 @@ Summary: A free font family derived from setofont (TW version) %install -mkdir -p $RPM_BUILD_ROOT/%{prefix}/%{name}-{jp,tw}/ -cp -r jp/*.ttf $RPM_BUILD_ROOT/%{prefix}/%{name}-jp/ -cp -r tw/*.ttf $RPM_BUILD_ROOT/%{prefix}/%{name}-tw/ - - -%clean -rm -rf $RPM_BUILD_ROOT +mkdir +install -D -m644 jp/*.ttf %{buildroot}/%{_datadir}/fonts/%{name}-jp/ +install -D -m644 tw/*.ttf %{buildroot}/%{_datadir}/fonts/%{name}-tw/ %files jp %doc README.md %license SIL_Open_Font_License_1.1.txt %defattr(-,root,root,0755) -/%{prefix}/%{name}-jp +/%{_datadir}/fonts/%{name}-jp %files tw %doc README.md %license SIL_Open_Font_License_1.1.txt %defattr(-,root,root,0755) -/%{prefix}/%{name}-tw +/%{_datadir}/fonts/%{name}-tw %changelog * Tue Nov 22 2022 windowsboy111 - 1.87 From 0487e4eebf473fed91e05496df131c7d32074665 Mon Sep 17 00:00:00 2001 From: windowsboy111 Date: Tue, 22 Nov 2022 21:23:25 +0800 Subject: [PATCH 35/74] chkupdate: naikai-fonts --- anda/fonts/naikai/chkupdate.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 anda/fonts/naikai/chkupdate.py diff --git a/anda/fonts/naikai/chkupdate.py b/anda/fonts/naikai/chkupdate.py new file mode 100644 index 0000000000..6e58f7034b --- /dev/null +++ b/anda/fonts/naikai/chkupdate.py @@ -0,0 +1,19 @@ +import os +import requests +import re + +NAME = 'naikai-fonts' +REPO = "max32002/naikaifont" +REGEX_VER = r'Version:\s*([\.\d]+)\n' +SPEC = f"{NAME}.spec" +LINK = f'https://api.github.com/repos/{REPO}/releases/latest' + + +ver = requests.get(LINK).json()['tag_name'] +with open(SPEC, 'r') as f: + matches = re.findall(REGEX_VER, f.read()) +if not len(matches): exit(f"{NAME}: Failed to match regex!") +cur = matches[0] +if ver == cur: exit(f'{NAME}: Up to date!') +print(f'{NAME}: {cur} -> {ver}') +os.system(f'rpmdev-bumpspec -n {ver} {SPEC}') From cf021577ada73a9ea1d33d1942d7dbb8de496f3e Mon Sep 17 00:00:00 2001 From: windowsboy111 Date: Tue, 22 Nov 2022 21:26:15 +0800 Subject: [PATCH 36/74] Fix hannom-fonts URL --- anda/fonts/hannom/hannom-fonts.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anda/fonts/hannom/hannom-fonts.spec b/anda/fonts/hannom/hannom-fonts.spec index 7aa70e3335..3408e19aa5 100644 --- a/anda/fonts/hannom/hannom-fonts.spec +++ b/anda/fonts/hannom/hannom-fonts.spec @@ -1,7 +1,7 @@ Name: hannom-fonts Version: 2005 Release: %autorelease -URL: http://vietunicode.sourceforge.net/fonts/fonts_hannom.html +URL: https://vietunicode.sourceforge.net/fonts/fonts_hannom.html Source0: https://downloads.sourceforge.net/project/vietunicode/hannom/hannom%20v%{version}/hannomH.zip Source1: COPYING License: custom From 4c73a1d42b3ae3150c57fae2b6e05bcb5e473a1b Mon Sep 17 00:00:00 2001 From: windowsboy111 Date: Tue, 22 Nov 2022 22:26:23 +0800 Subject: [PATCH 37/74] Fix fonts again --- anda/fonts/kanjistrokeorders/kanjistrokeorders-fonts.spec | 2 +- anda/fonts/naikai/naikai-fonts.spec | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/anda/fonts/kanjistrokeorders/kanjistrokeorders-fonts.spec b/anda/fonts/kanjistrokeorders/kanjistrokeorders-fonts.spec index 589cc8e733..e4889865d7 100644 --- a/anda/fonts/kanjistrokeorders/kanjistrokeorders-fonts.spec +++ b/anda/fonts/kanjistrokeorders/kanjistrokeorders-fonts.spec @@ -23,7 +23,7 @@ install -D -m644 KanjiStrokeOrders_v%{version}.ttf %{buildroot}/%{_datadir}/font %files %defattr(-,root,root,0755) -/%{prefix}/%{name} +/%{_datadir}/fonts/TTF/KanjiStrokeOrders_v%{version}.ttf %changelog * Mon Nov 21 2022 windowsboy111 - 4.004 diff --git a/anda/fonts/naikai/naikai-fonts.spec b/anda/fonts/naikai/naikai-fonts.spec index 53ba2c1cc5..8886c729b3 100644 --- a/anda/fonts/naikai/naikai-fonts.spec +++ b/anda/fonts/naikai/naikai-fonts.spec @@ -27,7 +27,6 @@ Summary: A free font family derived from setofont (TW version) %install -mkdir install -D -m644 jp/*.ttf %{buildroot}/%{_datadir}/fonts/%{name}-jp/ install -D -m644 tw/*.ttf %{buildroot}/%{_datadir}/fonts/%{name}-tw/ From aab499a6dc6f98ce4aae558b1c9ec708c19dd78b Mon Sep 17 00:00:00 2001 From: windowsboy111 Date: Tue, 22 Nov 2022 23:16:34 +0800 Subject: [PATCH 38/74] Fix naikai-fonts --- anda/fonts/naikai/naikai-fonts.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/anda/fonts/naikai/naikai-fonts.spec b/anda/fonts/naikai/naikai-fonts.spec index 8886c729b3..66e8e216ed 100644 --- a/anda/fonts/naikai/naikai-fonts.spec +++ b/anda/fonts/naikai/naikai-fonts.spec @@ -27,6 +27,7 @@ Summary: A free font family derived from setofont (TW version) %install +mkdir -p %{buildroot}/%{_datadir}/fonts/%{name}-{jp,tw}/ install -D -m644 jp/*.ttf %{buildroot}/%{_datadir}/fonts/%{name}-jp/ install -D -m644 tw/*.ttf %{buildroot}/%{_datadir}/fonts/%{name}-tw/ From e76ef5e9d6f91f20fcd212f948fb86d8d2470bd3 Mon Sep 17 00:00:00 2001 From: windowsboy111 Date: Wed, 23 Nov 2022 09:13:34 +0800 Subject: [PATCH 39/74] Test elementary-calendar --- .../elementary-calendar.spec | 29 +++++++++---------- 1 file changed, 13 insertions(+), 16 deletions(-) diff --git a/anda/desktops/elementary/elementary-calendar/elementary-calendar.spec b/anda/desktops/elementary/elementary-calendar/elementary-calendar.spec index 17ca442661..75ed01ca4b 100644 --- a/anda/desktops/elementary/elementary-calendar/elementary-calendar.spec +++ b/anda/desktops/elementary/elementary-calendar/elementary-calendar.spec @@ -15,25 +15,22 @@ Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: desktop-file-utils BuildRequires: gettext BuildRequires: libappstream-glib -BuildRequires: meson -BuildRequires: vala - BuildRequires: pkgconfig(champlain-0.12) BuildRequires: pkgconfig(champlain-gtk-0.12) BuildRequires: pkgconfig(clutter-1.0) -BuildRequires: pkgconfig(clutter-gtk-1.0) -BuildRequires: pkgconfig(folks) -BuildRequires: pkgconfig(gee-0.8) -BuildRequires: pkgconfig(geocode-glib-1.0) -BuildRequires: pkgconfig(glib-2.0) -BuildRequires: pkgconfig(gmodule-2.0) -BuildRequires: pkgconfig(granite) >= 6.2.0 -BuildRequires: pkgconfig(gtk+-3.0) >= 3.22 -# BuildRequires: pkgconfig(libecal-2.0) -BuildRequires: pkgconfig(libgeoclue-2.0) -BuildRequires: pkgconfig(libhandy-1) >= 0.90.0 -BuildRequires: pkgconfig(libical-glib) -BuildRequires: pkgconfig(libsoup-2.4) +BuildRequires: pkgconfig(libecal-2.0) +#BuildRequires: libedataserverui1.2-dev +BuildRequires: folks-devel +BuildRequires: libgee-devel +BuildRequires: geocode-glib-dev +BuildRequires: pkgconfig(geoclue2) +BuildRequires: pkgconfig(glib2) +BuildRequires: granite-devel >= 6.2.0 +BuildRequires: gtk+-devel +BuildRequires: libical +BuildRequires: libhandy >= 0.90.0 +BuildRequires: meson +BuildRequires: vala Requires: hicolor-icon-theme From ee9c6c6799169f869615ef24ede7dc18598e8d5a Mon Sep 17 00:00:00 2001 From: windowsboy111 Date: Wed, 23 Nov 2022 09:23:29 +0800 Subject: [PATCH 40/74] Test again elementary-calendar --- .../elementary/elementary-calendar/elementary-calendar.spec | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/anda/desktops/elementary/elementary-calendar/elementary-calendar.spec b/anda/desktops/elementary/elementary-calendar/elementary-calendar.spec index 75ed01ca4b..57bdd5bf26 100644 --- a/anda/desktops/elementary/elementary-calendar/elementary-calendar.spec +++ b/anda/desktops/elementary/elementary-calendar/elementary-calendar.spec @@ -22,9 +22,9 @@ BuildRequires: pkgconfig(libecal-2.0) #BuildRequires: libedataserverui1.2-dev BuildRequires: folks-devel BuildRequires: libgee-devel -BuildRequires: geocode-glib-dev -BuildRequires: pkgconfig(geoclue2) -BuildRequires: pkgconfig(glib2) +BuildRequires: geocode-glib-devel +BuildRequires: geoclue2-devel +BuildRequires: glib2-devel BuildRequires: granite-devel >= 6.2.0 BuildRequires: gtk+-devel BuildRequires: libical From fe74d08943e988c9b2aab943f5f606e28caae6d0 Mon Sep 17 00:00:00 2001 From: windowsboy111 Date: Wed, 23 Nov 2022 09:37:53 +0800 Subject: [PATCH 41/74] elementary-calendar --- .../elementary/elementary-calendar/elementary-calendar.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/anda/desktops/elementary/elementary-calendar/elementary-calendar.spec b/anda/desktops/elementary/elementary-calendar/elementary-calendar.spec index 57bdd5bf26..31aa056601 100644 --- a/anda/desktops/elementary/elementary-calendar/elementary-calendar.spec +++ b/anda/desktops/elementary/elementary-calendar/elementary-calendar.spec @@ -19,6 +19,7 @@ BuildRequires: pkgconfig(champlain-0.12) BuildRequires: pkgconfig(champlain-gtk-0.12) BuildRequires: pkgconfig(clutter-1.0) BuildRequires: pkgconfig(libecal-2.0) +BuildRequires: pkgconfig(granite) #BuildRequires: libedataserverui1.2-dev BuildRequires: folks-devel BuildRequires: libgee-devel From 6efdbcea7f771b19aef5fd3be8af69c6b7b8b098 Mon Sep 17 00:00:00 2001 From: windowsboy111 Date: Wed, 23 Nov 2022 09:50:57 +0800 Subject: [PATCH 42/74] a --- .../elementary/elementary-calendar/elementary-calendar.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/anda/desktops/elementary/elementary-calendar/elementary-calendar.spec b/anda/desktops/elementary/elementary-calendar/elementary-calendar.spec index 31aa056601..9caed3b7fe 100644 --- a/anda/desktops/elementary/elementary-calendar/elementary-calendar.spec +++ b/anda/desktops/elementary/elementary-calendar/elementary-calendar.spec @@ -26,7 +26,6 @@ BuildRequires: libgee-devel BuildRequires: geocode-glib-devel BuildRequires: geoclue2-devel BuildRequires: glib2-devel -BuildRequires: granite-devel >= 6.2.0 BuildRequires: gtk+-devel BuildRequires: libical BuildRequires: libhandy >= 0.90.0 From 3f1371c7a811cb10125f92ff2ab2c4ea6ab1745a Mon Sep 17 00:00:00 2001 From: lleyton Date: Tue, 22 Nov 2022 20:30:41 -0800 Subject: [PATCH 43/74] Use non gnome specific appstream validate --- .../elementary/elementary-calculator/elementary-calculator.spec | 2 +- .../elementary/elementary-calendar/elementary-calendar.spec | 2 +- .../elementary/elementary-camera/elementary-camera.spec | 2 +- .../elementary-capnet-assist/elementary-capnet-assist.spec | 2 +- anda/desktops/elementary/elementary-code/elementary-code.spec | 2 +- anda/desktops/elementary/elementary-files/elementary-files.spec | 2 +- .../elementary/elementary-greeter/elementary-greeter.spec | 2 +- .../elementary/elementary-icon-theme/elementary-icon-theme.spec | 2 +- anda/desktops/elementary/elementary-music/elementary-music.spec | 2 +- .../elementary/elementary-onboarding/elementary-onboarding.spec | 2 +- .../elementary/elementary-photos/elementary-photos.spec | 2 +- .../elementary-screenshot-tool/elementary-screenshot-tool.spec | 2 +- .../elementary-settings-daemon/elementary-settings-daemon.spec | 2 +- .../elementary-shortcut-overlay.spec | 2 +- anda/desktops/elementary/elementary-tasks/elementary-tasks.spec | 2 +- .../elementary/elementary-terminal/elementary-terminal.spec | 2 +- anda/desktops/elementary/elementary-theme/elementary-theme.spec | 2 +- .../elementary/elementary-videos/elementary-videos.spec | 2 +- anda/desktops/elementary/gala/gala.spec | 2 +- anda/desktops/elementary/granite-7/granite-7.spec | 2 +- .../pantheon-agent-geoclue2/pantheon-agent-geoclue2.spec | 2 +- .../elementary/pantheon-agent-polkit/pantheon-agent-polkit.spec | 2 +- anda/desktops/elementary/plank/plank.spec | 2 +- .../elementary/switchboard-plug-a11y/switchboard-plug-a11y.spec | 2 +- .../switchboard-plug-about/switchboard-plug-about.spec | 2 +- .../switchboard-plug-applications.spec | 2 +- .../switchboard-plug-bluetooth/switchboard-plug-bluetooth.spec | 2 +- .../switchboard-plug-display/switchboard-plug-display.spec | 2 +- .../switchboard-plug-keyboard/switchboard-plug-keyboard.spec | 2 +- .../switchboard-plug-mouse-touchpad.spec | 2 +- .../switchboard-plug-networking.spec | 2 +- .../switchboard-plug-notifications.spec | 2 +- .../switchboard-plug-onlineaccounts.spec | 2 +- .../switchboard-plug-pantheon-shell.spec | 2 +- .../switchboard-plug-printers/switchboard-plug-printers.spec | 2 +- .../switchboard-plug-sharing/switchboard-plug-sharing.spec | 2 +- .../switchboard-plug-sound/switchboard-plug-sound.spec | 2 +- .../switchboard-plug-tweaks/switchboard-plug-tweaks.spec | 2 +- anda/desktops/elementary/switchboard/switchboard.spec | 2 +- .../wingpanel-applications-menu.spec | 2 +- .../wingpanel-indicator-bluetooth.spec | 2 +- .../wingpanel-indicator-datetime.spec | 2 +- .../wingpanel-indicator-keyboard.spec | 2 +- .../wingpanel-indicator-network.spec | 2 +- .../wingpanel-indicator-nightlight.spec | 2 +- .../wingpanel-indicator-notifications.spec | 2 +- .../wingpanel-indicator-power/wingpanel-indicator-power.spec | 2 +- .../wingpanel-indicator-session.spec | 2 +- .../wingpanel-indicator-sound/wingpanel-indicator-sound.spec | 2 +- anda/desktops/elementary/wingpanel/wingpanel.spec | 2 +- anda/games/prismlauncher-nightly/prismlauncher-nightly.spec | 2 +- .../prismlauncher-qt5-nightly/prismlauncher-qt5-nightly.spec | 2 +- anda/games/prismlauncher-qt5/prismlauncher-qt5.spec | 2 +- anda/games/prismlauncher/prismlauncher.spec | 2 +- 54 files changed, 54 insertions(+), 54 deletions(-) diff --git a/anda/desktops/elementary/elementary-calculator/elementary-calculator.spec b/anda/desktops/elementary/elementary-calculator/elementary-calculator.spec index 6a10134bd6..0604cec1f6 100644 --- a/anda/desktops/elementary/elementary-calculator/elementary-calculator.spec +++ b/anda/desktops/elementary/elementary-calculator/elementary-calculator.spec @@ -52,7 +52,7 @@ functions (sin, cos, and tan). desktop-file-validate \ %{buildroot}/%{_datadir}/applications/%{appname}.desktop -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/elementary-calendar/elementary-calendar.spec b/anda/desktops/elementary/elementary-calendar/elementary-calendar.spec index 9caed3b7fe..bc3bb29649 100644 --- a/anda/desktops/elementary/elementary-calendar/elementary-calendar.spec +++ b/anda/desktops/elementary/elementary-calendar/elementary-calendar.spec @@ -70,7 +70,7 @@ desktop-file-validate \ desktop-file-validate \ %{buildroot}/%{_datadir}/applications/%{appname}.desktop -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/elementary-camera/elementary-camera.spec b/anda/desktops/elementary/elementary-camera/elementary-camera.spec index 6167be6bef..d3ce859a59 100644 --- a/anda/desktops/elementary/elementary-camera/elementary-camera.spec +++ b/anda/desktops/elementary/elementary-camera/elementary-camera.spec @@ -51,7 +51,7 @@ Camera is a simple app to take photos with a webcam. desktop-file-validate \ %{buildroot}/%{_datadir}/applications/%{appname}.desktop -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/elementary-capnet-assist/elementary-capnet-assist.spec b/anda/desktops/elementary/elementary-capnet-assist/elementary-capnet-assist.spec index e4ab326239..623c961d8c 100644 --- a/anda/desktops/elementary/elementary-capnet-assist/elementary-capnet-assist.spec +++ b/anda/desktops/elementary/elementary-capnet-assist/elementary-capnet-assist.spec @@ -59,7 +59,7 @@ Written in Vala and using WebkitGtk+. desktop-file-validate \ %{buildroot}/%{_datadir}/applications/%{appname}.desktop -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/elementary-code/elementary-code.spec b/anda/desktops/elementary/elementary-code/elementary-code.spec index 7a4f1f786e..d85df54cef 100644 --- a/anda/desktops/elementary/elementary-code/elementary-code.spec +++ b/anda/desktops/elementary/elementary-code/elementary-code.spec @@ -73,7 +73,7 @@ This package contains the development headers. desktop-file-validate \ %{buildroot}/%{_datadir}/applications/%{appname}.desktop -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/elementary-files/elementary-files.spec b/anda/desktops/elementary/elementary-files/elementary-files.spec index b8f681fd99..811a28fe1d 100644 --- a/anda/desktops/elementary/elementary-files/elementary-files.spec +++ b/anda/desktops/elementary/elementary-files/elementary-files.spec @@ -97,7 +97,7 @@ cp -pav %{SOURCE2} %{buildroot}/%{_datadir}/contractor/ desktop-file-validate \ %{buildroot}/%{_datadir}/applications/%{appname}.desktop -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/elementary-greeter/elementary-greeter.spec b/anda/desktops/elementary/elementary-greeter/elementary-greeter.spec index 0751b5f049..a845a28583 100644 --- a/anda/desktops/elementary/elementary-greeter/elementary-greeter.spec +++ b/anda/desktops/elementary/elementary-greeter/elementary-greeter.spec @@ -86,7 +86,7 @@ install -pm 0644 %{SOURCE1} %{buildroot}%{_sysconfdir}/lightdm/lightdm.conf.d/ %check -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/elementary-icon-theme/elementary-icon-theme.spec b/anda/desktops/elementary/elementary-icon-theme/elementary-icon-theme.spec index ec587948b0..cc6d58769c 100644 --- a/anda/desktops/elementary/elementary-icon-theme/elementary-icon-theme.spec +++ b/anda/desktops/elementary/elementary-icon-theme/elementary-icon-theme.spec @@ -68,7 +68,7 @@ touch %{buildroot}/%{_datadir}/icons/elementary/icon-theme.cache %check # ignore validation until appstream-glib knows the "icon-theme" component type -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml || : diff --git a/anda/desktops/elementary/elementary-music/elementary-music.spec b/anda/desktops/elementary/elementary-music/elementary-music.spec index 3a6b06a65e..bf103f94f5 100644 --- a/anda/desktops/elementary/elementary-music/elementary-music.spec +++ b/anda/desktops/elementary/elementary-music/elementary-music.spec @@ -82,7 +82,7 @@ This package contains files needed for developing with Music. desktop-file-validate \ %{buildroot}/%{_datadir}/applications/%{appname}.desktop -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/elementary-onboarding/elementary-onboarding.spec b/anda/desktops/elementary/elementary-onboarding/elementary-onboarding.spec index 8a4301b3c7..b566f2f67b 100644 --- a/anda/desktops/elementary/elementary-onboarding/elementary-onboarding.spec +++ b/anda/desktops/elementary/elementary-onboarding/elementary-onboarding.spec @@ -61,7 +61,7 @@ desktop-file-validate \ desktop-file-validate \ %{buildroot}/%{_sysconfdir}/xdg/autostart/%{appname}.desktop -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/elementary-photos/elementary-photos.spec b/anda/desktops/elementary/elementary-photos/elementary-photos.spec index 8c222db626..2a917d0e61 100644 --- a/anda/desktops/elementary/elementary-photos/elementary-photos.spec +++ b/anda/desktops/elementary/elementary-photos/elementary-photos.spec @@ -73,7 +73,7 @@ desktop-file-validate \ desktop-file-validate \ %{buildroot}/%{_datadir}/applications/%{appname}-viewer.desktop -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/elementary-screenshot-tool/elementary-screenshot-tool.spec b/anda/desktops/elementary/elementary-screenshot-tool/elementary-screenshot-tool.spec index 3c64807cb4..5863d6f250 100644 --- a/anda/desktops/elementary/elementary-screenshot-tool/elementary-screenshot-tool.spec +++ b/anda/desktops/elementary/elementary-screenshot-tool/elementary-screenshot-tool.spec @@ -50,7 +50,7 @@ Screenshot tool designed for elementary. desktop-file-validate \ %{buildroot}/%{_datadir}/applications/%{appname}.desktop -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/elementary-settings-daemon/elementary-settings-daemon.spec b/anda/desktops/elementary/elementary-settings-daemon/elementary-settings-daemon.spec index 661729ad0d..31f1670db4 100644 --- a/anda/desktops/elementary/elementary-settings-daemon/elementary-settings-daemon.spec +++ b/anda/desktops/elementary/elementary-settings-daemon/elementary-settings-daemon.spec @@ -49,7 +49,7 @@ Requires: xdg-desktop-portal desktop-file-validate \ %{buildroot}/%{_sysconfdir}/xdg/autostart/%{appname}.desktop -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/elementary-shortcut-overlay/elementary-shortcut-overlay.spec b/anda/desktops/elementary/elementary-shortcut-overlay/elementary-shortcut-overlay.spec index ce3bb6c8bb..ad3fdc858c 100644 --- a/anda/desktops/elementary/elementary-shortcut-overlay/elementary-shortcut-overlay.spec +++ b/anda/desktops/elementary/elementary-shortcut-overlay/elementary-shortcut-overlay.spec @@ -48,7 +48,7 @@ the titlebar opens the system keyboard settings. desktop-file-validate \ %{buildroot}/%{_datadir}/applications/%{appname}.desktop -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/elementary-tasks/elementary-tasks.spec b/anda/desktops/elementary/elementary-tasks/elementary-tasks.spec index efdc53e30a..b39c30865e 100644 --- a/anda/desktops/elementary/elementary-tasks/elementary-tasks.spec +++ b/anda/desktops/elementary/elementary-tasks/elementary-tasks.spec @@ -60,7 +60,7 @@ desktop-file-validate \ desktop-file-validate \ %{buildroot}/%{_sysconfdir}/xdg/autostart/%{appname}-daemon.desktop -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/elementary-terminal/elementary-terminal.spec b/anda/desktops/elementary/elementary-terminal/elementary-terminal.spec index 1de5dad757..2e619cea3c 100644 --- a/anda/desktops/elementary/elementary-terminal/elementary-terminal.spec +++ b/anda/desktops/elementary/elementary-terminal/elementary-terminal.spec @@ -76,7 +76,7 @@ desktop-file-validate \ desktop-file-validate \ %{buildroot}/%{_datadir}/applications/open-pantheon-terminal-here.desktop -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/elementary-theme/elementary-theme.spec b/anda/desktops/elementary/elementary-theme/elementary-theme.spec index 253d450cf1..e975d64c78 100644 --- a/anda/desktops/elementary/elementary-theme/elementary-theme.spec +++ b/anda/desktops/elementary/elementary-theme/elementary-theme.spec @@ -56,7 +56,7 @@ This package contains the plank theme. %check -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/elementary-videos/elementary-videos.spec b/anda/desktops/elementary/elementary-videos/elementary-videos.spec index 893ce7c91c..5b8130d14d 100644 --- a/anda/desktops/elementary/elementary-videos/elementary-videos.spec +++ b/anda/desktops/elementary/elementary-videos/elementary-videos.spec @@ -55,7 +55,7 @@ to the desktop. desktop-file-validate \ %{buildroot}/%{_datadir}/applications/%{appname}.desktop -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/gala/gala.spec b/anda/desktops/elementary/gala/gala.spec index 987ffa0634..206634a241 100644 --- a/anda/desktops/elementary/gala/gala.spec +++ b/anda/desktops/elementary/gala/gala.spec @@ -91,7 +91,7 @@ desktop-file-validate \ desktop-file-validate \ %{buildroot}/%{_datadir}/applications/gala*.desktop -#appstream-util validate-relax --nonet \ +#appstreamcli validate --nonet \ # %{buildroot}/%{_datadir}/metainfo/%{name}.appdata.xml diff --git a/anda/desktops/elementary/granite-7/granite-7.spec b/anda/desktops/elementary/granite-7/granite-7.spec index 77da59b086..6b92415262 100644 --- a/anda/desktops/elementary/granite-7/granite-7.spec +++ b/anda/desktops/elementary/granite-7/granite-7.spec @@ -63,7 +63,7 @@ This package contains the development headers. desktop-file-validate \ %{buildroot}/%{_datadir}/applications/io.elementary.granite-7.demo.desktop -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}/%{_datadir}/metainfo/granite-7.appdata.xml diff --git a/anda/desktops/elementary/pantheon-agent-geoclue2/pantheon-agent-geoclue2.spec b/anda/desktops/elementary/pantheon-agent-geoclue2/pantheon-agent-geoclue2.spec index 3d730c0623..8ff52d1ff3 100644 --- a/anda/desktops/elementary/pantheon-agent-geoclue2/pantheon-agent-geoclue2.spec +++ b/anda/desktops/elementary/pantheon-agent-geoclue2/pantheon-agent-geoclue2.spec @@ -47,7 +47,7 @@ requests access to location services. desktop-file-validate \ %{buildroot}/%{_datadir}/applications/%{appname}.desktop -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/pantheon-agent-polkit/pantheon-agent-polkit.spec b/anda/desktops/elementary/pantheon-agent-polkit/pantheon-agent-polkit.spec index ed6dcff3d9..6c5a62a612 100644 --- a/anda/desktops/elementary/pantheon-agent-polkit/pantheon-agent-polkit.spec +++ b/anda/desktops/elementary/pantheon-agent-polkit/pantheon-agent-polkit.spec @@ -48,7 +48,7 @@ desktop-file-validate \ desktop-file-validate \ %{buildroot}/%{_datadir}/applications/%{appname}.desktop -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/plank/plank.spec b/anda/desktops/elementary/plank/plank.spec index 7b86c5dc18..216771409d 100644 --- a/anda/desktops/elementary/plank/plank.spec +++ b/anda/desktops/elementary/plank/plank.spec @@ -107,7 +107,7 @@ desktop-file-validate \ desktop-file-validate \ %{buildroot}/%{_datadir}/applications/%{name}.desktop -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}/%{_datadir}/metainfo/%{name}.appdata.xml diff --git a/anda/desktops/elementary/switchboard-plug-a11y/switchboard-plug-a11y.spec b/anda/desktops/elementary/switchboard-plug-a11y/switchboard-plug-a11y.spec index d7749ffcd9..32613d6760 100644 --- a/anda/desktops/elementary/switchboard-plug-a11y/switchboard-plug-a11y.spec +++ b/anda/desktops/elementary/switchboard-plug-a11y/switchboard-plug-a11y.spec @@ -53,7 +53,7 @@ that allows the user to manage accessibility settings. %check -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}/%{_datadir}/metainfo/%{plug_rdnn}.appdata.xml diff --git a/anda/desktops/elementary/switchboard-plug-about/switchboard-plug-about.spec b/anda/desktops/elementary/switchboard-plug-about/switchboard-plug-about.spec index 0602e8c607..a4fcf7e796 100644 --- a/anda/desktops/elementary/switchboard-plug-about/switchboard-plug-about.spec +++ b/anda/desktops/elementary/switchboard-plug-about/switchboard-plug-about.spec @@ -59,7 +59,7 @@ sed -i '/icon type="stock"/d' %{buildroot}/%{_datadir}/metainfo/%{plug_rdnn}.app %check -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}/%{_datadir}/metainfo/%{plug_rdnn}.appdata.xml diff --git a/anda/desktops/elementary/switchboard-plug-applications/switchboard-plug-applications.spec b/anda/desktops/elementary/switchboard-plug-applications/switchboard-plug-applications.spec index 925d2494e6..22df0b84d0 100644 --- a/anda/desktops/elementary/switchboard-plug-applications/switchboard-plug-applications.spec +++ b/anda/desktops/elementary/switchboard-plug-applications/switchboard-plug-applications.spec @@ -53,7 +53,7 @@ sed -i '/icon type="stock"/d' %{buildroot}/%{_datadir}/metainfo/%{plug_rdnn}.app %check -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}/%{_datadir}/metainfo/%{plug_rdnn}.appdata.xml diff --git a/anda/desktops/elementary/switchboard-plug-bluetooth/switchboard-plug-bluetooth.spec b/anda/desktops/elementary/switchboard-plug-bluetooth/switchboard-plug-bluetooth.spec index afb390ecbe..8b4a9ca9db 100644 --- a/anda/desktops/elementary/switchboard-plug-bluetooth/switchboard-plug-bluetooth.spec +++ b/anda/desktops/elementary/switchboard-plug-bluetooth/switchboard-plug-bluetooth.spec @@ -55,7 +55,7 @@ sed -i '/icon type="stock"/d' %{buildroot}/%{_datadir}/metainfo/%{plug_rdnn}.app %check -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}/%{_datadir}/metainfo/%{plug_rdnn}.appdata.xml diff --git a/anda/desktops/elementary/switchboard-plug-display/switchboard-plug-display.spec b/anda/desktops/elementary/switchboard-plug-display/switchboard-plug-display.spec index 56e5e5615e..a1fa43b134 100644 --- a/anda/desktops/elementary/switchboard-plug-display/switchboard-plug-display.spec +++ b/anda/desktops/elementary/switchboard-plug-display/switchboard-plug-display.spec @@ -50,7 +50,7 @@ them. %check -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}/%{_datadir}/metainfo/%{plug_rdnn}.appdata.xml diff --git a/anda/desktops/elementary/switchboard-plug-keyboard/switchboard-plug-keyboard.spec b/anda/desktops/elementary/switchboard-plug-keyboard/switchboard-plug-keyboard.spec index 4946989f5f..5028eb64cd 100644 --- a/anda/desktops/elementary/switchboard-plug-keyboard/switchboard-plug-keyboard.spec +++ b/anda/desktops/elementary/switchboard-plug-keyboard/switchboard-plug-keyboard.spec @@ -57,7 +57,7 @@ same time. Keyboard shortcuts are also part of this plug. %check -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}/%{_datadir}/metainfo/%{plug_rdnn}.appdata.xml diff --git a/anda/desktops/elementary/switchboard-plug-mouse-touchpad/switchboard-plug-mouse-touchpad.spec b/anda/desktops/elementary/switchboard-plug-mouse-touchpad/switchboard-plug-mouse-touchpad.spec index bc31a490a3..a0be895e5b 100644 --- a/anda/desktops/elementary/switchboard-plug-mouse-touchpad/switchboard-plug-mouse-touchpad.spec +++ b/anda/desktops/elementary/switchboard-plug-mouse-touchpad/switchboard-plug-mouse-touchpad.spec @@ -49,7 +49,7 @@ A switchboard plug to configure the behavior of mice and touchpads. %check -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}/%{_datadir}/metainfo/%{plug_rdnn}.appdata.xml diff --git a/anda/desktops/elementary/switchboard-plug-networking/switchboard-plug-networking.spec b/anda/desktops/elementary/switchboard-plug-networking/switchboard-plug-networking.spec index 35815450d9..f27576c0a2 100644 --- a/anda/desktops/elementary/switchboard-plug-networking/switchboard-plug-networking.spec +++ b/anda/desktops/elementary/switchboard-plug-networking/switchboard-plug-networking.spec @@ -55,7 +55,7 @@ A switchboard plug for configuring available networks. %check -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}/%{_datadir}/metainfo/%{plug_rdnn}.appdata.xml diff --git a/anda/desktops/elementary/switchboard-plug-notifications/switchboard-plug-notifications.spec b/anda/desktops/elementary/switchboard-plug-notifications/switchboard-plug-notifications.spec index e80dd14b02..356b1dbb73 100644 --- a/anda/desktops/elementary/switchboard-plug-notifications/switchboard-plug-notifications.spec +++ b/anda/desktops/elementary/switchboard-plug-notifications/switchboard-plug-notifications.spec @@ -53,7 +53,7 @@ related to the Notifications plugin for Gala. %check -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}/%{_datadir}/metainfo/%{plug_rdnn}.appdata.xml diff --git a/anda/desktops/elementary/switchboard-plug-onlineaccounts/switchboard-plug-onlineaccounts.spec b/anda/desktops/elementary/switchboard-plug-onlineaccounts/switchboard-plug-onlineaccounts.spec index 4a8daf6f8c..3e4a21819e 100644 --- a/anda/desktops/elementary/switchboard-plug-onlineaccounts/switchboard-plug-onlineaccounts.spec +++ b/anda/desktops/elementary/switchboard-plug-onlineaccounts/switchboard-plug-onlineaccounts.spec @@ -58,7 +58,7 @@ sed -i '/icon type="stock"/d' %{buildroot}/%{_datadir}/metainfo/%{plug_rdnn}.app %check -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}/%{_datadir}/metainfo/%{plug_rdnn}.appdata.xml diff --git a/anda/desktops/elementary/switchboard-plug-pantheon-shell/switchboard-plug-pantheon-shell.spec b/anda/desktops/elementary/switchboard-plug-pantheon-shell/switchboard-plug-pantheon-shell.spec index abf8415f8f..2080c2b12d 100644 --- a/anda/desktops/elementary/switchboard-plug-pantheon-shell/switchboard-plug-pantheon-shell.spec +++ b/anda/desktops/elementary/switchboard-plug-pantheon-shell/switchboard-plug-pantheon-shell.spec @@ -62,7 +62,7 @@ desktop settings such as the panel, app launcher, and window manager. %check -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}/%{_datadir}/metainfo/%{plug_rdnn}.appdata.xml diff --git a/anda/desktops/elementary/switchboard-plug-printers/switchboard-plug-printers.spec b/anda/desktops/elementary/switchboard-plug-printers/switchboard-plug-printers.spec index d1a6cfc636..fa9e9a04b3 100644 --- a/anda/desktops/elementary/switchboard-plug-printers/switchboard-plug-printers.spec +++ b/anda/desktops/elementary/switchboard-plug-printers/switchboard-plug-printers.spec @@ -52,7 +52,7 @@ A printers plug for Switchboard. %check -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}/%{_datadir}/metainfo/%{plug_rdnn}.appdata.xml diff --git a/anda/desktops/elementary/switchboard-plug-sharing/switchboard-plug-sharing.spec b/anda/desktops/elementary/switchboard-plug-sharing/switchboard-plug-sharing.spec index 78e4ca0f38..9b14965ca5 100644 --- a/anda/desktops/elementary/switchboard-plug-sharing/switchboard-plug-sharing.spec +++ b/anda/desktops/elementary/switchboard-plug-sharing/switchboard-plug-sharing.spec @@ -50,7 +50,7 @@ Configure the sharing of system services. %check -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}/%{_datadir}/metainfo/%{plug_rdnn}.appdata.xml diff --git a/anda/desktops/elementary/switchboard-plug-sound/switchboard-plug-sound.spec b/anda/desktops/elementary/switchboard-plug-sound/switchboard-plug-sound.spec index 6866240a5a..46bcb1478b 100644 --- a/anda/desktops/elementary/switchboard-plug-sound/switchboard-plug-sound.spec +++ b/anda/desktops/elementary/switchboard-plug-sound/switchboard-plug-sound.spec @@ -55,7 +55,7 @@ sed -i '/icon type="stock"/d' %{buildroot}/%{_datadir}/metainfo/%{plug_rdnn}.app %check -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}/%{_datadir}/metainfo/%{plug_rdnn}.appdata.xml diff --git a/anda/desktops/elementary/switchboard-plug-tweaks/switchboard-plug-tweaks.spec b/anda/desktops/elementary/switchboard-plug-tweaks/switchboard-plug-tweaks.spec index 8241f16f38..6a77ab0424 100644 --- a/anda/desktops/elementary/switchboard-plug-tweaks/switchboard-plug-tweaks.spec +++ b/anda/desktops/elementary/switchboard-plug-tweaks/switchboard-plug-tweaks.spec @@ -69,7 +69,7 @@ de trabalho. sed -i '/icon type="stock"/d' %{buildroot}/%{_datadir}/metainfo/%{plug_name}.appdata.xml %check -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}/%{_datadir}/metainfo/%{plug_name}.appdata.xml diff --git a/anda/desktops/elementary/switchboard/switchboard.spec b/anda/desktops/elementary/switchboard/switchboard.spec index 4979dfd555..eb43ae1636 100644 --- a/anda/desktops/elementary/switchboard/switchboard.spec +++ b/anda/desktops/elementary/switchboard/switchboard.spec @@ -77,7 +77,7 @@ mkdir -p %{buildroot}/%{_libdir}/%{name}/system desktop-file-validate \ %{buildroot}/%{_datadir}/applications/%{appname}.desktop -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/wingpanel-applications-menu/wingpanel-applications-menu.spec b/anda/desktops/elementary/wingpanel-applications-menu/wingpanel-applications-menu.spec index 43738f115c..42b2d3d6eb 100644 --- a/anda/desktops/elementary/wingpanel-applications-menu/wingpanel-applications-menu.spec +++ b/anda/desktops/elementary/wingpanel-applications-menu/wingpanel-applications-menu.spec @@ -56,7 +56,7 @@ The lightweight and stylish app launcher from elementary. %check -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/wingpanel-indicator-bluetooth/wingpanel-indicator-bluetooth.spec b/anda/desktops/elementary/wingpanel-indicator-bluetooth/wingpanel-indicator-bluetooth.spec index 859b80a1cd..47637d07ba 100644 --- a/anda/desktops/elementary/wingpanel-indicator-bluetooth/wingpanel-indicator-bluetooth.spec +++ b/anda/desktops/elementary/wingpanel-indicator-bluetooth/wingpanel-indicator-bluetooth.spec @@ -52,7 +52,7 @@ sed -i '/icon type="stock"/d' %{buildroot}/%{_datadir}/metainfo/%{appname}.appda %check -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/wingpanel-indicator-datetime/wingpanel-indicator-datetime.spec b/anda/desktops/elementary/wingpanel-indicator-datetime/wingpanel-indicator-datetime.spec index 18d9212d89..fcd3fc4862 100644 --- a/anda/desktops/elementary/wingpanel-indicator-datetime/wingpanel-indicator-datetime.spec +++ b/anda/desktops/elementary/wingpanel-indicator-datetime/wingpanel-indicator-datetime.spec @@ -52,7 +52,7 @@ sed -i '/icon type="stock"/d' %{buildroot}/%{_datadir}/metainfo/%{appname}.appda %check -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/wingpanel-indicator-keyboard/wingpanel-indicator-keyboard.spec b/anda/desktops/elementary/wingpanel-indicator-keyboard/wingpanel-indicator-keyboard.spec index 35f7b92220..8d97266446 100644 --- a/anda/desktops/elementary/wingpanel-indicator-keyboard/wingpanel-indicator-keyboard.spec +++ b/anda/desktops/elementary/wingpanel-indicator-keyboard/wingpanel-indicator-keyboard.spec @@ -49,7 +49,7 @@ A keyboard indicator for wingpanel. %check -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/wingpanel-indicator-network/wingpanel-indicator-network.spec b/anda/desktops/elementary/wingpanel-indicator-network/wingpanel-indicator-network.spec index 990a16be9f..fe2a5ea709 100644 --- a/anda/desktops/elementary/wingpanel-indicator-network/wingpanel-indicator-network.spec +++ b/anda/desktops/elementary/wingpanel-indicator-network/wingpanel-indicator-network.spec @@ -50,7 +50,7 @@ A network indicator for wingpanel. %check -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/wingpanel-indicator-nightlight/wingpanel-indicator-nightlight.spec b/anda/desktops/elementary/wingpanel-indicator-nightlight/wingpanel-indicator-nightlight.spec index bf59558de6..2f450d0154 100644 --- a/anda/desktops/elementary/wingpanel-indicator-nightlight/wingpanel-indicator-nightlight.spec +++ b/anda/desktops/elementary/wingpanel-indicator-nightlight/wingpanel-indicator-nightlight.spec @@ -47,7 +47,7 @@ A wingpanel indicator for Night Light. %check -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/wingpanel-indicator-notifications/wingpanel-indicator-notifications.spec b/anda/desktops/elementary/wingpanel-indicator-notifications/wingpanel-indicator-notifications.spec index 04c2d3e26f..b091bd1781 100644 --- a/anda/desktops/elementary/wingpanel-indicator-notifications/wingpanel-indicator-notifications.spec +++ b/anda/desktops/elementary/wingpanel-indicator-notifications/wingpanel-indicator-notifications.spec @@ -50,7 +50,7 @@ A notifications indicator for wingpanel. %check -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/wingpanel-indicator-power/wingpanel-indicator-power.spec b/anda/desktops/elementary/wingpanel-indicator-power/wingpanel-indicator-power.spec index 6b842c5b75..744d49b2c7 100644 --- a/anda/desktops/elementary/wingpanel-indicator-power/wingpanel-indicator-power.spec +++ b/anda/desktops/elementary/wingpanel-indicator-power/wingpanel-indicator-power.spec @@ -53,7 +53,7 @@ sed -i '/icon type="stock"/d' %{buildroot}/%{_datadir}/metainfo/%{appname}.appda %check -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/wingpanel-indicator-session/wingpanel-indicator-session.spec b/anda/desktops/elementary/wingpanel-indicator-session/wingpanel-indicator-session.spec index c5e8d6cd07..2ab583a635 100644 --- a/anda/desktops/elementary/wingpanel-indicator-session/wingpanel-indicator-session.spec +++ b/anda/desktops/elementary/wingpanel-indicator-session/wingpanel-indicator-session.spec @@ -48,7 +48,7 @@ A session Indicator for wingpanel. %check -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/wingpanel-indicator-sound/wingpanel-indicator-sound.spec b/anda/desktops/elementary/wingpanel-indicator-sound/wingpanel-indicator-sound.spec index 5ceea6b0e5..e72543c14e 100644 --- a/anda/desktops/elementary/wingpanel-indicator-sound/wingpanel-indicator-sound.spec +++ b/anda/desktops/elementary/wingpanel-indicator-sound/wingpanel-indicator-sound.spec @@ -53,7 +53,7 @@ sed -i '/icon type="stock"/d' %{buildroot}/%{_datadir}/metainfo/%{appname}.appda %check -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/wingpanel/wingpanel.spec b/anda/desktops/elementary/wingpanel/wingpanel.spec index d84dfc750d..b8a4d049fb 100644 --- a/anda/desktops/elementary/wingpanel/wingpanel.spec +++ b/anda/desktops/elementary/wingpanel/wingpanel.spec @@ -85,7 +85,7 @@ desktop-file-validate \ desktop-file-validate \ %{buildroot}/%{_sysconfdir}/xdg/autostart/%{appname}.desktop -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/games/prismlauncher-nightly/prismlauncher-nightly.spec b/anda/games/prismlauncher-nightly/prismlauncher-nightly.spec index 9b155812ac..d85385dd19 100644 --- a/anda/games/prismlauncher-nightly/prismlauncher-nightly.spec +++ b/anda/games/prismlauncher-nightly/prismlauncher-nightly.spec @@ -164,7 +164,7 @@ sed -i "s|\$ORIGIN/||" CMakeLists.txt %cmake_install %if 0%{?suse_version} > 1500 || 0%{?fedora} > 35 -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}%{_datadir}/metainfo/org.prismlauncher.PrismLauncher.metainfo.xml %endif diff --git a/anda/games/prismlauncher-qt5-nightly/prismlauncher-qt5-nightly.spec b/anda/games/prismlauncher-qt5-nightly/prismlauncher-qt5-nightly.spec index e1a697dfd9..42f9fc27f3 100644 --- a/anda/games/prismlauncher-qt5-nightly/prismlauncher-qt5-nightly.spec +++ b/anda/games/prismlauncher-qt5-nightly/prismlauncher-qt5-nightly.spec @@ -164,7 +164,7 @@ sed -i "s|\$ORIGIN/||" CMakeLists.txt %cmake_install %if 0%{?suse_version} > 1500 || 0%{?fedora} > 35 -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}%{_datadir}/metainfo/org.prismlauncher.PrismLauncher.metainfo.xml %endif diff --git a/anda/games/prismlauncher-qt5/prismlauncher-qt5.spec b/anda/games/prismlauncher-qt5/prismlauncher-qt5.spec index 61b4a3e887..f5956bceb3 100644 --- a/anda/games/prismlauncher-qt5/prismlauncher-qt5.spec +++ b/anda/games/prismlauncher-qt5/prismlauncher-qt5.spec @@ -144,7 +144,7 @@ sed -i "s|\$ORIGIN/||" CMakeLists.txt %cmake_install %if 0%{?suse_version} > 1500 || 0%{?fedora} > 35 -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}%{_datadir}/metainfo/org.prismlauncher.PrismLauncher.metainfo.xml %endif diff --git a/anda/games/prismlauncher/prismlauncher.spec b/anda/games/prismlauncher/prismlauncher.spec index fcaaa79365..c06375b9dd 100644 --- a/anda/games/prismlauncher/prismlauncher.spec +++ b/anda/games/prismlauncher/prismlauncher.spec @@ -144,7 +144,7 @@ sed -i "s|\$ORIGIN/||" CMakeLists.txt %cmake_install %if 0%{?suse_version} > 1500 || 0%{?fedora} > 35 -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}%{_datadir}/metainfo/org.prismlauncher.PrismLauncher.metainfo.xml %endif From 8aaa2027e655305ed48a13e458ece05ac1f84d28 Mon Sep 17 00:00:00 2001 From: lleyton Date: Tue, 22 Nov 2022 20:43:13 -0800 Subject: [PATCH 44/74] Require appstreamcli --- .../elementary/elementary-calculator/elementary-calculator.spec | 2 +- .../elementary/elementary-calendar/elementary-calendar.spec | 2 +- .../elementary/elementary-camera/elementary-camera.spec | 2 +- .../elementary-capnet-assist/elementary-capnet-assist.spec | 2 +- anda/desktops/elementary/elementary-code/elementary-code.spec | 2 +- anda/desktops/elementary/elementary-files/elementary-files.spec | 2 +- .../elementary/elementary-greeter/elementary-greeter.spec | 2 +- .../elementary/elementary-icon-theme/elementary-icon-theme.spec | 2 +- anda/desktops/elementary/elementary-music/elementary-music.spec | 2 +- .../elementary-notifications/elementary-notifications.spec | 2 +- .../elementary/elementary-onboarding/elementary-onboarding.spec | 2 +- .../elementary/elementary-photos/elementary-photos.spec | 2 +- .../elementary-screenshot-tool/elementary-screenshot-tool.spec | 2 +- .../elementary-settings-daemon/elementary-settings-daemon.spec | 2 +- .../elementary-shortcut-overlay.spec | 2 +- anda/desktops/elementary/elementary-tasks/elementary-tasks.spec | 2 +- .../elementary/elementary-terminal/elementary-terminal.spec | 2 +- anda/desktops/elementary/elementary-theme/elementary-theme.spec | 2 +- .../elementary/elementary-videos/elementary-videos.spec | 2 +- anda/desktops/elementary/gala/gala.spec | 2 +- anda/desktops/elementary/granite-7/granite-7.spec | 2 +- .../pantheon-agent-geoclue2/pantheon-agent-geoclue2.spec | 2 +- .../elementary/pantheon-agent-polkit/pantheon-agent-polkit.spec | 2 +- anda/desktops/elementary/plank/plank.spec | 2 +- .../elementary/switchboard-plug-a11y/switchboard-plug-a11y.spec | 2 +- .../switchboard-plug-about/switchboard-plug-about.spec | 2 +- .../switchboard-plug-applications.spec | 2 +- .../switchboard-plug-bluetooth/switchboard-plug-bluetooth.spec | 2 +- .../switchboard-plug-display/switchboard-plug-display.spec | 2 +- .../switchboard-plug-keyboard/switchboard-plug-keyboard.spec | 2 +- .../switchboard-plug-mouse-touchpad.spec | 2 +- .../switchboard-plug-networking.spec | 2 +- .../switchboard-plug-notifications.spec | 2 +- .../switchboard-plug-onlineaccounts.spec | 2 +- .../switchboard-plug-pantheon-shell.spec | 2 +- .../switchboard-plug-printers/switchboard-plug-printers.spec | 2 +- .../switchboard-plug-sharing/switchboard-plug-sharing.spec | 2 +- .../switchboard-plug-sound/switchboard-plug-sound.spec | 2 +- .../switchboard-plug-tweaks/switchboard-plug-tweaks.spec | 2 +- anda/desktops/elementary/switchboard/switchboard.spec | 2 +- .../wingpanel-applications-menu.spec | 2 +- .../wingpanel-indicator-bluetooth.spec | 2 +- .../wingpanel-indicator-datetime.spec | 2 +- .../wingpanel-indicator-keyboard.spec | 2 +- .../wingpanel-indicator-network.spec | 2 +- .../wingpanel-indicator-nightlight.spec | 2 +- .../wingpanel-indicator-notifications.spec | 2 +- .../wingpanel-indicator-power/wingpanel-indicator-power.spec | 2 +- .../wingpanel-indicator-session.spec | 2 +- .../wingpanel-indicator-sound/wingpanel-indicator-sound.spec | 2 +- anda/desktops/elementary/wingpanel/wingpanel.spec | 2 +- anda/games/prismlauncher-nightly/prismlauncher-nightly.spec | 2 +- .../prismlauncher-qt5-nightly/prismlauncher-qt5-nightly.spec | 2 +- anda/games/prismlauncher-qt5/prismlauncher-qt5.spec | 2 +- anda/games/prismlauncher/prismlauncher.spec | 2 +- 55 files changed, 55 insertions(+), 55 deletions(-) diff --git a/anda/desktops/elementary/elementary-calculator/elementary-calculator.spec b/anda/desktops/elementary/elementary-calculator/elementary-calculator.spec index 0604cec1f6..db5394d0e9 100644 --- a/anda/desktops/elementary/elementary-calculator/elementary-calculator.spec +++ b/anda/desktops/elementary/elementary-calculator/elementary-calculator.spec @@ -12,7 +12,7 @@ Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: desktop-file-utils BuildRequires: gettext -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: meson >= 0.49 BuildRequires: vala diff --git a/anda/desktops/elementary/elementary-calendar/elementary-calendar.spec b/anda/desktops/elementary/elementary-calendar/elementary-calendar.spec index bc3bb29649..58a84ca437 100644 --- a/anda/desktops/elementary/elementary-calendar/elementary-calendar.spec +++ b/anda/desktops/elementary/elementary-calendar/elementary-calendar.spec @@ -14,7 +14,7 @@ Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: desktop-file-utils BuildRequires: gettext -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: pkgconfig(champlain-0.12) BuildRequires: pkgconfig(champlain-gtk-0.12) BuildRequires: pkgconfig(clutter-1.0) diff --git a/anda/desktops/elementary/elementary-camera/elementary-camera.spec b/anda/desktops/elementary/elementary-camera/elementary-camera.spec index d3ce859a59..aa20dfb57e 100644 --- a/anda/desktops/elementary/elementary-camera/elementary-camera.spec +++ b/anda/desktops/elementary/elementary-camera/elementary-camera.spec @@ -12,7 +12,7 @@ Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: desktop-file-utils BuildRequires: gettext -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: meson >= 0.46 BuildRequires: vala diff --git a/anda/desktops/elementary/elementary-capnet-assist/elementary-capnet-assist.spec b/anda/desktops/elementary/elementary-capnet-assist/elementary-capnet-assist.spec index 623c961d8c..c758d72959 100644 --- a/anda/desktops/elementary/elementary-capnet-assist/elementary-capnet-assist.spec +++ b/anda/desktops/elementary/elementary-capnet-assist/elementary-capnet-assist.spec @@ -12,7 +12,7 @@ Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: desktop-file-utils BuildRequires: gettext -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: meson BuildRequires: vala diff --git a/anda/desktops/elementary/elementary-code/elementary-code.spec b/anda/desktops/elementary/elementary-code/elementary-code.spec index d85df54cef..221c1580b4 100644 --- a/anda/desktops/elementary/elementary-code/elementary-code.spec +++ b/anda/desktops/elementary/elementary-code/elementary-code.spec @@ -14,7 +14,7 @@ Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: desktop-file-utils BuildRequires: gettext -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: meson BuildRequires: vala diff --git a/anda/desktops/elementary/elementary-files/elementary-files.spec b/anda/desktops/elementary/elementary-files/elementary-files.spec index 811a28fe1d..bfeb461fc5 100644 --- a/anda/desktops/elementary/elementary-files/elementary-files.spec +++ b/anda/desktops/elementary/elementary-files/elementary-files.spec @@ -18,7 +18,7 @@ Source2: file-roller-extract-here.contract BuildRequires: desktop-file-utils BuildRequires: gettext -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: meson >= 0.50.0 BuildRequires: vala >= 0.48.2 diff --git a/anda/desktops/elementary/elementary-greeter/elementary-greeter.spec b/anda/desktops/elementary/elementary-greeter/elementary-greeter.spec index a845a28583..7967a9115d 100644 --- a/anda/desktops/elementary/elementary-greeter/elementary-greeter.spec +++ b/anda/desktops/elementary/elementary-greeter/elementary-greeter.spec @@ -13,7 +13,7 @@ Source1: 40-%{appname}.conf BuildRequires: desktop-file-utils BuildRequires: gettext -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: meson BuildRequires: vala diff --git a/anda/desktops/elementary/elementary-icon-theme/elementary-icon-theme.spec b/anda/desktops/elementary/elementary-icon-theme/elementary-icon-theme.spec index cc6d58769c..7797dc74ed 100644 --- a/anda/desktops/elementary/elementary-icon-theme/elementary-icon-theme.spec +++ b/anda/desktops/elementary/elementary-icon-theme/elementary-icon-theme.spec @@ -13,7 +13,7 @@ Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildArch: noarch BuildRequires: gettext -BuildRequires: libappstream-glib +BuildRequires: appstream # /usr/bin/rsvg-convert BuildRequires: librsvg2-tools BuildRequires: meson diff --git a/anda/desktops/elementary/elementary-music/elementary-music.spec b/anda/desktops/elementary/elementary-music/elementary-music.spec index bf103f94f5..6eed6163b7 100644 --- a/anda/desktops/elementary/elementary-music/elementary-music.spec +++ b/anda/desktops/elementary/elementary-music/elementary-music.spec @@ -21,7 +21,7 @@ Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: desktop-file-utils BuildRequires: gettext BuildRequires: meson -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: vala >= 0.26 BuildRequires: pkgconfig(gee-0.8) diff --git a/anda/desktops/elementary/elementary-notifications/elementary-notifications.spec b/anda/desktops/elementary/elementary-notifications/elementary-notifications.spec index 33348b8bea..7030dd790e 100644 --- a/anda/desktops/elementary/elementary-notifications/elementary-notifications.spec +++ b/anda/desktops/elementary/elementary-notifications/elementary-notifications.spec @@ -13,7 +13,7 @@ Source0: %{url}/archive/refs/tags/%{version}.tar.gz BuildRequires: desktop-file-utils -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: libcanberra-devel BuildRequires: libcanberra-gtk3 BuildRequires: pkgconfig(granite) >= 6.0.0 diff --git a/anda/desktops/elementary/elementary-onboarding/elementary-onboarding.spec b/anda/desktops/elementary/elementary-onboarding/elementary-onboarding.spec index b566f2f67b..39c57d71ac 100644 --- a/anda/desktops/elementary/elementary-onboarding/elementary-onboarding.spec +++ b/anda/desktops/elementary/elementary-onboarding/elementary-onboarding.spec @@ -16,7 +16,7 @@ Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: desktop-file-utils BuildRequires: gettext -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: meson BuildRequires: vala diff --git a/anda/desktops/elementary/elementary-photos/elementary-photos.spec b/anda/desktops/elementary/elementary-photos/elementary-photos.spec index 2a917d0e61..5e3001f58a 100644 --- a/anda/desktops/elementary/elementary-photos/elementary-photos.spec +++ b/anda/desktops/elementary/elementary-photos/elementary-photos.spec @@ -14,7 +14,7 @@ Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: desktop-file-utils BuildRequires: gettext -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: meson >= 0.46.0 BuildRequires: vala diff --git a/anda/desktops/elementary/elementary-screenshot-tool/elementary-screenshot-tool.spec b/anda/desktops/elementary/elementary-screenshot-tool/elementary-screenshot-tool.spec index 5863d6f250..296b56c3cd 100644 --- a/anda/desktops/elementary/elementary-screenshot-tool/elementary-screenshot-tool.spec +++ b/anda/desktops/elementary/elementary-screenshot-tool/elementary-screenshot-tool.spec @@ -15,7 +15,7 @@ Patch1: 0001-meson-remove-deprecated-positional-arguments-from-i1.patch BuildRequires: desktop-file-utils BuildRequires: gettext -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: meson >= 0.46 BuildRequires: vala >= 0.24 diff --git a/anda/desktops/elementary/elementary-settings-daemon/elementary-settings-daemon.spec b/anda/desktops/elementary/elementary-settings-daemon/elementary-settings-daemon.spec index 31f1670db4..eb5da1a984 100644 --- a/anda/desktops/elementary/elementary-settings-daemon/elementary-settings-daemon.spec +++ b/anda/desktops/elementary/elementary-settings-daemon/elementary-settings-daemon.spec @@ -13,7 +13,7 @@ Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: desktop-file-utils BuildRequires: gettext -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: meson BuildRequires: systemd-rpm-macros BuildRequires: vala diff --git a/anda/desktops/elementary/elementary-shortcut-overlay/elementary-shortcut-overlay.spec b/anda/desktops/elementary/elementary-shortcut-overlay/elementary-shortcut-overlay.spec index ad3fdc858c..b8d466c760 100644 --- a/anda/desktops/elementary/elementary-shortcut-overlay/elementary-shortcut-overlay.spec +++ b/anda/desktops/elementary/elementary-shortcut-overlay/elementary-shortcut-overlay.spec @@ -12,7 +12,7 @@ Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: desktop-file-utils BuildRequires: gettext -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: meson BuildRequires: vala diff --git a/anda/desktops/elementary/elementary-tasks/elementary-tasks.spec b/anda/desktops/elementary/elementary-tasks/elementary-tasks.spec index b39c30865e..9f54021702 100644 --- a/anda/desktops/elementary/elementary-tasks/elementary-tasks.spec +++ b/anda/desktops/elementary/elementary-tasks/elementary-tasks.spec @@ -12,7 +12,7 @@ Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: desktop-file-utils BuildRequires: gettext -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: meson >= 0.49 BuildRequires: vala diff --git a/anda/desktops/elementary/elementary-terminal/elementary-terminal.spec b/anda/desktops/elementary/elementary-terminal/elementary-terminal.spec index 2e619cea3c..f6349dd4bc 100644 --- a/anda/desktops/elementary/elementary-terminal/elementary-terminal.spec +++ b/anda/desktops/elementary/elementary-terminal/elementary-terminal.spec @@ -15,7 +15,7 @@ Patch0: 00-drop-upstream-tests.patch BuildRequires: desktop-file-utils BuildRequires: gettext -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: meson BuildRequires: vala >= 0.40.0 diff --git a/anda/desktops/elementary/elementary-theme/elementary-theme.spec b/anda/desktops/elementary/elementary-theme/elementary-theme.spec index e975d64c78..1f8e394b1a 100644 --- a/anda/desktops/elementary/elementary-theme/elementary-theme.spec +++ b/anda/desktops/elementary/elementary-theme/elementary-theme.spec @@ -13,7 +13,7 @@ Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildArch: noarch BuildRequires: gettext -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: meson BuildRequires: sassc diff --git a/anda/desktops/elementary/elementary-videos/elementary-videos.spec b/anda/desktops/elementary/elementary-videos/elementary-videos.spec index 5b8130d14d..b86703a642 100644 --- a/anda/desktops/elementary/elementary-videos/elementary-videos.spec +++ b/anda/desktops/elementary/elementary-videos/elementary-videos.spec @@ -12,7 +12,7 @@ Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: desktop-file-utils BuildRequires: gettext -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: meson BuildRequires: vala diff --git a/anda/desktops/elementary/gala/gala.spec b/anda/desktops/elementary/gala/gala.spec index 206634a241..d2136d336c 100644 --- a/anda/desktops/elementary/gala/gala.spec +++ b/anda/desktops/elementary/gala/gala.spec @@ -14,7 +14,7 @@ Patch0: 0000-Modify-default-settings-for-Fedora.patch BuildRequires: desktop-file-utils BuildRequires: gettext -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: meson >= 0.50.0 BuildRequires: vala >= 0.28.0 diff --git a/anda/desktops/elementary/granite-7/granite-7.spec b/anda/desktops/elementary/granite-7/granite-7.spec index 6b92415262..b1a63ba5b8 100644 --- a/anda/desktops/elementary/granite-7/granite-7.spec +++ b/anda/desktops/elementary/granite-7/granite-7.spec @@ -14,7 +14,7 @@ Source0: %{url}/archive/%{version}/granite-%{version}.tar.gz BuildRequires: desktop-file-utils BuildRequires: gettext -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: meson >= 0.48.2 BuildRequires: vala >= 0.48 diff --git a/anda/desktops/elementary/pantheon-agent-geoclue2/pantheon-agent-geoclue2.spec b/anda/desktops/elementary/pantheon-agent-geoclue2/pantheon-agent-geoclue2.spec index 8ff52d1ff3..b0f6a49bc0 100644 --- a/anda/desktops/elementary/pantheon-agent-geoclue2/pantheon-agent-geoclue2.spec +++ b/anda/desktops/elementary/pantheon-agent-geoclue2/pantheon-agent-geoclue2.spec @@ -12,7 +12,7 @@ Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: desktop-file-utils BuildRequires: gettext -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: meson BuildRequires: vala >= 0.34.1 diff --git a/anda/desktops/elementary/pantheon-agent-polkit/pantheon-agent-polkit.spec b/anda/desktops/elementary/pantheon-agent-polkit/pantheon-agent-polkit.spec index 6c5a62a612..76d192e23f 100644 --- a/anda/desktops/elementary/pantheon-agent-polkit/pantheon-agent-polkit.spec +++ b/anda/desktops/elementary/pantheon-agent-polkit/pantheon-agent-polkit.spec @@ -12,7 +12,7 @@ Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: desktop-file-utils BuildRequires: gettext -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: meson BuildRequires: vala >= 0.34.1 diff --git a/anda/desktops/elementary/plank/plank.spec b/anda/desktops/elementary/plank/plank.spec index 216771409d..fe4c9083e4 100644 --- a/anda/desktops/elementary/plank/plank.spec +++ b/anda/desktops/elementary/plank/plank.spec @@ -29,7 +29,7 @@ Source0: https://github.com/elementary/dock/archive/%{commit}/dock-%{shor BuildRequires: desktop-file-utils BuildRequires: gettext BuildRequires: help2man -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: meson BuildRequires: vala diff --git a/anda/desktops/elementary/switchboard-plug-a11y/switchboard-plug-a11y.spec b/anda/desktops/elementary/switchboard-plug-a11y/switchboard-plug-a11y.spec index 32613d6760..ff7ee9f540 100644 --- a/anda/desktops/elementary/switchboard-plug-a11y/switchboard-plug-a11y.spec +++ b/anda/desktops/elementary/switchboard-plug-a11y/switchboard-plug-a11y.spec @@ -16,7 +16,7 @@ URL: https://github.com/elementary/switchboard-plug-a11y Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: gettext -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: meson BuildRequires: vala diff --git a/anda/desktops/elementary/switchboard-plug-about/switchboard-plug-about.spec b/anda/desktops/elementary/switchboard-plug-about/switchboard-plug-about.spec index a4fcf7e796..58f8fb4bdc 100644 --- a/anda/desktops/elementary/switchboard-plug-about/switchboard-plug-about.spec +++ b/anda/desktops/elementary/switchboard-plug-about/switchboard-plug-about.spec @@ -16,7 +16,7 @@ URL: https://github.com/elementary/switchboard-plug-about Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: gettext -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: meson BuildRequires: vala >= 0.22.0 diff --git a/anda/desktops/elementary/switchboard-plug-applications/switchboard-plug-applications.spec b/anda/desktops/elementary/switchboard-plug-applications/switchboard-plug-applications.spec index 22df0b84d0..fdfc36fffb 100644 --- a/anda/desktops/elementary/switchboard-plug-applications/switchboard-plug-applications.spec +++ b/anda/desktops/elementary/switchboard-plug-applications/switchboard-plug-applications.spec @@ -16,7 +16,7 @@ URL: https://github.com/elementary/switchboard-plug-applications Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: gettext -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: meson BuildRequires: vala >= 0.22.0 diff --git a/anda/desktops/elementary/switchboard-plug-bluetooth/switchboard-plug-bluetooth.spec b/anda/desktops/elementary/switchboard-plug-bluetooth/switchboard-plug-bluetooth.spec index 8b4a9ca9db..254247db37 100644 --- a/anda/desktops/elementary/switchboard-plug-bluetooth/switchboard-plug-bluetooth.spec +++ b/anda/desktops/elementary/switchboard-plug-bluetooth/switchboard-plug-bluetooth.spec @@ -16,7 +16,7 @@ URL: https://github.com/elementary/switchboard-plug-bluetooth Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: gettext -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: meson BuildRequires: vala >= 0.22.0 diff --git a/anda/desktops/elementary/switchboard-plug-display/switchboard-plug-display.spec b/anda/desktops/elementary/switchboard-plug-display/switchboard-plug-display.spec index a1fa43b134..1845bd2e0c 100644 --- a/anda/desktops/elementary/switchboard-plug-display/switchboard-plug-display.spec +++ b/anda/desktops/elementary/switchboard-plug-display/switchboard-plug-display.spec @@ -16,7 +16,7 @@ URL: https://github.com/elementary/switchboard-plug-display Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: gettext -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: meson BuildRequires: vala >= 0.22.0 diff --git a/anda/desktops/elementary/switchboard-plug-keyboard/switchboard-plug-keyboard.spec b/anda/desktops/elementary/switchboard-plug-keyboard/switchboard-plug-keyboard.spec index 5028eb64cd..77bf76d509 100644 --- a/anda/desktops/elementary/switchboard-plug-keyboard/switchboard-plug-keyboard.spec +++ b/anda/desktops/elementary/switchboard-plug-keyboard/switchboard-plug-keyboard.spec @@ -16,7 +16,7 @@ URL: https://github.com/elementary/switchboard-plug-keyboard Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: gettext -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: meson BuildRequires: vala >= 0.22.0 diff --git a/anda/desktops/elementary/switchboard-plug-mouse-touchpad/switchboard-plug-mouse-touchpad.spec b/anda/desktops/elementary/switchboard-plug-mouse-touchpad/switchboard-plug-mouse-touchpad.spec index a0be895e5b..6e1da14a0c 100644 --- a/anda/desktops/elementary/switchboard-plug-mouse-touchpad/switchboard-plug-mouse-touchpad.spec +++ b/anda/desktops/elementary/switchboard-plug-mouse-touchpad/switchboard-plug-mouse-touchpad.spec @@ -16,7 +16,7 @@ URL: https://github.com/elementary/switchboard-plug-mouse-touchpad Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: gettext -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: meson BuildRequires: vala >= 0.22.0 diff --git a/anda/desktops/elementary/switchboard-plug-networking/switchboard-plug-networking.spec b/anda/desktops/elementary/switchboard-plug-networking/switchboard-plug-networking.spec index f27576c0a2..28bcdf1fa1 100644 --- a/anda/desktops/elementary/switchboard-plug-networking/switchboard-plug-networking.spec +++ b/anda/desktops/elementary/switchboard-plug-networking/switchboard-plug-networking.spec @@ -16,7 +16,7 @@ URL: https://github.com/elementary/switchboard-plug-network Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: gettext -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: meson BuildRequires: vala >= 0.22.0 diff --git a/anda/desktops/elementary/switchboard-plug-notifications/switchboard-plug-notifications.spec b/anda/desktops/elementary/switchboard-plug-notifications/switchboard-plug-notifications.spec index 356b1dbb73..69c2e13f11 100644 --- a/anda/desktops/elementary/switchboard-plug-notifications/switchboard-plug-notifications.spec +++ b/anda/desktops/elementary/switchboard-plug-notifications/switchboard-plug-notifications.spec @@ -16,7 +16,7 @@ URL: https://github.com/elementary/switchboard-plug-notifications Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: gettext -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: meson BuildRequires: vala >= 0.22.0 diff --git a/anda/desktops/elementary/switchboard-plug-onlineaccounts/switchboard-plug-onlineaccounts.spec b/anda/desktops/elementary/switchboard-plug-onlineaccounts/switchboard-plug-onlineaccounts.spec index 3e4a21819e..2d0b1a9ffa 100644 --- a/anda/desktops/elementary/switchboard-plug-onlineaccounts/switchboard-plug-onlineaccounts.spec +++ b/anda/desktops/elementary/switchboard-plug-onlineaccounts/switchboard-plug-onlineaccounts.spec @@ -14,7 +14,7 @@ URL: https://github.com/elementary/switchboard-plug-onlineaccounts Source0: %{url}/archive/%{version}/%{name}-%{version}.tar.gz BuildRequires: gettext -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: meson BuildRequires: vala diff --git a/anda/desktops/elementary/switchboard-plug-pantheon-shell/switchboard-plug-pantheon-shell.spec b/anda/desktops/elementary/switchboard-plug-pantheon-shell/switchboard-plug-pantheon-shell.spec index 2080c2b12d..be52561dc1 100644 --- a/anda/desktops/elementary/switchboard-plug-pantheon-shell/switchboard-plug-pantheon-shell.spec +++ b/anda/desktops/elementary/switchboard-plug-pantheon-shell/switchboard-plug-pantheon-shell.spec @@ -16,7 +16,7 @@ URL: https://github.com/elementary/switchboard-plug-pantheon-shell Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: gettext -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: meson BuildRequires: vala >= 0.22.0 diff --git a/anda/desktops/elementary/switchboard-plug-printers/switchboard-plug-printers.spec b/anda/desktops/elementary/switchboard-plug-printers/switchboard-plug-printers.spec index fa9e9a04b3..9ee32e637b 100644 --- a/anda/desktops/elementary/switchboard-plug-printers/switchboard-plug-printers.spec +++ b/anda/desktops/elementary/switchboard-plug-printers/switchboard-plug-printers.spec @@ -16,7 +16,7 @@ URL: https://github.com/elementary/switchboard-plug-printers Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: gettext -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: meson BuildRequires: vala >= 0.22.0 diff --git a/anda/desktops/elementary/switchboard-plug-sharing/switchboard-plug-sharing.spec b/anda/desktops/elementary/switchboard-plug-sharing/switchboard-plug-sharing.spec index 9b14965ca5..2fca5d6f51 100644 --- a/anda/desktops/elementary/switchboard-plug-sharing/switchboard-plug-sharing.spec +++ b/anda/desktops/elementary/switchboard-plug-sharing/switchboard-plug-sharing.spec @@ -16,7 +16,7 @@ URL: https://github.com/elementary/switchboard-plug-sharing Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: gettext -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: meson BuildRequires: vala >= 0.22.0 diff --git a/anda/desktops/elementary/switchboard-plug-sound/switchboard-plug-sound.spec b/anda/desktops/elementary/switchboard-plug-sound/switchboard-plug-sound.spec index 46bcb1478b..fc677dc0b4 100644 --- a/anda/desktops/elementary/switchboard-plug-sound/switchboard-plug-sound.spec +++ b/anda/desktops/elementary/switchboard-plug-sound/switchboard-plug-sound.spec @@ -16,7 +16,7 @@ URL: https://github.com/elementary/switchboard-plug-sound Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: gettext -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: meson BuildRequires: vala >= 0.34.1 diff --git a/anda/desktops/elementary/switchboard-plug-tweaks/switchboard-plug-tweaks.spec b/anda/desktops/elementary/switchboard-plug-tweaks/switchboard-plug-tweaks.spec index 6a77ab0424..8f19fff709 100644 --- a/anda/desktops/elementary/switchboard-plug-tweaks/switchboard-plug-tweaks.spec +++ b/anda/desktops/elementary/switchboard-plug-tweaks/switchboard-plug-tweaks.spec @@ -14,7 +14,7 @@ Source0: %{url}/archive/%{version}/%{plug_name}-%{version}.tar.gz BuildRequires: gcc BuildRequires: gettext -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: meson BuildRequires: vala diff --git a/anda/desktops/elementary/switchboard/switchboard.spec b/anda/desktops/elementary/switchboard/switchboard.spec index eb43ae1636..d3fccd75b2 100644 --- a/anda/desktops/elementary/switchboard/switchboard.spec +++ b/anda/desktops/elementary/switchboard/switchboard.spec @@ -12,7 +12,7 @@ Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: desktop-file-utils BuildRequires: gettext -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: meson BuildRequires: vala diff --git a/anda/desktops/elementary/wingpanel-applications-menu/wingpanel-applications-menu.spec b/anda/desktops/elementary/wingpanel-applications-menu/wingpanel-applications-menu.spec index 42b2d3d6eb..ad37590f0d 100644 --- a/anda/desktops/elementary/wingpanel-applications-menu/wingpanel-applications-menu.spec +++ b/anda/desktops/elementary/wingpanel-applications-menu/wingpanel-applications-menu.spec @@ -13,7 +13,7 @@ URL: https://github.com/elementary/applications-menu Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: gettext -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: meson BuildRequires: vala >= 0.32.1 diff --git a/anda/desktops/elementary/wingpanel-indicator-bluetooth/wingpanel-indicator-bluetooth.spec b/anda/desktops/elementary/wingpanel-indicator-bluetooth/wingpanel-indicator-bluetooth.spec index 47637d07ba..d80f57308e 100644 --- a/anda/desktops/elementary/wingpanel-indicator-bluetooth/wingpanel-indicator-bluetooth.spec +++ b/anda/desktops/elementary/wingpanel-indicator-bluetooth/wingpanel-indicator-bluetooth.spec @@ -13,7 +13,7 @@ URL: https://github.com/elementary/%{name} Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: gettext -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: meson BuildRequires: vala >= 0.22.0 diff --git a/anda/desktops/elementary/wingpanel-indicator-datetime/wingpanel-indicator-datetime.spec b/anda/desktops/elementary/wingpanel-indicator-datetime/wingpanel-indicator-datetime.spec index fcd3fc4862..191b043335 100644 --- a/anda/desktops/elementary/wingpanel-indicator-datetime/wingpanel-indicator-datetime.spec +++ b/anda/desktops/elementary/wingpanel-indicator-datetime/wingpanel-indicator-datetime.spec @@ -13,7 +13,7 @@ URL: https://github.com/elementary/wingpanel-indicator-datetime Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: gettext -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: meson BuildRequires: vala >= 0.22.0 diff --git a/anda/desktops/elementary/wingpanel-indicator-keyboard/wingpanel-indicator-keyboard.spec b/anda/desktops/elementary/wingpanel-indicator-keyboard/wingpanel-indicator-keyboard.spec index 8d97266446..43239e3483 100644 --- a/anda/desktops/elementary/wingpanel-indicator-keyboard/wingpanel-indicator-keyboard.spec +++ b/anda/desktops/elementary/wingpanel-indicator-keyboard/wingpanel-indicator-keyboard.spec @@ -13,7 +13,7 @@ URL: https://github.com/elementary/%{name} Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: gettext -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: meson BuildRequires: vala >= 0.22.0 diff --git a/anda/desktops/elementary/wingpanel-indicator-network/wingpanel-indicator-network.spec b/anda/desktops/elementary/wingpanel-indicator-network/wingpanel-indicator-network.spec index fe2a5ea709..88a921dbaa 100644 --- a/anda/desktops/elementary/wingpanel-indicator-network/wingpanel-indicator-network.spec +++ b/anda/desktops/elementary/wingpanel-indicator-network/wingpanel-indicator-network.spec @@ -13,7 +13,7 @@ URL: https://github.com/elementary/wingpanel-indicator-network Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: gettext -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: meson BuildRequires: vala >= 0.22.0 diff --git a/anda/desktops/elementary/wingpanel-indicator-nightlight/wingpanel-indicator-nightlight.spec b/anda/desktops/elementary/wingpanel-indicator-nightlight/wingpanel-indicator-nightlight.spec index 2f450d0154..a6f7d09a15 100644 --- a/anda/desktops/elementary/wingpanel-indicator-nightlight/wingpanel-indicator-nightlight.spec +++ b/anda/desktops/elementary/wingpanel-indicator-nightlight/wingpanel-indicator-nightlight.spec @@ -13,7 +13,7 @@ URL: https://github.com/elementary/wingpanel-indicator-nightlight Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: gettext -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: meson BuildRequires: vala >= 0.22.0 diff --git a/anda/desktops/elementary/wingpanel-indicator-notifications/wingpanel-indicator-notifications.spec b/anda/desktops/elementary/wingpanel-indicator-notifications/wingpanel-indicator-notifications.spec index b091bd1781..e2363b2661 100644 --- a/anda/desktops/elementary/wingpanel-indicator-notifications/wingpanel-indicator-notifications.spec +++ b/anda/desktops/elementary/wingpanel-indicator-notifications/wingpanel-indicator-notifications.spec @@ -13,7 +13,7 @@ URL: https://github.com/elementary/wingpanel-indicator-notifications Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: gettext -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: meson BuildRequires: vala >= 0.22.0 diff --git a/anda/desktops/elementary/wingpanel-indicator-power/wingpanel-indicator-power.spec b/anda/desktops/elementary/wingpanel-indicator-power/wingpanel-indicator-power.spec index 744d49b2c7..221166921e 100644 --- a/anda/desktops/elementary/wingpanel-indicator-power/wingpanel-indicator-power.spec +++ b/anda/desktops/elementary/wingpanel-indicator-power/wingpanel-indicator-power.spec @@ -13,7 +13,7 @@ URL: https://github.com/elementary/wingpanel-indicator-power Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: gettext -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: meson BuildRequires: vala >= 0.22.0 diff --git a/anda/desktops/elementary/wingpanel-indicator-session/wingpanel-indicator-session.spec b/anda/desktops/elementary/wingpanel-indicator-session/wingpanel-indicator-session.spec index 2ab583a635..28eb8f3657 100644 --- a/anda/desktops/elementary/wingpanel-indicator-session/wingpanel-indicator-session.spec +++ b/anda/desktops/elementary/wingpanel-indicator-session/wingpanel-indicator-session.spec @@ -13,7 +13,7 @@ URL: https://github.com/elementary/wingpanel-indicator-session Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: gettext -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: meson BuildRequires: vala >= 0.22.0 diff --git a/anda/desktops/elementary/wingpanel-indicator-sound/wingpanel-indicator-sound.spec b/anda/desktops/elementary/wingpanel-indicator-sound/wingpanel-indicator-sound.spec index e72543c14e..7930742e0b 100644 --- a/anda/desktops/elementary/wingpanel-indicator-sound/wingpanel-indicator-sound.spec +++ b/anda/desktops/elementary/wingpanel-indicator-sound/wingpanel-indicator-sound.spec @@ -13,7 +13,7 @@ URL: https://github.com/elementary/%{name} Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: gettext -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: meson BuildRequires: vala >= 0.22.0 diff --git a/anda/desktops/elementary/wingpanel/wingpanel.spec b/anda/desktops/elementary/wingpanel/wingpanel.spec index b8a4d049fb..ba6bd7da99 100644 --- a/anda/desktops/elementary/wingpanel/wingpanel.spec +++ b/anda/desktops/elementary/wingpanel/wingpanel.spec @@ -15,7 +15,7 @@ Source0: %{url}/archive/%{version}/%{name}-%{version}.tar.gz BuildRequires: desktop-file-utils BuildRequires: gettext -BuildRequires: libappstream-glib +BuildRequires: appstream BuildRequires: meson BuildRequires: vala >= 0.24.0 diff --git a/anda/games/prismlauncher-nightly/prismlauncher-nightly.spec b/anda/games/prismlauncher-nightly/prismlauncher-nightly.spec index d85385dd19..9b155812ac 100644 --- a/anda/games/prismlauncher-nightly/prismlauncher-nightly.spec +++ b/anda/games/prismlauncher-nightly/prismlauncher-nightly.spec @@ -164,7 +164,7 @@ sed -i "s|\$ORIGIN/||" CMakeLists.txt %cmake_install %if 0%{?suse_version} > 1500 || 0%{?fedora} > 35 -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}%{_datadir}/metainfo/org.prismlauncher.PrismLauncher.metainfo.xml %endif diff --git a/anda/games/prismlauncher-qt5-nightly/prismlauncher-qt5-nightly.spec b/anda/games/prismlauncher-qt5-nightly/prismlauncher-qt5-nightly.spec index 42f9fc27f3..e1a697dfd9 100644 --- a/anda/games/prismlauncher-qt5-nightly/prismlauncher-qt5-nightly.spec +++ b/anda/games/prismlauncher-qt5-nightly/prismlauncher-qt5-nightly.spec @@ -164,7 +164,7 @@ sed -i "s|\$ORIGIN/||" CMakeLists.txt %cmake_install %if 0%{?suse_version} > 1500 || 0%{?fedora} > 35 -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}%{_datadir}/metainfo/org.prismlauncher.PrismLauncher.metainfo.xml %endif diff --git a/anda/games/prismlauncher-qt5/prismlauncher-qt5.spec b/anda/games/prismlauncher-qt5/prismlauncher-qt5.spec index f5956bceb3..61b4a3e887 100644 --- a/anda/games/prismlauncher-qt5/prismlauncher-qt5.spec +++ b/anda/games/prismlauncher-qt5/prismlauncher-qt5.spec @@ -144,7 +144,7 @@ sed -i "s|\$ORIGIN/||" CMakeLists.txt %cmake_install %if 0%{?suse_version} > 1500 || 0%{?fedora} > 35 -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}%{_datadir}/metainfo/org.prismlauncher.PrismLauncher.metainfo.xml %endif diff --git a/anda/games/prismlauncher/prismlauncher.spec b/anda/games/prismlauncher/prismlauncher.spec index c06375b9dd..fcaaa79365 100644 --- a/anda/games/prismlauncher/prismlauncher.spec +++ b/anda/games/prismlauncher/prismlauncher.spec @@ -144,7 +144,7 @@ sed -i "s|\$ORIGIN/||" CMakeLists.txt %cmake_install %if 0%{?suse_version} > 1500 || 0%{?fedora} > 35 -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}%{_datadir}/metainfo/org.prismlauncher.PrismLauncher.metainfo.xml %endif From bdd197b5aab8c5c58957b61fc088ccaec4832764 Mon Sep 17 00:00:00 2001 From: Lleyton Gray Date: Wed, 23 Nov 2022 04:54:39 +0000 Subject: [PATCH 45/74] Revert "Require appstreamcli" This reverts commit 8aaa2027e655305ed48a13e458ece05ac1f84d28. --- .../elementary/elementary-calculator/elementary-calculator.spec | 2 +- .../elementary/elementary-calendar/elementary-calendar.spec | 2 +- .../elementary/elementary-camera/elementary-camera.spec | 2 +- .../elementary-capnet-assist/elementary-capnet-assist.spec | 2 +- anda/desktops/elementary/elementary-code/elementary-code.spec | 2 +- anda/desktops/elementary/elementary-files/elementary-files.spec | 2 +- .../elementary/elementary-greeter/elementary-greeter.spec | 2 +- .../elementary/elementary-icon-theme/elementary-icon-theme.spec | 2 +- anda/desktops/elementary/elementary-music/elementary-music.spec | 2 +- .../elementary-notifications/elementary-notifications.spec | 2 +- .../elementary/elementary-onboarding/elementary-onboarding.spec | 2 +- .../elementary/elementary-photos/elementary-photos.spec | 2 +- .../elementary-screenshot-tool/elementary-screenshot-tool.spec | 2 +- .../elementary-settings-daemon/elementary-settings-daemon.spec | 2 +- .../elementary-shortcut-overlay.spec | 2 +- anda/desktops/elementary/elementary-tasks/elementary-tasks.spec | 2 +- .../elementary/elementary-terminal/elementary-terminal.spec | 2 +- anda/desktops/elementary/elementary-theme/elementary-theme.spec | 2 +- .../elementary/elementary-videos/elementary-videos.spec | 2 +- anda/desktops/elementary/gala/gala.spec | 2 +- anda/desktops/elementary/granite-7/granite-7.spec | 2 +- .../pantheon-agent-geoclue2/pantheon-agent-geoclue2.spec | 2 +- .../elementary/pantheon-agent-polkit/pantheon-agent-polkit.spec | 2 +- anda/desktops/elementary/plank/plank.spec | 2 +- .../elementary/switchboard-plug-a11y/switchboard-plug-a11y.spec | 2 +- .../switchboard-plug-about/switchboard-plug-about.spec | 2 +- .../switchboard-plug-applications.spec | 2 +- .../switchboard-plug-bluetooth/switchboard-plug-bluetooth.spec | 2 +- .../switchboard-plug-display/switchboard-plug-display.spec | 2 +- .../switchboard-plug-keyboard/switchboard-plug-keyboard.spec | 2 +- .../switchboard-plug-mouse-touchpad.spec | 2 +- .../switchboard-plug-networking.spec | 2 +- .../switchboard-plug-notifications.spec | 2 +- .../switchboard-plug-onlineaccounts.spec | 2 +- .../switchboard-plug-pantheon-shell.spec | 2 +- .../switchboard-plug-printers/switchboard-plug-printers.spec | 2 +- .../switchboard-plug-sharing/switchboard-plug-sharing.spec | 2 +- .../switchboard-plug-sound/switchboard-plug-sound.spec | 2 +- .../switchboard-plug-tweaks/switchboard-plug-tweaks.spec | 2 +- anda/desktops/elementary/switchboard/switchboard.spec | 2 +- .../wingpanel-applications-menu.spec | 2 +- .../wingpanel-indicator-bluetooth.spec | 2 +- .../wingpanel-indicator-datetime.spec | 2 +- .../wingpanel-indicator-keyboard.spec | 2 +- .../wingpanel-indicator-network.spec | 2 +- .../wingpanel-indicator-nightlight.spec | 2 +- .../wingpanel-indicator-notifications.spec | 2 +- .../wingpanel-indicator-power/wingpanel-indicator-power.spec | 2 +- .../wingpanel-indicator-session.spec | 2 +- .../wingpanel-indicator-sound/wingpanel-indicator-sound.spec | 2 +- anda/desktops/elementary/wingpanel/wingpanel.spec | 2 +- anda/games/prismlauncher-nightly/prismlauncher-nightly.spec | 2 +- .../prismlauncher-qt5-nightly/prismlauncher-qt5-nightly.spec | 2 +- anda/games/prismlauncher-qt5/prismlauncher-qt5.spec | 2 +- anda/games/prismlauncher/prismlauncher.spec | 2 +- 55 files changed, 55 insertions(+), 55 deletions(-) diff --git a/anda/desktops/elementary/elementary-calculator/elementary-calculator.spec b/anda/desktops/elementary/elementary-calculator/elementary-calculator.spec index db5394d0e9..0604cec1f6 100644 --- a/anda/desktops/elementary/elementary-calculator/elementary-calculator.spec +++ b/anda/desktops/elementary/elementary-calculator/elementary-calculator.spec @@ -12,7 +12,7 @@ Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: desktop-file-utils BuildRequires: gettext -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: meson >= 0.49 BuildRequires: vala diff --git a/anda/desktops/elementary/elementary-calendar/elementary-calendar.spec b/anda/desktops/elementary/elementary-calendar/elementary-calendar.spec index 58a84ca437..bc3bb29649 100644 --- a/anda/desktops/elementary/elementary-calendar/elementary-calendar.spec +++ b/anda/desktops/elementary/elementary-calendar/elementary-calendar.spec @@ -14,7 +14,7 @@ Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: desktop-file-utils BuildRequires: gettext -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: pkgconfig(champlain-0.12) BuildRequires: pkgconfig(champlain-gtk-0.12) BuildRequires: pkgconfig(clutter-1.0) diff --git a/anda/desktops/elementary/elementary-camera/elementary-camera.spec b/anda/desktops/elementary/elementary-camera/elementary-camera.spec index aa20dfb57e..d3ce859a59 100644 --- a/anda/desktops/elementary/elementary-camera/elementary-camera.spec +++ b/anda/desktops/elementary/elementary-camera/elementary-camera.spec @@ -12,7 +12,7 @@ Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: desktop-file-utils BuildRequires: gettext -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: meson >= 0.46 BuildRequires: vala diff --git a/anda/desktops/elementary/elementary-capnet-assist/elementary-capnet-assist.spec b/anda/desktops/elementary/elementary-capnet-assist/elementary-capnet-assist.spec index c758d72959..623c961d8c 100644 --- a/anda/desktops/elementary/elementary-capnet-assist/elementary-capnet-assist.spec +++ b/anda/desktops/elementary/elementary-capnet-assist/elementary-capnet-assist.spec @@ -12,7 +12,7 @@ Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: desktop-file-utils BuildRequires: gettext -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: meson BuildRequires: vala diff --git a/anda/desktops/elementary/elementary-code/elementary-code.spec b/anda/desktops/elementary/elementary-code/elementary-code.spec index 221c1580b4..d85df54cef 100644 --- a/anda/desktops/elementary/elementary-code/elementary-code.spec +++ b/anda/desktops/elementary/elementary-code/elementary-code.spec @@ -14,7 +14,7 @@ Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: desktop-file-utils BuildRequires: gettext -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: meson BuildRequires: vala diff --git a/anda/desktops/elementary/elementary-files/elementary-files.spec b/anda/desktops/elementary/elementary-files/elementary-files.spec index bfeb461fc5..811a28fe1d 100644 --- a/anda/desktops/elementary/elementary-files/elementary-files.spec +++ b/anda/desktops/elementary/elementary-files/elementary-files.spec @@ -18,7 +18,7 @@ Source2: file-roller-extract-here.contract BuildRequires: desktop-file-utils BuildRequires: gettext -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: meson >= 0.50.0 BuildRequires: vala >= 0.48.2 diff --git a/anda/desktops/elementary/elementary-greeter/elementary-greeter.spec b/anda/desktops/elementary/elementary-greeter/elementary-greeter.spec index 7967a9115d..a845a28583 100644 --- a/anda/desktops/elementary/elementary-greeter/elementary-greeter.spec +++ b/anda/desktops/elementary/elementary-greeter/elementary-greeter.spec @@ -13,7 +13,7 @@ Source1: 40-%{appname}.conf BuildRequires: desktop-file-utils BuildRequires: gettext -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: meson BuildRequires: vala diff --git a/anda/desktops/elementary/elementary-icon-theme/elementary-icon-theme.spec b/anda/desktops/elementary/elementary-icon-theme/elementary-icon-theme.spec index 7797dc74ed..cc6d58769c 100644 --- a/anda/desktops/elementary/elementary-icon-theme/elementary-icon-theme.spec +++ b/anda/desktops/elementary/elementary-icon-theme/elementary-icon-theme.spec @@ -13,7 +13,7 @@ Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildArch: noarch BuildRequires: gettext -BuildRequires: appstream +BuildRequires: libappstream-glib # /usr/bin/rsvg-convert BuildRequires: librsvg2-tools BuildRequires: meson diff --git a/anda/desktops/elementary/elementary-music/elementary-music.spec b/anda/desktops/elementary/elementary-music/elementary-music.spec index 6eed6163b7..bf103f94f5 100644 --- a/anda/desktops/elementary/elementary-music/elementary-music.spec +++ b/anda/desktops/elementary/elementary-music/elementary-music.spec @@ -21,7 +21,7 @@ Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: desktop-file-utils BuildRequires: gettext BuildRequires: meson -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: vala >= 0.26 BuildRequires: pkgconfig(gee-0.8) diff --git a/anda/desktops/elementary/elementary-notifications/elementary-notifications.spec b/anda/desktops/elementary/elementary-notifications/elementary-notifications.spec index 7030dd790e..33348b8bea 100644 --- a/anda/desktops/elementary/elementary-notifications/elementary-notifications.spec +++ b/anda/desktops/elementary/elementary-notifications/elementary-notifications.spec @@ -13,7 +13,7 @@ Source0: %{url}/archive/refs/tags/%{version}.tar.gz BuildRequires: desktop-file-utils -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: libcanberra-devel BuildRequires: libcanberra-gtk3 BuildRequires: pkgconfig(granite) >= 6.0.0 diff --git a/anda/desktops/elementary/elementary-onboarding/elementary-onboarding.spec b/anda/desktops/elementary/elementary-onboarding/elementary-onboarding.spec index 39c57d71ac..b566f2f67b 100644 --- a/anda/desktops/elementary/elementary-onboarding/elementary-onboarding.spec +++ b/anda/desktops/elementary/elementary-onboarding/elementary-onboarding.spec @@ -16,7 +16,7 @@ Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: desktop-file-utils BuildRequires: gettext -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: meson BuildRequires: vala diff --git a/anda/desktops/elementary/elementary-photos/elementary-photos.spec b/anda/desktops/elementary/elementary-photos/elementary-photos.spec index 5e3001f58a..2a917d0e61 100644 --- a/anda/desktops/elementary/elementary-photos/elementary-photos.spec +++ b/anda/desktops/elementary/elementary-photos/elementary-photos.spec @@ -14,7 +14,7 @@ Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: desktop-file-utils BuildRequires: gettext -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: meson >= 0.46.0 BuildRequires: vala diff --git a/anda/desktops/elementary/elementary-screenshot-tool/elementary-screenshot-tool.spec b/anda/desktops/elementary/elementary-screenshot-tool/elementary-screenshot-tool.spec index 296b56c3cd..5863d6f250 100644 --- a/anda/desktops/elementary/elementary-screenshot-tool/elementary-screenshot-tool.spec +++ b/anda/desktops/elementary/elementary-screenshot-tool/elementary-screenshot-tool.spec @@ -15,7 +15,7 @@ Patch1: 0001-meson-remove-deprecated-positional-arguments-from-i1.patch BuildRequires: desktop-file-utils BuildRequires: gettext -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: meson >= 0.46 BuildRequires: vala >= 0.24 diff --git a/anda/desktops/elementary/elementary-settings-daemon/elementary-settings-daemon.spec b/anda/desktops/elementary/elementary-settings-daemon/elementary-settings-daemon.spec index eb5da1a984..31f1670db4 100644 --- a/anda/desktops/elementary/elementary-settings-daemon/elementary-settings-daemon.spec +++ b/anda/desktops/elementary/elementary-settings-daemon/elementary-settings-daemon.spec @@ -13,7 +13,7 @@ Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: desktop-file-utils BuildRequires: gettext -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: meson BuildRequires: systemd-rpm-macros BuildRequires: vala diff --git a/anda/desktops/elementary/elementary-shortcut-overlay/elementary-shortcut-overlay.spec b/anda/desktops/elementary/elementary-shortcut-overlay/elementary-shortcut-overlay.spec index b8d466c760..ad3fdc858c 100644 --- a/anda/desktops/elementary/elementary-shortcut-overlay/elementary-shortcut-overlay.spec +++ b/anda/desktops/elementary/elementary-shortcut-overlay/elementary-shortcut-overlay.spec @@ -12,7 +12,7 @@ Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: desktop-file-utils BuildRequires: gettext -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: meson BuildRequires: vala diff --git a/anda/desktops/elementary/elementary-tasks/elementary-tasks.spec b/anda/desktops/elementary/elementary-tasks/elementary-tasks.spec index 9f54021702..b39c30865e 100644 --- a/anda/desktops/elementary/elementary-tasks/elementary-tasks.spec +++ b/anda/desktops/elementary/elementary-tasks/elementary-tasks.spec @@ -12,7 +12,7 @@ Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: desktop-file-utils BuildRequires: gettext -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: meson >= 0.49 BuildRequires: vala diff --git a/anda/desktops/elementary/elementary-terminal/elementary-terminal.spec b/anda/desktops/elementary/elementary-terminal/elementary-terminal.spec index f6349dd4bc..2e619cea3c 100644 --- a/anda/desktops/elementary/elementary-terminal/elementary-terminal.spec +++ b/anda/desktops/elementary/elementary-terminal/elementary-terminal.spec @@ -15,7 +15,7 @@ Patch0: 00-drop-upstream-tests.patch BuildRequires: desktop-file-utils BuildRequires: gettext -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: meson BuildRequires: vala >= 0.40.0 diff --git a/anda/desktops/elementary/elementary-theme/elementary-theme.spec b/anda/desktops/elementary/elementary-theme/elementary-theme.spec index 1f8e394b1a..e975d64c78 100644 --- a/anda/desktops/elementary/elementary-theme/elementary-theme.spec +++ b/anda/desktops/elementary/elementary-theme/elementary-theme.spec @@ -13,7 +13,7 @@ Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildArch: noarch BuildRequires: gettext -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: meson BuildRequires: sassc diff --git a/anda/desktops/elementary/elementary-videos/elementary-videos.spec b/anda/desktops/elementary/elementary-videos/elementary-videos.spec index b86703a642..5b8130d14d 100644 --- a/anda/desktops/elementary/elementary-videos/elementary-videos.spec +++ b/anda/desktops/elementary/elementary-videos/elementary-videos.spec @@ -12,7 +12,7 @@ Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: desktop-file-utils BuildRequires: gettext -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: meson BuildRequires: vala diff --git a/anda/desktops/elementary/gala/gala.spec b/anda/desktops/elementary/gala/gala.spec index d2136d336c..206634a241 100644 --- a/anda/desktops/elementary/gala/gala.spec +++ b/anda/desktops/elementary/gala/gala.spec @@ -14,7 +14,7 @@ Patch0: 0000-Modify-default-settings-for-Fedora.patch BuildRequires: desktop-file-utils BuildRequires: gettext -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: meson >= 0.50.0 BuildRequires: vala >= 0.28.0 diff --git a/anda/desktops/elementary/granite-7/granite-7.spec b/anda/desktops/elementary/granite-7/granite-7.spec index b1a63ba5b8..6b92415262 100644 --- a/anda/desktops/elementary/granite-7/granite-7.spec +++ b/anda/desktops/elementary/granite-7/granite-7.spec @@ -14,7 +14,7 @@ Source0: %{url}/archive/%{version}/granite-%{version}.tar.gz BuildRequires: desktop-file-utils BuildRequires: gettext -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: meson >= 0.48.2 BuildRequires: vala >= 0.48 diff --git a/anda/desktops/elementary/pantheon-agent-geoclue2/pantheon-agent-geoclue2.spec b/anda/desktops/elementary/pantheon-agent-geoclue2/pantheon-agent-geoclue2.spec index b0f6a49bc0..8ff52d1ff3 100644 --- a/anda/desktops/elementary/pantheon-agent-geoclue2/pantheon-agent-geoclue2.spec +++ b/anda/desktops/elementary/pantheon-agent-geoclue2/pantheon-agent-geoclue2.spec @@ -12,7 +12,7 @@ Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: desktop-file-utils BuildRequires: gettext -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: meson BuildRequires: vala >= 0.34.1 diff --git a/anda/desktops/elementary/pantheon-agent-polkit/pantheon-agent-polkit.spec b/anda/desktops/elementary/pantheon-agent-polkit/pantheon-agent-polkit.spec index 76d192e23f..6c5a62a612 100644 --- a/anda/desktops/elementary/pantheon-agent-polkit/pantheon-agent-polkit.spec +++ b/anda/desktops/elementary/pantheon-agent-polkit/pantheon-agent-polkit.spec @@ -12,7 +12,7 @@ Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: desktop-file-utils BuildRequires: gettext -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: meson BuildRequires: vala >= 0.34.1 diff --git a/anda/desktops/elementary/plank/plank.spec b/anda/desktops/elementary/plank/plank.spec index fe4c9083e4..216771409d 100644 --- a/anda/desktops/elementary/plank/plank.spec +++ b/anda/desktops/elementary/plank/plank.spec @@ -29,7 +29,7 @@ Source0: https://github.com/elementary/dock/archive/%{commit}/dock-%{shor BuildRequires: desktop-file-utils BuildRequires: gettext BuildRequires: help2man -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: meson BuildRequires: vala diff --git a/anda/desktops/elementary/switchboard-plug-a11y/switchboard-plug-a11y.spec b/anda/desktops/elementary/switchboard-plug-a11y/switchboard-plug-a11y.spec index ff7ee9f540..32613d6760 100644 --- a/anda/desktops/elementary/switchboard-plug-a11y/switchboard-plug-a11y.spec +++ b/anda/desktops/elementary/switchboard-plug-a11y/switchboard-plug-a11y.spec @@ -16,7 +16,7 @@ URL: https://github.com/elementary/switchboard-plug-a11y Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: gettext -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: meson BuildRequires: vala diff --git a/anda/desktops/elementary/switchboard-plug-about/switchboard-plug-about.spec b/anda/desktops/elementary/switchboard-plug-about/switchboard-plug-about.spec index 58f8fb4bdc..a4fcf7e796 100644 --- a/anda/desktops/elementary/switchboard-plug-about/switchboard-plug-about.spec +++ b/anda/desktops/elementary/switchboard-plug-about/switchboard-plug-about.spec @@ -16,7 +16,7 @@ URL: https://github.com/elementary/switchboard-plug-about Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: gettext -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: meson BuildRequires: vala >= 0.22.0 diff --git a/anda/desktops/elementary/switchboard-plug-applications/switchboard-plug-applications.spec b/anda/desktops/elementary/switchboard-plug-applications/switchboard-plug-applications.spec index fdfc36fffb..22df0b84d0 100644 --- a/anda/desktops/elementary/switchboard-plug-applications/switchboard-plug-applications.spec +++ b/anda/desktops/elementary/switchboard-plug-applications/switchboard-plug-applications.spec @@ -16,7 +16,7 @@ URL: https://github.com/elementary/switchboard-plug-applications Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: gettext -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: meson BuildRequires: vala >= 0.22.0 diff --git a/anda/desktops/elementary/switchboard-plug-bluetooth/switchboard-plug-bluetooth.spec b/anda/desktops/elementary/switchboard-plug-bluetooth/switchboard-plug-bluetooth.spec index 254247db37..8b4a9ca9db 100644 --- a/anda/desktops/elementary/switchboard-plug-bluetooth/switchboard-plug-bluetooth.spec +++ b/anda/desktops/elementary/switchboard-plug-bluetooth/switchboard-plug-bluetooth.spec @@ -16,7 +16,7 @@ URL: https://github.com/elementary/switchboard-plug-bluetooth Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: gettext -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: meson BuildRequires: vala >= 0.22.0 diff --git a/anda/desktops/elementary/switchboard-plug-display/switchboard-plug-display.spec b/anda/desktops/elementary/switchboard-plug-display/switchboard-plug-display.spec index 1845bd2e0c..a1fa43b134 100644 --- a/anda/desktops/elementary/switchboard-plug-display/switchboard-plug-display.spec +++ b/anda/desktops/elementary/switchboard-plug-display/switchboard-plug-display.spec @@ -16,7 +16,7 @@ URL: https://github.com/elementary/switchboard-plug-display Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: gettext -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: meson BuildRequires: vala >= 0.22.0 diff --git a/anda/desktops/elementary/switchboard-plug-keyboard/switchboard-plug-keyboard.spec b/anda/desktops/elementary/switchboard-plug-keyboard/switchboard-plug-keyboard.spec index 77bf76d509..5028eb64cd 100644 --- a/anda/desktops/elementary/switchboard-plug-keyboard/switchboard-plug-keyboard.spec +++ b/anda/desktops/elementary/switchboard-plug-keyboard/switchboard-plug-keyboard.spec @@ -16,7 +16,7 @@ URL: https://github.com/elementary/switchboard-plug-keyboard Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: gettext -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: meson BuildRequires: vala >= 0.22.0 diff --git a/anda/desktops/elementary/switchboard-plug-mouse-touchpad/switchboard-plug-mouse-touchpad.spec b/anda/desktops/elementary/switchboard-plug-mouse-touchpad/switchboard-plug-mouse-touchpad.spec index 6e1da14a0c..a0be895e5b 100644 --- a/anda/desktops/elementary/switchboard-plug-mouse-touchpad/switchboard-plug-mouse-touchpad.spec +++ b/anda/desktops/elementary/switchboard-plug-mouse-touchpad/switchboard-plug-mouse-touchpad.spec @@ -16,7 +16,7 @@ URL: https://github.com/elementary/switchboard-plug-mouse-touchpad Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: gettext -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: meson BuildRequires: vala >= 0.22.0 diff --git a/anda/desktops/elementary/switchboard-plug-networking/switchboard-plug-networking.spec b/anda/desktops/elementary/switchboard-plug-networking/switchboard-plug-networking.spec index 28bcdf1fa1..f27576c0a2 100644 --- a/anda/desktops/elementary/switchboard-plug-networking/switchboard-plug-networking.spec +++ b/anda/desktops/elementary/switchboard-plug-networking/switchboard-plug-networking.spec @@ -16,7 +16,7 @@ URL: https://github.com/elementary/switchboard-plug-network Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: gettext -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: meson BuildRequires: vala >= 0.22.0 diff --git a/anda/desktops/elementary/switchboard-plug-notifications/switchboard-plug-notifications.spec b/anda/desktops/elementary/switchboard-plug-notifications/switchboard-plug-notifications.spec index 69c2e13f11..356b1dbb73 100644 --- a/anda/desktops/elementary/switchboard-plug-notifications/switchboard-plug-notifications.spec +++ b/anda/desktops/elementary/switchboard-plug-notifications/switchboard-plug-notifications.spec @@ -16,7 +16,7 @@ URL: https://github.com/elementary/switchboard-plug-notifications Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: gettext -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: meson BuildRequires: vala >= 0.22.0 diff --git a/anda/desktops/elementary/switchboard-plug-onlineaccounts/switchboard-plug-onlineaccounts.spec b/anda/desktops/elementary/switchboard-plug-onlineaccounts/switchboard-plug-onlineaccounts.spec index 2d0b1a9ffa..3e4a21819e 100644 --- a/anda/desktops/elementary/switchboard-plug-onlineaccounts/switchboard-plug-onlineaccounts.spec +++ b/anda/desktops/elementary/switchboard-plug-onlineaccounts/switchboard-plug-onlineaccounts.spec @@ -14,7 +14,7 @@ URL: https://github.com/elementary/switchboard-plug-onlineaccounts Source0: %{url}/archive/%{version}/%{name}-%{version}.tar.gz BuildRequires: gettext -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: meson BuildRequires: vala diff --git a/anda/desktops/elementary/switchboard-plug-pantheon-shell/switchboard-plug-pantheon-shell.spec b/anda/desktops/elementary/switchboard-plug-pantheon-shell/switchboard-plug-pantheon-shell.spec index be52561dc1..2080c2b12d 100644 --- a/anda/desktops/elementary/switchboard-plug-pantheon-shell/switchboard-plug-pantheon-shell.spec +++ b/anda/desktops/elementary/switchboard-plug-pantheon-shell/switchboard-plug-pantheon-shell.spec @@ -16,7 +16,7 @@ URL: https://github.com/elementary/switchboard-plug-pantheon-shell Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: gettext -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: meson BuildRequires: vala >= 0.22.0 diff --git a/anda/desktops/elementary/switchboard-plug-printers/switchboard-plug-printers.spec b/anda/desktops/elementary/switchboard-plug-printers/switchboard-plug-printers.spec index 9ee32e637b..fa9e9a04b3 100644 --- a/anda/desktops/elementary/switchboard-plug-printers/switchboard-plug-printers.spec +++ b/anda/desktops/elementary/switchboard-plug-printers/switchboard-plug-printers.spec @@ -16,7 +16,7 @@ URL: https://github.com/elementary/switchboard-plug-printers Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: gettext -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: meson BuildRequires: vala >= 0.22.0 diff --git a/anda/desktops/elementary/switchboard-plug-sharing/switchboard-plug-sharing.spec b/anda/desktops/elementary/switchboard-plug-sharing/switchboard-plug-sharing.spec index 2fca5d6f51..9b14965ca5 100644 --- a/anda/desktops/elementary/switchboard-plug-sharing/switchboard-plug-sharing.spec +++ b/anda/desktops/elementary/switchboard-plug-sharing/switchboard-plug-sharing.spec @@ -16,7 +16,7 @@ URL: https://github.com/elementary/switchboard-plug-sharing Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: gettext -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: meson BuildRequires: vala >= 0.22.0 diff --git a/anda/desktops/elementary/switchboard-plug-sound/switchboard-plug-sound.spec b/anda/desktops/elementary/switchboard-plug-sound/switchboard-plug-sound.spec index fc677dc0b4..46bcb1478b 100644 --- a/anda/desktops/elementary/switchboard-plug-sound/switchboard-plug-sound.spec +++ b/anda/desktops/elementary/switchboard-plug-sound/switchboard-plug-sound.spec @@ -16,7 +16,7 @@ URL: https://github.com/elementary/switchboard-plug-sound Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: gettext -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: meson BuildRequires: vala >= 0.34.1 diff --git a/anda/desktops/elementary/switchboard-plug-tweaks/switchboard-plug-tweaks.spec b/anda/desktops/elementary/switchboard-plug-tweaks/switchboard-plug-tweaks.spec index 8f19fff709..6a77ab0424 100644 --- a/anda/desktops/elementary/switchboard-plug-tweaks/switchboard-plug-tweaks.spec +++ b/anda/desktops/elementary/switchboard-plug-tweaks/switchboard-plug-tweaks.spec @@ -14,7 +14,7 @@ Source0: %{url}/archive/%{version}/%{plug_name}-%{version}.tar.gz BuildRequires: gcc BuildRequires: gettext -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: meson BuildRequires: vala diff --git a/anda/desktops/elementary/switchboard/switchboard.spec b/anda/desktops/elementary/switchboard/switchboard.spec index d3fccd75b2..eb43ae1636 100644 --- a/anda/desktops/elementary/switchboard/switchboard.spec +++ b/anda/desktops/elementary/switchboard/switchboard.spec @@ -12,7 +12,7 @@ Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: desktop-file-utils BuildRequires: gettext -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: meson BuildRequires: vala diff --git a/anda/desktops/elementary/wingpanel-applications-menu/wingpanel-applications-menu.spec b/anda/desktops/elementary/wingpanel-applications-menu/wingpanel-applications-menu.spec index ad37590f0d..42b2d3d6eb 100644 --- a/anda/desktops/elementary/wingpanel-applications-menu/wingpanel-applications-menu.spec +++ b/anda/desktops/elementary/wingpanel-applications-menu/wingpanel-applications-menu.spec @@ -13,7 +13,7 @@ URL: https://github.com/elementary/applications-menu Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: gettext -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: meson BuildRequires: vala >= 0.32.1 diff --git a/anda/desktops/elementary/wingpanel-indicator-bluetooth/wingpanel-indicator-bluetooth.spec b/anda/desktops/elementary/wingpanel-indicator-bluetooth/wingpanel-indicator-bluetooth.spec index d80f57308e..47637d07ba 100644 --- a/anda/desktops/elementary/wingpanel-indicator-bluetooth/wingpanel-indicator-bluetooth.spec +++ b/anda/desktops/elementary/wingpanel-indicator-bluetooth/wingpanel-indicator-bluetooth.spec @@ -13,7 +13,7 @@ URL: https://github.com/elementary/%{name} Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: gettext -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: meson BuildRequires: vala >= 0.22.0 diff --git a/anda/desktops/elementary/wingpanel-indicator-datetime/wingpanel-indicator-datetime.spec b/anda/desktops/elementary/wingpanel-indicator-datetime/wingpanel-indicator-datetime.spec index 191b043335..fcd3fc4862 100644 --- a/anda/desktops/elementary/wingpanel-indicator-datetime/wingpanel-indicator-datetime.spec +++ b/anda/desktops/elementary/wingpanel-indicator-datetime/wingpanel-indicator-datetime.spec @@ -13,7 +13,7 @@ URL: https://github.com/elementary/wingpanel-indicator-datetime Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: gettext -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: meson BuildRequires: vala >= 0.22.0 diff --git a/anda/desktops/elementary/wingpanel-indicator-keyboard/wingpanel-indicator-keyboard.spec b/anda/desktops/elementary/wingpanel-indicator-keyboard/wingpanel-indicator-keyboard.spec index 43239e3483..8d97266446 100644 --- a/anda/desktops/elementary/wingpanel-indicator-keyboard/wingpanel-indicator-keyboard.spec +++ b/anda/desktops/elementary/wingpanel-indicator-keyboard/wingpanel-indicator-keyboard.spec @@ -13,7 +13,7 @@ URL: https://github.com/elementary/%{name} Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: gettext -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: meson BuildRequires: vala >= 0.22.0 diff --git a/anda/desktops/elementary/wingpanel-indicator-network/wingpanel-indicator-network.spec b/anda/desktops/elementary/wingpanel-indicator-network/wingpanel-indicator-network.spec index 88a921dbaa..fe2a5ea709 100644 --- a/anda/desktops/elementary/wingpanel-indicator-network/wingpanel-indicator-network.spec +++ b/anda/desktops/elementary/wingpanel-indicator-network/wingpanel-indicator-network.spec @@ -13,7 +13,7 @@ URL: https://github.com/elementary/wingpanel-indicator-network Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: gettext -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: meson BuildRequires: vala >= 0.22.0 diff --git a/anda/desktops/elementary/wingpanel-indicator-nightlight/wingpanel-indicator-nightlight.spec b/anda/desktops/elementary/wingpanel-indicator-nightlight/wingpanel-indicator-nightlight.spec index a6f7d09a15..2f450d0154 100644 --- a/anda/desktops/elementary/wingpanel-indicator-nightlight/wingpanel-indicator-nightlight.spec +++ b/anda/desktops/elementary/wingpanel-indicator-nightlight/wingpanel-indicator-nightlight.spec @@ -13,7 +13,7 @@ URL: https://github.com/elementary/wingpanel-indicator-nightlight Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: gettext -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: meson BuildRequires: vala >= 0.22.0 diff --git a/anda/desktops/elementary/wingpanel-indicator-notifications/wingpanel-indicator-notifications.spec b/anda/desktops/elementary/wingpanel-indicator-notifications/wingpanel-indicator-notifications.spec index e2363b2661..b091bd1781 100644 --- a/anda/desktops/elementary/wingpanel-indicator-notifications/wingpanel-indicator-notifications.spec +++ b/anda/desktops/elementary/wingpanel-indicator-notifications/wingpanel-indicator-notifications.spec @@ -13,7 +13,7 @@ URL: https://github.com/elementary/wingpanel-indicator-notifications Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: gettext -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: meson BuildRequires: vala >= 0.22.0 diff --git a/anda/desktops/elementary/wingpanel-indicator-power/wingpanel-indicator-power.spec b/anda/desktops/elementary/wingpanel-indicator-power/wingpanel-indicator-power.spec index 221166921e..744d49b2c7 100644 --- a/anda/desktops/elementary/wingpanel-indicator-power/wingpanel-indicator-power.spec +++ b/anda/desktops/elementary/wingpanel-indicator-power/wingpanel-indicator-power.spec @@ -13,7 +13,7 @@ URL: https://github.com/elementary/wingpanel-indicator-power Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: gettext -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: meson BuildRequires: vala >= 0.22.0 diff --git a/anda/desktops/elementary/wingpanel-indicator-session/wingpanel-indicator-session.spec b/anda/desktops/elementary/wingpanel-indicator-session/wingpanel-indicator-session.spec index 28eb8f3657..2ab583a635 100644 --- a/anda/desktops/elementary/wingpanel-indicator-session/wingpanel-indicator-session.spec +++ b/anda/desktops/elementary/wingpanel-indicator-session/wingpanel-indicator-session.spec @@ -13,7 +13,7 @@ URL: https://github.com/elementary/wingpanel-indicator-session Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: gettext -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: meson BuildRequires: vala >= 0.22.0 diff --git a/anda/desktops/elementary/wingpanel-indicator-sound/wingpanel-indicator-sound.spec b/anda/desktops/elementary/wingpanel-indicator-sound/wingpanel-indicator-sound.spec index 7930742e0b..e72543c14e 100644 --- a/anda/desktops/elementary/wingpanel-indicator-sound/wingpanel-indicator-sound.spec +++ b/anda/desktops/elementary/wingpanel-indicator-sound/wingpanel-indicator-sound.spec @@ -13,7 +13,7 @@ URL: https://github.com/elementary/%{name} Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildRequires: gettext -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: meson BuildRequires: vala >= 0.22.0 diff --git a/anda/desktops/elementary/wingpanel/wingpanel.spec b/anda/desktops/elementary/wingpanel/wingpanel.spec index ba6bd7da99..b8a4d049fb 100644 --- a/anda/desktops/elementary/wingpanel/wingpanel.spec +++ b/anda/desktops/elementary/wingpanel/wingpanel.spec @@ -15,7 +15,7 @@ Source0: %{url}/archive/%{version}/%{name}-%{version}.tar.gz BuildRequires: desktop-file-utils BuildRequires: gettext -BuildRequires: appstream +BuildRequires: libappstream-glib BuildRequires: meson BuildRequires: vala >= 0.24.0 diff --git a/anda/games/prismlauncher-nightly/prismlauncher-nightly.spec b/anda/games/prismlauncher-nightly/prismlauncher-nightly.spec index 9b155812ac..d85385dd19 100644 --- a/anda/games/prismlauncher-nightly/prismlauncher-nightly.spec +++ b/anda/games/prismlauncher-nightly/prismlauncher-nightly.spec @@ -164,7 +164,7 @@ sed -i "s|\$ORIGIN/||" CMakeLists.txt %cmake_install %if 0%{?suse_version} > 1500 || 0%{?fedora} > 35 -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}%{_datadir}/metainfo/org.prismlauncher.PrismLauncher.metainfo.xml %endif diff --git a/anda/games/prismlauncher-qt5-nightly/prismlauncher-qt5-nightly.spec b/anda/games/prismlauncher-qt5-nightly/prismlauncher-qt5-nightly.spec index e1a697dfd9..42f9fc27f3 100644 --- a/anda/games/prismlauncher-qt5-nightly/prismlauncher-qt5-nightly.spec +++ b/anda/games/prismlauncher-qt5-nightly/prismlauncher-qt5-nightly.spec @@ -164,7 +164,7 @@ sed -i "s|\$ORIGIN/||" CMakeLists.txt %cmake_install %if 0%{?suse_version} > 1500 || 0%{?fedora} > 35 -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}%{_datadir}/metainfo/org.prismlauncher.PrismLauncher.metainfo.xml %endif diff --git a/anda/games/prismlauncher-qt5/prismlauncher-qt5.spec b/anda/games/prismlauncher-qt5/prismlauncher-qt5.spec index 61b4a3e887..f5956bceb3 100644 --- a/anda/games/prismlauncher-qt5/prismlauncher-qt5.spec +++ b/anda/games/prismlauncher-qt5/prismlauncher-qt5.spec @@ -144,7 +144,7 @@ sed -i "s|\$ORIGIN/||" CMakeLists.txt %cmake_install %if 0%{?suse_version} > 1500 || 0%{?fedora} > 35 -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}%{_datadir}/metainfo/org.prismlauncher.PrismLauncher.metainfo.xml %endif diff --git a/anda/games/prismlauncher/prismlauncher.spec b/anda/games/prismlauncher/prismlauncher.spec index fcaaa79365..c06375b9dd 100644 --- a/anda/games/prismlauncher/prismlauncher.spec +++ b/anda/games/prismlauncher/prismlauncher.spec @@ -144,7 +144,7 @@ sed -i "s|\$ORIGIN/||" CMakeLists.txt %cmake_install %if 0%{?suse_version} > 1500 || 0%{?fedora} > 35 -appstream-util validate-relax --nonet \ +appstreamcli validate --nonet \ %{buildroot}%{_datadir}/metainfo/org.prismlauncher.PrismLauncher.metainfo.xml %endif From a4bda7a96ee9566246dff70ad9f2be8d8aaa2608 Mon Sep 17 00:00:00 2001 From: Lleyton Gray Date: Wed, 23 Nov 2022 04:54:46 +0000 Subject: [PATCH 46/74] Revert "Use non gnome specific appstream validate" This reverts commit 3f1371c7a811cb10125f92ff2ab2c4ea6ab1745a. --- .../elementary/elementary-calculator/elementary-calculator.spec | 2 +- .../elementary/elementary-calendar/elementary-calendar.spec | 2 +- .../elementary/elementary-camera/elementary-camera.spec | 2 +- .../elementary-capnet-assist/elementary-capnet-assist.spec | 2 +- anda/desktops/elementary/elementary-code/elementary-code.spec | 2 +- anda/desktops/elementary/elementary-files/elementary-files.spec | 2 +- .../elementary/elementary-greeter/elementary-greeter.spec | 2 +- .../elementary/elementary-icon-theme/elementary-icon-theme.spec | 2 +- anda/desktops/elementary/elementary-music/elementary-music.spec | 2 +- .../elementary/elementary-onboarding/elementary-onboarding.spec | 2 +- .../elementary/elementary-photos/elementary-photos.spec | 2 +- .../elementary-screenshot-tool/elementary-screenshot-tool.spec | 2 +- .../elementary-settings-daemon/elementary-settings-daemon.spec | 2 +- .../elementary-shortcut-overlay.spec | 2 +- anda/desktops/elementary/elementary-tasks/elementary-tasks.spec | 2 +- .../elementary/elementary-terminal/elementary-terminal.spec | 2 +- anda/desktops/elementary/elementary-theme/elementary-theme.spec | 2 +- .../elementary/elementary-videos/elementary-videos.spec | 2 +- anda/desktops/elementary/gala/gala.spec | 2 +- anda/desktops/elementary/granite-7/granite-7.spec | 2 +- .../pantheon-agent-geoclue2/pantheon-agent-geoclue2.spec | 2 +- .../elementary/pantheon-agent-polkit/pantheon-agent-polkit.spec | 2 +- anda/desktops/elementary/plank/plank.spec | 2 +- .../elementary/switchboard-plug-a11y/switchboard-plug-a11y.spec | 2 +- .../switchboard-plug-about/switchboard-plug-about.spec | 2 +- .../switchboard-plug-applications.spec | 2 +- .../switchboard-plug-bluetooth/switchboard-plug-bluetooth.spec | 2 +- .../switchboard-plug-display/switchboard-plug-display.spec | 2 +- .../switchboard-plug-keyboard/switchboard-plug-keyboard.spec | 2 +- .../switchboard-plug-mouse-touchpad.spec | 2 +- .../switchboard-plug-networking.spec | 2 +- .../switchboard-plug-notifications.spec | 2 +- .../switchboard-plug-onlineaccounts.spec | 2 +- .../switchboard-plug-pantheon-shell.spec | 2 +- .../switchboard-plug-printers/switchboard-plug-printers.spec | 2 +- .../switchboard-plug-sharing/switchboard-plug-sharing.spec | 2 +- .../switchboard-plug-sound/switchboard-plug-sound.spec | 2 +- .../switchboard-plug-tweaks/switchboard-plug-tweaks.spec | 2 +- anda/desktops/elementary/switchboard/switchboard.spec | 2 +- .../wingpanel-applications-menu.spec | 2 +- .../wingpanel-indicator-bluetooth.spec | 2 +- .../wingpanel-indicator-datetime.spec | 2 +- .../wingpanel-indicator-keyboard.spec | 2 +- .../wingpanel-indicator-network.spec | 2 +- .../wingpanel-indicator-nightlight.spec | 2 +- .../wingpanel-indicator-notifications.spec | 2 +- .../wingpanel-indicator-power/wingpanel-indicator-power.spec | 2 +- .../wingpanel-indicator-session.spec | 2 +- .../wingpanel-indicator-sound/wingpanel-indicator-sound.spec | 2 +- anda/desktops/elementary/wingpanel/wingpanel.spec | 2 +- anda/games/prismlauncher-nightly/prismlauncher-nightly.spec | 2 +- .../prismlauncher-qt5-nightly/prismlauncher-qt5-nightly.spec | 2 +- anda/games/prismlauncher-qt5/prismlauncher-qt5.spec | 2 +- anda/games/prismlauncher/prismlauncher.spec | 2 +- 54 files changed, 54 insertions(+), 54 deletions(-) diff --git a/anda/desktops/elementary/elementary-calculator/elementary-calculator.spec b/anda/desktops/elementary/elementary-calculator/elementary-calculator.spec index 0604cec1f6..6a10134bd6 100644 --- a/anda/desktops/elementary/elementary-calculator/elementary-calculator.spec +++ b/anda/desktops/elementary/elementary-calculator/elementary-calculator.spec @@ -52,7 +52,7 @@ functions (sin, cos, and tan). desktop-file-validate \ %{buildroot}/%{_datadir}/applications/%{appname}.desktop -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/elementary-calendar/elementary-calendar.spec b/anda/desktops/elementary/elementary-calendar/elementary-calendar.spec index bc3bb29649..9caed3b7fe 100644 --- a/anda/desktops/elementary/elementary-calendar/elementary-calendar.spec +++ b/anda/desktops/elementary/elementary-calendar/elementary-calendar.spec @@ -70,7 +70,7 @@ desktop-file-validate \ desktop-file-validate \ %{buildroot}/%{_datadir}/applications/%{appname}.desktop -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/elementary-camera/elementary-camera.spec b/anda/desktops/elementary/elementary-camera/elementary-camera.spec index d3ce859a59..6167be6bef 100644 --- a/anda/desktops/elementary/elementary-camera/elementary-camera.spec +++ b/anda/desktops/elementary/elementary-camera/elementary-camera.spec @@ -51,7 +51,7 @@ Camera is a simple app to take photos with a webcam. desktop-file-validate \ %{buildroot}/%{_datadir}/applications/%{appname}.desktop -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/elementary-capnet-assist/elementary-capnet-assist.spec b/anda/desktops/elementary/elementary-capnet-assist/elementary-capnet-assist.spec index 623c961d8c..e4ab326239 100644 --- a/anda/desktops/elementary/elementary-capnet-assist/elementary-capnet-assist.spec +++ b/anda/desktops/elementary/elementary-capnet-assist/elementary-capnet-assist.spec @@ -59,7 +59,7 @@ Written in Vala and using WebkitGtk+. desktop-file-validate \ %{buildroot}/%{_datadir}/applications/%{appname}.desktop -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/elementary-code/elementary-code.spec b/anda/desktops/elementary/elementary-code/elementary-code.spec index d85df54cef..7a4f1f786e 100644 --- a/anda/desktops/elementary/elementary-code/elementary-code.spec +++ b/anda/desktops/elementary/elementary-code/elementary-code.spec @@ -73,7 +73,7 @@ This package contains the development headers. desktop-file-validate \ %{buildroot}/%{_datadir}/applications/%{appname}.desktop -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/elementary-files/elementary-files.spec b/anda/desktops/elementary/elementary-files/elementary-files.spec index 811a28fe1d..b8f681fd99 100644 --- a/anda/desktops/elementary/elementary-files/elementary-files.spec +++ b/anda/desktops/elementary/elementary-files/elementary-files.spec @@ -97,7 +97,7 @@ cp -pav %{SOURCE2} %{buildroot}/%{_datadir}/contractor/ desktop-file-validate \ %{buildroot}/%{_datadir}/applications/%{appname}.desktop -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/elementary-greeter/elementary-greeter.spec b/anda/desktops/elementary/elementary-greeter/elementary-greeter.spec index a845a28583..0751b5f049 100644 --- a/anda/desktops/elementary/elementary-greeter/elementary-greeter.spec +++ b/anda/desktops/elementary/elementary-greeter/elementary-greeter.spec @@ -86,7 +86,7 @@ install -pm 0644 %{SOURCE1} %{buildroot}%{_sysconfdir}/lightdm/lightdm.conf.d/ %check -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/elementary-icon-theme/elementary-icon-theme.spec b/anda/desktops/elementary/elementary-icon-theme/elementary-icon-theme.spec index cc6d58769c..ec587948b0 100644 --- a/anda/desktops/elementary/elementary-icon-theme/elementary-icon-theme.spec +++ b/anda/desktops/elementary/elementary-icon-theme/elementary-icon-theme.spec @@ -68,7 +68,7 @@ touch %{buildroot}/%{_datadir}/icons/elementary/icon-theme.cache %check # ignore validation until appstream-glib knows the "icon-theme" component type -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml || : diff --git a/anda/desktops/elementary/elementary-music/elementary-music.spec b/anda/desktops/elementary/elementary-music/elementary-music.spec index bf103f94f5..3a6b06a65e 100644 --- a/anda/desktops/elementary/elementary-music/elementary-music.spec +++ b/anda/desktops/elementary/elementary-music/elementary-music.spec @@ -82,7 +82,7 @@ This package contains files needed for developing with Music. desktop-file-validate \ %{buildroot}/%{_datadir}/applications/%{appname}.desktop -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/elementary-onboarding/elementary-onboarding.spec b/anda/desktops/elementary/elementary-onboarding/elementary-onboarding.spec index b566f2f67b..8a4301b3c7 100644 --- a/anda/desktops/elementary/elementary-onboarding/elementary-onboarding.spec +++ b/anda/desktops/elementary/elementary-onboarding/elementary-onboarding.spec @@ -61,7 +61,7 @@ desktop-file-validate \ desktop-file-validate \ %{buildroot}/%{_sysconfdir}/xdg/autostart/%{appname}.desktop -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/elementary-photos/elementary-photos.spec b/anda/desktops/elementary/elementary-photos/elementary-photos.spec index 2a917d0e61..8c222db626 100644 --- a/anda/desktops/elementary/elementary-photos/elementary-photos.spec +++ b/anda/desktops/elementary/elementary-photos/elementary-photos.spec @@ -73,7 +73,7 @@ desktop-file-validate \ desktop-file-validate \ %{buildroot}/%{_datadir}/applications/%{appname}-viewer.desktop -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/elementary-screenshot-tool/elementary-screenshot-tool.spec b/anda/desktops/elementary/elementary-screenshot-tool/elementary-screenshot-tool.spec index 5863d6f250..3c64807cb4 100644 --- a/anda/desktops/elementary/elementary-screenshot-tool/elementary-screenshot-tool.spec +++ b/anda/desktops/elementary/elementary-screenshot-tool/elementary-screenshot-tool.spec @@ -50,7 +50,7 @@ Screenshot tool designed for elementary. desktop-file-validate \ %{buildroot}/%{_datadir}/applications/%{appname}.desktop -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/elementary-settings-daemon/elementary-settings-daemon.spec b/anda/desktops/elementary/elementary-settings-daemon/elementary-settings-daemon.spec index 31f1670db4..661729ad0d 100644 --- a/anda/desktops/elementary/elementary-settings-daemon/elementary-settings-daemon.spec +++ b/anda/desktops/elementary/elementary-settings-daemon/elementary-settings-daemon.spec @@ -49,7 +49,7 @@ Requires: xdg-desktop-portal desktop-file-validate \ %{buildroot}/%{_sysconfdir}/xdg/autostart/%{appname}.desktop -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/elementary-shortcut-overlay/elementary-shortcut-overlay.spec b/anda/desktops/elementary/elementary-shortcut-overlay/elementary-shortcut-overlay.spec index ad3fdc858c..ce3bb6c8bb 100644 --- a/anda/desktops/elementary/elementary-shortcut-overlay/elementary-shortcut-overlay.spec +++ b/anda/desktops/elementary/elementary-shortcut-overlay/elementary-shortcut-overlay.spec @@ -48,7 +48,7 @@ the titlebar opens the system keyboard settings. desktop-file-validate \ %{buildroot}/%{_datadir}/applications/%{appname}.desktop -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/elementary-tasks/elementary-tasks.spec b/anda/desktops/elementary/elementary-tasks/elementary-tasks.spec index b39c30865e..efdc53e30a 100644 --- a/anda/desktops/elementary/elementary-tasks/elementary-tasks.spec +++ b/anda/desktops/elementary/elementary-tasks/elementary-tasks.spec @@ -60,7 +60,7 @@ desktop-file-validate \ desktop-file-validate \ %{buildroot}/%{_sysconfdir}/xdg/autostart/%{appname}-daemon.desktop -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/elementary-terminal/elementary-terminal.spec b/anda/desktops/elementary/elementary-terminal/elementary-terminal.spec index 2e619cea3c..1de5dad757 100644 --- a/anda/desktops/elementary/elementary-terminal/elementary-terminal.spec +++ b/anda/desktops/elementary/elementary-terminal/elementary-terminal.spec @@ -76,7 +76,7 @@ desktop-file-validate \ desktop-file-validate \ %{buildroot}/%{_datadir}/applications/open-pantheon-terminal-here.desktop -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/elementary-theme/elementary-theme.spec b/anda/desktops/elementary/elementary-theme/elementary-theme.spec index e975d64c78..253d450cf1 100644 --- a/anda/desktops/elementary/elementary-theme/elementary-theme.spec +++ b/anda/desktops/elementary/elementary-theme/elementary-theme.spec @@ -56,7 +56,7 @@ This package contains the plank theme. %check -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/elementary-videos/elementary-videos.spec b/anda/desktops/elementary/elementary-videos/elementary-videos.spec index 5b8130d14d..893ce7c91c 100644 --- a/anda/desktops/elementary/elementary-videos/elementary-videos.spec +++ b/anda/desktops/elementary/elementary-videos/elementary-videos.spec @@ -55,7 +55,7 @@ to the desktop. desktop-file-validate \ %{buildroot}/%{_datadir}/applications/%{appname}.desktop -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/gala/gala.spec b/anda/desktops/elementary/gala/gala.spec index 206634a241..987ffa0634 100644 --- a/anda/desktops/elementary/gala/gala.spec +++ b/anda/desktops/elementary/gala/gala.spec @@ -91,7 +91,7 @@ desktop-file-validate \ desktop-file-validate \ %{buildroot}/%{_datadir}/applications/gala*.desktop -#appstreamcli validate --nonet \ +#appstream-util validate-relax --nonet \ # %{buildroot}/%{_datadir}/metainfo/%{name}.appdata.xml diff --git a/anda/desktops/elementary/granite-7/granite-7.spec b/anda/desktops/elementary/granite-7/granite-7.spec index 6b92415262..77da59b086 100644 --- a/anda/desktops/elementary/granite-7/granite-7.spec +++ b/anda/desktops/elementary/granite-7/granite-7.spec @@ -63,7 +63,7 @@ This package contains the development headers. desktop-file-validate \ %{buildroot}/%{_datadir}/applications/io.elementary.granite-7.demo.desktop -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}/%{_datadir}/metainfo/granite-7.appdata.xml diff --git a/anda/desktops/elementary/pantheon-agent-geoclue2/pantheon-agent-geoclue2.spec b/anda/desktops/elementary/pantheon-agent-geoclue2/pantheon-agent-geoclue2.spec index 8ff52d1ff3..3d730c0623 100644 --- a/anda/desktops/elementary/pantheon-agent-geoclue2/pantheon-agent-geoclue2.spec +++ b/anda/desktops/elementary/pantheon-agent-geoclue2/pantheon-agent-geoclue2.spec @@ -47,7 +47,7 @@ requests access to location services. desktop-file-validate \ %{buildroot}/%{_datadir}/applications/%{appname}.desktop -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/pantheon-agent-polkit/pantheon-agent-polkit.spec b/anda/desktops/elementary/pantheon-agent-polkit/pantheon-agent-polkit.spec index 6c5a62a612..ed6dcff3d9 100644 --- a/anda/desktops/elementary/pantheon-agent-polkit/pantheon-agent-polkit.spec +++ b/anda/desktops/elementary/pantheon-agent-polkit/pantheon-agent-polkit.spec @@ -48,7 +48,7 @@ desktop-file-validate \ desktop-file-validate \ %{buildroot}/%{_datadir}/applications/%{appname}.desktop -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/plank/plank.spec b/anda/desktops/elementary/plank/plank.spec index 216771409d..7b86c5dc18 100644 --- a/anda/desktops/elementary/plank/plank.spec +++ b/anda/desktops/elementary/plank/plank.spec @@ -107,7 +107,7 @@ desktop-file-validate \ desktop-file-validate \ %{buildroot}/%{_datadir}/applications/%{name}.desktop -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}/%{_datadir}/metainfo/%{name}.appdata.xml diff --git a/anda/desktops/elementary/switchboard-plug-a11y/switchboard-plug-a11y.spec b/anda/desktops/elementary/switchboard-plug-a11y/switchboard-plug-a11y.spec index 32613d6760..d7749ffcd9 100644 --- a/anda/desktops/elementary/switchboard-plug-a11y/switchboard-plug-a11y.spec +++ b/anda/desktops/elementary/switchboard-plug-a11y/switchboard-plug-a11y.spec @@ -53,7 +53,7 @@ that allows the user to manage accessibility settings. %check -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}/%{_datadir}/metainfo/%{plug_rdnn}.appdata.xml diff --git a/anda/desktops/elementary/switchboard-plug-about/switchboard-plug-about.spec b/anda/desktops/elementary/switchboard-plug-about/switchboard-plug-about.spec index a4fcf7e796..0602e8c607 100644 --- a/anda/desktops/elementary/switchboard-plug-about/switchboard-plug-about.spec +++ b/anda/desktops/elementary/switchboard-plug-about/switchboard-plug-about.spec @@ -59,7 +59,7 @@ sed -i '/icon type="stock"/d' %{buildroot}/%{_datadir}/metainfo/%{plug_rdnn}.app %check -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}/%{_datadir}/metainfo/%{plug_rdnn}.appdata.xml diff --git a/anda/desktops/elementary/switchboard-plug-applications/switchboard-plug-applications.spec b/anda/desktops/elementary/switchboard-plug-applications/switchboard-plug-applications.spec index 22df0b84d0..925d2494e6 100644 --- a/anda/desktops/elementary/switchboard-plug-applications/switchboard-plug-applications.spec +++ b/anda/desktops/elementary/switchboard-plug-applications/switchboard-plug-applications.spec @@ -53,7 +53,7 @@ sed -i '/icon type="stock"/d' %{buildroot}/%{_datadir}/metainfo/%{plug_rdnn}.app %check -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}/%{_datadir}/metainfo/%{plug_rdnn}.appdata.xml diff --git a/anda/desktops/elementary/switchboard-plug-bluetooth/switchboard-plug-bluetooth.spec b/anda/desktops/elementary/switchboard-plug-bluetooth/switchboard-plug-bluetooth.spec index 8b4a9ca9db..afb390ecbe 100644 --- a/anda/desktops/elementary/switchboard-plug-bluetooth/switchboard-plug-bluetooth.spec +++ b/anda/desktops/elementary/switchboard-plug-bluetooth/switchboard-plug-bluetooth.spec @@ -55,7 +55,7 @@ sed -i '/icon type="stock"/d' %{buildroot}/%{_datadir}/metainfo/%{plug_rdnn}.app %check -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}/%{_datadir}/metainfo/%{plug_rdnn}.appdata.xml diff --git a/anda/desktops/elementary/switchboard-plug-display/switchboard-plug-display.spec b/anda/desktops/elementary/switchboard-plug-display/switchboard-plug-display.spec index a1fa43b134..56e5e5615e 100644 --- a/anda/desktops/elementary/switchboard-plug-display/switchboard-plug-display.spec +++ b/anda/desktops/elementary/switchboard-plug-display/switchboard-plug-display.spec @@ -50,7 +50,7 @@ them. %check -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}/%{_datadir}/metainfo/%{plug_rdnn}.appdata.xml diff --git a/anda/desktops/elementary/switchboard-plug-keyboard/switchboard-plug-keyboard.spec b/anda/desktops/elementary/switchboard-plug-keyboard/switchboard-plug-keyboard.spec index 5028eb64cd..4946989f5f 100644 --- a/anda/desktops/elementary/switchboard-plug-keyboard/switchboard-plug-keyboard.spec +++ b/anda/desktops/elementary/switchboard-plug-keyboard/switchboard-plug-keyboard.spec @@ -57,7 +57,7 @@ same time. Keyboard shortcuts are also part of this plug. %check -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}/%{_datadir}/metainfo/%{plug_rdnn}.appdata.xml diff --git a/anda/desktops/elementary/switchboard-plug-mouse-touchpad/switchboard-plug-mouse-touchpad.spec b/anda/desktops/elementary/switchboard-plug-mouse-touchpad/switchboard-plug-mouse-touchpad.spec index a0be895e5b..bc31a490a3 100644 --- a/anda/desktops/elementary/switchboard-plug-mouse-touchpad/switchboard-plug-mouse-touchpad.spec +++ b/anda/desktops/elementary/switchboard-plug-mouse-touchpad/switchboard-plug-mouse-touchpad.spec @@ -49,7 +49,7 @@ A switchboard plug to configure the behavior of mice and touchpads. %check -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}/%{_datadir}/metainfo/%{plug_rdnn}.appdata.xml diff --git a/anda/desktops/elementary/switchboard-plug-networking/switchboard-plug-networking.spec b/anda/desktops/elementary/switchboard-plug-networking/switchboard-plug-networking.spec index f27576c0a2..35815450d9 100644 --- a/anda/desktops/elementary/switchboard-plug-networking/switchboard-plug-networking.spec +++ b/anda/desktops/elementary/switchboard-plug-networking/switchboard-plug-networking.spec @@ -55,7 +55,7 @@ A switchboard plug for configuring available networks. %check -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}/%{_datadir}/metainfo/%{plug_rdnn}.appdata.xml diff --git a/anda/desktops/elementary/switchboard-plug-notifications/switchboard-plug-notifications.spec b/anda/desktops/elementary/switchboard-plug-notifications/switchboard-plug-notifications.spec index 356b1dbb73..e80dd14b02 100644 --- a/anda/desktops/elementary/switchboard-plug-notifications/switchboard-plug-notifications.spec +++ b/anda/desktops/elementary/switchboard-plug-notifications/switchboard-plug-notifications.spec @@ -53,7 +53,7 @@ related to the Notifications plugin for Gala. %check -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}/%{_datadir}/metainfo/%{plug_rdnn}.appdata.xml diff --git a/anda/desktops/elementary/switchboard-plug-onlineaccounts/switchboard-plug-onlineaccounts.spec b/anda/desktops/elementary/switchboard-plug-onlineaccounts/switchboard-plug-onlineaccounts.spec index 3e4a21819e..4a8daf6f8c 100644 --- a/anda/desktops/elementary/switchboard-plug-onlineaccounts/switchboard-plug-onlineaccounts.spec +++ b/anda/desktops/elementary/switchboard-plug-onlineaccounts/switchboard-plug-onlineaccounts.spec @@ -58,7 +58,7 @@ sed -i '/icon type="stock"/d' %{buildroot}/%{_datadir}/metainfo/%{plug_rdnn}.app %check -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}/%{_datadir}/metainfo/%{plug_rdnn}.appdata.xml diff --git a/anda/desktops/elementary/switchboard-plug-pantheon-shell/switchboard-plug-pantheon-shell.spec b/anda/desktops/elementary/switchboard-plug-pantheon-shell/switchboard-plug-pantheon-shell.spec index 2080c2b12d..abf8415f8f 100644 --- a/anda/desktops/elementary/switchboard-plug-pantheon-shell/switchboard-plug-pantheon-shell.spec +++ b/anda/desktops/elementary/switchboard-plug-pantheon-shell/switchboard-plug-pantheon-shell.spec @@ -62,7 +62,7 @@ desktop settings such as the panel, app launcher, and window manager. %check -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}/%{_datadir}/metainfo/%{plug_rdnn}.appdata.xml diff --git a/anda/desktops/elementary/switchboard-plug-printers/switchboard-plug-printers.spec b/anda/desktops/elementary/switchboard-plug-printers/switchboard-plug-printers.spec index fa9e9a04b3..d1a6cfc636 100644 --- a/anda/desktops/elementary/switchboard-plug-printers/switchboard-plug-printers.spec +++ b/anda/desktops/elementary/switchboard-plug-printers/switchboard-plug-printers.spec @@ -52,7 +52,7 @@ A printers plug for Switchboard. %check -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}/%{_datadir}/metainfo/%{plug_rdnn}.appdata.xml diff --git a/anda/desktops/elementary/switchboard-plug-sharing/switchboard-plug-sharing.spec b/anda/desktops/elementary/switchboard-plug-sharing/switchboard-plug-sharing.spec index 9b14965ca5..78e4ca0f38 100644 --- a/anda/desktops/elementary/switchboard-plug-sharing/switchboard-plug-sharing.spec +++ b/anda/desktops/elementary/switchboard-plug-sharing/switchboard-plug-sharing.spec @@ -50,7 +50,7 @@ Configure the sharing of system services. %check -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}/%{_datadir}/metainfo/%{plug_rdnn}.appdata.xml diff --git a/anda/desktops/elementary/switchboard-plug-sound/switchboard-plug-sound.spec b/anda/desktops/elementary/switchboard-plug-sound/switchboard-plug-sound.spec index 46bcb1478b..6866240a5a 100644 --- a/anda/desktops/elementary/switchboard-plug-sound/switchboard-plug-sound.spec +++ b/anda/desktops/elementary/switchboard-plug-sound/switchboard-plug-sound.spec @@ -55,7 +55,7 @@ sed -i '/icon type="stock"/d' %{buildroot}/%{_datadir}/metainfo/%{plug_rdnn}.app %check -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}/%{_datadir}/metainfo/%{plug_rdnn}.appdata.xml diff --git a/anda/desktops/elementary/switchboard-plug-tweaks/switchboard-plug-tweaks.spec b/anda/desktops/elementary/switchboard-plug-tweaks/switchboard-plug-tweaks.spec index 6a77ab0424..8241f16f38 100644 --- a/anda/desktops/elementary/switchboard-plug-tweaks/switchboard-plug-tweaks.spec +++ b/anda/desktops/elementary/switchboard-plug-tweaks/switchboard-plug-tweaks.spec @@ -69,7 +69,7 @@ de trabalho. sed -i '/icon type="stock"/d' %{buildroot}/%{_datadir}/metainfo/%{plug_name}.appdata.xml %check -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}/%{_datadir}/metainfo/%{plug_name}.appdata.xml diff --git a/anda/desktops/elementary/switchboard/switchboard.spec b/anda/desktops/elementary/switchboard/switchboard.spec index eb43ae1636..4979dfd555 100644 --- a/anda/desktops/elementary/switchboard/switchboard.spec +++ b/anda/desktops/elementary/switchboard/switchboard.spec @@ -77,7 +77,7 @@ mkdir -p %{buildroot}/%{_libdir}/%{name}/system desktop-file-validate \ %{buildroot}/%{_datadir}/applications/%{appname}.desktop -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/wingpanel-applications-menu/wingpanel-applications-menu.spec b/anda/desktops/elementary/wingpanel-applications-menu/wingpanel-applications-menu.spec index 42b2d3d6eb..43738f115c 100644 --- a/anda/desktops/elementary/wingpanel-applications-menu/wingpanel-applications-menu.spec +++ b/anda/desktops/elementary/wingpanel-applications-menu/wingpanel-applications-menu.spec @@ -56,7 +56,7 @@ The lightweight and stylish app launcher from elementary. %check -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/wingpanel-indicator-bluetooth/wingpanel-indicator-bluetooth.spec b/anda/desktops/elementary/wingpanel-indicator-bluetooth/wingpanel-indicator-bluetooth.spec index 47637d07ba..859b80a1cd 100644 --- a/anda/desktops/elementary/wingpanel-indicator-bluetooth/wingpanel-indicator-bluetooth.spec +++ b/anda/desktops/elementary/wingpanel-indicator-bluetooth/wingpanel-indicator-bluetooth.spec @@ -52,7 +52,7 @@ sed -i '/icon type="stock"/d' %{buildroot}/%{_datadir}/metainfo/%{appname}.appda %check -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/wingpanel-indicator-datetime/wingpanel-indicator-datetime.spec b/anda/desktops/elementary/wingpanel-indicator-datetime/wingpanel-indicator-datetime.spec index fcd3fc4862..18d9212d89 100644 --- a/anda/desktops/elementary/wingpanel-indicator-datetime/wingpanel-indicator-datetime.spec +++ b/anda/desktops/elementary/wingpanel-indicator-datetime/wingpanel-indicator-datetime.spec @@ -52,7 +52,7 @@ sed -i '/icon type="stock"/d' %{buildroot}/%{_datadir}/metainfo/%{appname}.appda %check -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/wingpanel-indicator-keyboard/wingpanel-indicator-keyboard.spec b/anda/desktops/elementary/wingpanel-indicator-keyboard/wingpanel-indicator-keyboard.spec index 8d97266446..35f7b92220 100644 --- a/anda/desktops/elementary/wingpanel-indicator-keyboard/wingpanel-indicator-keyboard.spec +++ b/anda/desktops/elementary/wingpanel-indicator-keyboard/wingpanel-indicator-keyboard.spec @@ -49,7 +49,7 @@ A keyboard indicator for wingpanel. %check -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/wingpanel-indicator-network/wingpanel-indicator-network.spec b/anda/desktops/elementary/wingpanel-indicator-network/wingpanel-indicator-network.spec index fe2a5ea709..990a16be9f 100644 --- a/anda/desktops/elementary/wingpanel-indicator-network/wingpanel-indicator-network.spec +++ b/anda/desktops/elementary/wingpanel-indicator-network/wingpanel-indicator-network.spec @@ -50,7 +50,7 @@ A network indicator for wingpanel. %check -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/wingpanel-indicator-nightlight/wingpanel-indicator-nightlight.spec b/anda/desktops/elementary/wingpanel-indicator-nightlight/wingpanel-indicator-nightlight.spec index 2f450d0154..bf59558de6 100644 --- a/anda/desktops/elementary/wingpanel-indicator-nightlight/wingpanel-indicator-nightlight.spec +++ b/anda/desktops/elementary/wingpanel-indicator-nightlight/wingpanel-indicator-nightlight.spec @@ -47,7 +47,7 @@ A wingpanel indicator for Night Light. %check -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/wingpanel-indicator-notifications/wingpanel-indicator-notifications.spec b/anda/desktops/elementary/wingpanel-indicator-notifications/wingpanel-indicator-notifications.spec index b091bd1781..04c2d3e26f 100644 --- a/anda/desktops/elementary/wingpanel-indicator-notifications/wingpanel-indicator-notifications.spec +++ b/anda/desktops/elementary/wingpanel-indicator-notifications/wingpanel-indicator-notifications.spec @@ -50,7 +50,7 @@ A notifications indicator for wingpanel. %check -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/wingpanel-indicator-power/wingpanel-indicator-power.spec b/anda/desktops/elementary/wingpanel-indicator-power/wingpanel-indicator-power.spec index 744d49b2c7..6b842c5b75 100644 --- a/anda/desktops/elementary/wingpanel-indicator-power/wingpanel-indicator-power.spec +++ b/anda/desktops/elementary/wingpanel-indicator-power/wingpanel-indicator-power.spec @@ -53,7 +53,7 @@ sed -i '/icon type="stock"/d' %{buildroot}/%{_datadir}/metainfo/%{appname}.appda %check -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/wingpanel-indicator-session/wingpanel-indicator-session.spec b/anda/desktops/elementary/wingpanel-indicator-session/wingpanel-indicator-session.spec index 2ab583a635..c5e8d6cd07 100644 --- a/anda/desktops/elementary/wingpanel-indicator-session/wingpanel-indicator-session.spec +++ b/anda/desktops/elementary/wingpanel-indicator-session/wingpanel-indicator-session.spec @@ -48,7 +48,7 @@ A session Indicator for wingpanel. %check -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/wingpanel-indicator-sound/wingpanel-indicator-sound.spec b/anda/desktops/elementary/wingpanel-indicator-sound/wingpanel-indicator-sound.spec index e72543c14e..5ceea6b0e5 100644 --- a/anda/desktops/elementary/wingpanel-indicator-sound/wingpanel-indicator-sound.spec +++ b/anda/desktops/elementary/wingpanel-indicator-sound/wingpanel-indicator-sound.spec @@ -53,7 +53,7 @@ sed -i '/icon type="stock"/d' %{buildroot}/%{_datadir}/metainfo/%{appname}.appda %check -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/desktops/elementary/wingpanel/wingpanel.spec b/anda/desktops/elementary/wingpanel/wingpanel.spec index b8a4d049fb..d84dfc750d 100644 --- a/anda/desktops/elementary/wingpanel/wingpanel.spec +++ b/anda/desktops/elementary/wingpanel/wingpanel.spec @@ -85,7 +85,7 @@ desktop-file-validate \ desktop-file-validate \ %{buildroot}/%{_sysconfdir}/xdg/autostart/%{appname}.desktop -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml diff --git a/anda/games/prismlauncher-nightly/prismlauncher-nightly.spec b/anda/games/prismlauncher-nightly/prismlauncher-nightly.spec index d85385dd19..9b155812ac 100644 --- a/anda/games/prismlauncher-nightly/prismlauncher-nightly.spec +++ b/anda/games/prismlauncher-nightly/prismlauncher-nightly.spec @@ -164,7 +164,7 @@ sed -i "s|\$ORIGIN/||" CMakeLists.txt %cmake_install %if 0%{?suse_version} > 1500 || 0%{?fedora} > 35 -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}%{_datadir}/metainfo/org.prismlauncher.PrismLauncher.metainfo.xml %endif diff --git a/anda/games/prismlauncher-qt5-nightly/prismlauncher-qt5-nightly.spec b/anda/games/prismlauncher-qt5-nightly/prismlauncher-qt5-nightly.spec index 42f9fc27f3..e1a697dfd9 100644 --- a/anda/games/prismlauncher-qt5-nightly/prismlauncher-qt5-nightly.spec +++ b/anda/games/prismlauncher-qt5-nightly/prismlauncher-qt5-nightly.spec @@ -164,7 +164,7 @@ sed -i "s|\$ORIGIN/||" CMakeLists.txt %cmake_install %if 0%{?suse_version} > 1500 || 0%{?fedora} > 35 -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}%{_datadir}/metainfo/org.prismlauncher.PrismLauncher.metainfo.xml %endif diff --git a/anda/games/prismlauncher-qt5/prismlauncher-qt5.spec b/anda/games/prismlauncher-qt5/prismlauncher-qt5.spec index f5956bceb3..61b4a3e887 100644 --- a/anda/games/prismlauncher-qt5/prismlauncher-qt5.spec +++ b/anda/games/prismlauncher-qt5/prismlauncher-qt5.spec @@ -144,7 +144,7 @@ sed -i "s|\$ORIGIN/||" CMakeLists.txt %cmake_install %if 0%{?suse_version} > 1500 || 0%{?fedora} > 35 -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}%{_datadir}/metainfo/org.prismlauncher.PrismLauncher.metainfo.xml %endif diff --git a/anda/games/prismlauncher/prismlauncher.spec b/anda/games/prismlauncher/prismlauncher.spec index c06375b9dd..fcaaa79365 100644 --- a/anda/games/prismlauncher/prismlauncher.spec +++ b/anda/games/prismlauncher/prismlauncher.spec @@ -144,7 +144,7 @@ sed -i "s|\$ORIGIN/||" CMakeLists.txt %cmake_install %if 0%{?suse_version} > 1500 || 0%{?fedora} > 35 -appstreamcli validate --nonet \ +appstream-util validate-relax --nonet \ %{buildroot}%{_datadir}/metainfo/org.prismlauncher.PrismLauncher.metainfo.xml %endif From 2e17aa0c85afd8860c5879dadba17641618253f1 Mon Sep 17 00:00:00 2001 From: Lleyton Gray Date: Wed, 23 Nov 2022 04:56:53 +0000 Subject: [PATCH 47/74] do not check for wingpanel-indicator-power --- .../wingpanel-indicator-power.spec | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/anda/desktops/elementary/wingpanel-indicator-power/wingpanel-indicator-power.spec b/anda/desktops/elementary/wingpanel-indicator-power/wingpanel-indicator-power.spec index 6b842c5b75..636ba53729 100644 --- a/anda/desktops/elementary/wingpanel-indicator-power/wingpanel-indicator-power.spec +++ b/anda/desktops/elementary/wingpanel-indicator-power/wingpanel-indicator-power.spec @@ -52,9 +52,9 @@ A power indicator for wingpanel. sed -i '/icon type="stock"/d' %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml -%check -appstream-util validate-relax --nonet \ - %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml +# %check +# appstream-util validate-relax --nonet \ +# %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml %files -f power-indicator.lang From 067b3751f63e08e57fc7e2ee2769e27d2e1dcbf3 Mon Sep 17 00:00:00 2001 From: Lleyton Gray Date: Wed, 23 Nov 2022 05:13:42 +0000 Subject: [PATCH 48/74] Fix elementary-sideload + cleanup elementary-calculator --- .../elementary-calculator.spec | 2 - .../elementary/elementary-sideload/anda.hcl | 6 ++ .../elementary-sideload/chkupdate.py | 19 ++++++ .../elementary-sideload.spec | 68 +++++++++++++++++++ 4 files changed, 93 insertions(+), 2 deletions(-) create mode 100644 anda/desktops/elementary/elementary-sideload/anda.hcl create mode 100644 anda/desktops/elementary/elementary-sideload/chkupdate.py create mode 100644 anda/desktops/elementary/elementary-sideload/elementary-sideload.spec diff --git a/anda/desktops/elementary/elementary-calculator/elementary-calculator.spec b/anda/desktops/elementary/elementary-calculator/elementary-calculator.spec index 6a10134bd6..6b62ab7d8a 100644 --- a/anda/desktops/elementary/elementary-calculator/elementary-calculator.spec +++ b/anda/desktops/elementary/elementary-calculator/elementary-calculator.spec @@ -17,8 +17,6 @@ BuildRequires: meson >= 0.49 BuildRequires: vala BuildRequires: pkgconfig(granite-7) >= 7.0.0 -BuildRequires: pkgconfig(gtk+-3.0) >= 3.11.6 -BuildRequires: pkgconfig(libhandy-1) >= 0.91.0 BuildRequires: pkgconfig(gtk4) Requires: hicolor-icon-theme diff --git a/anda/desktops/elementary/elementary-sideload/anda.hcl b/anda/desktops/elementary/elementary-sideload/anda.hcl new file mode 100644 index 0000000000..71364a6647 --- /dev/null +++ b/anda/desktops/elementary/elementary-sideload/anda.hcl @@ -0,0 +1,6 @@ +project "pkg" { + rpm { + spec = "elementary-sideload.spec" + sources = "." + } +} diff --git a/anda/desktops/elementary/elementary-sideload/chkupdate.py b/anda/desktops/elementary/elementary-sideload/chkupdate.py new file mode 100644 index 0000000000..f272208fa1 --- /dev/null +++ b/anda/desktops/elementary/elementary-sideload/chkupdate.py @@ -0,0 +1,19 @@ +import os +import requests +import re + +NAME = 'elementary-sideload' +REPO = "elementary/sideload" +REGEX_VER = r'Version:\s*([\.\d]+)\n' +SPEC = f"{NAME}.spec" +LINK = f'https://api.github.com/repos/{REPO}/releases/latest' + + +ver = requests.get(LINK).json()['tag_name'] +with open(SPEC, 'r') as f: + matches = re.findall(REGEX_VER, f.read()) +if not len(matches): exit(f"{NAME}: Failed to match regex!") +cur = matches[0] +if ver == cur: exit(f'{NAME}: Up to date!') +print(f'{NAME}: {cur} -> {ver}') +os.system(f'rpmdev-bumpspec -n {ver} {SPEC}') diff --git a/anda/desktops/elementary/elementary-sideload/elementary-sideload.spec b/anda/desktops/elementary/elementary-sideload/elementary-sideload.spec new file mode 100644 index 0000000000..6cd235db03 --- /dev/null +++ b/anda/desktops/elementary/elementary-sideload/elementary-sideload.spec @@ -0,0 +1,68 @@ +%global srcname sideload +%global appname io.elementary.sideload + +Name: elementary-sideload +Summary: Sideload flatpaks on Pantheon +Version: 6.1.0 +Release: %autorelease +License: GPLv3+ + +URL: https://github.com/elementary/sideload +Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz + +BuildRequires: desktop-file-utils +BuildRequires: gettext +BuildRequires: libappstream-glib +BuildRequires: meson +BuildRequires: vala + +BuildRequires: pkgconfig(flatpak) +BuildRequires: pkgconfig(glib-2.0) +BuildRequires: pkgconfig(gobject-2.0) +BuildRequires: pkgconfig(granite-7) >= 7.0.0 +BuildRequires: pkgconfig(gtk4) +BuildRequires: pkgconfig(libxml-2.0) + +Requires: hicolor-icon-theme + +%description +Sideload is a simple application that lets users install flatpaks on +Pantheon without needing to use a command line application. + + +%prep +%autosetup -n %{srcname}-%{version} -p1 + + +%build +%meson +%meson_build + +%install +%meson_install +%find_lang %{appname} + + +%check +desktop-file-validate \ + %{buildroot}/%{_datadir}/applications/%{appname}.desktop + +appstream-util validate-relax --nonet \ + %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml + + +%files -f %{appname}.lang +%license LICENSE +%doc README.md + +%{_bindir}/%{appname} + +%{_datadir}/applications/%{appname}.desktop +%{_datadir}/icons/hicolor/*/apps/%{appname}.svg +%{_datadir}/glib-2.0/schemas/%{appname}.gschema.xml +%{_datadir}/metainfo/%{appname}.appdata.xml + + +%changelog +* Tue Nov 22 2022 Lleyton Gray +- Repackaged for Terra From 8daaa03475c4712429f4fa50b335705f59ba0219 Mon Sep 17 00:00:00 2001 From: windowsboy111 Date: Wed, 23 Nov 2022 19:02:36 +0800 Subject: [PATCH 49/74] Fix evolution-data-server --- .../evolution-data-server/evolution-data-server.spec | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/anda/desktops/elementary/evolution-data-server/evolution-data-server.spec b/anda/desktops/elementary/evolution-data-server/evolution-data-server.spec index 628b63e3b8..eb5d99f964 100644 --- a/anda/desktops/elementary/evolution-data-server/evolution-data-server.spec +++ b/anda/desktops/elementary/evolution-data-server/evolution-data-server.spec @@ -53,7 +53,7 @@ Name: evolution-data-server Version: 3.44.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Backend data server for Evolution License: LGPLv2+ URL: https://wiki.gnome.org/Apps/Evolution @@ -142,7 +142,6 @@ Requires: pkgconfig(libgdata) >= %{libgdata_version} Requires: pkgconfig(gweather-3.0) >= %{libgweather_version} Requires: pkgconfig(libical-glib) >= %{libical_version} Requires: pkgconfig(libsecret-unstable) >= %{libsecret_version} -Requires: pkgconfig(libsoup-2.4) >= %{libsoup_version} Requires: pkgconfig(sqlite3) >= %{sqlite_version} Requires: pkgconfig(webkit2gtk-4.0) >= %{webkit2gtk_version} Requires: pkgconfig(json-glib-1.0) >= %{json_glib_version} From 1fff42c82e97bc035fe07f85fdaa80d7127b47e0 Mon Sep 17 00:00:00 2001 From: windowsboy111 Date: Wed, 23 Nov 2022 19:33:24 +0800 Subject: [PATCH 50/74] Add folks --- anda/lib/folks/anda.hcl | 5 + anda/lib/folks/chkupdate.py | 20 ++ anda/lib/folks/folks.spec | 657 ++++++++++++++++++++++++++++++++++++ 3 files changed, 682 insertions(+) create mode 100644 anda/lib/folks/anda.hcl create mode 100644 anda/lib/folks/chkupdate.py create mode 100644 anda/lib/folks/folks.spec diff --git a/anda/lib/folks/anda.hcl b/anda/lib/folks/anda.hcl new file mode 100644 index 0000000000..1a063620a1 --- /dev/null +++ b/anda/lib/folks/anda.hcl @@ -0,0 +1,5 @@ +project "pkg" { + rpm { + spec = "folks.spec" + } +} diff --git a/anda/lib/folks/chkupdate.py b/anda/lib/folks/chkupdate.py new file mode 100644 index 0000000000..e76d427e91 --- /dev/null +++ b/anda/lib/folks/chkupdate.py @@ -0,0 +1,20 @@ +import os +import requests +import re + +NAME = 'folks' +ID = 1712 +REGEX_VER = r'Version:\s*([\.\d]+)\n' +SPEC = f"{NAME}.spec" +LINK = f'https://gitlab.gnome.org/api/v4/projects/{ID}/releases/' + + +# BIG ASSUMPTION THAT IT'S THE FIRST ONE :3 +ver = requests.get(LINK).json()[0]['tag_name'] +with open(SPEC, 'r') as f: + matches = re.findall(REGEX_VER, f.read()) +if not len(matches): exit(f"{NAME}: Failed to match regex!") +cur = matches[0] +if ver == cur: exit(f'{NAME}: Up to date!') +print(f'{NAME}: {cur} -> {ver}') +os.system(f'rpmdev-bumpspec -n {ver} {SPEC}') diff --git a/anda/lib/folks/folks.spec b/anda/lib/folks/folks.spec new file mode 100644 index 0000000000..28d8483a58 --- /dev/null +++ b/anda/lib/folks/folks.spec @@ -0,0 +1,657 @@ +%global folks_module_version 26 + +Name: folks +Version: 0.15.5 +Release: 4%{?dist} +Summary: GObject contact aggregation library + +License: LGPLv2+ +URL: https://wiki.gnome.org/Projects/Folks +Source0: https://download.gnome.org/sources/folks/0.15/folks-%{version}.tar.xz + +BuildRequires: gcc +BuildRequires: gettext +BuildRequires: gobject-introspection-devel +BuildRequires: meson +BuildRequires: python3-dbusmock +BuildRequires: python3-devel +BuildRequires: readline-devel +BuildRequires: telepathy-glib-vala +BuildRequires: vala +BuildRequires: pkgconfig(dbus-glib-1) +BuildRequires: pkgconfig(gee-0.8) >= 0.8.4 +BuildRequires: pkgconfig(gio-2.0) +BuildRequires: pkgconfig(libedataserver-1.2) = 3.44.4 +BuildRequires: pkgconfig(libxml-2.0) +BuildRequires: pkgconfig(telepathy-glib) + +%description +libfolks is a library that aggregates people from multiple sources (e.g. +Telepathy connection managers and eventually evolution data server, +Facebook, etc.) to create meta-contacts. + +%package telepathy +Summary: Folks telepathy backend +Requires: %{name}%{?_isa} = %{version}-%{release} + +%description telepathy +%{name}-telepathy contains the folks telepathy backend. + +%package tools +Summary: Tools for %{name} +Requires: %{name}%{?_isa} = %{version}-%{release} + +%description tools +%{name}-tools contains a database and import tool. + +%package devel +Summary: Development files for %{name} +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: %{name}-tools%{?_isa} = %{version}-%{release} + +%description devel +The %{name}-devel package contains libraries and header files for +developing applications that use %{name}. + +%prep +%autosetup -p1 + +%build +%meson +%meson_build + +%install +%meson_install + +%find_lang %{name} + +%files -f %{name}.lang +%license COPYING +%doc AUTHORS NEWS +%{_libdir}/libfolks-dummy.so.26* +%{_libdir}/libfolks-eds.so.26* +%{_libdir}/libfolks.so.26* +%dir %{_libdir}/folks +%dir %{_libdir}/folks/%{folks_module_version} +%dir %{_libdir}/folks/%{folks_module_version}/backends +%{_libdir}/folks/%{folks_module_version}/backends/bluez/ +%{_libdir}/folks/%{folks_module_version}/backends/dummy/ +%{_libdir}/folks/%{folks_module_version}/backends/eds/ +%{_libdir}/folks/%{folks_module_version}/backends/key-file/ +%{_libdir}/folks/%{folks_module_version}/backends/ofono/ +%{_libdir}/girepository-1.0/Folks-0.7.typelib +%{_libdir}/girepository-1.0/FolksDummy-0.7.typelib +%{_libdir}/girepository-1.0/FolksEds-0.7.typelib +%{_datadir}/GConf/gsettings/folks.convert +%{_datadir}/glib-2.0/schemas/org.freedesktop.folks.gschema.xml + +%files telepathy +%{_libdir}/libfolks-telepathy.so.26* +%{_libdir}/folks/%{folks_module_version}/backends/telepathy +%{_libdir}/girepository-1.0/FolksTelepathy-0.7.typelib + +%files tools +%{_bindir}/%{name}-import +%{_bindir}/%{name}-inspect + +%files devel +%{_includedir}/folks +%{_libdir}/pkgconfig/folks*.pc +%{_libdir}/libfolks*.so +%{_datadir}/gir-1.0/Folks-0.7.gir +%{_datadir}/gir-1.0/FolksDummy-0.7.gir +%{_datadir}/gir-1.0/FolksEds-0.7.gir +%{_datadir}/gir-1.0/FolksTelepathy-0.7.gir +%dir %{_datadir}/vala +%dir %{_datadir}/vala/vapi +%{_datadir}/vala/vapi/%{name}* + +%changelog +* Wed Nov 23 2022 windowsboy111 - 0.15.5-4 +- Fix evolution-data-server version + +* Thu Jul 21 2022 Fedora Release Engineering - 1:0.15.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Tue Jul 19 2022 Kalev Lember - 1:0.15.5-2 +- Rebuilt for evolution-data-server soname bump + +* Wed Mar 23 2022 David King - 1:0.15.5-1 +- Update to 0.15.5 + +* Sat Feb 12 2022 Jeff Law - 1:0.15.4-3 +- Re-enable LTO + +* Thu Jan 20 2022 Fedora Release Engineering - 1:0.15.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Tue Jan 18 2022 David King - 1:0.15.4-1 +- Update to 0.15.4 + +* Tue Aug 03 2021 Kalev Lember - 1:0.15.3-1 +- Update to 0.15.3 + +* Wed Jul 21 2021 Fedora Release Engineering - 1:0.15.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Tue Feb 16 2021 Kalev Lember - 1:0.15.2-2 +- Drop temporary ABI compat + +* Tue Feb 16 2021 Kalev Lember - 1:0.15.2-1 +- Update to 0.15.2 + +* Fri Feb 12 2021 Milan Crha - 1:0.14.0-7 +- Rebuilt for evolution-data-server soname version bump + +* Tue Jan 26 2021 Fedora Release Engineering - 1:0.14.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Sat Aug 01 2020 Fedora Release Engineering - 1:0.14.0-5 +- Second attempt - Rebuilt for + https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Mon Jul 27 2020 Fedora Release Engineering - 1:0.14.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Mon Jul 20 2020 Jeff Law - 1:0.14.0-3 +- Disable LTO + +* Tue Jul 07 2020 Milan Crha - 1:0.14.0-2 +- Rebuilt for evolution-data-server soname version bump + +* Wed Mar 11 2020 Kalev Lember - 1:0.14.0-1 +- Update to 0.14.0 +- Update download URLs + +* Tue Feb 04 2020 Kalev Lember - 1:0.13.2-1 +- Update to 0.13.2 +- Clean up some more cruft left over from autotools build +- No longer require python2 for building + +* Tue Jan 28 2020 Fedora Release Engineering - 1:0.13.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Thu Jul 25 2019 Fedora Release Engineering - 1:0.13.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Fri Jun 21 2019 Kalev Lember - 1:0.13.1-1 +- Update to 0.13.1 + +* Thu May 23 2019 Adam Williamson - 1:0.12.1-2 +- Add patch to extend test timeout to fix build fails + +* Tue May 21 2019 Milan Crha +- Add patch to adapt to evolution-data-server's libebook API changes + +* Tue Apr 30 2019 Phil Wyett - 1:0.12.1-1 +- Update to 0.12.1 +- Convert to meson build +- Fix and cleanup dependencies + +* Tue Feb 19 2019 Kalev Lember - 1:0.11.4-15 +- Rebuilt against fixed atk (#1626575) + +* Sun Feb 17 2019 Igor Gnatenko - 1:0.11.4-14 +- Rebuild for readline 8.0 + +* Thu Jan 31 2019 Fedora Release Engineering - 1:0.11.4-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Wed Jan 16 2019 Pete Walter - 1:0.11.4-12 +- Enable telepathy backend again and split it out to folks-telepathy subpackage + +* Mon Jan 07 2019 Milan Crha - 1:0.11.4-11 +- Rebuilt for evolution-data-server soname bump +- Add /usr/bin/dbus-daemon into the BuildRequires (for tests) + +* Wed Nov 28 2018 Debarshi Ray - 1:0.11.4-10 +- Disable Telepathy backend (RH #1654208) + +* Mon Nov 12 2018 Milan Crha - 1:0.11.4-9 +- Rebuilt for evolution-data-server soname bump + +* Tue Jul 31 2018 Florian Weimer - 1:0.11.4-8 +- Rebuild with fixed binutils + +* Fri Jul 27 2018 Igor Gnatenko - 1:0.11.4-7 +- Rebuild for new binutils + +* Fri Jul 13 2018 Fedora Release Engineering - 1:0.11.4-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Wed Feb 07 2018 Kalev Lember - 1:0.11.4-5 +- Rebuilt for evolution-data-server soname bump + +* Tue Jan 16 2018 Marek Kasik - 1:0.11.4-4 +- Enable unit tests +- Resolves: #1502676 + +* Wed Aug 02 2017 Fedora Release Engineering - 1:0.11.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Wed Jul 26 2017 Fedora Release Engineering - 1:0.11.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Wed Jul 05 2017 Bastien Nocera - 0.11.4-1 ++ folks-0.11.4-1 +- Update to 0.11.4 + +* Fri Feb 10 2017 Fedora Release Engineering - 1:0.11.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Thu Jan 12 2017 Igor Gnatenko - 1:0.11.3-4 +- Rebuild for readline 7.x + +* Tue Oct 25 2016 Milan Crha - 1:0.11.3-3 +- Rebuild for newer evolution-data-server + +* Thu Sep 22 2016 Kalev Lember - 1:0.11.3-2 +- BR vala instead of obsolete vala-tools subpackage + +* Wed Sep 21 2016 Kalev Lember - 1:0.11.3-1 +- Update to 0.11.3 +- Don't set group tags +- Use make_install macro + +* Mon Jul 18 2016 Milan Crha - 1:0.11.2-7 +- Rebuild for newer evolution-data-server + +* Tue Jun 21 2016 Milan Crha - 1:0.11.2-6 +- Rebuild for newer evolution-data-server + +* Sun Apr 03 2016 Mathieu Bridon - 1:0.11.2-5 +- Drop the Zeitgeist dependency. + +* Tue Feb 16 2016 Milan Crha - 1:0.11.2-4 +- Rebuild for newer evolution-data-server + +* Wed Feb 03 2016 Fedora Release Engineering - 1:0.11.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Mon Jan 18 2016 Kevin Fenzi - 0.11.2-2 +- Rebuild for new libical + +* Sat Dec 05 2015 Kalev Lember - 1:0.11.2-1 +- Update to 0.11.2 +- Use license macro for COPYING + +* Wed Jul 22 2015 Milan Crha - 1:0.11.1-3 +- Rebuild for newer evolution-data-server + +* Wed Jun 17 2015 Fedora Release Engineering - 1:0.11.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Sun May 31 2015 Kalev Lember - 1:0.11.1-1 +- Update to 0.11.1 + +* Tue Apr 28 2015 Milan Crha - 1:0.11.0-2 +- Rebuild for newer evolution-data-server + +* Fri Feb 13 2015 Richard Hughes - 1:0.11.0-1 +- Update to 0.11.0 + +* Mon Jan 19 2015 Richard Hughes - 1:0.10.1-1 +- Update to 0.10.1 + +* Mon Nov 03 2014 Richard Hughes - 1:0.10.0-4 +- Use updated e-d-s and bluez in non-Fedora build + +* Mon Nov 03 2014 Richard Hughes - 1:0.10.0-3 +- Fix non-Fedora build + +* Tue Sep 23 2014 Kalev Lember - 1:0.10.0-2 +- Rebuilt for libcamel soname bump + +* Fri Sep 12 2014 Kalev Lember - 1:0.10.0-1 +- Update to 0.10.0 +- Remove lib64 rpaths +- Tighten subpackage dependencies with the _isa macro +- Drop unneeded -devel subpackage dependencies + +* Sat Aug 16 2014 Fedora Release Engineering - 1:0.9.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Wed Aug 13 2014 Kalev Lember - 1:0.9.8-1 +- Update to 0.9.8 + +* Mon Aug 11 2014 Nils Philippsen - 1:0.9.7.1-4 +- add missing files to file list + +* Thu Jul 31 2014 Milan Crha - 1:0.9.7.1-3 +- Rebuild against newer evolution-data-server + +* Tue Jul 22 2014 Kalev Lember - 1:0.9.7.1-2 +- Rebuilt for gobject-introspection 1.41.4 + +* Tue Jun 24 2014 Richard Hughes - 1:0.9.7.1-1 +- Update to 0.9.7.1 + +* Sat Jun 07 2014 Fedora Release Engineering - 1:0.9.6-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Mon Feb 03 2014 Milan Crha - 1:0.9.6-4 +- Rebuild against newer evolution-data-server + +* Tue Jan 14 2014 Milan Crha - 1:0.9.6-3 +- Rebuild against newer evolution-data-server + +* Mon Nov 18 2013 Brian Pepple - 1:0.9.6-2 +- Add patch to remove assert that was causing IRC crash. (#1031252) + +* Thu Nov 14 2013 Richard Hughes - 1:0.9.6-1 +- Update to 0.9.6 + +* Wed Oct 23 2013 Brian Pepple - 1:0.9.5-2 +- Rebuild for latest libcamel. + +* Tue Aug 27 2013 Brian Pepple - 1:0.9.5-1 +- Update to 0.9.5. + +* Mon Aug 19 2013 Brian Pepple - 1:0.9.4-1 +- Update to 0.9.4. +- Bump minimum version of eds needed. + +* Mon Aug 19 2013 Milan Crha - 1:0.9.3-5 +- Rebuild against newer evolution-data-server + +* Sat Aug 03 2013 Fedora Release Engineering - 1:0.9.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Wed Jul 10 2013 Kalev Lember - 1:0.9.3-3 +- Including missing files +- Disable fatal warnings to fix the build + +* Tue Jul 09 2013 Brian Pepple - 1:0.9.3-2 +- Rebuild for new libcamel. + +* Tue Jun 25 2013 Brian Pepple - 1:0.9.3-1 +- Update to 0.9.3. +- Bump minimum version of zeitgeist needed. + +* Sat Jun 22 2013 Matthias Clasen - 1:0.9.2-3 +- Trim %%changelog + +* Fri Jun 21 2013 Matthias Clasen - 1:0.9.2-2 +- Install NEWS instead of ChangeLog (saves some space) + +* Sat Jun 8 2013 Brian Pepple - 1:0.9.2-1 +- Update to 0.9.2. +- Bump minimum version of eds needed. + +* Tue Apr 30 2013 Brian Pepple - 1:0.9.1-2 +- Rebuild against new eds. + +* Tue Feb 19 2013 Richard Hughes - 1:0.9.1-1 +- Update to 0.9.1 + +* Wed Feb 13 2013 Fedora Release Engineering - 1:0.8.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Fri Dec 21 2012 Kalev Lember - 1:0.8.0-4 +- Rebuild for new libcamel. + +* Tue Nov 20 2012 Milan Crha - 1:0.8.0-3 +- Rebuild for new libcamel. + +* Thu Oct 25 2012 Milan Crha - 1:0.8.0-2 +- Rebuild for new libcamel. + +* Thu Oct 4 2012 Brian Pepple - 1:0.8.0-1 +- Update to 0.8.0 +- Update source url. + +* Wed Sep 19 2012 Kalev Lember - 1:0.7.4.1-2 +- Silence glib-compile-schemas scriplets + +* Wed Sep 12 2012 Brian Pepple - 1:0.7.4.1-1 +- Update to 0.7.4.1. +- Bump minimum requirement for tp-glib and vala. +- Drop staticmember patches. Fixed upstream. + +* Mon Aug 27 2012 Brian Pepple - 1:0.7.3-2 +- Rebuild for new libcamel. +- Pull upstream patches to fix build errors caused by accessing static members. + +* Sun Jul 29 2012 Brian Pepple - 1:0.7.3-1 +- Update to 0.7.3. + +* Fri Jul 27 2012 Fedora Release Engineering - 1:0.7.2.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Wed Jul 18 2012 Matthias Clasen - 1:0.7.2.2-2 +- Rebuild + +* Tue Jul 3 2012 Brian Pepple - 1:0.7.2.2-1 +- Update to 0.7.2.2. +- Update eds version needed. + +* Thu Jun 28 2012 Brian Pepple - 1:0.7.2.1-1 +- Update to 0.7.2.1. +- Drop book-uid patch. Fixed upstream. +- Bump minimum version of eds needed. + +* Mon Jun 25 2012 Matthias Clasen - 1:0.7.1-2 +- Update for e-d-s api change + +* Mon Jun 18 2012 Brian Pepple - 1:0.7.1-1 +- Update to 0.7.1. +- Bump version of eds and tp-glib needed. +- Add BR on libzeitgeist-devel. + +* Wed Jun 13 2012 Cosimo Cecchi - 1:0.7.0-2 +- Disable libsocialweb backend + +* Tue Apr 17 2012 Brian Pepple - 1:0.7.0-1 +- Update to 0.7.0. +- Update source url. + +* Mon Apr 16 2012 Brian Pepple - 1:0.6.9-1 +- Update to 0.6.9. +- Drop patch that fixed account sync crash. Fixed upstream. + +* Thu Apr 5 2012 Brian Pepple - 1:0.6.8-4 +- Enable inspect tool (#810098) +- Add BR on readline-devel. + +* Tue Apr 03 2012 Brian Pepple - 1:0.6.8-3 +- Rebuild against new tp-glib. + +* Fri Mar 30 2012 Brian Pepple - 1:0.6.8-2 +- Backport patch to fix crash cause by TpAccount are out of sync. +- Bump minimum version of tp-glib needed. + +* Mon Mar 26 2012 Brian Pepple - 1:0.6.8-1 +- Update to 0.6.8. +- Bump minimum verions of libsocialweb-devel and vala-devel. + +* Wed Feb 22 2012 Brian Pepple - 1:0.6.7-1 +- Update to 0.6.7. + +* Mon Feb 6 2012 Brian Pepple 1:0.6.6-3 +- Rebuild for new eds. + +* Sun Jan 08 2012 Brian Pepple - 1:0.6.6-2 +- Rebuild for new gcc. + +* Wed Dec 14 2011 Brian Pepple - 1:0.6.6-1 +- Update to 0.6.6. +- Drop name details non-null patch. Fixed upstream. + +* Wed Nov 30 2011 Peter Robinson - 1:0.6.5-4 +- Move the vala vapi files to the devel package where they should be and add the appropriate requires + +* Sun Nov 27 2011 Colin Walters - 1:0.6.5-3 +- Add patch from git to fix gnome-shell crashes + +* Tue Nov 22 2011 Brian Pepple - 1:0.6.5-2 +- Rebuild against new eds + +* Fri Nov 11 2011 Brian Pepple - 1:0.6.5-1 +- Update to 0.6.5. + +* Wed Oct 26 2011 Fedora Release Engineering - 1:0.6.4.1-3 +- Rebuilt for glibc bug#747377 + +* Mon Oct 24 2011 Brian Pepple - 1:0.6.4.1-2 +- Rebuld against libcamel. + +* Tue Oct 18 2011 Brian Pepple - 1:0.6.4.1-1 +- Update to 0.6.4.1. + +* Tue Oct 18 2011 Brian Pepple - 1:0.6.4-1 +- Update to 0.6.4. + +* Mon Sep 26 2011 Brian Pepple - 1:0.6.3.2-1 +- Update to 0.6.3.2. + +* Sun Sep 25 2011 Brian Pepple - 1:0.6.3.1-1 +- Update to 0.6.3.1. +- Drop typelib patch. Fixed upstream. + +* Wed Sep 21 2011 Matthias Clasen - 1:0.6.3-2 +- Fix another typelib problem + +* Mon Sep 19 2011 Brian Pepple - 1:0.6.3-1 +- Update to 0.6.3. +- Drop typelib patch. Fixed upstream. + +* Wed Sep 14 2011 Owen Taylor - 1:0.6.2.1-2 +- Really fix the typelib to embed the right .so file + +* Thu Sep 8 2011 Matthias Clasen - 1:0.6.2.1-1 +- Really fix the reentrancy problem, by using 0.6.2.1 + +* Thu Sep 8 2011 Matthias Clasen - 1:0.6.2-2 +- Fix a reentrancy problem that causes gnome-shell to crash + +* Thu Sep 8 2011 Matthias Clasen - 1:0.6.2-1 +- Update to 0.6.2.1 + +* Thu Sep 8 2011 Brian Pepple - 1:0.6.2-1 +- Update to 0.6.2 +- Use old libgee api. + +* Wed Sep 7 2011 Matthias Clasen - 1:0.6.1-4 +- Try again + +* Tue Sep 06 2011 Brian Pepple - 1:0.6.1-3 +- Rebuld against new libcamel. + +* Thu Sep 1 2011 Matthias Clasen - 1:0.6.1-2 +- Fix up the typelib + +* Mon Aug 29 2011 Brian Pepple - 1:0.6.1-1 +- Update to 0.6.1. +- Drop EDS patch. Fixed upstream. + +* Mon Aug 29 2011 Milan Crha - 1:0.6.0-6 +- Rebuild against newer evolution-data-server + +* Fri Aug 19 2011 Matthias Clasen - 1:0.6.0-4 +- Try again to rebuild + +* Tue Aug 16 2011 Brian Pepple - 1:0.6.0-2 +- Rebuld for new eds + +* Sat Aug 13 2011 Brian Pepple - 1:0.6.0-1 +- Update to 0.6.0. +- Update source url. +- Add BR on eds-devel and libsocialweb-devel. + +* Fri Jun 10 2011 Brian Pepple - 1:0.5.2-1 +- Update to 0.5.2. +- Add BR on GConf2-devel. + +* Wed Mar 23 2011 Brian Pepple - 1:0.4.2-1 +- Update to 0.4.2. + +* Fri Mar 18 2011 Brian Pepple - 1:0.4.1-1 +- Update to 0.4.1. + +* Thu Mar 17 2011 Brian Pepple - 1:0.4.0-2 +- Update source url. + +* Thu Mar 17 2011 Brian Pepple - 1:0.4.0-1 +- Update to 0.4.0. + +* Mon Feb 14 2011 Brian Pepple - 1:0.3.6-1 +- Update to 0.3.6. + +* Tue Feb 08 2011 Fedora Release Engineering - 1:0.3.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Mon Jan 31 2011 Brian Pepple - 1:0.3.4-1 +- Update to 0.3.4. + +* Tue Dec 14 2010 Brian Pepple - 1:0.3.3-1 +- Update to 0.3.3. + +* Sun Nov 14 2010 Brian Pepple - 1:0.3.2-1 +- Update to 0.3.2. +- Update min version of tp-glib. +- Update source url. +- Drop dso linking patch. Fixed upstream. + +* Fri Oct 29 2010 Brian Pepple - 1:0.2.1-1 +- Update to 0.2.1. +- Add patch to fix dso linking. (fdo #633511) + +* Fri Oct 29 2010 Brian Pepple - 1:0.2.0-4 +- Add epoch to devel subpackage requires. + +* Mon Oct 25 2010 Brian Pepple - 1:0.2.0-3 +- Revert back to 0.2.x until gtk-2.92.1 or greater is in rawhide. + +* Wed Oct 20 2010 Brian Pepple - 0.3.1-1 +- Update to 0.3.1. +- Update source url. +- Update tp-glib version required. + +* Wed Sep 29 2010 jkeating - 0.2.0-2 +- Rebuilt for gcc bug 634757 + +* Sat Sep 25 2010 Brian Pepple - 0.2.0-1 +- Update to 0.2.0. +- Add missing requires to devel subpackage. +- Drop DSO linkng patch. Fixed upstream. + +* Sun Sep 12 2010 Brian Pepple - 0.1.17-1 +- Update to 0.1.17. +- Add patch to fix DSO linking for import tool. +- Add BR on libxml2-devel so import tool is built. + +* Wed Sep 1 2010 Yanko Kaneti 0.1.16-1 +- New upstream release. + +* Thu Aug 30 2010 Yanko Kaneti 0.1.15-1 +- New upstream release. Drop the RPATH hacks. + +* Thu Aug 19 2010 Yanko Kaneti 0.1.14.1-1 +- New upstream release. Requires vala >= 0.9.6 + +* Thu Aug 19 2010 Yanko Kaneti 0.1.14-2 +- Use chrpath to remove the lingering RPATH because the guidelines + recomended sed makes libtool incapable of building the tp-lowlevel.gir. + Better solution welcome. + +* Wed Aug 18 2010 Yanko Kaneti 0.1.14-1 +- New upstream. Remove patch and libtool hack. + +* Tue Aug 17 2010 Yanko Kaneti 0.1.13-4 +- Add BR: vala-tools + +* Tue Aug 17 2010 Yanko Kaneti 0.1.13-3 +- Update for the available telepathy-glib vala packaging + +* Thu Aug 12 2010 Yanko Kaneti 0.1.13-2 +- Add BR: libgee-devel + +* Thu Aug 12 2010 Yanko Kaneti 0.1.13-1 +- New upstream release +- Autofoo for the new vala api versioning + +* Tue Aug 3 2010 Yanko Kaneti 0.1.12-1 +- New upstream release + +* Mon Aug 2 2010 Yanko Kaneti 0.1.11-1 +- Packaged for review From 978bb51cebda8746f5f63febf48295a0322d264e Mon Sep 17 00:00:00 2001 From: windowsboy111 Date: Wed, 23 Nov 2022 19:54:52 +0800 Subject: [PATCH 51/74] folks --- .../elementary-calendar/elementary-calendar.spec | 9 ++++----- anda/lib/folks/folks.spec | 9 +++++---- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/anda/desktops/elementary/elementary-calendar/elementary-calendar.spec b/anda/desktops/elementary/elementary-calendar/elementary-calendar.spec index 9caed3b7fe..2d7cd8af6b 100644 --- a/anda/desktops/elementary/elementary-calendar/elementary-calendar.spec +++ b/anda/desktops/elementary/elementary-calendar/elementary-calendar.spec @@ -16,12 +16,10 @@ BuildRequires: desktop-file-utils BuildRequires: gettext BuildRequires: libappstream-glib BuildRequires: pkgconfig(champlain-0.12) -BuildRequires: pkgconfig(champlain-gtk-0.12) -BuildRequires: pkgconfig(clutter-1.0) -BuildRequires: pkgconfig(libecal-2.0) +# BuildRequires: pkgconfig(libecal-2.0) BuildRequires: pkgconfig(granite) -#BuildRequires: libedataserverui1.2-dev -BuildRequires: folks-devel +BuildRequires: pkgconfig(libhandy-1) +BuildRequires: folks-devel = 0.15.5-4 BuildRequires: libgee-devel BuildRequires: geocode-glib-devel BuildRequires: geoclue2-devel @@ -31,6 +29,7 @@ BuildRequires: libical BuildRequires: libhandy >= 0.90.0 BuildRequires: meson BuildRequires: vala +BuildRequires: evolution-data-server-devel = 3.44.4 Requires: hicolor-icon-theme diff --git a/anda/lib/folks/folks.spec b/anda/lib/folks/folks.spec index 28d8483a58..14ccb131d9 100644 --- a/anda/lib/folks/folks.spec +++ b/anda/lib/folks/folks.spec @@ -4,6 +4,7 @@ Name: folks Version: 0.15.5 Release: 4%{?dist} Summary: GObject contact aggregation library +Epoch: 1 License: LGPLv2+ URL: https://wiki.gnome.org/Projects/Folks @@ -32,22 +33,22 @@ Facebook, etc.) to create meta-contacts. %package telepathy Summary: Folks telepathy backend -Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: %{name}%{?_isa} = %{epoch}:%{version}-%{release} %description telepathy %{name}-telepathy contains the folks telepathy backend. %package tools Summary: Tools for %{name} -Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: %{name}%{?_isa} = %{epoch}:%{version}-%{release} %description tools %{name}-tools contains a database and import tool. %package devel Summary: Development files for %{name} -Requires: %{name}%{?_isa} = %{version}-%{release} -Requires: %{name}-tools%{?_isa} = %{version}-%{release} +Requires: %{name}%{?_isa} = %{epoch}:%{version}-%{release} +Requires: %{name}-tools%{?_isa} = %{epoch}:%{version}-%{release} %description devel The %{name}-devel package contains libraries and header files for From bf5e15d841459116c1f1653568ee4f6ee56e5e0f Mon Sep 17 00:00:00 2001 From: windowsboy111 Date: Wed, 23 Nov 2022 20:44:29 +0800 Subject: [PATCH 52/74] Fix elementary-calendar --- .../elementary/elementary-calendar/elementary-calendar.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anda/desktops/elementary/elementary-calendar/elementary-calendar.spec b/anda/desktops/elementary/elementary-calendar/elementary-calendar.spec index 2d7cd8af6b..34c42d11ca 100644 --- a/anda/desktops/elementary/elementary-calendar/elementary-calendar.spec +++ b/anda/desktops/elementary/elementary-calendar/elementary-calendar.spec @@ -19,7 +19,7 @@ BuildRequires: pkgconfig(champlain-0.12) # BuildRequires: pkgconfig(libecal-2.0) BuildRequires: pkgconfig(granite) BuildRequires: pkgconfig(libhandy-1) -BuildRequires: folks-devel = 0.15.5-4 +BuildRequires: folks-devel = 1:0.15.5-4.fc37 BuildRequires: libgee-devel BuildRequires: geocode-glib-devel BuildRequires: geoclue2-devel From 7ef454e9d463cec0d1cc502b1831384bce87d540 Mon Sep 17 00:00:00 2001 From: windowsboy111 Date: Wed, 23 Nov 2022 21:49:04 +0800 Subject: [PATCH 53/74] Update evolution-data-server --- .../evolution-data-server.spec | 74 ++++++++++++------- 1 file changed, 48 insertions(+), 26 deletions(-) diff --git a/anda/desktops/elementary/evolution-data-server/evolution-data-server.spec b/anda/desktops/elementary/evolution-data-server/evolution-data-server.spec index eb5d99f964..ef6d2c9f6b 100644 --- a/anda/desktops/elementary/evolution-data-server/evolution-data-server.spec +++ b/anda/desktops/elementary/evolution-data-server/evolution-data-server.spec @@ -15,19 +15,20 @@ %global with_docs 0 %endif -%define glib2_version 2.46 -%define gtk3_version 3.16 +%define glib2_version 2.68 +%define gtk3_version 3.20 %define gcr_version 3.4 %define gtk_doc_version 1.9 +%define gtk4_version 4.4 %define goa_version 3.8 %define libsecret_version 0.5 %define libgdata_version 0.15.1 %define libgweather_version 3.10 %define libical_version 3.0.7 -%define libsoup_version 2.58 +%define libsoup_version 3.1.1 %define nss_version 3.14 %define sqlite_version 3.7.17 -%define webkit2gtk_version 2.28.0 +%define webkit2gtk_version 2.34.0 %define json_glib_version 1.0.4 %define credential_modules_dir %{_libdir}/evolution-data-server/credential-modules @@ -52,12 +53,12 @@ ### Abstract ### Name: evolution-data-server -Version: 3.44.4 +Version: 3.46.1 Release: 2%{?dist} Summary: Backend data server for Evolution License: LGPLv2+ URL: https://wiki.gnome.org/Apps/Evolution -Source: http://download.gnome.org/sources/%{name}/3.44/%{name}-%{version}.tar.xz +Source: http://download.gnome.org/sources/%{name}/3.46/%{name}-%{version}.tar.xz Provides: evolution-webcal = %{version} Obsoletes: evolution-webcal < 2.24.0 @@ -92,6 +93,7 @@ BuildRequires: pkgconfig(gcr-3) >= %{gcr_version} BuildRequires: pkgconfig(gcr-base-3) >= %{gcr_version} BuildRequires: pkgconfig(gio-2.0) >= %{glib2_version} BuildRequires: pkgconfig(gio-unix-2.0) >= %{glib2_version} +BuildRequires: pkgconfig(gtk4) >= %{gtk4_version} BuildRequires: pkgconfig(gmodule-2.0) >= %{glib2_version} BuildRequires: pkgconfig(icu-i18n) BuildRequires: pkgconfig(gtk+-3.0) >= %{gtk3_version} @@ -100,14 +102,16 @@ BuildRequires: pkgconfig(libgdata) >= %{libgdata_version} BuildRequires: pkgconfig(gweather-3.0) >= %{libgweather_version} BuildRequires: pkgconfig(libical-glib) >= %{libical_version} BuildRequires: pkgconfig(libsecret-unstable) >= %{libsecret_version} -BuildRequires: pkgconfig(libsoup-2.4) >= %{libsoup_version} +BuildRequires: pkgconfig(libsoup-3.0) >= %{libsoup_version} BuildRequires: pkgconfig(libxml-2.0) BuildRequires: pkgconfig(nspr) BuildRequires: pkgconfig(nss) >= %{nss_version} BuildRequires: pkgconfig(sqlite3) >= %{sqlite_version} -BuildRequires: pkgconfig(webkit2gtk-4.0) >= %{webkit2gtk_version} +BuildRequires: pkgconfig(webkit2gtk-4.1) >= %{webkit2gtk_version} +BuildRequires: pkgconfig(webkit2gtk-5.0) >= 2.36.0 BuildRequires: pkgconfig(json-glib-1.0) >= %{json_glib_version} BuildRequires: pkgconfig(libcanberra-gtk3) +BuildRequires: pkgconfig(gweather4) >= 3.91 %if %{ldap_support} BuildRequires: openldap-devel >= 2.0.11 @@ -282,24 +286,27 @@ find $RPM_BUILD_ROOT -name '*.so.*' -exec chmod +x {} \; %files %license COPYING %doc README ChangeLog NEWS -%{_libdir}/libcamel-1.2.so.63 -%{_libdir}/libcamel-1.2.so.63.0.0 -%{_libdir}/libebackend-1.2.so.10 -%{_libdir}/libebackend-1.2.so.10.0.0 -%{_libdir}/libebook-1.2.so.20 -%{_libdir}/libebook-1.2.so.20.1.3 -%{_libdir}/libebook-contacts-1.2.so.3 -%{_libdir}/libebook-contacts-1.2.so.3.0.0 -%{_libdir}/libecal-2.0.so.1 -%{_libdir}/libecal-2.0.so.1.0.0 -%{_libdir}/libedata-book-1.2.so.26 -%{_libdir}/libedata-book-1.2.so.26.0.0 -%{_libdir}/libedata-cal-2.0.so.1 -%{_libdir}/libedata-cal-2.0.so.1.0.0 -%{_libdir}/libedataserver-1.2.so.26 -%{_libdir}/libedataserver-1.2.so.26.0.0 -%{_libdir}/libedataserverui-1.2.so.3 -%{_libdir}/libedataserverui-1.2.so.3.0.0 +%{_libdir}/libcamel-1.2.so.64 +%{_libdir}/libcamel-1.2.so.64.0.0 +%{_libdir}/libebackend-1.2.so.11 +%{_libdir}/libebackend-1.2.so.11.0.0 +%{_libdir}/libebook-1.2.so.21 +%{_libdir}/libebook-1.2.so.21.1.3 +%{_libdir}/libebook-contacts-1.2.so.4 +%{_libdir}/libebook-contacts-1.2.so.4.0.0 +%{_libdir}/libecal-2.0.so.2 +%{_libdir}/libecal-2.0.so.2.0.0 +%{_libdir}/libedata-book-1.2.so.27 +%{_libdir}/libedata-book-1.2.so.27.0.0 +%{_libdir}/libedata-cal-2.0.so.2 +%{_libdir}/libedata-cal-2.0.so.2.0.0 +%{_libdir}/libedataserver-1.2.so.27 +%{_libdir}/libedataserver-1.2.so.27.0.0 +%{_libdir}/libedataserverui-1.2.so.4 +%{_libdir}/libedataserverui-1.2.so.4.0.0 +%{_libdir}/libedataserverui4-1.0.so +%{_libdir}/libedataserverui4-1.0.so.0 +%{_libdir}/libedataserverui4-1.0.so.0.0.0 %{_libdir}/girepository-1.0/Camel-1.2.typelib %{_libdir}/girepository-1.0/EBackend-1.2.typelib @@ -310,6 +317,7 @@ find $RPM_BUILD_ROOT -name '*.so.*' -exec chmod +x {} \; %{_libdir}/girepository-1.0/EDataCal-2.0.typelib %{_libdir}/girepository-1.0/EDataServer-1.2.typelib %{_libdir}/girepository-1.0/EDataServerUI-1.2.typelib +%{_libdir}/girepository-1.0/EDataServerUI4-1.0.typelib %{_libexecdir}/camel-gpg-photo-saver %{_libexecdir}/camel-index-control-1.2 @@ -423,6 +431,7 @@ find $RPM_BUILD_ROOT -name '*.so.*' -exec chmod +x {} \; %{_libdir}/pkgconfig/libedata-cal-2.0.pc %{_libdir}/pkgconfig/libedataserver-1.2.pc %{_libdir}/pkgconfig/libedataserverui-1.2.pc +%{_libdir}/pkgconfig/libedataserverui4-1.0.pc %{_datadir}/gir-1.0/Camel-1.2.gir %{_datadir}/gir-1.0/EBackend-1.2.gir %{_datadir}/gir-1.0/EBook-1.2.gir @@ -432,6 +441,7 @@ find $RPM_BUILD_ROOT -name '*.so.*' -exec chmod +x {} \; %{_datadir}/gir-1.0/EDataCal-2.0.gir %{_datadir}/gir-1.0/EDataServer-1.2.gir %{_datadir}/gir-1.0/EDataServerUI-1.2.gir +%{_datadir}/gir-1.0/EDataServerUI4-1.0.gir %{_datadir}/vala/vapi/camel-1.2.deps %{_datadir}/vala/vapi/camel-1.2.vapi %{_datadir}/vala/vapi/libebackend-1.2.deps @@ -450,6 +460,18 @@ find $RPM_BUILD_ROOT -name '*.so.*' -exec chmod +x {} \; %{_datadir}/vala/vapi/libedataserver-1.2.vapi %{_datadir}/vala/vapi/libedataserverui-1.2.deps %{_datadir}/vala/vapi/libedataserverui-1.2.vapi +%{_datadir}/vala/vapi/libedataserverui4-1.0.deps +%{_datadir}/vala/vapi/libedataserverui4-1.0.vapi +/usr/lib/debug/usr/lib64/libcamel-1.2.so.64.0.0-3.46.1-2.fc37.x86_64.debug +/usr/lib/debug/usr/lib64/libebackend-1.2.so.11.0.0-3.46.1-2.fc37.x86_64.debug +/usr/lib/debug/usr/lib64/libebook-1.2.so.21.1.3-3.46.1-2.fc37.x86_64.debug +/usr/lib/debug/usr/lib64/libebook-contacts-1.2.so.4.0.0-3.46.1-2.fc37.x86_64.debug +/usr/lib/debug/usr/lib64/libecal-2.0.so.2.0.0-3.46.1-2.fc37.x86_64.debug +/usr/lib/debug/usr/lib64/libedata-book-1.2.so.27.0.0-3.46.1-2.fc37.x86_64.debug +/usr/lib/debug/usr/lib64/libedata-cal-2.0.so.2.0.0-3.46.1-2.fc37.x86_64.debug +/usr/lib/debug/usr/lib64/libedataserver-1.2.so.27.0.0-3.46.1-2.fc37.x86_64.debug +/usr/lib/debug/usr/lib64/libedataserverui-1.2.so.4.0.0-3.46.1-2.fc37.x86_64.debug +/usr/lib/debug/usr/lib64/libedataserverui4-1.0.so.0.0.0-3.46.1-2.fc37.x86_64.debug %files langpacks -f %{name}.lang From b8c467fdc1e96d3bb670f5168c01d17ec8eee7f5 Mon Sep 17 00:00:00 2001 From: windowsboy111 Date: Wed, 23 Nov 2022 21:54:47 +0800 Subject: [PATCH 54/74] elementary-tasks --- .../desktops/elementary/elementary-tasks/elementary-tasks.spec | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/anda/desktops/elementary/elementary-tasks/elementary-tasks.spec b/anda/desktops/elementary/elementary-tasks/elementary-tasks.spec index efdc53e30a..b565fd987a 100644 --- a/anda/desktops/elementary/elementary-tasks/elementary-tasks.spec +++ b/anda/desktops/elementary/elementary-tasks/elementary-tasks.spec @@ -25,8 +25,7 @@ BuildRequires: pkgconfig(glib-2.0) BuildRequires: pkgconfig(gobject-2.0) BuildRequires: pkgconfig(granite) >= 6.2.0 BuildRequires: pkgconfig(gtk+-3.0) -BuildRequires: pkgconfig(libecal-2.0) -BuildRequires: pkgconfig(libedataserver-1.2) +BuildRequires: pkgconfig(libedataserver-1.2) = 3.44.4 BuildRequires: pkgconfig(libgdata) BuildRequires: pkgconfig(libgeoclue-2.0) BuildRequires: pkgconfig(libhandy-1) >= 0.90.0 From 7ad80a80e4a5605c627d153ae7ce968e7eeff78b Mon Sep 17 00:00:00 2001 From: lleyton Date: Wed, 23 Nov 2022 10:50:25 -0800 Subject: [PATCH 55/74] I don't think we need to specify these debug files --- .../evolution-data-server/evolution-data-server.spec | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/anda/desktops/elementary/evolution-data-server/evolution-data-server.spec b/anda/desktops/elementary/evolution-data-server/evolution-data-server.spec index ef6d2c9f6b..7ac0436aef 100644 --- a/anda/desktops/elementary/evolution-data-server/evolution-data-server.spec +++ b/anda/desktops/elementary/evolution-data-server/evolution-data-server.spec @@ -462,16 +462,6 @@ find $RPM_BUILD_ROOT -name '*.so.*' -exec chmod +x {} \; %{_datadir}/vala/vapi/libedataserverui-1.2.vapi %{_datadir}/vala/vapi/libedataserverui4-1.0.deps %{_datadir}/vala/vapi/libedataserverui4-1.0.vapi -/usr/lib/debug/usr/lib64/libcamel-1.2.so.64.0.0-3.46.1-2.fc37.x86_64.debug -/usr/lib/debug/usr/lib64/libebackend-1.2.so.11.0.0-3.46.1-2.fc37.x86_64.debug -/usr/lib/debug/usr/lib64/libebook-1.2.so.21.1.3-3.46.1-2.fc37.x86_64.debug -/usr/lib/debug/usr/lib64/libebook-contacts-1.2.so.4.0.0-3.46.1-2.fc37.x86_64.debug -/usr/lib/debug/usr/lib64/libecal-2.0.so.2.0.0-3.46.1-2.fc37.x86_64.debug -/usr/lib/debug/usr/lib64/libedata-book-1.2.so.27.0.0-3.46.1-2.fc37.x86_64.debug -/usr/lib/debug/usr/lib64/libedata-cal-2.0.so.2.0.0-3.46.1-2.fc37.x86_64.debug -/usr/lib/debug/usr/lib64/libedataserver-1.2.so.27.0.0-3.46.1-2.fc37.x86_64.debug -/usr/lib/debug/usr/lib64/libedataserverui-1.2.so.4.0.0-3.46.1-2.fc37.x86_64.debug -/usr/lib/debug/usr/lib64/libedataserverui4-1.0.so.0.0.0-3.46.1-2.fc37.x86_64.debug %files langpacks -f %{name}.lang From 97bfefb3025251b57703cdfbdd7e41be1f67fbec Mon Sep 17 00:00:00 2001 From: Lleyton Gray Date: Wed, 23 Nov 2022 21:04:21 +0000 Subject: [PATCH 56/74] switchboard-plug-onlineaccounts: don't pin deps --- .../switchboard-plug-onlineaccounts.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/anda/desktops/elementary/switchboard-plug-onlineaccounts/switchboard-plug-onlineaccounts.spec b/anda/desktops/elementary/switchboard-plug-onlineaccounts/switchboard-plug-onlineaccounts.spec index 4a8daf6f8c..4cacd7c515 100644 --- a/anda/desktops/elementary/switchboard-plug-onlineaccounts/switchboard-plug-onlineaccounts.spec +++ b/anda/desktops/elementary/switchboard-plug-onlineaccounts/switchboard-plug-onlineaccounts.spec @@ -20,12 +20,12 @@ BuildRequires: vala Patch0: b60f0458a23a2f76ad14d399f145e150e1ab82d3.patch -BuildRequires: pkgconfig(camel-1.2) = 3.44.4 +BuildRequires: pkgconfig(camel-1.2) BuildRequires: pkgconfig(glib-2.0) BuildRequires: pkgconfig(gobject-2.0) BuildRequires: pkgconfig(granite) >= 6.0.0 BuildRequires: pkgconfig(gtk+-3.0) -BuildRequires: evolution-data-server-devel = 3.44.4 +BuildRequires: evolution-data-server-devel BuildRequires: pkgconfig(libhandy-1) >= 1.0.0 BuildRequires: pkgconfig(switchboard-2.0) From 7f82ae3b761bfdc7955d1b19cf9e82529a542bee Mon Sep 17 00:00:00 2001 From: Lleyton Gray Date: Wed, 23 Nov 2022 21:32:05 +0000 Subject: [PATCH 57/74] shouldn't need this now --- anda/lib/folks/anda.hcl | 5 - anda/lib/folks/chkupdate.py | 20 -- anda/lib/folks/folks.spec | 658 ------------------------------------ 3 files changed, 683 deletions(-) delete mode 100644 anda/lib/folks/anda.hcl delete mode 100644 anda/lib/folks/chkupdate.py delete mode 100644 anda/lib/folks/folks.spec diff --git a/anda/lib/folks/anda.hcl b/anda/lib/folks/anda.hcl deleted file mode 100644 index 1a063620a1..0000000000 --- a/anda/lib/folks/anda.hcl +++ /dev/null @@ -1,5 +0,0 @@ -project "pkg" { - rpm { - spec = "folks.spec" - } -} diff --git a/anda/lib/folks/chkupdate.py b/anda/lib/folks/chkupdate.py deleted file mode 100644 index e76d427e91..0000000000 --- a/anda/lib/folks/chkupdate.py +++ /dev/null @@ -1,20 +0,0 @@ -import os -import requests -import re - -NAME = 'folks' -ID = 1712 -REGEX_VER = r'Version:\s*([\.\d]+)\n' -SPEC = f"{NAME}.spec" -LINK = f'https://gitlab.gnome.org/api/v4/projects/{ID}/releases/' - - -# BIG ASSUMPTION THAT IT'S THE FIRST ONE :3 -ver = requests.get(LINK).json()[0]['tag_name'] -with open(SPEC, 'r') as f: - matches = re.findall(REGEX_VER, f.read()) -if not len(matches): exit(f"{NAME}: Failed to match regex!") -cur = matches[0] -if ver == cur: exit(f'{NAME}: Up to date!') -print(f'{NAME}: {cur} -> {ver}') -os.system(f'rpmdev-bumpspec -n {ver} {SPEC}') diff --git a/anda/lib/folks/folks.spec b/anda/lib/folks/folks.spec deleted file mode 100644 index 14ccb131d9..0000000000 --- a/anda/lib/folks/folks.spec +++ /dev/null @@ -1,658 +0,0 @@ -%global folks_module_version 26 - -Name: folks -Version: 0.15.5 -Release: 4%{?dist} -Summary: GObject contact aggregation library -Epoch: 1 - -License: LGPLv2+ -URL: https://wiki.gnome.org/Projects/Folks -Source0: https://download.gnome.org/sources/folks/0.15/folks-%{version}.tar.xz - -BuildRequires: gcc -BuildRequires: gettext -BuildRequires: gobject-introspection-devel -BuildRequires: meson -BuildRequires: python3-dbusmock -BuildRequires: python3-devel -BuildRequires: readline-devel -BuildRequires: telepathy-glib-vala -BuildRequires: vala -BuildRequires: pkgconfig(dbus-glib-1) -BuildRequires: pkgconfig(gee-0.8) >= 0.8.4 -BuildRequires: pkgconfig(gio-2.0) -BuildRequires: pkgconfig(libedataserver-1.2) = 3.44.4 -BuildRequires: pkgconfig(libxml-2.0) -BuildRequires: pkgconfig(telepathy-glib) - -%description -libfolks is a library that aggregates people from multiple sources (e.g. -Telepathy connection managers and eventually evolution data server, -Facebook, etc.) to create meta-contacts. - -%package telepathy -Summary: Folks telepathy backend -Requires: %{name}%{?_isa} = %{epoch}:%{version}-%{release} - -%description telepathy -%{name}-telepathy contains the folks telepathy backend. - -%package tools -Summary: Tools for %{name} -Requires: %{name}%{?_isa} = %{epoch}:%{version}-%{release} - -%description tools -%{name}-tools contains a database and import tool. - -%package devel -Summary: Development files for %{name} -Requires: %{name}%{?_isa} = %{epoch}:%{version}-%{release} -Requires: %{name}-tools%{?_isa} = %{epoch}:%{version}-%{release} - -%description devel -The %{name}-devel package contains libraries and header files for -developing applications that use %{name}. - -%prep -%autosetup -p1 - -%build -%meson -%meson_build - -%install -%meson_install - -%find_lang %{name} - -%files -f %{name}.lang -%license COPYING -%doc AUTHORS NEWS -%{_libdir}/libfolks-dummy.so.26* -%{_libdir}/libfolks-eds.so.26* -%{_libdir}/libfolks.so.26* -%dir %{_libdir}/folks -%dir %{_libdir}/folks/%{folks_module_version} -%dir %{_libdir}/folks/%{folks_module_version}/backends -%{_libdir}/folks/%{folks_module_version}/backends/bluez/ -%{_libdir}/folks/%{folks_module_version}/backends/dummy/ -%{_libdir}/folks/%{folks_module_version}/backends/eds/ -%{_libdir}/folks/%{folks_module_version}/backends/key-file/ -%{_libdir}/folks/%{folks_module_version}/backends/ofono/ -%{_libdir}/girepository-1.0/Folks-0.7.typelib -%{_libdir}/girepository-1.0/FolksDummy-0.7.typelib -%{_libdir}/girepository-1.0/FolksEds-0.7.typelib -%{_datadir}/GConf/gsettings/folks.convert -%{_datadir}/glib-2.0/schemas/org.freedesktop.folks.gschema.xml - -%files telepathy -%{_libdir}/libfolks-telepathy.so.26* -%{_libdir}/folks/%{folks_module_version}/backends/telepathy -%{_libdir}/girepository-1.0/FolksTelepathy-0.7.typelib - -%files tools -%{_bindir}/%{name}-import -%{_bindir}/%{name}-inspect - -%files devel -%{_includedir}/folks -%{_libdir}/pkgconfig/folks*.pc -%{_libdir}/libfolks*.so -%{_datadir}/gir-1.0/Folks-0.7.gir -%{_datadir}/gir-1.0/FolksDummy-0.7.gir -%{_datadir}/gir-1.0/FolksEds-0.7.gir -%{_datadir}/gir-1.0/FolksTelepathy-0.7.gir -%dir %{_datadir}/vala -%dir %{_datadir}/vala/vapi -%{_datadir}/vala/vapi/%{name}* - -%changelog -* Wed Nov 23 2022 windowsboy111 - 0.15.5-4 -- Fix evolution-data-server version - -* Thu Jul 21 2022 Fedora Release Engineering - 1:0.15.5-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild - -* Tue Jul 19 2022 Kalev Lember - 1:0.15.5-2 -- Rebuilt for evolution-data-server soname bump - -* Wed Mar 23 2022 David King - 1:0.15.5-1 -- Update to 0.15.5 - -* Sat Feb 12 2022 Jeff Law - 1:0.15.4-3 -- Re-enable LTO - -* Thu Jan 20 2022 Fedora Release Engineering - 1:0.15.4-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild - -* Tue Jan 18 2022 David King - 1:0.15.4-1 -- Update to 0.15.4 - -* Tue Aug 03 2021 Kalev Lember - 1:0.15.3-1 -- Update to 0.15.3 - -* Wed Jul 21 2021 Fedora Release Engineering - 1:0.15.2-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild - -* Tue Feb 16 2021 Kalev Lember - 1:0.15.2-2 -- Drop temporary ABI compat - -* Tue Feb 16 2021 Kalev Lember - 1:0.15.2-1 -- Update to 0.15.2 - -* Fri Feb 12 2021 Milan Crha - 1:0.14.0-7 -- Rebuilt for evolution-data-server soname version bump - -* Tue Jan 26 2021 Fedora Release Engineering - 1:0.14.0-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild - -* Sat Aug 01 2020 Fedora Release Engineering - 1:0.14.0-5 -- Second attempt - Rebuilt for - https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild - -* Mon Jul 27 2020 Fedora Release Engineering - 1:0.14.0-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild - -* Mon Jul 20 2020 Jeff Law - 1:0.14.0-3 -- Disable LTO - -* Tue Jul 07 2020 Milan Crha - 1:0.14.0-2 -- Rebuilt for evolution-data-server soname version bump - -* Wed Mar 11 2020 Kalev Lember - 1:0.14.0-1 -- Update to 0.14.0 -- Update download URLs - -* Tue Feb 04 2020 Kalev Lember - 1:0.13.2-1 -- Update to 0.13.2 -- Clean up some more cruft left over from autotools build -- No longer require python2 for building - -* Tue Jan 28 2020 Fedora Release Engineering - 1:0.13.1-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild - -* Thu Jul 25 2019 Fedora Release Engineering - 1:0.13.1-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild - -* Fri Jun 21 2019 Kalev Lember - 1:0.13.1-1 -- Update to 0.13.1 - -* Thu May 23 2019 Adam Williamson - 1:0.12.1-2 -- Add patch to extend test timeout to fix build fails - -* Tue May 21 2019 Milan Crha -- Add patch to adapt to evolution-data-server's libebook API changes - -* Tue Apr 30 2019 Phil Wyett - 1:0.12.1-1 -- Update to 0.12.1 -- Convert to meson build -- Fix and cleanup dependencies - -* Tue Feb 19 2019 Kalev Lember - 1:0.11.4-15 -- Rebuilt against fixed atk (#1626575) - -* Sun Feb 17 2019 Igor Gnatenko - 1:0.11.4-14 -- Rebuild for readline 8.0 - -* Thu Jan 31 2019 Fedora Release Engineering - 1:0.11.4-13 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild - -* Wed Jan 16 2019 Pete Walter - 1:0.11.4-12 -- Enable telepathy backend again and split it out to folks-telepathy subpackage - -* Mon Jan 07 2019 Milan Crha - 1:0.11.4-11 -- Rebuilt for evolution-data-server soname bump -- Add /usr/bin/dbus-daemon into the BuildRequires (for tests) - -* Wed Nov 28 2018 Debarshi Ray - 1:0.11.4-10 -- Disable Telepathy backend (RH #1654208) - -* Mon Nov 12 2018 Milan Crha - 1:0.11.4-9 -- Rebuilt for evolution-data-server soname bump - -* Tue Jul 31 2018 Florian Weimer - 1:0.11.4-8 -- Rebuild with fixed binutils - -* Fri Jul 27 2018 Igor Gnatenko - 1:0.11.4-7 -- Rebuild for new binutils - -* Fri Jul 13 2018 Fedora Release Engineering - 1:0.11.4-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild - -* Wed Feb 07 2018 Kalev Lember - 1:0.11.4-5 -- Rebuilt for evolution-data-server soname bump - -* Tue Jan 16 2018 Marek Kasik - 1:0.11.4-4 -- Enable unit tests -- Resolves: #1502676 - -* Wed Aug 02 2017 Fedora Release Engineering - 1:0.11.4-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild - -* Wed Jul 26 2017 Fedora Release Engineering - 1:0.11.4-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild - -* Wed Jul 05 2017 Bastien Nocera - 0.11.4-1 -+ folks-0.11.4-1 -- Update to 0.11.4 - -* Fri Feb 10 2017 Fedora Release Engineering - 1:0.11.3-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild - -* Thu Jan 12 2017 Igor Gnatenko - 1:0.11.3-4 -- Rebuild for readline 7.x - -* Tue Oct 25 2016 Milan Crha - 1:0.11.3-3 -- Rebuild for newer evolution-data-server - -* Thu Sep 22 2016 Kalev Lember - 1:0.11.3-2 -- BR vala instead of obsolete vala-tools subpackage - -* Wed Sep 21 2016 Kalev Lember - 1:0.11.3-1 -- Update to 0.11.3 -- Don't set group tags -- Use make_install macro - -* Mon Jul 18 2016 Milan Crha - 1:0.11.2-7 -- Rebuild for newer evolution-data-server - -* Tue Jun 21 2016 Milan Crha - 1:0.11.2-6 -- Rebuild for newer evolution-data-server - -* Sun Apr 03 2016 Mathieu Bridon - 1:0.11.2-5 -- Drop the Zeitgeist dependency. - -* Tue Feb 16 2016 Milan Crha - 1:0.11.2-4 -- Rebuild for newer evolution-data-server - -* Wed Feb 03 2016 Fedora Release Engineering - 1:0.11.2-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild - -* Mon Jan 18 2016 Kevin Fenzi - 0.11.2-2 -- Rebuild for new libical - -* Sat Dec 05 2015 Kalev Lember - 1:0.11.2-1 -- Update to 0.11.2 -- Use license macro for COPYING - -* Wed Jul 22 2015 Milan Crha - 1:0.11.1-3 -- Rebuild for newer evolution-data-server - -* Wed Jun 17 2015 Fedora Release Engineering - 1:0.11.1-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild - -* Sun May 31 2015 Kalev Lember - 1:0.11.1-1 -- Update to 0.11.1 - -* Tue Apr 28 2015 Milan Crha - 1:0.11.0-2 -- Rebuild for newer evolution-data-server - -* Fri Feb 13 2015 Richard Hughes - 1:0.11.0-1 -- Update to 0.11.0 - -* Mon Jan 19 2015 Richard Hughes - 1:0.10.1-1 -- Update to 0.10.1 - -* Mon Nov 03 2014 Richard Hughes - 1:0.10.0-4 -- Use updated e-d-s and bluez in non-Fedora build - -* Mon Nov 03 2014 Richard Hughes - 1:0.10.0-3 -- Fix non-Fedora build - -* Tue Sep 23 2014 Kalev Lember - 1:0.10.0-2 -- Rebuilt for libcamel soname bump - -* Fri Sep 12 2014 Kalev Lember - 1:0.10.0-1 -- Update to 0.10.0 -- Remove lib64 rpaths -- Tighten subpackage dependencies with the _isa macro -- Drop unneeded -devel subpackage dependencies - -* Sat Aug 16 2014 Fedora Release Engineering - 1:0.9.8-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild - -* Wed Aug 13 2014 Kalev Lember - 1:0.9.8-1 -- Update to 0.9.8 - -* Mon Aug 11 2014 Nils Philippsen - 1:0.9.7.1-4 -- add missing files to file list - -* Thu Jul 31 2014 Milan Crha - 1:0.9.7.1-3 -- Rebuild against newer evolution-data-server - -* Tue Jul 22 2014 Kalev Lember - 1:0.9.7.1-2 -- Rebuilt for gobject-introspection 1.41.4 - -* Tue Jun 24 2014 Richard Hughes - 1:0.9.7.1-1 -- Update to 0.9.7.1 - -* Sat Jun 07 2014 Fedora Release Engineering - 1:0.9.6-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild - -* Mon Feb 03 2014 Milan Crha - 1:0.9.6-4 -- Rebuild against newer evolution-data-server - -* Tue Jan 14 2014 Milan Crha - 1:0.9.6-3 -- Rebuild against newer evolution-data-server - -* Mon Nov 18 2013 Brian Pepple - 1:0.9.6-2 -- Add patch to remove assert that was causing IRC crash. (#1031252) - -* Thu Nov 14 2013 Richard Hughes - 1:0.9.6-1 -- Update to 0.9.6 - -* Wed Oct 23 2013 Brian Pepple - 1:0.9.5-2 -- Rebuild for latest libcamel. - -* Tue Aug 27 2013 Brian Pepple - 1:0.9.5-1 -- Update to 0.9.5. - -* Mon Aug 19 2013 Brian Pepple - 1:0.9.4-1 -- Update to 0.9.4. -- Bump minimum version of eds needed. - -* Mon Aug 19 2013 Milan Crha - 1:0.9.3-5 -- Rebuild against newer evolution-data-server - -* Sat Aug 03 2013 Fedora Release Engineering - 1:0.9.3-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild - -* Wed Jul 10 2013 Kalev Lember - 1:0.9.3-3 -- Including missing files -- Disable fatal warnings to fix the build - -* Tue Jul 09 2013 Brian Pepple - 1:0.9.3-2 -- Rebuild for new libcamel. - -* Tue Jun 25 2013 Brian Pepple - 1:0.9.3-1 -- Update to 0.9.3. -- Bump minimum version of zeitgeist needed. - -* Sat Jun 22 2013 Matthias Clasen - 1:0.9.2-3 -- Trim %%changelog - -* Fri Jun 21 2013 Matthias Clasen - 1:0.9.2-2 -- Install NEWS instead of ChangeLog (saves some space) - -* Sat Jun 8 2013 Brian Pepple - 1:0.9.2-1 -- Update to 0.9.2. -- Bump minimum version of eds needed. - -* Tue Apr 30 2013 Brian Pepple - 1:0.9.1-2 -- Rebuild against new eds. - -* Tue Feb 19 2013 Richard Hughes - 1:0.9.1-1 -- Update to 0.9.1 - -* Wed Feb 13 2013 Fedora Release Engineering - 1:0.8.0-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild - -* Fri Dec 21 2012 Kalev Lember - 1:0.8.0-4 -- Rebuild for new libcamel. - -* Tue Nov 20 2012 Milan Crha - 1:0.8.0-3 -- Rebuild for new libcamel. - -* Thu Oct 25 2012 Milan Crha - 1:0.8.0-2 -- Rebuild for new libcamel. - -* Thu Oct 4 2012 Brian Pepple - 1:0.8.0-1 -- Update to 0.8.0 -- Update source url. - -* Wed Sep 19 2012 Kalev Lember - 1:0.7.4.1-2 -- Silence glib-compile-schemas scriplets - -* Wed Sep 12 2012 Brian Pepple - 1:0.7.4.1-1 -- Update to 0.7.4.1. -- Bump minimum requirement for tp-glib and vala. -- Drop staticmember patches. Fixed upstream. - -* Mon Aug 27 2012 Brian Pepple - 1:0.7.3-2 -- Rebuild for new libcamel. -- Pull upstream patches to fix build errors caused by accessing static members. - -* Sun Jul 29 2012 Brian Pepple - 1:0.7.3-1 -- Update to 0.7.3. - -* Fri Jul 27 2012 Fedora Release Engineering - 1:0.7.2.2-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild - -* Wed Jul 18 2012 Matthias Clasen - 1:0.7.2.2-2 -- Rebuild - -* Tue Jul 3 2012 Brian Pepple - 1:0.7.2.2-1 -- Update to 0.7.2.2. -- Update eds version needed. - -* Thu Jun 28 2012 Brian Pepple - 1:0.7.2.1-1 -- Update to 0.7.2.1. -- Drop book-uid patch. Fixed upstream. -- Bump minimum version of eds needed. - -* Mon Jun 25 2012 Matthias Clasen - 1:0.7.1-2 -- Update for e-d-s api change - -* Mon Jun 18 2012 Brian Pepple - 1:0.7.1-1 -- Update to 0.7.1. -- Bump version of eds and tp-glib needed. -- Add BR on libzeitgeist-devel. - -* Wed Jun 13 2012 Cosimo Cecchi - 1:0.7.0-2 -- Disable libsocialweb backend - -* Tue Apr 17 2012 Brian Pepple - 1:0.7.0-1 -- Update to 0.7.0. -- Update source url. - -* Mon Apr 16 2012 Brian Pepple - 1:0.6.9-1 -- Update to 0.6.9. -- Drop patch that fixed account sync crash. Fixed upstream. - -* Thu Apr 5 2012 Brian Pepple - 1:0.6.8-4 -- Enable inspect tool (#810098) -- Add BR on readline-devel. - -* Tue Apr 03 2012 Brian Pepple - 1:0.6.8-3 -- Rebuild against new tp-glib. - -* Fri Mar 30 2012 Brian Pepple - 1:0.6.8-2 -- Backport patch to fix crash cause by TpAccount are out of sync. -- Bump minimum version of tp-glib needed. - -* Mon Mar 26 2012 Brian Pepple - 1:0.6.8-1 -- Update to 0.6.8. -- Bump minimum verions of libsocialweb-devel and vala-devel. - -* Wed Feb 22 2012 Brian Pepple - 1:0.6.7-1 -- Update to 0.6.7. - -* Mon Feb 6 2012 Brian Pepple 1:0.6.6-3 -- Rebuild for new eds. - -* Sun Jan 08 2012 Brian Pepple - 1:0.6.6-2 -- Rebuild for new gcc. - -* Wed Dec 14 2011 Brian Pepple - 1:0.6.6-1 -- Update to 0.6.6. -- Drop name details non-null patch. Fixed upstream. - -* Wed Nov 30 2011 Peter Robinson - 1:0.6.5-4 -- Move the vala vapi files to the devel package where they should be and add the appropriate requires - -* Sun Nov 27 2011 Colin Walters - 1:0.6.5-3 -- Add patch from git to fix gnome-shell crashes - -* Tue Nov 22 2011 Brian Pepple - 1:0.6.5-2 -- Rebuild against new eds - -* Fri Nov 11 2011 Brian Pepple - 1:0.6.5-1 -- Update to 0.6.5. - -* Wed Oct 26 2011 Fedora Release Engineering - 1:0.6.4.1-3 -- Rebuilt for glibc bug#747377 - -* Mon Oct 24 2011 Brian Pepple - 1:0.6.4.1-2 -- Rebuld against libcamel. - -* Tue Oct 18 2011 Brian Pepple - 1:0.6.4.1-1 -- Update to 0.6.4.1. - -* Tue Oct 18 2011 Brian Pepple - 1:0.6.4-1 -- Update to 0.6.4. - -* Mon Sep 26 2011 Brian Pepple - 1:0.6.3.2-1 -- Update to 0.6.3.2. - -* Sun Sep 25 2011 Brian Pepple - 1:0.6.3.1-1 -- Update to 0.6.3.1. -- Drop typelib patch. Fixed upstream. - -* Wed Sep 21 2011 Matthias Clasen - 1:0.6.3-2 -- Fix another typelib problem - -* Mon Sep 19 2011 Brian Pepple - 1:0.6.3-1 -- Update to 0.6.3. -- Drop typelib patch. Fixed upstream. - -* Wed Sep 14 2011 Owen Taylor - 1:0.6.2.1-2 -- Really fix the typelib to embed the right .so file - -* Thu Sep 8 2011 Matthias Clasen - 1:0.6.2.1-1 -- Really fix the reentrancy problem, by using 0.6.2.1 - -* Thu Sep 8 2011 Matthias Clasen - 1:0.6.2-2 -- Fix a reentrancy problem that causes gnome-shell to crash - -* Thu Sep 8 2011 Matthias Clasen - 1:0.6.2-1 -- Update to 0.6.2.1 - -* Thu Sep 8 2011 Brian Pepple - 1:0.6.2-1 -- Update to 0.6.2 -- Use old libgee api. - -* Wed Sep 7 2011 Matthias Clasen - 1:0.6.1-4 -- Try again - -* Tue Sep 06 2011 Brian Pepple - 1:0.6.1-3 -- Rebuld against new libcamel. - -* Thu Sep 1 2011 Matthias Clasen - 1:0.6.1-2 -- Fix up the typelib - -* Mon Aug 29 2011 Brian Pepple - 1:0.6.1-1 -- Update to 0.6.1. -- Drop EDS patch. Fixed upstream. - -* Mon Aug 29 2011 Milan Crha - 1:0.6.0-6 -- Rebuild against newer evolution-data-server - -* Fri Aug 19 2011 Matthias Clasen - 1:0.6.0-4 -- Try again to rebuild - -* Tue Aug 16 2011 Brian Pepple - 1:0.6.0-2 -- Rebuld for new eds - -* Sat Aug 13 2011 Brian Pepple - 1:0.6.0-1 -- Update to 0.6.0. -- Update source url. -- Add BR on eds-devel and libsocialweb-devel. - -* Fri Jun 10 2011 Brian Pepple - 1:0.5.2-1 -- Update to 0.5.2. -- Add BR on GConf2-devel. - -* Wed Mar 23 2011 Brian Pepple - 1:0.4.2-1 -- Update to 0.4.2. - -* Fri Mar 18 2011 Brian Pepple - 1:0.4.1-1 -- Update to 0.4.1. - -* Thu Mar 17 2011 Brian Pepple - 1:0.4.0-2 -- Update source url. - -* Thu Mar 17 2011 Brian Pepple - 1:0.4.0-1 -- Update to 0.4.0. - -* Mon Feb 14 2011 Brian Pepple - 1:0.3.6-1 -- Update to 0.3.6. - -* Tue Feb 08 2011 Fedora Release Engineering - 1:0.3.4-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild - -* Mon Jan 31 2011 Brian Pepple - 1:0.3.4-1 -- Update to 0.3.4. - -* Tue Dec 14 2010 Brian Pepple - 1:0.3.3-1 -- Update to 0.3.3. - -* Sun Nov 14 2010 Brian Pepple - 1:0.3.2-1 -- Update to 0.3.2. -- Update min version of tp-glib. -- Update source url. -- Drop dso linking patch. Fixed upstream. - -* Fri Oct 29 2010 Brian Pepple - 1:0.2.1-1 -- Update to 0.2.1. -- Add patch to fix dso linking. (fdo #633511) - -* Fri Oct 29 2010 Brian Pepple - 1:0.2.0-4 -- Add epoch to devel subpackage requires. - -* Mon Oct 25 2010 Brian Pepple - 1:0.2.0-3 -- Revert back to 0.2.x until gtk-2.92.1 or greater is in rawhide. - -* Wed Oct 20 2010 Brian Pepple - 0.3.1-1 -- Update to 0.3.1. -- Update source url. -- Update tp-glib version required. - -* Wed Sep 29 2010 jkeating - 0.2.0-2 -- Rebuilt for gcc bug 634757 - -* Sat Sep 25 2010 Brian Pepple - 0.2.0-1 -- Update to 0.2.0. -- Add missing requires to devel subpackage. -- Drop DSO linkng patch. Fixed upstream. - -* Sun Sep 12 2010 Brian Pepple - 0.1.17-1 -- Update to 0.1.17. -- Add patch to fix DSO linking for import tool. -- Add BR on libxml2-devel so import tool is built. - -* Wed Sep 1 2010 Yanko Kaneti 0.1.16-1 -- New upstream release. - -* Thu Aug 30 2010 Yanko Kaneti 0.1.15-1 -- New upstream release. Drop the RPATH hacks. - -* Thu Aug 19 2010 Yanko Kaneti 0.1.14.1-1 -- New upstream release. Requires vala >= 0.9.6 - -* Thu Aug 19 2010 Yanko Kaneti 0.1.14-2 -- Use chrpath to remove the lingering RPATH because the guidelines - recomended sed makes libtool incapable of building the tp-lowlevel.gir. - Better solution welcome. - -* Wed Aug 18 2010 Yanko Kaneti 0.1.14-1 -- New upstream. Remove patch and libtool hack. - -* Tue Aug 17 2010 Yanko Kaneti 0.1.13-4 -- Add BR: vala-tools - -* Tue Aug 17 2010 Yanko Kaneti 0.1.13-3 -- Update for the available telepathy-glib vala packaging - -* Thu Aug 12 2010 Yanko Kaneti 0.1.13-2 -- Add BR: libgee-devel - -* Thu Aug 12 2010 Yanko Kaneti 0.1.13-1 -- New upstream release -- Autofoo for the new vala api versioning - -* Tue Aug 3 2010 Yanko Kaneti 0.1.12-1 -- New upstream release - -* Mon Aug 2 2010 Yanko Kaneti 0.1.11-1 -- Packaged for review From 1ed2a0e5f48903bef51449427f8a5bbcc8d9d5e0 Mon Sep 17 00:00:00 2001 From: Lleyton Gray Date: Wed, 23 Nov 2022 21:36:08 +0000 Subject: [PATCH 58/74] shouldn't need this too now --- .../elementary/evolution-data-server/anda.hcl | 6 - .../evolution-data-server.spec | 2449 ----------------- 2 files changed, 2455 deletions(-) delete mode 100644 anda/desktops/elementary/evolution-data-server/anda.hcl delete mode 100644 anda/desktops/elementary/evolution-data-server/evolution-data-server.spec diff --git a/anda/desktops/elementary/evolution-data-server/anda.hcl b/anda/desktops/elementary/evolution-data-server/anda.hcl deleted file mode 100644 index 0c01795989..0000000000 --- a/anda/desktops/elementary/evolution-data-server/anda.hcl +++ /dev/null @@ -1,6 +0,0 @@ -project "pkg" { - rpm { - spec = "evolution-data-server.spec" - sources = "." - } -} diff --git a/anda/desktops/elementary/evolution-data-server/evolution-data-server.spec b/anda/desktops/elementary/evolution-data-server/evolution-data-server.spec deleted file mode 100644 index 7ac0436aef..0000000000 --- a/anda/desktops/elementary/evolution-data-server/evolution-data-server.spec +++ /dev/null @@ -1,2449 +0,0 @@ -%undefine __cmake_in_source_build - -%define ldap_support 1 -%define static_ldap 0 -%define krb5_support 1 -%define largefile_support 1 - -# enabled only for Fedora -%global phonenum_support 0%{?fedora} - -# Coverity scan can override this to 0, to skip checking in gtk-doc generated code -%{!?with_docs: %global with_docs 1} - -%if 0%{?flatpak} -%global with_docs 0 -%endif - -%define glib2_version 2.68 -%define gtk3_version 3.20 -%define gcr_version 3.4 -%define gtk_doc_version 1.9 -%define gtk4_version 4.4 -%define goa_version 3.8 -%define libsecret_version 0.5 -%define libgdata_version 0.15.1 -%define libgweather_version 3.10 -%define libical_version 3.0.7 -%define libsoup_version 3.1.1 -%define nss_version 3.14 -%define sqlite_version 3.7.17 -%define webkit2gtk_version 2.34.0 -%define json_glib_version 1.0.4 - -%define credential_modules_dir %{_libdir}/evolution-data-server/credential-modules -%define camel_provider_dir %{_libdir}/evolution-data-server/camel-providers -%define ebook_backends_dir %{_libdir}/evolution-data-server/addressbook-backends -%define ecal_backends_dir %{_libdir}/evolution-data-server/calendar-backends -%define modules_dir %{_libdir}/evolution-data-server/registry-modules -%define uimodules_dir %{_libdir}/evolution-data-server/ui-modules - -%global dbus_service_name_address_book org.gnome.evolution.dataserver.AddressBook10 -%global dbus_service_name_calendar org.gnome.evolution.dataserver.Calendar8 -%global dbus_service_name_sources org.gnome.evolution.dataserver.Sources5 -%global dbus_service_name_user_prompter org.gnome.evolution.dataserver.UserPrompter0 - -%if "%{?_eds_dbus_services_prefix}" != "" -%global dbus_service_name_address_book %{?_eds_dbus_services_prefix}.%{dbus_service_name_address_book} -%global dbus_service_name_calendar %{?_eds_dbus_services_prefix}.%{dbus_service_name_calendar} -%global dbus_service_name_sources %{?_eds_dbus_services_prefix}.%{dbus_service_name_sources} -%global dbus_service_name_user_prompter %{?_eds_dbus_services_prefix}.%{dbus_service_name_user_prompter} -%endif - -### Abstract ### - -Name: evolution-data-server -Version: 3.46.1 -Release: 2%{?dist} -Summary: Backend data server for Evolution -License: LGPLv2+ -URL: https://wiki.gnome.org/Apps/Evolution -Source: http://download.gnome.org/sources/%{name}/3.46/%{name}-%{version}.tar.xz - -Provides: evolution-webcal = %{version} -Obsoletes: evolution-webcal < 2.24.0 - -# RH-bug #1362477 -Recommends: pinentry-gui - -%if 0%{?fedora} -# From rhughes-f20-gnome-3-12 copr -Obsoletes: compat-evolution-data-server310-libcamel < 3.12 -%endif - -### Dependencies ### - -Requires: %{name}-langpacks = %{version}-%{release} - -### Build Dependencies ### - -BuildRequires: cmake -BuildRequires: gcc -BuildRequires: gcc-c++ -BuildRequires: gettext -BuildRequires: gperf -%if %{with_docs} -BuildRequires: gtk-doc >= %{gtk_doc_version} -%endif -BuildRequires: make -BuildRequires: vala -BuildRequires: systemd - -BuildRequires: pkgconfig(gcr-3) >= %{gcr_version} -BuildRequires: pkgconfig(gcr-base-3) >= %{gcr_version} -BuildRequires: pkgconfig(gio-2.0) >= %{glib2_version} -BuildRequires: pkgconfig(gio-unix-2.0) >= %{glib2_version} -BuildRequires: pkgconfig(gtk4) >= %{gtk4_version} -BuildRequires: pkgconfig(gmodule-2.0) >= %{glib2_version} -BuildRequires: pkgconfig(icu-i18n) -BuildRequires: pkgconfig(gtk+-3.0) >= %{gtk3_version} -BuildRequires: pkgconfig(goa-1.0) >= %{goa_version} -BuildRequires: pkgconfig(libgdata) >= %{libgdata_version} -BuildRequires: pkgconfig(gweather-3.0) >= %{libgweather_version} -BuildRequires: pkgconfig(libical-glib) >= %{libical_version} -BuildRequires: pkgconfig(libsecret-unstable) >= %{libsecret_version} -BuildRequires: pkgconfig(libsoup-3.0) >= %{libsoup_version} -BuildRequires: pkgconfig(libxml-2.0) -BuildRequires: pkgconfig(nspr) -BuildRequires: pkgconfig(nss) >= %{nss_version} -BuildRequires: pkgconfig(sqlite3) >= %{sqlite_version} -BuildRequires: pkgconfig(webkit2gtk-4.1) >= %{webkit2gtk_version} -BuildRequires: pkgconfig(webkit2gtk-5.0) >= 2.36.0 -BuildRequires: pkgconfig(json-glib-1.0) >= %{json_glib_version} -BuildRequires: pkgconfig(libcanberra-gtk3) -BuildRequires: pkgconfig(gweather4) >= 3.91 - -%if %{ldap_support} -BuildRequires: openldap-devel >= 2.0.11 -%if %{static_ldap} -BuildRequires: pkgconfig(openssl) -%endif -%endif - -%if %{krb5_support} -BuildRequires: krb5-devel >= 1.11 -%endif - -%if %{phonenum_support} -BuildRequires: libphonenumber-devel -BuildRequires: protobuf-devel -BuildRequires: boost-devel -%endif - -%description -The %{name} package provides a unified backend for programs that work -with contacts, tasks, and calendar information. - -It was originally developed for Evolution (hence the name), but is now used -by other packages. - -%package devel -Summary: Development files for building against %{name} -Requires: %{name}%{?_isa} = %{version}-%{release} - -Requires: pkgconfig(goa-1.0) >= %{goa_version} -Requires: pkgconfig(libgdata) >= %{libgdata_version} -Requires: pkgconfig(gweather-3.0) >= %{libgweather_version} -Requires: pkgconfig(libical-glib) >= %{libical_version} -Requires: pkgconfig(libsecret-unstable) >= %{libsecret_version} -Requires: pkgconfig(sqlite3) >= %{sqlite_version} -Requires: pkgconfig(webkit2gtk-4.0) >= %{webkit2gtk_version} -Requires: pkgconfig(json-glib-1.0) >= %{json_glib_version} - -%description devel -Development files needed for building things which link against %{name}. - -%package langpacks -Summary: Translations for %{name} -BuildArch: noarch -Requires: %{name} = %{version}-%{release} - -%description langpacks -This package contains translations for %{name}. - -%if %{with_docs} - -%package doc -Summary: Documentation files for %{name} -BuildArch: noarch - -%description doc -This package contains developer documentation for %{name}. - -# %%{with_docs} -%endif - -%package perl -Summary: Supplemental utilities that require Perl -Requires: %{name}%{?_isa} = %{version}-%{release} -Requires: perl-interpreter - -%description perl -This package contains supplemental utilities for %{name} that require Perl. - -%package tests -Summary: Tests for the %{name} package -Requires: %{name}%{?_isa} = %{version}-%{release} - -%description tests -The %{name}-tests package contains tests that can be used to verify -the functionality of the installed %{name} package. - -%prep -%autosetup -p1 -S gendiff - -%build - -%if %{ldap_support} - -%if %{static_ldap} -%define ldap_flags -DWITH_OPENLDAP=ON -DWITH_STATIC_LDAP=ON -# Set LIBS so that configure will be able to link with static LDAP libraries, -# which depend on Cyrus SASL and OpenSSL. XXX Is the "else" clause necessary? -if pkg-config openssl ; then - export LIBS="-lsasl2 `pkg-config --libs openssl`" -else - export LIBS="-lsasl2 -lssl -lcrypto" -fi -# newer versions of openldap are built with Mozilla NSS crypto, so also need -# those libs to link with the static ldap libs -if pkg-config nss ; then - export LIBS="$LIBS `pkg-config --libs nss`" -else - export LIBS="$LIBS -lssl3 -lsmime3 -lnss3 -lnssutil3 -lplds4 -lplc4 -lnspr4" -fi -%else -%define ldap_flags -DWITH_OPENLDAP=ON -%endif - -%else -%define ldap_flags -DWITH_OPENLDAP=OFF -%endif - -%if %{krb5_support} -%define krb5_flags -DWITH_KRB5=ON -%else -%define krb5_flags -DWITH_KRB5=OFF -%endif - -%if %{largefile_support} -%define largefile_flags -DENABLE_LARGEFILE=ON -%else -%define largefile_flags -DENABLE_LARGEFILE=OFF -%endif - -%if %{phonenum_support} -%define phonenum_flags -DWITH_PHONENUMBER=ON -%else -%define phonenum_flags -DWITH_PHONENUMBER=OFF -%endif - -%define ssl_flags -DENABLE_SMIME=ON - -%if %{with_docs} -%define gtkdoc_flags -DENABLE_GTK_DOC=ON -%else -%define gtkdoc_flags -DENABLE_GTK_DOC=OFF -%endif - -if ! pkg-config --exists nss; then - echo "Unable to find suitable version of nss to use!" - exit 1 -fi - -export CPPFLAGS="-I%{_includedir}/et" -export CFLAGS="$RPM_OPT_FLAGS -DLDAP_DEPRECATED -fPIC -I%{_includedir}/et -Wno-deprecated-declarations" - -%cmake -G "Unix Makefiles" \ - -DENABLE_MAINTAINER_MODE=OFF \ - -DWITH_LIBDB=OFF \ - -DENABLE_FILE_LOCKING=fcntl \ - -DENABLE_DOT_LOCKING=OFF \ - -DENABLE_INTROSPECTION=ON \ - -DENABLE_VALA_BINDINGS=ON \ - -DENABLE_INSTALLED_TESTS=ON \ - -DWITH_SYSTEMDUSERUNITDIR=%{_userunitdir} \ - %if "%{?_eds_dbus_services_prefix}" != "" - -DDBUS_SERVICES_PREFIX=%{?_eds_dbus_services_prefix} \ - %endif - %ldap_flags %krb5_flags %ssl_flags \ - %largefile_flags %gtkdoc_flags %phonenum_flags \ - %{nil} - -%cmake_build - -%install -%cmake_install - -# make sure the directory exists, because it's owned by eds -mkdir $RPM_BUILD_ROOT/%{uimodules_dir} || : - -# give the libraries some executable bits -find $RPM_BUILD_ROOT -name '*.so.*' -exec chmod +x {} \; - -%find_lang %{name} - -%files -%license COPYING -%doc README ChangeLog NEWS -%{_libdir}/libcamel-1.2.so.64 -%{_libdir}/libcamel-1.2.so.64.0.0 -%{_libdir}/libebackend-1.2.so.11 -%{_libdir}/libebackend-1.2.so.11.0.0 -%{_libdir}/libebook-1.2.so.21 -%{_libdir}/libebook-1.2.so.21.1.3 -%{_libdir}/libebook-contacts-1.2.so.4 -%{_libdir}/libebook-contacts-1.2.so.4.0.0 -%{_libdir}/libecal-2.0.so.2 -%{_libdir}/libecal-2.0.so.2.0.0 -%{_libdir}/libedata-book-1.2.so.27 -%{_libdir}/libedata-book-1.2.so.27.0.0 -%{_libdir}/libedata-cal-2.0.so.2 -%{_libdir}/libedata-cal-2.0.so.2.0.0 -%{_libdir}/libedataserver-1.2.so.27 -%{_libdir}/libedataserver-1.2.so.27.0.0 -%{_libdir}/libedataserverui-1.2.so.4 -%{_libdir}/libedataserverui-1.2.so.4.0.0 -%{_libdir}/libedataserverui4-1.0.so -%{_libdir}/libedataserverui4-1.0.so.0 -%{_libdir}/libedataserverui4-1.0.so.0.0.0 - -%{_libdir}/girepository-1.0/Camel-1.2.typelib -%{_libdir}/girepository-1.0/EBackend-1.2.typelib -%{_libdir}/girepository-1.0/EBook-1.2.typelib -%{_libdir}/girepository-1.0/EBookContacts-1.2.typelib -%{_libdir}/girepository-1.0/ECal-2.0.typelib -%{_libdir}/girepository-1.0/EDataBook-1.2.typelib -%{_libdir}/girepository-1.0/EDataCal-2.0.typelib -%{_libdir}/girepository-1.0/EDataServer-1.2.typelib -%{_libdir}/girepository-1.0/EDataServerUI-1.2.typelib -%{_libdir}/girepository-1.0/EDataServerUI4-1.0.typelib - -%{_libexecdir}/camel-gpg-photo-saver -%{_libexecdir}/camel-index-control-1.2 -%{_libexecdir}/camel-lock-helper-1.2 -%{_libexecdir}/evolution-addressbook-factory -%{_libexecdir}/evolution-addressbook-factory-subprocess -%{_libexecdir}/evolution-calendar-factory -%{_libexecdir}/evolution-calendar-factory-subprocess -%{_libexecdir}/evolution-scan-gconf-tree-xml -%{_libexecdir}/evolution-source-registry -%{_libexecdir}/evolution-user-prompter - -%dir %{_libexecdir}/evolution-data-server -%{_libexecdir}/evolution-data-server/addressbook-export -%{_libexecdir}/evolution-data-server/evolution-alarm-notify -%{_libexecdir}/evolution-data-server/list-sources - -%{_sysconfdir}/xdg/autostart/org.gnome.Evolution-alarm-notify.desktop -%{_datadir}/applications/org.gnome.Evolution-alarm-notify.desktop - -# GSettings schemas: -%{_datadir}/GConf/gsettings/evolution-data-server.convert -%{_datadir}/glib-2.0/schemas/org.gnome.Evolution.DefaultSources.gschema.xml -%{_datadir}/glib-2.0/schemas/org.gnome.evolution-data-server.gschema.xml -%{_datadir}/glib-2.0/schemas/org.gnome.evolution-data-server.addressbook.gschema.xml -%{_datadir}/glib-2.0/schemas/org.gnome.evolution-data-server.calendar.gschema.xml -%{_datadir}/glib-2.0/schemas/org.gnome.evolution.eds-shell.gschema.xml -%{_datadir}/glib-2.0/schemas/org.gnome.evolution.shell.network-config.gschema.xml - -%{_datadir}/evolution-data-server -%{_datadir}/dbus-1/services/%{dbus_service_name_address_book}.service -%{_datadir}/dbus-1/services/%{dbus_service_name_calendar}.service -%{_datadir}/dbus-1/services/%{dbus_service_name_sources}.service -%{_datadir}/dbus-1/services/%{dbus_service_name_user_prompter}.service -%{_datadir}/pixmaps/evolution-data-server - -%{_userunitdir}/evolution-addressbook-factory.service -%{_userunitdir}/evolution-calendar-factory.service -%{_userunitdir}/evolution-source-registry.service -%{_userunitdir}/evolution-user-prompter.service - -%dir %{_libdir}/evolution-data-server -%dir %{credential_modules_dir} -%dir %{camel_provider_dir} -%dir %{ebook_backends_dir} -%dir %{ecal_backends_dir} -%dir %{modules_dir} -%dir %{uimodules_dir} - -%{_libdir}/evolution-data-server/libedbus-private.so - -# Camel providers: -%{camel_provider_dir}/libcamelimapx.so -%{camel_provider_dir}/libcamelimapx.urls - -%{camel_provider_dir}/libcamellocal.so -%{camel_provider_dir}/libcamellocal.urls - -%{camel_provider_dir}/libcamelnntp.so -%{camel_provider_dir}/libcamelnntp.urls - -%{camel_provider_dir}/libcamelpop3.so -%{camel_provider_dir}/libcamelpop3.urls - -%{camel_provider_dir}/libcamelsendmail.so -%{camel_provider_dir}/libcamelsendmail.urls - -%{camel_provider_dir}/libcamelsmtp.so -%{camel_provider_dir}/libcamelsmtp.urls - -# e-d-s extensions: -%{credential_modules_dir}/module-credentials-goa.so -%{ebook_backends_dir}/libebookbackendcarddav.so -%{ebook_backends_dir}/libebookbackendfile.so -%{ebook_backends_dir}/libebookbackendldap.so -%{ecal_backends_dir}/libecalbackendcaldav.so -%{ecal_backends_dir}/libecalbackendcontacts.so -%{ecal_backends_dir}/libecalbackendfile.so -%{ecal_backends_dir}/libecalbackendgtasks.so -%{ecal_backends_dir}/libecalbackendhttp.so -%{ecal_backends_dir}/libecalbackendweather.so -%{ecal_backends_dir}/libecalbackendwebdavnotes.so -%{modules_dir}/module-cache-reaper.so -%{modules_dir}/module-google-backend.so -%{modules_dir}/module-gnome-online-accounts.so -%{modules_dir}/module-oauth2-services.so -%{modules_dir}/module-outlook-backend.so -%{modules_dir}/module-secret-monitor.so -%{modules_dir}/module-trust-prompt.so -%{modules_dir}/module-webdav-backend.so -%{modules_dir}/module-yahoo-backend.so - -%files devel -%{_includedir}/evolution-data-server -%{_libdir}/libcamel-1.2.so -%{_libdir}/libebackend-1.2.so -%{_libdir}/libebook-1.2.so -%{_libdir}/libebook-contacts-1.2.so -%{_libdir}/libecal-2.0.so -%{_libdir}/libedata-book-1.2.so -%{_libdir}/libedata-cal-2.0.so -%{_libdir}/libedataserver-1.2.so -%{_libdir}/libedataserverui-1.2.so -%{_libdir}/pkgconfig/camel-1.2.pc -%{_libdir}/pkgconfig/evolution-data-server-1.2.pc -%{_libdir}/pkgconfig/libebackend-1.2.pc -%{_libdir}/pkgconfig/libebook-1.2.pc -%{_libdir}/pkgconfig/libebook-contacts-1.2.pc -%{_libdir}/pkgconfig/libecal-2.0.pc -%{_libdir}/pkgconfig/libedata-book-1.2.pc -%{_libdir}/pkgconfig/libedata-cal-2.0.pc -%{_libdir}/pkgconfig/libedataserver-1.2.pc -%{_libdir}/pkgconfig/libedataserverui-1.2.pc -%{_libdir}/pkgconfig/libedataserverui4-1.0.pc -%{_datadir}/gir-1.0/Camel-1.2.gir -%{_datadir}/gir-1.0/EBackend-1.2.gir -%{_datadir}/gir-1.0/EBook-1.2.gir -%{_datadir}/gir-1.0/EBookContacts-1.2.gir -%{_datadir}/gir-1.0/ECal-2.0.gir -%{_datadir}/gir-1.0/EDataBook-1.2.gir -%{_datadir}/gir-1.0/EDataCal-2.0.gir -%{_datadir}/gir-1.0/EDataServer-1.2.gir -%{_datadir}/gir-1.0/EDataServerUI-1.2.gir -%{_datadir}/gir-1.0/EDataServerUI4-1.0.gir -%{_datadir}/vala/vapi/camel-1.2.deps -%{_datadir}/vala/vapi/camel-1.2.vapi -%{_datadir}/vala/vapi/libebackend-1.2.deps -%{_datadir}/vala/vapi/libebackend-1.2.vapi -%{_datadir}/vala/vapi/libebook-1.2.deps -%{_datadir}/vala/vapi/libebook-1.2.vapi -%{_datadir}/vala/vapi/libebook-contacts-1.2.deps -%{_datadir}/vala/vapi/libebook-contacts-1.2.vapi -%{_datadir}/vala/vapi/libecal-2.0.deps -%{_datadir}/vala/vapi/libecal-2.0.vapi -%{_datadir}/vala/vapi/libedata-book-1.2.deps -%{_datadir}/vala/vapi/libedata-book-1.2.vapi -%{_datadir}/vala/vapi/libedata-cal-2.0.deps -%{_datadir}/vala/vapi/libedata-cal-2.0.vapi -%{_datadir}/vala/vapi/libedataserver-1.2.deps -%{_datadir}/vala/vapi/libedataserver-1.2.vapi -%{_datadir}/vala/vapi/libedataserverui-1.2.deps -%{_datadir}/vala/vapi/libedataserverui-1.2.vapi -%{_datadir}/vala/vapi/libedataserverui4-1.0.deps -%{_datadir}/vala/vapi/libedataserverui4-1.0.vapi - -%files langpacks -f %{name}.lang - -%if %{with_docs} - -%files doc -%{_datadir}/gtk-doc/html/* - -%endif - -%files perl -%{_libexecdir}/evolution-data-server/csv2vcard - -%files tests -%{_libdir}/libetestserverutils.so -%{_libdir}/libetestserverutils.so.0 -%{_libdir}/libetestserverutils.so.0.0.0 -%{_libexecdir}/%{name}/installed-tests -%{_datadir}/installed-tests - -%changelog -* Fri Aug 05 2022 Milan Crha - 3.44.4-1 -- Update to 3.44.4 - -* Fri Jul 01 2022 Milan Crha - 3.44.3-1 -- Update to 3.44.3 - -* Fri May 27 2022 Milan Crha - 3.44.2-1 -- Update to 3.44.2 - -* Fri Apr 22 2022 Milan Crha - 3.44.1-1 -- Update to 3.44.1 - -* Fri Mar 18 2022 Milan Crha - 3.44.0-1 -- Update to 3.44.0 - -* Fri Mar 04 2022 Milan Crha - 3.43.3-1 -- Update to 3.43.3 - -* Fri Feb 11 2022 Milan Crha - 3.43.2-1 -- Update to 3.43.2 - -* Thu Jan 20 2022 Fedora Release Engineering - 3.43.1.1-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild - -* Fri Jan 07 2022 Milan Crha - 3.43.1.1-1 -- Update to 3.43.1.1 - -* Fri Dec 03 2021 Milan Crha - 3.42.2-1 -- Update to 3.42.2 - -* Sat Nov 06 2021 Adrian Reber - 3.42.1-3 -- Rebuilt for protobuf 3.19.0 - -* Fri Nov 05 2021 Milan Crha - 3.42.1-2 -- Add patch to correct ICalCompIter component's usage - -* Fri Oct 29 2021 Milan Crha - 3.42.1-1 -- Update to 3.42.1 - -* Thu Oct 28 2021 Adam Williamson - 3.42.0-2 -- Rebuild with newer protobuf and libphonenumber - -* Fri Sep 17 2021 Milan Crha - 3.42.0-1 -- Update to 3.42.0 - -* Fri Sep 03 2021 Milan Crha - 3.41.3-1 -- Update to 3.41.3 - -* Fri Aug 13 2021 Milan Crha - 3.41.2-1 -- Update to 3.41.2 - -* Wed Jul 21 2021 Fedora Release Engineering - 3.41.1-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild - -* Fri Jul 09 2021 Milan Crha - 3.41.1-1 -- Update to 3.41.1 - -* Fri Jun 04 2021 Milan Crha - 3.40.2-1 -- Update to 3.40.2 - -* Wed May 19 2021 Pete Walter - 3.40.1-2 -- Rebuild for ICU 69 - -* Fri Apr 30 2021 Milan Crha - 3.40.1-1 -- Update to 3.40.1 - -* Mon Mar 29 2021 Milan Crha - 3.40.0-3 -- Resolves: #1943818 (ESourceWebDAV: Fallback to SHA1 on SSL trust verification if needed) - -* Fri Mar 26 2021 Kalev Lember - 3.40.0-2 -- Drop unnecessary requires on dconf - -* Fri Mar 19 2021 Milan Crha - 3.40.0-1 -- Update to 3.40.0 - -* Fri Mar 12 2021 Milan Crha - 3.39.3-1 -- Update to 3.39.3 - -* Sat Feb 13 2021 Kalev Lember - 3.39.2-3 -- Drop temporary ABI compat - -* Fri Feb 12 2021 Kalev Lember - 3.39.2-2 -- Keep temporary ABI compat with previous soname - -* Fri Feb 12 2021 Milan Crha - 3.39.2-1 -- Update to 3.39.2 - -* Fri Feb 05 2021 Kalev Lember - 3.39.1-3 -- Recommend pinentry-gui virtual provide, rather than pinentry-gtk - -* Tue Jan 26 2021 Fedora Release Engineering - 3.39.1-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild - -* Fri Jan 08 2021 Milan Crha - 3.39.1-1 -- Update to 3.39.1 - -* Fri Nov 20 2020 Milan Crha - 3.38.2-1 -- Update to 3.38.2 - -* Mon Oct 05 2020 Milan Crha - 3.38.1-2 -- Correct D-Bus service file name - it can change when _eds_dbus_services_prefix is defined -- Replace perl-generators build time dependency with perl-interpreter install time dependency - -* Fri Oct 02 2020 Milan Crha - 3.38.1-1 -- Update to 3.38.1 - -* Sat Sep 26 2020 Adrian Reber - 3.38.0-2 -- Rebuilt for protobuf 3.13 - -* Fri Sep 11 2020 Milan Crha - 3.38.0-1 -- Update to 3.38.0 - -* Fri Sep 04 2020 Milan Crha - 3.37.92-1 -- Update to 3.37.92 - -* Fri Aug 07 2020 Milan Crha - 3.37.90-1 -- Update to 3.37.90 - -* Mon Jul 27 2020 Fedora Release Engineering - 3.37.3-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild - -* Tue Jul 14 2020 Milan Crha - 3.37.3-3 -- Rebuild in a side tag for bodhi, to be able to create an update - -* Fri Jul 03 2020 Milan Crha - 3.37.3-2 -- Add a patch for missing G_BEGIN_DECLS in e-soup-logger.h - -* Fri Jul 03 2020 Milan Crha - 3.37.3-1 -- Update to 3.37.3 - -* Tue Jun 23 2020 Adam Williamson - 3.37.2-2 -- Rebuild with newer protobuf and libphonenumber -- Backport several fixes for annoying bugs from mainline - -* Fri May 29 2020 Milan Crha - 3.37.2-1 -- Update to 3.37.2 - -* Sun May 17 2020 Pete Walter - 3.37.1-2 -- Rebuild for ICU 67 - -* Fri Apr 24 2020 Milan Crha - 3.37.1-1 -- Update to 3.37.1 - -* Wed Apr 01 2020 Nikhil Jha - 3.36.1-3 -- Build with phonenumber support - -* Mon Mar 30 2020 Milan Crha - 3.36.1-2 -- Remove libdb dependency - -* Fri Mar 27 2020 Milan Crha - 3.36.1-1 -- Update to 3.36.1 - -* Fri Mar 06 2020 Milan Crha - 3.36.0-1 -- Update to 3.36.0 - -* Fri Feb 28 2020 Milan Crha - 3.35.92-1 -- Update to 3.35.92 - -* Fri Feb 14 2020 Milan Crha - 3.35.91-1 -- Update to 3.35.91 - -* Fri Jan 31 2020 Milan Crha - 3.35.90-1 -- Update to 3.35.90 - -* Tue Jan 28 2020 Fedora Release Engineering - 3.35.3-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild - -* Tue Jan 07 2020 Milan Crha - 3.35.3-2 -- Add patch for RH bug #1754321 (alarm-notify: Double-free with certain types of the reminder) - -* Fri Jan 03 2020 Milan Crha - 3.35.3-1 -- Update to 3.35.3 - -* Fri Nov 22 2019 Milan Crha - 3.35.2-1 -- Update to 3.35.2 - -* Fri Nov 01 2019 Pete Walter - 3.35.1-2 -- Rebuild for ICU 65 - -* Fri Oct 11 2019 Milan Crha - 3.35.1-1 -- Update to 3.35.1 - -* Mon Oct 07 2019 Milan Crha - 3.34.1-1 -- Update to 3.34.1 - -* Mon Sep 09 2019 Milan Crha - 3.34.0-1 -- Update to 3.34.0 - -* Mon Sep 02 2019 Milan Crha - 3.33.92-1 -- Update to 3.33.92 - -* Mon Aug 19 2019 Milan Crha - 3.33.91-1 -- Update to 3.33.91 - -* Mon Aug 05 2019 Milan Crha - 3.33.90-1 -- Update to 3.33.90 - -* Thu Jul 25 2019 Fedora Release Engineering - 3.33.4-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild - -* Mon Jul 15 2019 Milan Crha - 3.33.4-1 -- Update to 3.33.4 - -* Mon Jul 08 2019 Kalev Lember - 3.33.3-2 -- Rebuilt for libgweather soname bump - -* Mon Jun 17 2019 Milan Crha - 3.33.3-1 -- Update to 3.33.3 - -* Mon May 20 2019 Milan Crha - 3.33.2-1 -- Update to 3.33.2 - -* Mon Apr 22 2019 Milan Crha - 3.33.1-1 -- Update to 3.33.1 - -* Mon Apr 08 2019 Milan Crha - 3.32.1-1 -- Update to 3.32.1 - -* Mon Mar 11 2019 Milan Crha - 3.32.0-1 -- Update to 3.32.0 - -* Mon Mar 04 2019 Milan Crha - 3.31.92-1 -- Update to 3.31.92 - -* Mon Feb 18 2019 Milan Crha - 3.31.91-1 -- Update to 3.31.91 - -* Mon Feb 04 2019 Kalev Lember - 3.31.90-2 -- Update BRs for vala packaging changes - -* Mon Feb 04 2019 Milan Crha - 3.31.90-1 -- Update to 3.31.90 - -* Thu Jan 31 2019 Fedora Release Engineering - 3.31.4-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild - -* Wed Jan 23 2019 Pete Walter - 3.31.4-3 -- Rebuild for ICU 63 - -* Mon Jan 07 2019 Milan Crha - 3.31.4-2 -- Fix typo in the latest Igor Gnatenko's commit (Remove obsolete scriptlets) - -* Mon Jan 07 2019 Milan Crha - 3.31.4-1 -- Update to 3.31.4 - -* Mon Dec 10 2018 Milan Crha - 3.31.3-1 -- Update to 3.31.3 - -* Mon Nov 12 2018 Milan Crha - 3.31.2-1 -- Update to 3.31.2 - -* Mon Oct 08 2018 Milan Crha - 3.31.1-1 -- Update to 3.31.1 - -* Mon Sep 24 2018 Milan Crha - 3.30.1-1 -- Update to 3.30.1 -- Remove patch for GNOME Evolution issue #86 (fixed upstream) - -* Mon Sep 03 2018 Milan Crha - 3.30.0-1 -- Update to 3.30.0 -- Add patch for GNOME Evolution issue #86 (Quoting of plain text mail into HTML mode mangles deeper levels) - -* Mon Aug 27 2018 Milan Crha - 3.29.92-1 -- Update to 3.29.92 - -* Mon Aug 13 2018 Milan Crha - 3.29.91-1 -- Update to 3.29.91 - -* Mon Jul 30 2018 Milan Crha - 3.29.90-1 -- Update to 3.29.90 - -* Mon Jul 16 2018 Milan Crha - 3.29.4-1 -- Update to 3.29.4 - -* Fri Jul 13 2018 Fedora Release Engineering - 3.29.3-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild - -* Tue Jul 10 2018 Pete Walter - 3.29.3-2 -- Rebuild for ICU 62 - -* Mon Jun 18 2018 Milan Crha - 3.29.3-1 -- Update to 3.29.3 - -* Mon May 21 2018 Milan Crha - 3.29.2-1 -- Update to 3.29.2 - -* Mon Apr 30 2018 Pete Walter - 3.29.1-2 -- Rebuild for ICU 61.1 - -* Mon Apr 16 2018 Milan Crha - 3.29.1-1 -- Update to 3.29.1 -- Remove fix to strip closing > from URLs when linkifying (BGO#795108) (Fixed upstream) -- Drop build dependency on python - -* Tue Apr 10 2018 Adam Williamson - 3.28.1-2 -- Backport fix to strip closing > from URLs when linkifying (BGO#795108) - -* Mon Apr 09 2018 Milan Crha - 3.28.1-1 -- Update to 3.28.1 - -* Mon Mar 12 2018 Milan Crha - 3.28.0-1 -- Update to 3.28.0 - -* Mon Mar 05 2018 Milan Crha - 3.27.92-1 -- Update to 3.27.92 - -* Mon Feb 19 2018 Milan Crha - 3.27.91-1 -- Update to 3.27.91 - -* Fri Feb 09 2018 Igor Gnatenko - 3.27.90-2 -- Escape macros in %%changelog - -* Tue Feb 06 2018 Milan Crha - 3.27.90-1 -- Update to 3.27.90 - -* Mon Feb 05 2018 Kalev Lember - 3.27.4-2 -- Rebuilt for libgweather soname bump - -* Mon Jan 08 2018 Milan Crha - 3.27.4-1 -- Update to 3.27.4 - -* Mon Dec 11 2017 Milan Crha - 3.27.3-1 -- Update to 3.27.3 - -* Thu Nov 30 2017 Pete Walter - 3.27.2-2 -- Rebuild for ICU 60.1 - -* Mon Nov 13 2017 Milan Crha - 3.27.2-1 -- Update to 3.27.2 - -* Mon Nov 06 2017 Milan Crha - 3.27.1-2 -- Rebuild for libical 3.0.0 - -* Mon Oct 16 2017 Milan Crha - 3.27.1-1 -- Update to 3.27.1 - -* Mon Oct 02 2017 Milan Crha - 3.26.1-1 -- Update to 3.26.1 - -* Mon Sep 11 2017 Milan Crha - 3.26.0-1 -- Update to 3.26.0 - -* Mon Sep 04 2017 Milan Crha - 3.25.92-1 -- Update to 3.25.92 - -* Tue Aug 22 2017 Ville Skyttä - 3.25.91-2 -- Own the %%{_libexecdir}/evolution-data-server dir -- Install COPYING as %%license - -* Mon Aug 21 2017 Milan Crha - 3.25.91-1 -- Update to 3.25.91 - -* Mon Aug 07 2017 Milan Crha - 3.25.90-1 -- Update to 3.25.90 - -* Wed Aug 02 2017 Fedora Release Engineering - 3.25.4-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild - -* Wed Jul 26 2017 Fedora Release Engineering - 3.25.4-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild - -* Mon Jul 17 2017 Milan Crha - 3.25.4-1 -- Update to 3.25.4 - -* Mon Jun 19 2017 Milan Crha - 3.25.3-1 -- Update to 3.25.3 - -* Mon May 22 2017 Milan Crha - 3.25.2-1 -- Update to 3.25.2 - -* Thu Apr 27 2017 Milan Crha - 3.25.1-2 -- Split translations into separate package - -* Mon Apr 24 2017 Milan Crha - 3.25.1-1 -- Update to 3.25.1 - -* Mon Apr 10 2017 Milan Crha - 3.24.1-1 -- Update to 3.24.1 - -* Mon Mar 20 2017 Milan Crha - 3.24.0-1 -- Update to 3.24.0 - -* Mon Mar 13 2017 Milan Crha - 3.23.92-1 -- Update to 3.23.92 - -* Mon Feb 27 2017 Milan Crha - 3.23.91-1 -- Update to 3.23.91 - -* Mon Feb 13 2017 Milan Crha - 3.23.90-1 -- Update to 3.23.90 - -* Fri Feb 10 2017 Fedora Release Engineering - 3.23.4-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild - -* Mon Jan 16 2017 Milan Crha - 3.23.4-1 -- Update to 3.23.4 -- Add Recommends: pinentry-gtk (RH bug #1362477) - -* Mon Dec 12 2016 Milan Crha - 3.23.3-1 -- Update to 3.23.3 -- Remove the patch for RH bug #1395987 (fixed upstream) - -* Mon Nov 21 2016 Milan Crha - 3.23.2-2 -- Add a patch for RH bug #1395987 (Build GSSAPI support for Camel) - -* Mon Nov 21 2016 Milan Crha - 3.23.2-1 -- Update to 3.23.2 - -* Mon Oct 24 2016 Milan Crha - 3.23.1-1 -- Update to 3.23.1 - -* Mon Oct 10 2016 Milan Crha - 3.22.1-1 -- Update to 3.22.1 - -* Mon Sep 19 2016 Milan Crha - 3.22.0-1 -- Update to 3.22.0 - -* Mon Sep 12 2016 Milan Crha - 3.21.92-1 -- Update to 3.21.92 - -* Mon Aug 29 2016 Milan Crha - 3.21.91-1 -- Update to 3.21.91 - -* Mon Aug 15 2016 Milan Crha - 3.21.90-1 -- Update to 3.21.90 - -* Mon Jul 18 2016 Milan Crha - 3.21.4-1 -- Update to 3.21.4 -- Introduce new "perl" subpackage (code moved from the evolution) - -* Mon Jun 20 2016 Milan Crha - 3.21.3-1 -- Update to 3.21.3 - -* Mon May 23 2016 Milan Crha - 3.21.2-1 -- Update to 3.21.2 - -* Mon Apr 25 2016 Milan Crha - 3.21.1-1 -- Update to 3.21.1 - -* Fri Apr 15 2016 David Tardon - 3.20.1-2 -- rebuild for ICU 57.1 - -* Mon Apr 11 2016 Milan Crha - 3.20.1-1 -- Update to 3.20.1 - -* Mon Mar 21 2016 Milan Crha - 3.20.0-1 -- Update to 3.20.0 - -* Mon Mar 14 2016 Milan Crha - 3.19.92-1 -- Update to 3.19.92 - -* Mon Feb 29 2016 Milan Crha - 3.19.91-1 -- Update to 3.19.91 - -* Mon Feb 15 2016 Milan Crha - 3.19.90-1 -- Update to 3.19.90 - -* Wed Feb 03 2016 Fedora Release Engineering - 3.19.4-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild - -* Mon Jan 18 2016 David Tardon - 3.19.4-2 -- rebuild for libical 2.0.0 - -* Mon Jan 18 2016 Milan Crha - 3.19.4-1 -- Update to 3.19.4 - -* Mon Dec 14 2015 Milan Crha - 3.19.3-1 -- Update to 3.19.3 - -* Mon Nov 23 2015 Milan Crha - 3.19.2-1 -- Update to 3.19.2 - -* Wed Oct 28 2015 David Tardon - 3.19.1-2 -- rebuild for ICU 56.1 - -* Mon Oct 26 2015 Milan Crha - 3.19.1-1 -- Update to 3.19.1 - -* Mon Oct 12 2015 Milan Crha - 3.18.1-1 -- Update to 3.18.1 - -* Mon Sep 21 2015 Milan Crha - 3.18.0-1 -- Update to 3.18.0 -- Remove a patch for compatibility with glib 2.45.8 (fixed upstream) - -* Thu Sep 17 2015 Kalev Lember - 3.17.92-2 -- Backport a patch for compatibility with glib 2.45.8 - -* Mon Sep 14 2015 Milan Crha - 3.17.92-1 -- Update to 3.17.92 - -* Mon Aug 31 2015 Milan Crha - 3.17.91-1 -- Update to 3.17.91 - -* Mon Aug 17 2015 Milan Crha - 3.17.90-1 -- Update to 3.17.90 - -* Mon Jul 20 2015 Milan Crha - 3.17.4-1 -- Update to 3.17.4 - -* Mon Jun 22 2015 Milan Crha - 3.17.3-1 -- Update to 3.17.3 - -* Wed Jun 17 2015 Fedora Release Engineering - 3.17.2-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild - -* Mon May 25 2015 Milan Crha - 3.17.2-1 -- Update to 3.17.2 - -* Mon Apr 27 2015 Milan Crha - 3.17.1-1 -- Update to 3.17.1 - -* Mon Apr 13 2015 Milan Crha - 3.16.1-1 -- Update to 3.16.1 - -* Mon Mar 23 2015 Milan Crha - 3.16.0-1 -- Update to 3.16.0 - -* Mon Mar 16 2015 Milan Crha - 3.15.92-1 -- Update to 3.15.92 -- Remove patch to fix libdb configure.ac check (fixed upstream) - -* Mon Mar 02 2015 Milan Crha - 3.15.91-1 -- Update to 3.15.91 -- Add patch to fix libdb configure.ac check - -* Mon Feb 16 2015 Milan Crha - 3.13.90-1 -- Update to 3.13.90 - -* Mon Jan 26 2015 David Tardon - 3.13.10-2 -- rebuild for ICU 54.1 - -* Mon Jan 26 2015 Milan Crha - 3.13.10-1 -- Update to 3.13.10 - -* Mon Dec 22 2014 Milan Crha - 3.13.9-1 -- Update to 3.13.9 - -* Mon Nov 24 2014 Milan Crha - 3.13.8-1 -- Update to 3.13.8 - -* Sun Nov 16 2014 Kalev Lember - 3.13.7-2 -- Obsolete compat-evolution-data-server310-libcamel from rhughes-f20-gnome-3-12 - copr - -* Mon Oct 27 2014 Milan Crha - 3.13.7-1 -- Update to 3.13.7 -- Re-enable parallel build - -* Mon Sep 22 2014 Milan Crha - 3.13.6-1 -- Update to 3.13.6 -- Remove patch for GNOME bug #735311 (fixed upstream) - -* Wed Aug 27 2014 Milan Crha - 3.13.5-3 -- Add patch for GNOME bug #735311 (Adapt to new Google HTTP restriction) - -* Tue Aug 26 2014 David Tardon - 3.13.5-2 -- rebuild for ICU 53.1 - -* Mon Aug 25 2014 Milan Crha - 3.13.5-1 -- Update to 3.13.5 - -* Sat Aug 16 2014 Fedora Release Engineering - 3.13.4-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild - -* Wed Jul 30 2014 Milan Crha - 3.13.4-1 -- Update to 3.13.4 -- Introduce tests subpackage with installed tests -- Remove patch for GNOME bug 733081 (fixed upstream) - -* Tue Jul 22 2014 Kalev Lember - 3.12.4-4 -- Rebuilt for gobject-introspection 1.41.4 - -* Fri Jul 18 2014 Milan Crha - 3.12.4-3 -- Update patch for GNOME bug 733081 (IMAPx job stuck with IDLE) - -* Wed Jul 16 2014 Milan Crha - 3.12.4-2 -- Add patch for GNOME bug 733081 (IMAPx job stuck with IDLE) - -* Mon Jul 14 2014 Milan Crha - 3.12.4-1 -- Update to 3.12.4 - -* Mon Jun 09 2014 Milan Crha - 3.12.3-1 -- Update to 3.12.3 - -* Sat Jun 07 2014 Fedora Release Engineering - 3.12.2-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild - -* Mon May 12 2014 Milan Crha - 3.12.2-1 -- Update to 3.12.2 - -* Wed Apr 16 2014 Adam Williamson - 3.12.1-2 -- rebuild for new libgdata - -* Mon Apr 14 2014 Milan Crha - 3.12.1-1 -- Update to 3.12.1 - -* Mon Mar 24 2014 Milan Crha - 3.12.0-1 -- Update to 3.12.0 - -* Mon Mar 17 2014 Milan Crha - 3.11.92-1 -- Update to 3.11.92 - -* Mon Mar 03 2014 Milan Crha - 3.11.91-1 -- Update to 3.11.91 - -* Mon Feb 17 2014 Milan Crha - 3.11.90-1 -- Update to 3.11.90 - -* Fri Feb 14 2014 Adam Williamson - 3.11.5-3 -- rebuild for new icu - -* Mon Feb 03 2014 Milan Crha - 3.11.5-2 -- Avoid compiler warning due to incorrect krb5 include folder - -* Mon Feb 03 2014 Milan Crha - 3.11.5-1 -- Update to 3.11.5 - -* Mon Jan 13 2014 Milan Crha - 3.11.4-1 -- Update to 3.11.4 - -* Sun Dec 22 2013 Ville Skyttä - 3.11.2-3 -- Drop empty AUTHORS from docs. - -* Thu Nov 21 2013 Milan Crha - 3.11.2-2 -- Rebuild for new libical (RH bug #1023020) - -* Mon Nov 18 2013 Milan Crha - 3.11.2-1 -- Update to 3.11.2 -- Conditionally build devel documentation -- Disable compiler warnings about deprecated symbols - -* Tue Oct 22 2013 Matthew Barnes - 3.11.1-1 -- Update to 3.11.1 - -* Mon Oct 14 2013 Milan Crha - 3.10.1-1 -- Update to 3.10.1 - -* Mon Sep 23 2013 Milan Crha - 3.10.0-1 -- Update to 3.10.0 - -* Mon Sep 16 2013 Milan Crha - 3.9.92-1 -- Update to 3.9.92 - -* Mon Sep 02 2013 Milan Crha - 3.9.91-1 -- Update to 3.9.91 - -* Mon Aug 19 2013 Milan Crha - 3.9.90-1 -- Update to 3.9.90 - -* Mon Aug 12 2013 Milan Crha - 3.9.5-3 -- Bump nss version requirement to 3.14 - -* Tue Aug 06 2013 Adam Williamson - 3.9.5-2 -- rebuild for new libgweather - -* Mon Jul 29 2013 Milan Crha - 3.9.5-1 -- Update to 3.9.5 - -* Sun Jul 21 2013 Matthew Barnes - 3.9.4-2 -- Require dconf for dconf-service, necessary for evolution-data-server - to operate properly. - -* Mon Jul 08 2013 Milan Crha - 3.9.4-1 -- Update to 3.9.4 - -* Fri Jun 21 2013 Kalev Lember - 3.9.3-2 -- Rebuilt for libgweather 3.9.3 soname bump - -* Mon Jun 17 2013 Milan Crha - 3.9.3-1 -- Update to 3.9.3 - -* Mon May 27 2013 Milan Crha - 3.9.2-1 -- Update to 3.9.2 - -* Fri May 24 2013 Rex Dieter 3.9.1-2 -- rebuild (libical) - -* Mon Apr 29 2013 Milan Crha - 3.9.1-1 -- Update to 3.9.1 - -* Mon Mar 25 2013 Milan Crha - 3.8.0-1 -- Update to 3.8.0 - -* Mon Mar 18 2013 Milan Crha - 3.7.92-1 -- Update to 3.7.92 - -* Mon Mar 04 2013 Milan Crha - 3.7.91-1 -- Update to 3.7.91 -- Remove an upstream .pc files fix for a libebook split (fixed upstream) -- Remove patch gor GNOME bug #693101 (fixed upstream) -- Remove patch for Red Hat bug #912503 (fixed upstream) - -* Thu Feb 21 2013 Milan Crha - 3.7.90-3 -- Add patch gor GNOME bug #693101 (IMAPx vanishes folder summary) -- Add patch for Red Hat bug #912503 (incorrect G_BEGIN/END_DECLS) - -* Mon Feb 18 2013 Milan Crha - 3.7.90-2 -- Add an upstream .pc files fix for a libebook split - -* Mon Feb 18 2013 Milan Crha - 3.7.90-1 -- Update to 3.7.90 - -* Mon Feb 04 2013 Milan Crha - 3.7.5-1 -- Update to 3.7.5 - -* Mon Jan 14 2013 Milan Crha - 3.7.4-1 -- Update to 3.7.4 -- Add --add-missing to automake call - -* Thu Dec 20 2012 Kalev Lember - 3.7.3-2 -- Rebuilt for libgweather 3.7.3 soname bump - -* Tue Dec 18 2012 Matthew Barnes - 3.7.3-1 -- Update to 3.7.3 -- Remove obsolete BuildRequires: - bison - dbus-glib-devel - libgnome-keyring-devel - liboauth-devel - -* Mon Nov 19 2012 Milan Crha - 3.7.2.1-1 -- Update to 3.7.2.1 - -* Mon Oct 22 2012 Milan Crha - 3.7.1-1 -- Update to 3.7.1 - -* Mon Sep 17 2012 Milan Crha - 3.5.92-1 -- Update to 3.5.92 - -* Mon Sep 03 2012 Milan Crha - 3.5.91-1 -- Update to 3.5.91 - -* Mon Aug 20 2012 Milan Crha - 3.5.90-1 -- Update to 3.5.90 - -* Mon Aug 06 2012 Milan Crha - 3.5.5-1 -- Update to 3.5.5 -- Remove patch for less memory usage from vTrash camel folders (fixed upstream) - -* Thu Jul 26 2012 Milan Crha - 3.5.4-3 -- Add patch for less memory usage from vTrash camel folders - -* Thu Jul 19 2012 Fedora Release Engineering - 3.5.4-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild - -* Mon Jul 16 2012 Milan Crha - 3.5.4-1 -- Update to 3.5.4 -- Change dependency from db4 to libdb - -* Sun Jul 1 2012 Matthew Barnes - 3.5.3.1-1 -- Update to 3.5.3.1 - -* Wed Jun 27 2012 Matthew Barnes - 3.5.3-3 -- Avoid exposing in a public header file. - -* Wed Jun 27 2012 Matthias Clasen - 3.5.3-2 -- Build against libgweather 3.5 - -* Mon Jun 25 2012 Matthew Barnes - 3.5.3-1 -- Update to 3.5.3 -- Add BR: gcr-devel >= 3.4 -- Drop BR: GConf2-devel \o/ - -* Mon Jun 04 2012 Milan Crha - 3.5.2-1 -- Update to 3.5.2 - -* Sun Apr 29 2012 Matthew Barnes - 3.5.1-1 -- Update to 3.5.1 - -* Tue Apr 24 2012 Kalev Lember - 3.4.1-2 -- Silence rpm scriptlet output - -* Mon Apr 16 2012 Richard Hughes - 3.4.1-1 -- Update to 3.4.1 - -* Mon Mar 26 2012 Milan Crha - 3.4.0-1 -- Update to 3.4.0 - -* Mon Mar 19 2012 Milan Crha - 3.3.92-1 -- Update to 3.3.92 - -* Tue Mar 06 2012 Milan Crha - 3.3.91-1 -- Update to 3.3.91 - -* Mon Feb 20 2012 Milan Crha - 3.3.90-1 -- Update to 3.3.90 - -* Mon Feb 06 2012 Milan Crha - 3.3.5-1 -- Update to 3.3.5 - -* Mon Jan 16 2012 Milan Crha - 3.3.4-1 -- Update to 3.3.4 - -* Fri Jan 13 2012 Fedora Release Engineering - 3.3.3-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild - -* Fri Dec 30 2011 Matthew Barnes - 3.3.3-2 -- Require libgnome-keyring-devel instead of gnome-keyring-devel. - -* Mon Dec 19 2011 Milan Crha - 3.3.3-1 -- Update to 3.3.3 - -* Mon Nov 21 2011 Milan Crha - 3.3.2-1 -- Update to 3.3.2 -- Remove patch to not call g_thread_init() (fixed upstream) - -* Mon Oct 24 2011 Milan Crha - 3.3.1-1 -- Update to 3.3.1 -- Add patch to not call g_thread_init() - -* Mon Sep 26 2011 Milan Crha - 3.2.0-1 -- Update to 3.2.0 - -* Mon Sep 19 2011 Milan Crha - 3.1.92-1 -- Update to 3.1.92 - -* Mon Sep 05 2011 Milan Crha - 3.1.91-1 -- Update to 3.1.91 -- Enable introspection and vala bindings - -* Mon Aug 29 2011 Milan Crha - 3.1.90-1 -- Update to 3.1.90 - -* Mon Aug 15 2011 Milan Crha - 3.1.5-1 -- Update to 3.1.5 - -* Sat Jul 23 2011 Matthew Barnes - 3.1.4-1 -- Update to 3.1.4 - -* Mon Jul 04 2011 Matthew Barnes - 3.1.3-1 -- Update to 3.1.3 -- Remove patch for libgdata-0.9.0 (fixed upstream). -- Disable SMP flags; some source directories are racy. -- Remove keyring option; gnome-keyring is mandatory now. -- Add BR: gnome-online-accounts-devel and liboauth-devel - -* Tue Jun 14 2011 Milan Crha - 3.1.2-1 -- Update to 3.1.2 -- Add patch by Philip Withnall to build against libgdata-0.9.0 - -* Mon May 09 2011 Milan Crha - 3.1.1-1 -- Update to 3.1.1 -- Drop groupwise backends, as it was split out upstream - -* Mon Apr 04 2011 Milan Crha - 3.0.0-1 -- Update to 3.0.0 - -* Mon Mar 21 2011 Milan Crha - 2.91.92-1 -- Update to 2.91.92 - -* Mon Mar 07 2011 Milan Crha - 2.91.91-1 -- Update to 2.91.91 - -* Mon Feb 21 2011 Milan Crha - 2.91.90-1 -- Update to 2.91.90 - -* Fri Feb 11 2011 Matthias Clasen 2.91.6-4 -- Rebuild against newer gtk - -* Tue Feb 08 2011 Fedora Release Engineering - 2.91.6-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild - -* Wed Feb 2 2011 Matthias Clasen - 2.91.6-2 -- Rebuild - -* Mon Jan 31 2011 Milan Crha - 2.91.6-1 -- Update to 2.91.6 -- Requires gtk3. - -* Mon Jan 31 2011 Caolánc McNamara - 2.91.5-4 -- Rebuild against new libgweather - -* Tue Jan 18 2011 Matthias Clasen - 2.91.5-3 -- Rebuild against new libgdata - -* Thu Jan 13 2011 Matthias Clasen - 2.91.5-2 -- Move girs to -devel - -* Mon Jan 10 2011 Milan Crha - 2.91.5-1 -- Update to 2.91.5 - -* Mon Dec 20 2010 Milan Crha - 2.91.4-1 -- Update to 2.91.4 - -* Mon Nov 29 2010 Milan Crha - 2.91.3-1 -- Update to 2.91.3 - -* Mon Nov 08 2010 Milan Crha - 2.91.2-1 -- Update to 2.91.2 - -* Fri Nov 05 2010 Milan Crha - 2.91.1-2 -- Rebuild against newer libxml2 - -* Mon Oct 18 2010 Milan Crha - 2.91.1-1 -- Update to 2.91.1 - -* Mon Oct 11 2010 Milan Crha - 2.91.0-1 -- Update to 2.91.0 - -* Wed Sep 29 2010 jkeating - 2.31.92-2 -- Rebuilt for gcc bug 634757 - -* Mon Sep 13 2010 Milan Crha - 2.31.92-1.fc15 -- Update to 2.31.92 - -* Mon Aug 30 2010 Milan Crha - 2.31.91-1.fc14 -- Update to 2.31.91 - -* Mon Aug 16 2010 Matthew Barnes - 2.31.90-1.fc14 -- Update to 2.31.90 - -* Mon Aug 02 2010 Matthew Barnes - 2.31.6-1.fc14 -- Update to 2.31.6 -- Resume GSEAL usage. -- Drop dbus-glib requirement. -- Bump glib2 requirement to 2.25.12. -- Roll back eds_base_version to 2.32. - -* Tue Jul 13 2010 Milan Crha - 2.31.5-1.fc14 -- Update to 2.31.5 - -* Mon Jun 07 2010 Milan Crha - 2.31.3-1.fc14 -- Update to 2.31.3 - -* Tue May 25 2010 Matthew Barnes - 2.31.2-2.fc14 -- Enable largefile support in Camel, to help debug GNOME bug #612082. - Debian turned this on recently and is experiencing problems, and I - want to get to the bottom of it and finally break this 2 GB barrier. - -* Mon May 24 2010 Milan Crha - 2.31.2-1.fc14 -- Update to 2.31.2 -- libecalbackendgoogle dropped. - -* Mon May 03 2010 Milan Crha - 2.31.1-1.fc14 -- Update to 2.31.1 -- Update BuildRequires. -- Remove imap4 camel provider support (dropped upstream). - -* Tue Feb 09 2010 Milan Crha - 2.29.90-3.fc13 -- Return back BuildRequires: libglade2-devel. - -* Mon Feb 08 2010 Matthew Barnes - 2.29.90-2.fc13 -- Rebuild to hopefully fix pkgconfig auto-provides glitch. - -* Mon Feb 08 2010 Milan Crha - 2.29.90-1.fc13 -- Update to 2.29.90 -- Removed unneeded BuildRequires. - -* Mon Jan 25 2010 Milan Crha - 2.29.6-1.fc13 -- Update to 2.29.6 - -* Tue Jan 12 2010 Milan Crha - 2.29.5-1.fc13 -- Update to 2.29.5 -- Correct Source URL - -* Mon Dec 21 2009 Milan Crha - 2.29.4-1.fc13 -- Update to 2.29.4 -- Remove patch for GNOME bug #487988 (fixed upstream). - -* Wed Dec 09 2009 Bastien Nocera 2.29.3-3 -- Remove libgnome and libgnomeui requirements - -* Wed Dec 02 2009 Matthew Barnes - 2.29.3-2.fc13 -- Devel subpackage does not need to require doc subpackage. - -* Mon Nov 30 2009 Milan Crha - 2.29.3-1.fc13 -- Update to 2.29.3 - -* Mon Nov 16 2009 Milan Crha - 2.29.2-1.fc13 -- Update to 2.29.2 - -* Tue Oct 27 2009 Matthew Barnes - 2.29.1-1.fc13 -- Update to 2.29.1 -- Bump eds_base_version to 2.30. -- Add dbus-glib build requirement. -- Drop Bonobo + ORBit dependency (yay!). -- Remove option to use OpenSSL instead of NSS. -- Drop eds_api_version definition since it will never change. -- Remove patch for GNOME bug #373146 (deviates from upstream). - -* Mon Sep 21 2009 Milan Crha - 2.28.0-1.fc12 -- Update to 2.28.0 - -* Mon Sep 07 2009 Milan Crha - 2.27.92-1.fc12 -- Update to 2.27.92 - -* Thu Aug 27 2009 Matthew Barnes - 2.27.91-3.fc12 -- Rebuild with old OpenSSL, er something... - -* Thu Aug 27 2009 Tomas Mraz - 2.27.91-2.fc12 -- rebuilt with new openssl - -* Mon Aug 24 2009 Milan Crha - 2.27.91-1.fc12 -- Update to 2.27.91 - -* Mon Aug 10 2009 Milan Crha - 2.27.90-1.fc12 -- Update to 2.27.90 - -* Mon Jul 27 2009 Milan Crha - 2.27.5-1.fc12 -- Update to 2.27.5 - -* Fri Jul 24 2009 Fedora Release Engineering - 2.27.4-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild - -* Mon Jul 13 2009 Matthew Barnes - 2.27.4-1.fc12 -- Update to 2.27.4 -- Remove patch for RH bug #505661 (fixed upstream). - -* Thu Jul 02 2009 Matthew Barnes - 2.27.3-3.fc12 -- Add patch for RH bug #505661 (crash on startup). - -* Wed Jul 01 2009 Milan Crha - 2.27.3-2.fc12 -- Rebuild against newer gcc - -* Mon Jun 15 2009 Matthew Barnes - 2.27.3-1.fc12 -- Update to 2.27.3 - -* Mon May 25 2009 Matthew Barnes - 2.27.2-1.fc12 -- Update to 2.27.2 -- Remove strict_build_settings since the settings are used upstream now. - -* Mon May 04 2009 Matthew Barnes - 2.27.1-1.fc12 -- Update to 2.27.1 -- Bump evo_major to 2.28. - -* Wed Apr 15 2009 Matthew Barnes - 2.26.1.1-1.fc11 -- Update to 2.26.1.1 - -* Mon Apr 13 2009 Matthew Barnes - 2.26.1-1.fc11 -- Update to 2.26.1 - -* Mon Mar 16 2009 Matthew Barnes - 2.26.0-1.fc11 -- Update to 2.26.0 -- Remove patch for RH bug #568332 (fixed upstream). -- Remove patch for GNOME bug #573240 (reverted upstream). - -* Fri Mar 13 2009 Matthew Barnes - 2.25.92-4.fc11 -- Revise patch for RH bug #568332 to match upstream commit. - -* Thu Mar 12 2009 Matthew Barnes - 2.25.92-3.fc11 -- Add patch for RH bug #568332 (thread leak in fsync() rate limiting). - -* Sat Mar 07 2009 Matthew Barnes - 2.25.92-2.fc11 -- Add patch to revert GNOME bug #573240 (IMAP message loading regressions). - -* Mon Mar 02 2009 Matthew Barnes - 2.25.92-1.fc11 -- Update to 2.25.92 - -* Tue Feb 24 2009 Matthias Clasen 2.25.91-3 -- Make -doc noarch - -* Tue Feb 24 2009 Fedora Release Engineering - 2.25.91-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild - -* Mon Feb 16 2009 Matthew Barnes - 2.25.91-1.fc11 -- Update to 2.25.91 - -* Fri Feb 06 2009 Matthew Barnes - 2.25.90-5.fc11 -- Update BuildRoot, License, Source and URL tags. -- Require gnome-common so we don't have to patch it out. - -* Wed Feb 04 2009 Matthew Barnes - 2.25.90-4.fc11 -- ... and fix our own includes too. - -* Wed Feb 04 2009 Matthew Barnes - 2.25.90-3.fc11 -- Work around libical's broken pkg-config file. - -* Mon Feb 02 2009 Matthew Barnes - 2.25.90-2.fc11 -- Forgot the libical requirement in devel subpackage. - -* Mon Feb 02 2009 Matthew Barnes - 2.25.90-1.fc11 -- Update to 2.25.90 -- Add libical build requirement. - -* Mon Jan 19 2009 Matthew Barnes - 2.25.5-1.fc11 -- Update to 2.25.5 -- Bump gtk2_version to 2.14.0. - -* Fri Jan 16 2009 Tomas Mraz - 2.25.4-2.fc11 -- rebuild with new openssl - -* Mon Jan 05 2009 Matthew Barnes - 2.25.4-1.fc11 -- Update to 2.25.4 - -* Mon Dec 15 2008 Matthew Barnes - 2.25.3-1.fc11 -- Update to 2.25.3 -- New BR: libgweather-devel - -* Thu Dec 04 2008 Matthew Barnes - 2.25-2-2.fc11 -- Rebuild due to recent pkg-config breakage. - -* Mon Dec 01 2008 Matthew Barnes - 2.25.2-1.fc11 -- Update to 2.25.2 - -* Thu Nov 27 2008 Matthew Barnes - 2.25.1-2.fc11 -- Obsolete the evolution-webcal package (RH bug #468855). - -* Mon Nov 03 2008 Matthew Barnes - 2.25.1-1.fc11 -- Update to 2.25.1 -- Bump eds_base_version to 2.26. -- Remove patch for RH bug #467804 (fixed upstream). - -* Thu Oct 23 2008 Matthew Barnes - 2.24.1-2.fc10 -- Add patch for RH bug #467804 (remove console spew). - -* Tue Oct 21 2008 Matthew Barnes - 2.24.1-1.fc10 -- Update to 2.24.1 - -* Mon Sep 22 2008 Matthew Barnes - 2.24.0-1.fc10 -- Update to 2.24.0 - -* Mon Sep 08 2008 Matthew Barnes - 2.23.92-1.fc10 -- Update to 2.23.92 - -* Mon Sep 01 2008 Matthew Barnes - 2.23.91-1.fc10 -- Update to 2.23.91 - -* Wed Aug 20 2008 Matthew Barnes - 2.23.90.1-1.fc10 -- Update to 2.23.90.1 - -* Mon Aug 04 2008 Matthew Barnes - 2.23.6-3.fc10 -- Add sqlite3 requirement to devel subpackage. - -* Mon Aug 04 2008 Matthew Barnes - 2.23.6-2.fc10 -- Add sqlite3 to Camel's pkgconfig requirements. - -* Mon Aug 04 2008 Matthew Barnes - 2.23.6-1.fc10 -- Update to 2.23.6 -- Add build requirement for sqlite. - -* Mon Jul 21 2008 Matthew Barnes - 2.23.5-1.fc10 -- Update to 2.23.5 -- Remove patch for RH bug #534080 (fixed upstream). - -* Fri Jul 18 2008 Tom "spot" Callaway 2.23.4-3 -- fix license tag - -* Thu Jul 03 2008 Matthew Barnes - 3.23.4-2.fc10 -- Add patch for RH bug #534080 (fix attachment saving). - -* Mon Jun 16 2008 Matthew Barnes - 3.23.4-1.fc10 -- Update to 2.23.4 - -* Mon Jun 02 2008 Matthew Barnes - 3.23.3-1.fc10 -- Update to 2.23.3 -- Remove patch for GNOME bug #531439 (fixed upstream). - -* Sun May 18 2008 Matthew Barnes - 2.23.2-3.fc10 -- Add patch for GNOME bug #531439 (GPG passphrases destroy passwords). - -* Tue May 13 2008 Matthew Barnes - 2.23.2-2.fc10 -- Fix some third-party package breakage caused by libebackend. - -* Mon May 12 2008 Matthew Barnes - 2.23.2-1.fc10 -- Update to 2.23.2 -- Add files for new libebackend library. -- Remove patch for RH bug #202309 (fixed upstream). - -* Mon Apr 21 2008 Matthew Barnes - 2.23.1-1.fc10 -- Update to 2.23.1 -- Bump eds_base_version to 2.24. -- Bump glib2 requirement to 2.16.1. -- Drop gnome-vfs2 requirement. - -* Mon Apr 07 2008 Matthew Barnes - 2.22.1-1.fc9 -- Update to 2.22.1 -- Remove patch for RH bug #296671 (fixed upstream). -- Remove patch for GNOME bug #523023 (fixed upstream). - -* Mon Mar 24 2008 Matthew Barnes - 2.22.0-3.fc9 -- Add patch for GNOME bug #523023 (EFolder leak in evo-ex-storage). - -* Tue Mar 11 2008 Matthew Barnes - 2.22.0-2.fc9 -- Add patch for RH bug #296671 (GC servers may not support NTLM). - -* Mon Mar 10 2008 Matthew Barnes - 2.22.0-1.fc9 -- Update to 2.22.0 - -* Mon Feb 25 2008 Matthew Barnes - 2.21.92-1.fc9 -- Update to 2.21.92 -- Remove patch for GNOME bug #516074 (fixed upstream). - -* Thu Feb 14 2008 Matthew Barnes - 2.21.91-3.fc9 -- Try removing the ancient "ldap-x86_64-hack" patch. - -* Wed Feb 13 2008 Matthew Barnes - 2.21.91-2.fc9 -- Rebuild against libsoup 2.3.2. - -* Mon Feb 11 2008 Matthew Barnes - 2.21.91-1.fc9 -- Update to 2.21.91 -- Add patch for GNOME bug #516074 (latest glibc breaks Camel). - -* Mon Jan 28 2008 Matthew Barnes - 2.21.90-1.fc9 -- Update to 2.21.90 -- Remove patch for GNOME bug #509644 (fixed upstream). - -* Thu Jan 17 2008 Matthew Barnes - 2.21.5-3.fc9 -- Rename evolution-1.4.4-ldap-x86_64-hack.patch to avoid namespace - collision with similarly named patch in evolution (RH bug #395551). - -* Wed Jan 16 2008 Matthew Barnes - 2.21.5-2.fc9 -- Add patch for GNOME bug #509644 (password dialog breakage). -- Remove patch for RH bug #384741 (fixed upstream). -- Remove patch for GNOME bug #363695 (obsolete). -- Remove patch for GNOME bug #376991 (obsolete). - -* Mon Jan 14 2008 Matthew Barnes - 2.21.5-1.fc9 -- Update to 2.21.5 - -* Mon Dec 17 2007 Matthew Barnes - 2.21.4-1.fc9 -- Update to 2.21.4 -- Require gtk-doc >= 1.9. - -* Tue Dec 4 2007 Matthias Clasen - 2.21.3-2 -- Rebuild against openssl - -* Mon Dec 03 2007 Matthew Barnes - 2.21.3-1.fc9 -- Update to 2.21.3 - -* Thu Nov 15 2007 Matthew Barnes - 2.21.2-2.fc9 -- Add patch for RH bug #384741 (authentication crash). - -* Mon Nov 12 2007 Matthew Barnes - 2.21.2-1.fc9 -- Update to 2.21.2 - -* Mon Oct 29 2007 Matthew Barnes - 2.21.1-1.fc9 -- Update to 2.21.1 -- Bump eds_base_version to 2.22. -- Remove patch for RH bug #212106 (fixed upstream). -- Remove patch for GNOME bug #417999 (fixed upstream). - -* Fri Oct 26 2007 Matthew Barnes - 1.12.1-4.fc9 -- Remove the use_gtk_doc macro. -- Remove redundant requirements. -- Use the name tag where appropriate. -- Add an evolution-data-server-doc subpackage. - -* Thu Oct 18 2007 Matthew Barnes - 1.12.1-3.fc9 -- Porting a couple patches over from RHEL5: -- Add patch for RH bug #212106 (address book error on fresh install). -- Add patch for RH bug #215702 (bad search filter for LDAP address books). - -* Tue Oct 16 2007 Matthew Barnes - 1.12.1-2.fc8 -- Disable patch for GNOME bug #376991 for now. It may be contributing - to password prompting problems as described in RH bug #296671. - -* Mon Oct 15 2007 Milan Crha - 1.12.1-1.fc8 -- Update to 1.12.1 - -* Mon Sep 17 2007 Matthew Barnes - 1.12.0-1.fc8 -- Update to 1.12.0 - -* Mon Sep 03 2007 Matthew Barnes - 1.11.92-1.fc8 -- Update to 1.11.92 - -* Tue Aug 28 2007 Milan Crha - 1.11.91-1.fc8 -- Update to 1.11.91 -- Removed patch for RH bug #215634 (fixed upstream). -- Removed patch for GNOME bug #466987 (fixed upstream). - -* Wed Aug 22 2007 Adam Jackson 1.11.90-4.fc8 -- Add Requires: glib2 >= 2.14.0, since it's in the buildroot now, and - forcibly introduces deps on symbols that don't exist in 2.13. If - only we had working symbol versioning. - -* Mon Aug 20 2007 Matthew Barnes - 1.11.90-3.fc8 -- Revise patch for GNOME bug #417999 to fix GNOME bug #447591 - (Automatic Contacts combo boxes don't work). - -* Mon Aug 13 2007 Matthew Barnes - 1.11.90-2.fc8 -- Re-enable the --with-libdb configure option. - -* Mon Aug 13 2007 Matthew Barnes - 1.11.90-1.fc8 -- Update to 1.11.90 -- Add patch for GNOME bug #466987 (glibc redefines "open"). -- Remove patch for GNOME bug #415891 (fixed upstream). - -* Wed Aug 08 2007 Matthew Barnes - 1.11.6.1-1.fc8 -- Update to 1.11.6.1 - -* Tue Jul 31 2007 Matthew Barnes - 1.11.6-1.fc8 -- Update to 1.11.6 -- Remove patch for GNOME bug #380534 (fixed upstream). - -* Fri Jul 27 2007 Matthew Barnes - 1.11.5-3.fc8 -- Add patch for GNOME bug #380534 (clarify version requirements). - -* Tue Jul 17 2007 Matthew Barnes - 1.11.5-2.fc8 -- Add patch for RH bug #243296 (fix LDAP configuration). - -* Mon Jul 09 2007 Matthew Barnes - 1.11.5-1.fc8 -- Update to 1.11.5 - -* Mon Jun 18 2007 Matthew Barnes - 1.11.4-1.fc8 -- Update to 1.11.4 -- Remove patch for RH bug #202309 (fixed upstream). -- Remove patch for GNOME bug #312854 (fixed upstream). -- Remove patch for GNOME bug #447414 (fixed upstream). - -* Fri Jun 15 2007 Matthew Barnes - 1.11.3-3.fc8 -- Add patch for GNOME bug #224277 (Camel IMAP security flaw). - -* Thu Jun 14 2007 Matthew Barnes - 1.11.3-2.fc8 -- Add patch for GNOME bug #312584 (renaming Exchange folders). - -* Mon Jun 04 2007 Matthew Barnes - 1.11.3-1.fc8 -- Update to 1.11.3 -- Remove patch for GNOME bug #415922 (fixed upstream). - -* Thu May 31 2007 Matthew Barnes - 1.11.2-3.fc8 -- Revise patch for GNOME bug #376991 to fix RH bug #241974. - -* Mon May 21 2007 Matthew Barnes - 1.11.2-2.fc8 -- Store account passwords in GNOME Keyring. - -* Fri May 18 2007 Matthew Barnes - 1.11.2-1.fc8 -- Update to 1.11.2 -- Bump eds_base_version to 1.12. -- Add patch to fix implicit function declarations. -- Remove patch for RH bug #203058 (fixed upstream). -- Remove patch for RH bug #210142 (fixed upstream). -- Remove patch for RH bug #235290 (fixed upstream). -- Remove patch for GNOME bug #360240 (fixed upstream). -- Remove patch for GNOME bug #360619 (fixed upstream). -- Remove patch for GNOME bug #373117 (fixed upstream). -- Revise patch for GNOME bug #415891 (partially fixed upstream). - -* Wed May 09 2007 Matthew Barnes - 1.10.1-6.fc7 -- Add patch for RH bug #215634 (read NSS certificates more reliably). - -* Tue May 08 2007 Matthew Barnes - 1.10.1-5.fc7 -- Add patch for GNOME bug #373146 (spam message triggers crash). - -* Mon May 07 2007 Matthew Barnes - 1.10.1-4.fc7 -- Add patch to fix a dangling pointer in e-source-group.c. - -* Mon Apr 30 2007 Matthew Barnes - 1.10.1-3.fc7 -- Revise patch for RH bug #235290 to not break string freeze. - -* Tue Apr 24 2007 Matthew Barnes - 1.10.1-2.fc7 -- Add patch for RH bug #235290 (APOP authentication vulnerability). - -* Mon Apr 09 2007 Matthew Barnes - 1.10.1-1.fc7 -- Update to 1.10.1 -- Remove evolution-data-server-1.10.0-no-more-beeps.patch (fixed upstream). - -* Wed Apr 04 2007 Matthew Barnes - 1.10.0-6.fc7 -- Revise patch for GNOME bug #417999 (another ESourceComboBox goof). - -* Mon Apr 02 2007 Matthew Barnes - 1.10.0-5.fc7 -- Make the new ESourceComboBox widget work properly (RH bug #234760). - -* Tue Mar 27 2007 Matthew Barnes - 1.10.0-4.fc7 -- Link to static evolution-openldap library (RH bug #210126). -- Require openssl-devel when statically linking against openldap. -- Add -Wdeclaration-after-statement to strict build settings. - -* Thu Mar 22 2007 Matthew Barnes - 1.10.0-3.fc7 -- Stop beeping at me! - -* Wed Mar 14 2007 Matthew Barnes - 1.10.0-2.fc7 -- Modify patch for GNOME bug #376991 to fix RH bug #231994. -- Add patch for GNOME bug #417999 (avoid deprecated GTK+ symbols). -- Remove evolution-data-server-1.0.2-workaround-cal-backend-leak.patch. -- Remove evolution-data-server-1.2.2-fix_open_calendar_declaration.patch. -- Remove evolution-data-server-1.3.8-fix-implicit-function-declarations. - -* Mon Mar 12 2007 Matthew Barnes - 1.10.0-1.fc7 -- Update to 1.10.0 -- Remove patch for GNOME bug #301363 (fixed upstream). - -* Fri Mar 09 2007 Matthew Barnes - 1.9.92-4.fc7 -- Add patch for GNOME bug #415922 (support MS ISA Server 2004). -- Patch by Kenny Root. - -* Thu Mar 08 2007 Matthew Barnes - 1.9.92-3.fc7 -- Add patch for GNOME bug #415891 (introduce EFlag API). -- Add patch for GNOME bug #376991 (refactor password handling). - -* Tue Mar 06 2007 Matthew Barnes - 1.9.92-2.fc7 -- Add patch for GNOME bug #301363 (update timezones). - -* Mon Feb 26 2007 Matthew Barnes - 1.9.92-1.fc7 -- Update to 1.9.92 -- Remove patch for GNOME bug #356177 (fixed upstream). -- Add minimum version to intltool requirement (current >= 0.35.5). - -* Mon Feb 12 2007 Matthew Barnes - 1.9.91-1.fc7 -- Update to 1.9.91 -- Add flag to disable deprecated Pango symbols. -- Remove patch for GNOME bug #359979 (fixed upstream). - -* Sun Jan 21 2007 Matthew Barnes - 1.9.5-4.fc7 -- Revise evolution-data-server-1.8.0-no-gnome-common.patch so that we no - longer have to run autoconf before building. - -* Wed Jan 10 2007 Matthew Barnes - 1.9.5-3.fc7 -- Add patch for GNOME bug #359979 (change EMsgPort semantics). - -* Tue Jan 09 2007 Matthew Barnes - 1.9.5-2.fc7 -- Require libsoup-devel in devel subpackage (RH bug #152482). - -* Mon Jan 08 2007 Matthew Barnes - 1.9.5-1.fc7 -- Update to 1.9.5 -- Remove patch for GNOME bug #362638 (fixed upstream). -- Remove patch for GNOME bug #387638 (fixed upstream). - -* Tue Dec 19 2006 Matthew Barnes - 1.9.4-1.fc7 -- Update to 1.9.4 -- Add patch for GNOME bug #373117 (storing color settings). -- Add patch for GNOME bug #387638 (implicit function declaration). - -* Mon Dec 04 2006 Matthew Barnes - 1.9.3-1.fc7 -- Update to 1.9.3 -- Remove patch for GNOME bug #353924 (fixed upstream). - -* Fri Nov 10 2006 Matthew Barnes - 1.9.2-3.fc7 -- Add patch for RH bug #210142 (calendar crash in indic locales). - -* Wed Nov 08 2006 Matthew Barnes - 1.9.2-2.fc7 -- Add patch for RH bug #203058 (name selector dialog glitch). - -* Mon Nov 06 2006 Matthew Barnes - 1.9.2-1.fc7 -- Update to 1.9.2 -- Remove patch for Gnome.org bugs #369168, #369259, and #369261 - (fixed upstream). - -* Thu Nov 2 2006 Matthew Barnes - 1.9.1-4.fc7 -- Add patch for Gnome.org bug #369168, #369259, and #369261 - (misc camel bugs reported by Hans Petter Jansson). - -* Wed Nov 1 2006 Matthew Barnes - 1.9.1-3.fc7 -- Add patch for Gnome.org bug #353924 (category sorting). - -* Fri Oct 27 2006 Matthew Barnes - 1.9.1-2.fc7 -- Rebuild - -* Fri Oct 27 2006 Matthew Barnes - 1.9.1-2.fc7 -- Update to 1.9.1 -- Add patch for Gnome.org bug #356177 (deprecate EMutex). -- Add patch for Gnome.org bug #363695 (deprecate EMemPool, EStrv, EPoolv). -- Remove Jerusalem.ics timezone file (fixed upstream). -- Remove patch for RH bug #198935 (fixed upstream). - -* Mon Oct 16 2006 Matthew Barnes - 1.8.1-1.fc7 -- Update to 1.8.1 -- Use stricter build settings. -- Add patch for Gnome.org bug #360240 ("unused variable" warnings). -- Add patch for Gnome.org bug #360619 ("incompatible pointer type" warnings). -- Add patch for Gnome.org bug #362638 (deprecate EThread). -- Remove patch for RH bug #198935 (fixed upstream). -- Remove patch for RH bug #205187 (fixed upstream). -- Remove patch for Gnome.org bug #353478 (fixed upstream). -- Remove patch for Gnome.org bug #356828 (fixed upstream). -- Remove patch for Gnome.org bug #357666 (fixed upstream). - -* Tue Sep 26 2006 Matthew Barnes - 1.8.0-11.fc6 -- Add patch for RH bug #203915 (fix dangerous mallocs in camel). - -* Mon Sep 25 2006 Matthew Barnes - 1.8.0-10.fc6 -- Add patch for Gnome.org bug #357666. - -* Thu Sep 21 2006 Matthew Barnes - 1.8.0-9.fc6 -- Revise patch for RH bug #198935 (fix a crash reported in bug #207446). - -* Wed Sep 20 2006 Matthew Barnes - 1.8.0-8.fc6 -- Revise patch for RH bug #198935 (fix a typo). - -* Wed Sep 20 2006 Matthias Clasen - 1.8.0-7.fc6 -- Fix the timezone info for Jerusalem (#207161) - -* Wed Sep 20 2006 Matthew Barnes - 1.8.0-6.fc6 -- Add patch for Gnome.org bug #356828 (lingering file on uninstall). - -* Mon Sep 18 2006 Matthew Barnes - 1.8.0-5.fc6 -- Revise patch for RH bug #205187 (use upstream's version). - -* Sat Sep 16 2006 Matthew Barnes - 1.8.0-4.fc6 -- Add patch for RH bug #205187 (crash on startup). - -* Fri Sep 15 2006 Matthew Barnes - 1.8.0-3.fc6 -- Revise patch for RH bug #198935 to eliminate a race condition. - -* Tue Sep 12 2006 Matthew Barnes - 1.8.0-2.fc6 -- Add patch for RH bug #198935. - -* Mon Sep 4 2006 Matthew Barnes - 1.8.0-1.fc6 -- Update to 1.8.0 -- Remove evolution-data-server-1.5.4-make_imap4_optional.patch (fixed upstream) - and save remaining hunk as evolution-data-server-1.8.0-no-gnome-common.patch. -- Remove patch for RH bug #202329 (fixed upstream). -- Remove patch for Gnome.org bug #349847 (fixed upstream). - -* Tue Aug 29 2006 Matthew Barnes - 1.7.92-4.fc6 -- Revise patch for RH bug #198935. -- Add patch for Gnome.org bug #353478. - -* Mon Aug 28 2006 Ray Strode - 1.7.92-3.fc6 -- Add patch from Veerapuram Varadhan to fix fd leak (bug 198935). - -* Tue Aug 22 2006 Matthew Barnes - 1.7.92-2 -- Add patch for Gnome.org bug #349847. - -* Mon Aug 21 2006 Matthew Barnes - 1.7.92-1 -- Update to 1.7.92 - -* Wed Aug 16 2006 Ray Strode - 1.7.91-3 -- Add fix from Matthias Clasen that might help bug 202309. - -* Mon Aug 14 2006 Matthew Barnes - 1.7.91-2 -- Add patch for RH bug #202329. - -* Mon Aug 7 2006 Matthew Barnes - 1.7.91-1 -- Update to 1.7.91 -- Remove patch for Gnome.org bug #348725 (fixed upstream). - -* Fri Aug 4 2006 Matthew Barnes - 1.7.90.1-5 -- Update to 1.7.90.1 (again) - -* Thu Aug 3 2006 Matthew Barnes - 1.7.4-5 -- Remove patches for Gnome.org bug #309079 (rejected upstream). -- One of these patches was causing RH bug #167157. - -* Thu Aug 3 2006 Matthew Barnes - 1.7.4-4 -- No longer packaging unused patches. - -* Mon Jul 31 2006 Matthew Barnes - 1.7.4-3 -- Revert to version 1.7.4 to prevent API/ABI breakage. -- Add back patch to make --with-libdb configure option work. - -* Mon Jul 31 2006 Ray Strode - 1.7.90.1-4 -- add executable bits to libs - -* Mon Jul 31 2006 Matthias Clasen - 1.7.90.1-3 -- Rebuild - -* Wed Jul 26 2006 Matthew Barnes - 1.7.90.1-2 -- Rebuild - -* Tue Jul 25 2006 Matthew Barnes - 1.7.90.1-1 -- Update to 1.7.90.1 -- Add patch for Gnome.org bug #348725. -- Remove patch to make --with-db configure option work (fixed upstream). - -* Wed Jul 19 2006 Matthew Barnes - 1.7.4-2 -- Dynamically link to BDB. -- Add patch to make --with-db configure option work. -- Add Requires for db4 and BuildRequires for db4-devel. -- Clean up spec file, renumber patches. - -* Wed Jul 12 2006 Matthew Barnes - 1.7.4-1 -- Update to 1.7.4 -- Remove patch for Gnome.org bug #345965 (fixed upstream). - -* Wed Jul 12 2006 Jesse Keating - 1.7.3-3.1 -- rebuild - -* Tue Jun 27 2006 Matthew Barnes - 1.7.3-3 -- Show GPG key name when asking for the password (Gnome.org #345965). - -* Wed Jun 14 2006 Tomas Mraz - 1.7.3-2 -- rebuilt with new gnutls - -* Tue Jun 13 2006 Matthisa Clasen 1.7.3-1 -- Update to 1.7.3 - -* Thu Jun 8 2006 Jeremy Katz - 1.7.2-3 -- BR flex - -* Sat May 27 2006 Matthew Barnes - 1.7.2-2 -- Add missing BuildRequires for gettext (#193360). - -* Wed May 17 2006 Matthew Barnes - 1.7.2 -- Update to 1.7.2 -- Remove evolution-data-server-1.7.1-nss_auto_detect.patch; in upstream now. - -* Sun May 14 2006 Matthew Barnes - 1.7.1-2 -- Add temporary patch evolution-data-server-1.7.1-nss_auto_detect.patch - to help `configure' detect the SSL modules (closes #191567). - -* Wed May 10 2006 Matthew Barnes - 1.7.1-1 -- Update to 1.7.1 -- Bump eds_base_version from 1.6 to 1.8. -- Disable evolution-data-server-1.2.0-validatehelo.patch (accepted upstream). - -* Mon Apr 10 2006 Matthias Clasen - 1.6.1-3 -- Avoid a multilib conflict - -* Mon Apr 10 2006 Matthias Clasen - 1.6.1-2 -- Update to 1.6.1 - -* Mon Mar 13 2006 Ray Strode - 1.6.0-1 -- 1.6.0 - -* Mon Feb 27 2006 Ray Strode - 1.5.92-1 -- 1.5.92 - -* Tue Feb 14 2006 David Malcolm - 1.5.91-1 -- 1.5.91 - -* Fri Feb 10 2006 Jesse Keating - 1.5.90-2.2 -- bump again for double-long bug on ppc(64) - -* Tue Feb 07 2006 Jesse Keating - 1.5.90-2.1 -- rebuilt for new gcc4.1 snapshot and glibc changes - -* Tue Jan 31 2006 Ray Strode - 1.5.90-2 -- add build deps (bug 137553) - -* Mon Jan 30 2006 David Malcolm - 1.5.90-1 -- 1.5.90 -- explicitly list various files rather than rely on globbing -- enabled parallel make - -* Wed Jan 25 2006 David Malcolm - 1.5.5-1 -- 1.5.5 -- added CalDAV backend to the list of packaged extensions - -* Mon Jan 9 2006 David Malcolm - 1.5.4-4 -- updated patch 300 to remove usage of GNOME_COMPILE_WARNINGS from configure.in - (since gnome-common might not be available when we rerun the autotools) - -* Mon Jan 9 2006 David Malcolm - 1.5.4-3 -- added patch to make the "imap4"/"IMAP4rev1" backend optional; disable it in - our packages; re-run automake since we have touched various Makefile.am - files; rerun intltoolize to avoid incompatibilities between tarball copy of - intltool-merge.in and intltool.m4 in intltool package (@EXPANDED_LIBDIR@ - renamed to @INTLTOOL_LIBDIR@) (#167574) -- explicitly list the camel providers and e-d-s extension files in the spec file - -* Thu Jan 5 2006 David Malcolm - 1.5.4-2 -- added patch from David Woodhouse to validate reverse DNS domain before using - in SMTP greeting (patch 103, #151121) - -* Tue Jan 3 2006 David Malcolm - 1.5.4-1 -- 1.5.4 - -* Mon Dec 19 2005 David Malcolm - 1.5.3-2 -- Update specfile and patch 5 (evolution-data-server-1.3.5-nspr_fix.patch) to - use nss rather than mozilla-nss throughout - -* Mon Dec 19 2005 David Malcolm - 1.5.3-1 -- 1.5.3 - -* Fri Dec 09 2005 Jesse Keating -- rebuilt - -* Tue Dec 6 2005 David Malcolm - 1.5.2-1 -- 1.5.2 -- bump eds_base_version from 1.4 to 1.6 -- updated patch 102 - -* Mon Dec 5 2005 David Malcolm - 1.4.2.1-1 -- 1.4.2.1 - -* Tue Nov 29 2005 David Malcolm - 1.4.2-1 -- 1.4.2 - -* Tue Nov 29 2005 David Malcolm - 1.4.1.1-3 -- add -DLDAP_DEPRECATED to CFLAGS (#172999) - -* Thu Nov 10 2005 David Malcolm - 1.4.1.1-2 -- Updated license field to reflect change from GPL to LGPL -- Remove all static libraries, not just those in /usr/lib; avoid listing libdir - subdirectory so that we can be more explicit about the package payload (bug - #172882) - -* Mon Oct 17 2005 David Malcolm - 1.4.1.1-1 -- 1.4.1.1 - -* Mon Oct 17 2005 David Malcolm - 1.4.1-2 -- Updated patch 102 (fix-implicit-function-declarations) to include fix for - http calendar backend (thanks to Peter Robinson) - -* Tue Oct 4 2005 David Malcolm - 1.4.1-1 -- 1.4.1 - -* Wed Sep 14 2005 Jeremy Katz - 1.4.0-2 -- rebuild now that mozilla builds on ppc64 - -* Tue Sep 6 2005 David Malcolm - 1.4.0-1 -- 1.4.0 -- Removed evolution-data-server-1.3.8-fix-libical-vsnprintf.c.patch; a version - of this is now upstream (was patch 103, added in 1.3.8-2) - -* Wed Aug 31 2005 David Malcolm - 1.3.8-6 -- Use regular LDAP library for now, rather than evolution-openldap (#167238) - -* Tue Aug 30 2005 David Malcolm - 1.3.8-5 -- Add -Werror-implicit-function-declaration back to CFLAGS at the make stage, - after the configure, to spot 64-bit problems whilst avoiding breaking - configuration tests; expand patch 102 to avoid this breaking libdb's CFLAGS - -* Wed Aug 24 2005 David Malcolm - 1.3.8-4 -- Remove -Werror-implicit-function-declaration from CFLAGS; this broke the - configuration test for fast mutexes in the internal copy of libdb, and hence - broke access to local addressbooks (#166742) -- Introduce static_ldap macro; use it to link to static evolution-openldap - library, containing NTLM support for LDAP binds (needed by Exchange support) - -* Tue Aug 23 2005 David Malcolm - 1.3.8-3 -- Updated patch 102 to fix further implicit function declarations - -* Tue Aug 23 2005 David Malcolm - 1.3.8-2 -- added patch (103) to fix problem with configuration macros in libical's - vsnprintf.c - -* Tue Aug 23 2005 David Malcolm - 1.3.8-1 -- 1.3.8 -- Add -Werror-implicit-function-declaration to CFLAGS, to avoid 64-bit issues - and add patch to fix these where they occur (patch 102) - -* Mon Aug 15 2005 David Malcolm - 1.3.7-2 -- rebuild - -* Tue Aug 9 2005 David Malcolm - 1.3.7-1 -- 1.3.7 - -* Mon Aug 8 2005 Tomas Mraz - 1.3.6.1-2 -- rebuild with new gnutls - -* Fri Jul 29 2005 David Malcolm - 1.3.6.1-1 -- 1.3.6.1 - -* Thu Jul 28 2005 David Malcolm - 1.3.6-1 -- 1.3.6 - -* Mon Jul 25 2005 David Malcolm - 1.3.5-2 -- Added patch to use nspr rather than mozilla-nspr when doing pkg-config tests - (Patch5: evolution-data-server-1.3.5-nspr_fix.patch) - -* Mon Jul 25 2005 David Malcolm - 1.3.5-1 -- 1.3.5 -- Split eds_major (was 1.2) into eds_base_version (1.4) and eds_api_version - (1.2) to correspond to BASE_VERSION and API_VERSION in configure.in; updated - rest of specfile accordingly. -- Removed upstreamed patch: - evolution-data-server-1.2.0-cope-with-a-macro-called-read.patch - -* Mon Jun 27 2005 David Malcolm - 1.2.2-4.fc5 -- Added leak fixes for GNOME bug 309079 provided by Mark G. Adams - -* Wed May 18 2005 David Malcolm - 1.2.2-3 -- bumped libsoup requirement to 2.2.3; removed mozilla_build_version, using - pkg-config instead for locating NSPRS and NSS headers/libraries (#158085) - -* Mon Apr 11 2005 David Malcolm - 1.2.2-2 -- added patch to calendar/libecal/e-cal.c to fix missing declaration of open_calendar - -* Mon Apr 11 2005 David Malcolm - 1.2.2-1 -- 1.2.2 - -* Thu Mar 17 2005 David Malcolm - 1.2.1-1 -- 1.2.1 - -* Thu Mar 10 2005 David Malcolm - 1.2.0-3 -- Removed explicit run-time spec-file requirement on mozilla. - The Mozilla NSS API/ABI stabilised by version 1.7.3 - The libraries are always located in the libdir - However, the headers are in /usr/include/mozilla-%%{mozilla_build_version} - and so they move each time the mozilla version changes. - So we no longer have an explicit mozilla run-time requirement in the specfile; - a requirement on the appropriate NSS and NSPR .so files is automagically generated on build. - We have an explicit, exact build-time version, so that we can find the headers (without - invoking an RPM query from the spec file; to do so is considered bad practice) -- Introduced mozilla_build_version, to replace mozilla_version -- Set mozilla_build_version to 1.7.6 to reflect current state of tree - -* Tue Mar 8 2005 David Malcolm - 1.2.0-2 -- Added a patch to deal with glibc defining a macro called "read" - -* Tue Mar 8 2005 David Malcolm - 1.2.0-1 -- 1.2.0 -- Removed patch for GCC 4 as this is now in upstream tarball - -* Wed Mar 2 2005 Jeremy Katz - 1.1.6-6 -- rebuild to fix library linking silliness - -* Tue Mar 1 2005 David Malcolm - 1.1.6-5 -- disabling gtk-doc on ia64 and s390x - -* Tue Mar 1 2005 David Malcolm - 1.1.6-4 -- added macro use_gtk_doc; added missing BuildRequires on gtk-doc; enabled gtk-doc generation on all platforms (had been disabled on ia64) - -* Tue Mar 1 2005 David Malcolm - 1.1.6-3 -- extended patch to deal with camel-groupwise-store-summary.c - -* Tue Mar 1 2005 David Malcolm - 1.1.6-2 -- added patch to fix badly-scoped declaration of "namespace_clear" in camel-imap-store-summary.c - -* Tue Mar 1 2005 David Malcolm - 1.1.6-1 -- 1.1.6 - -* Tue Feb 8 2005 David Malcolm - 1.1.5-3 -- rebuild - -* Tue Feb 8 2005 David Malcolm - 1.1.5-2 -- forgot to fix sources - -* Tue Feb 8 2005 David Malcolm - 1.1.5-1 -- 1.1.5 - -* Thu Jan 27 2005 David Malcolm - 1.1.4.2-1 -- Update from unstable 1.1.4.1 to unstable 1.1.1.4.2 - -* Wed Jan 26 2005 David Malcolm - 1.1.4.1-3 -- disable gtk-doc generation on ia64 for now - -* Wed Jan 26 2005 David Malcolm - 1.1.4.1-2 -- Exclude ppc64 due to missing mozilla dependency - -* Wed Jan 26 2005 David Malcolm - 1.1.4.1-1 -- Update from 1.0.3 to 1.1.4.1 -- Updated eds_major from 1.0 to 1.2; fixed translation search path. -- Removed 64-bit patch for calendar backend hash table; upstream now stores pointers to ECalBackendFactory, rather than GType -- Removed calendar optimisation patch for part of part of bug #141283 as this is now in the upstream tarball -- Added /usr/lib/evolution-data-server-%%{eds_major} to cover the extensions, plus the camel code now in e-d-s, rather than evolution -- Added /usr/share/pixmaps/evolution-data-server-%%{eds_major} to cover the category pixmaps -- Camel code from evolution is now in evolution-data-server: - - Added camel-index-control and camel-lock-helper to packaged files - - Added mozilla dependency code from the evolution package - - Ditto for LDAP - - Ditto for krb5 - - Ditto for NNTP support handling - - Ditto for --enable-file-locking and --enable-dot-locking -- Added requirements on libbonobo, libgnomeui, gnome-vfs2, GConf2, libglade2 -- Updated libsoup requirement from 2.2.1 to 2.2.2 -- Enabled gtk-doc - -* Wed Dec 15 2004 David Malcolm - 1.0.3-2 -- fixed packaging of translation files to reflect upstream change to GETTEXT_PACKAGE being evolution-data-server-1.0 rather than -1.5 - -* Wed Dec 15 2004 David Malcolm - 1.0.3-1 -- update from upstream 1.0.2 to 1.0.3: - * Address Book - - prevent e_book_commit_contact from crashing on multiple calls (Diego Gonzalez) - - prevent file backend from crashing if uid of vcard is NULL (Diego Gonzalez) - - * Calendar - #XB59904 - Speed up calendar queries (Rodrigo) - #XB69624 - make changes in evo corresponding to soap schema changes (Siva) - - fix libical build for automake 1.9 (Rodney) - - fix putenv usage for portability (Julio M. Merino Vidal) - - * Updated Translations: - - sv (Christian Rose) - -- Removed patches to fix build on x86_64 and calendar optimisation for XB59004 as these are in the upstream tarball - -* Tue Dec 7 2004 David Malcolm - 1.0.2-6 -- Amortize writes to a local cache of a webcal calendar, fixing further aspect of #141283 (upstream bugzilla #70267), as posted to mailing list here: -http://lists.ximian.com/archives/public/evolution-patches/2004-December/008338.html -(The groupwise part of that patch did not cleanly apply, so I removed it). - -* Thu Dec 2 2004 David Malcolm - 1.0.2-5 -- Added fix for #141283 (upstream bugzilla XB 59904), a backported calendar -optimisation patch posted to upstream development mailing list here: -http://lists.ximian.com/archives/public/evolution-patches/2004-November/008139.html - -* Wed Nov 3 2004 David Malcolm - 1.0.2-4 -- Added patch to fix usage of GINT_TO_POINTER/GPOINTER_TO_INT for calendar backend GType hash table, breaking on ia64 (#136914) - -* Wed Oct 20 2004 David Malcolm - 1.0.2-3 -- added workaround for a backend leak that causes the "contacts" calendar -backend to hold open an EBook for the local contacts (filed upstream at: -http://bugzilla.ximian.com/show_bug.cgi?id=68533 ); this was causing e-d-s to -never lose its last addressbook, and hence never quit. We workaround this by -detecting this condition and exiting when it occurs, fixing bug #134851 and #134849. - -* Tue Oct 12 2004 David Malcolm - 1.0.2-2 -- added patch to fix build on x86_64 (had multiple definitions of mutex code in libdb/dbinc.mutex.h) - -* Tue Oct 12 2004 David Malcolm - 1.0.2-1 -- update from 1.0.1 to 1.0.2 -- increased libsoup requirement to 2.2.1 to match configuration script - -* Tue Sep 28 2004 David Malcolm - 1.0.1-1 -- update from 1.0.0 to 1.0.1 -- removed patch that fixed warnings in calendar code (now in upstream tarball) - -* Mon Sep 20 2004 David Malcolm - 1.0.0-2 -- fixed various warnings in the calendar code - (filed upstream here: http://bugzilla.ximian.com/show_bug.cgi?id=66383) - -* Tue Sep 14 2004 David Malcolm - 1.0.0-1 -- update from 0.0.99 to 1.0.0 -- changed path in FTP source location from 0.0 to 1.0 - -* Tue Aug 31 2004 David Malcolm - 0.0.99-1 -- update from 0.0.98 to 0.0.99 -- increased libsoup requirement to 2.2.0 to match configuration script - -* Mon Aug 16 2004 David Malcolm - 0.0.98-1 -- updated tarball from 0.0.97 to 0.0.98; updated required libsoup version to 2.1.13 - -* Thu Aug 5 2004 Warren Togami - 0.0.97-2 -- pkgconfig -devel Requires libbonobo-devel, libgnome-devel - -* Wed Aug 4 2004 David Malcolm - 0.0.97-1 -- upgraded to 0.0.97; rewrote the package's description - -* Mon Jul 26 2004 David Malcolm -- rebuilt - -* Tue Jul 20 2004 David Malcolm - 0.0.96-2 -- added version numbers to the BuildRequires test for libsoup-devel and ORBit2-devel - -* Tue Jul 20 2004 David Malcolm - 0.0.96-1 -- 0.0.96; libsoup required is now 2.1.12 - -* Thu Jul 8 2004 David Malcolm -- rebuilt - -* Wed Jul 7 2004 David Malcolm -- rebuilt - -* Tue Jul 6 2004 David Malcolm - 0.0.95-1 -- 0.0.95 - -* Thu Jun 17 2004 David Malcolm - 0.0.94.1-1 -- 0.0.94.1 - -* Mon Jun 7 2004 David Malcolm - 0.0.94-2 -- rebuilt - -* Mon Jun 7 2004 David Malcolm - 0.0.94-1 -- 0.0.94 - -* Wed May 26 2004 David Malcolm - 0.0.93-4 -- added ORBit2 requirement - -* Fri May 21 2004 David Malcolm - 0.0.93-3 -- rebuild again - -* Fri May 21 2004 David Malcolm - 0.0.93-2 -- rebuilt - -* Thu May 20 2004 David Malcolm - 0.0.93-1 -- 0.0.93; libsoup required is now 2.1.10 - -* Wed Apr 21 2004 David Malcolm - 0.0.92-1 -- Update to 0.0.92; added a define and a requirement on the libsoup version - -* Wed Mar 10 2004 Jeremy Katz - 0.0.90-1 -- 0.0.90 - -* Fri Feb 13 2004 Elliot Lee -- rebuilt - -* Mon Jan 26 2004 Jeremy Katz - 0.0.6-1 -- 0.0.6 - -* Wed Jan 21 2004 Jeremy Katz - 0.0.5-2 -- better fix by using system libtool - -* Mon Jan 19 2004 Jeremy Katz 0.0.5-1 -- add some libdb linkage to make the build on x86_64 happy - -* Wed Jan 14 2004 Jeremy Katz 0.0.5-0 -- update to 0.0.5 - -* Sat Jan 3 2004 Jeremy Katz 0.0.4-0 -- Initial build. From 3432a319a1459627dc4fdddf77257da1435a1a34 Mon Sep 17 00:00:00 2001 From: Lleyton Gray Date: Wed, 23 Nov 2022 21:36:21 +0000 Subject: [PATCH 59/74] Patch to work with latest EDS --- .../elementary-calendar/elementary-calendar.spec | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/anda/desktops/elementary/elementary-calendar/elementary-calendar.spec b/anda/desktops/elementary/elementary-calendar/elementary-calendar.spec index 34c42d11ca..955fad00da 100644 --- a/anda/desktops/elementary/elementary-calendar/elementary-calendar.spec +++ b/anda/desktops/elementary/elementary-calendar/elementary-calendar.spec @@ -12,16 +12,18 @@ License: GPLv3+ URL: https://github.com/elementary/calendar Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz +Patch0: https://patch-diff.githubusercontent.com/raw/elementary/calendar/pull/758.patch + BuildRequires: desktop-file-utils BuildRequires: gettext BuildRequires: libappstream-glib BuildRequires: pkgconfig(champlain-0.12) -# BuildRequires: pkgconfig(libecal-2.0) +BuildRequires: pkgconfig(libecal-2.0) BuildRequires: pkgconfig(granite) BuildRequires: pkgconfig(libhandy-1) -BuildRequires: folks-devel = 1:0.15.5-4.fc37 +BuildRequires: folks-devel BuildRequires: libgee-devel -BuildRequires: geocode-glib-devel +BuildRequires: pkgconfig(geocode-glib-2.0) BuildRequires: geoclue2-devel BuildRequires: glib2-devel BuildRequires: gtk+-devel @@ -29,7 +31,7 @@ BuildRequires: libical BuildRequires: libhandy >= 0.90.0 BuildRequires: meson BuildRequires: vala -BuildRequires: evolution-data-server-devel = 3.44.4 +BuildRequires: evolution-data-server-devel Requires: hicolor-icon-theme From 1984cf5ad0a90f93bd2996aa11b906fcd20128df Mon Sep 17 00:00:00 2001 From: Lleyton Gray Date: Thu, 24 Nov 2022 06:59:44 +0000 Subject: [PATCH 60/74] [elementary-music] Require granite-7 --- anda/desktops/elementary/elementary-music/elementary-music.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anda/desktops/elementary/elementary-music/elementary-music.spec b/anda/desktops/elementary/elementary-music/elementary-music.spec index 3a6b06a65e..1c703333ad 100644 --- a/anda/desktops/elementary/elementary-music/elementary-music.spec +++ b/anda/desktops/elementary/elementary-music/elementary-music.spec @@ -28,7 +28,7 @@ BuildRequires: pkgconfig(gee-0.8) BuildRequires: pkgconfig(gio-2.0) BuildRequires: pkgconfig(glib-2.0) >= 2.40 BuildRequires: pkgconfig(gobject-2.0) -BuildRequires: granite-devel >= 7.0.0 +BuildRequires: pkgconfig(granite-7) >= 7.0.0 BuildRequires: pkgconfig(gstreamer-1.0) BuildRequires: pkgconfig(gstreamer-pbutils-1.0) BuildRequires: pkgconfig(gstreamer-tag-1.0) From 0f21d769df64fb5e33219016b23e0fd74eb32f60 Mon Sep 17 00:00:00 2001 From: seth Date: Thu, 24 Nov 2022 08:36:42 -0500 Subject: [PATCH 61/74] [prismlauncher-nightly] bump commit --- anda/games/prismlauncher-nightly/prismlauncher-nightly.spec | 2 +- .../prismlauncher-qt5-nightly/prismlauncher-qt5-nightly.spec | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/anda/games/prismlauncher-nightly/prismlauncher-nightly.spec b/anda/games/prismlauncher-nightly/prismlauncher-nightly.spec index 9b155812ac..dae55284d3 100644 --- a/anda/games/prismlauncher-nightly/prismlauncher-nightly.spec +++ b/anda/games/prismlauncher-nightly/prismlauncher-nightly.spec @@ -2,7 +2,7 @@ %global real_name prismlauncher %global repo https://github.com/%{fancy_name}/%{fancy_name} -%global commit 68b7aa0a4d124b231ba351ae8d37ea6c55b333a2 +%global commit b60fe08d44fbf70bff1555ab0e0cee0a00172ac8 %global shortcommit %(c=%{commit}; echo ${c:0:7}) %global filesystem_commit cd6805e94dd5d6346be1b75a54cdc27787319dd2 %global libnbtplusplus_commit 2203af7eeb48c45398139b583615134efd8d407f diff --git a/anda/games/prismlauncher-qt5-nightly/prismlauncher-qt5-nightly.spec b/anda/games/prismlauncher-qt5-nightly/prismlauncher-qt5-nightly.spec index e1a697dfd9..012b0e6ccd 100644 --- a/anda/games/prismlauncher-qt5-nightly/prismlauncher-qt5-nightly.spec +++ b/anda/games/prismlauncher-qt5-nightly/prismlauncher-qt5-nightly.spec @@ -2,7 +2,7 @@ %global real_name prismlauncher %global repo https://github.com/%{fancy_name}/%{fancy_name} -%global commit 30607c34a153fd32085712e18827983772d77f7b +%global commit b60fe08d44fbf70bff1555ab0e0cee0a00172ac8 %global shortcommit %(c=%{commit}; echo ${c:0:7}) %global filesystem_commit cd6805e94dd5d6346be1b75a54cdc27787319dd2 %global libnbtplusplus_commit 2203af7eeb48c45398139b583615134efd8d407f From e78c822f591e7a343329b810b6e62994a8161a3e Mon Sep 17 00:00:00 2001 From: Lleyton Gray Date: Thu, 24 Nov 2022 19:01:15 +0000 Subject: [PATCH 62/74] [sccache] fix patch file --- anda/rust/sccache/sccache-fix-metadata-auto.diff | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/anda/rust/sccache/sccache-fix-metadata-auto.diff b/anda/rust/sccache/sccache-fix-metadata-auto.diff index 211ab85ba9..77ca79a9e6 100644 --- a/anda/rust/sccache/sccache-fix-metadata-auto.diff +++ b/anda/rust/sccache/sccache-fix-metadata-auto.diff @@ -1,6 +1,6 @@ ---- sccache-0.3.0/Cargo.toml 1970-01-01T00:00:01+00:00 -+++ sccache-0.3.0/Cargo.toml 1970-01-01T00:00:01+00:00 -@@ -392,13 +392,3 @@ +--- sccache-0.3.1/Cargo.toml 1970-01-01T00:00:01+00:00 ++++ sccache-0.3.1/Cargo.toml 1970-01-01T00:00:01+00:00 +@@ -402,14 +402,3 @@ [target."cfg(unix)".dependencies.daemonize] version = "0.4" @@ -12,5 +12,6 @@ -features = [ - "fileapi", - "handleapi", +- "stringapiset", - "winnls", -] From ae60a07105a7fd50ce343b8d6f7c1788164070da Mon Sep 17 00:00:00 2001 From: Lleyton Gray Date: Thu, 24 Nov 2022 23:16:33 +0000 Subject: [PATCH 63/74] [rust-starship] patch broken dep --- anda/rust/starship/rust-starship.spec | 44 +++++++++++++++++-- .../starship-fix-git-repository-dep.diff | 11 +++++ .../starship/starship-fix-metadata-auto.diff | 8 ++-- 3 files changed, 56 insertions(+), 7 deletions(-) create mode 100644 anda/rust/starship/starship-fix-git-repository-dep.diff diff --git a/anda/rust/starship/rust-starship.spec b/anda/rust/starship/rust-starship.spec index fa3df1e247..c874b69df5 100644 --- a/anda/rust/starship/rust-starship.spec +++ b/anda/rust/starship/rust-starship.spec @@ -1,6 +1,5 @@ -# Generated by rust2rpm 22 +# Generated by rust2rpm 23 %bcond_without check -%define debug_package %{nil} %global crate starship @@ -12,7 +11,9 @@ Summary: Minimal, blazing-fast, and infinitely customizable prompt for an License: ISC URL: https://crates.io/crates/starship Source: %{crates_source} -ExclusiveArch: %{rust_arches} +# Automatically generated patch to strip foreign dependencies +Patch0: starship-fix-metadata-auto.diff +Patch1: starship-fix-git-repository-dep.diff BuildRequires: rust-packaging >= 21 BuildRequires: anda-srpm-macros @@ -85,6 +86,42 @@ use the "config-schema" feature of the "%{crate}" crate. %files -n %{name}+config-schema-devel %ghost %{crate_instdir}/Cargo.toml +%package -n %{name}+git-features-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+git-features-devel %{_description} + +This package contains library source intended for building other packages which +use the "git-features" feature of the "%{crate}" crate. + +%files -n %{name}+git-features-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+git-repository-faster-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+git-repository-faster-devel %{_description} + +This package contains library source intended for building other packages which +use the "git-repository-faster" feature of the "%{crate}" crate. + +%files -n %{name}+git-repository-faster-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+git-repository-max-perf-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+git-repository-max-perf-devel %{_description} + +This package contains library source intended for building other packages which +use the "git-repository-max-perf" feature of the "%{crate}" crate. + +%files -n %{name}+git-repository-max-perf-devel +%ghost %{crate_instdir}/Cargo.toml + %package -n %{name}+notify-devel Summary: %{summary} BuildArch: noarch @@ -135,6 +172,7 @@ use the "starship-battery" feature of the "%{crate}" crate. %prep %autosetup -n %{crate}-%{version_no_tilde} -p1 +cargo add git-repository@0.27.0 %cargo_prep_online %build diff --git a/anda/rust/starship/starship-fix-git-repository-dep.diff b/anda/rust/starship/starship-fix-git-repository-dep.diff new file mode 100644 index 0000000000..2c1c738347 --- /dev/null +++ b/anda/rust/starship/starship-fix-git-repository-dep.diff @@ -0,0 +1,11 @@ +--- starship-1.11.0/src/context.rs 1970-01-01T00:00:01+00:00 ++++ starship-1.11.0/src/context.rs 1970-01-01T00:00:01+00:00 +@@ -635,7 +635,7 @@ fn get_remote_repository_info( + .map(|r| r.shorten().to_string()); + let name = repository + .branch_remote_name(branch_name) +- .map(|n| n.to_string()); ++ .map(|n| n.as_bstr().to_string()); + + Some(Remote { branch, name }) + } diff --git a/anda/rust/starship/starship-fix-metadata-auto.diff b/anda/rust/starship/starship-fix-metadata-auto.diff index 5ac03d43f5..27b729aece 100644 --- a/anda/rust/starship/starship-fix-metadata-auto.diff +++ b/anda/rust/starship/starship-fix-metadata-auto.diff @@ -1,6 +1,6 @@ ---- starship-1.10.3/Cargo.toml 1970-01-01T00:00:01+00:00 -+++ starship-1.10.3/Cargo.toml 1970-01-01T00:00:01+00:00 -@@ -246,18 +246,3 @@ +--- starship-1.11.0/Cargo.toml 1970-01-01T00:00:01+00:00 ++++ starship-1.11.0/Cargo.toml 1970-01-01T00:00:01+00:00 +@@ -255,18 +255,3 @@ ] default-features = false @@ -8,7 +8,7 @@ -version = "0.2.0" - -[target."cfg(windows)".dependencies.windows] --version = "0.39.0" +-version = "0.42.0" -features = [ - "Win32_Foundation", - "Win32_UI_Shell", From 5846b7c808d575e6f8ae6e175bb6ab8fd8813821 Mon Sep 17 00:00:00 2001 From: Lleyton Gray Date: Fri, 25 Nov 2022 01:41:23 +0000 Subject: [PATCH 64/74] [rust-starship] don't generate debug packages --- anda/rust/starship/rust-starship.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/anda/rust/starship/rust-starship.spec b/anda/rust/starship/rust-starship.spec index c874b69df5..887ecd7d26 100644 --- a/anda/rust/starship/rust-starship.spec +++ b/anda/rust/starship/rust-starship.spec @@ -1,5 +1,6 @@ # Generated by rust2rpm 23 %bcond_without check +%define debug_package %{nil} %global crate starship From 3a81bc0cc02c7e521c599566ba4dea2a7d3f209b Mon Sep 17 00:00:00 2001 From: Lleyton Gray Date: Fri, 25 Nov 2022 02:26:45 +0000 Subject: [PATCH 65/74] [update] Use GitHub token for higher rate-limits --- .github/workflows/update.yml | 2 ++ anda/desktops/elementary/contractor/chkupdate.py | 2 +- anda/desktops/elementary/editorconfig/chkupdate.py | 2 +- anda/desktops/elementary/elementary-calculator/chkupdate.py | 2 +- anda/desktops/elementary/elementary-calendar/chkupdate.py | 2 +- anda/desktops/elementary/elementary-camera/chkupdate.py | 2 +- anda/desktops/elementary/elementary-capnet-assist/chkupdate.py | 2 +- anda/desktops/elementary/elementary-code/chkupdate.py | 2 +- anda/desktops/elementary/elementary-files/chkupdate.py | 2 +- anda/desktops/elementary/elementary-greeter/chkupdate.py | 2 +- anda/desktops/elementary/elementary-icon-theme/chkupdate.py | 2 +- anda/desktops/elementary/elementary-music/chkupdate.py | 2 +- anda/desktops/elementary/elementary-notifications/chkupdate.py | 2 +- anda/desktops/elementary/elementary-onboarding/chkupdate.py | 2 +- anda/desktops/elementary/elementary-photos/chkupdate.py | 2 +- anda/desktops/elementary/elementary-print/chkupdate.py | 2 +- .../desktops/elementary/elementary-screenshot-tool/chkupdate.py | 2 +- .../desktops/elementary/elementary-settings-daemon/chkupdate.py | 2 +- .../elementary/elementary-shortcut-overlay/chkupdate.py | 2 +- anda/desktops/elementary/elementary-sideload/chkupdate.py | 2 +- anda/desktops/elementary/elementary-sound-theme/chkupdate.py | 2 +- anda/desktops/elementary/elementary-tasks/chkupdate.py | 2 +- anda/desktops/elementary/elementary-terminal/chkupdate.py | 2 +- anda/desktops/elementary/elementary-theme/chkupdate.py | 2 +- anda/desktops/elementary/elementary-videos/chkupdate.py | 2 +- anda/desktops/elementary/elementary-wallpapers/chkupdate.py | 2 +- anda/desktops/elementary/gala/chkupdate.py | 2 +- anda/desktops/elementary/granite-7/chkupdate.py | 2 +- anda/desktops/elementary/pantheon-agent-geoclue2/chkupdate.py | 2 +- anda/desktops/elementary/pantheon-agent-polkit/chkupdate.py | 2 +- anda/desktops/elementary/switchboard-plug-a11y/chkupdate.py | 2 +- anda/desktops/elementary/switchboard-plug-about/chkupdate.py | 2 +- .../elementary/switchboard-plug-applications/chkupdate.py | 2 +- .../desktops/elementary/switchboard-plug-bluetooth/chkupdate.py | 2 +- anda/desktops/elementary/switchboard-plug-display/chkupdate.py | 2 +- anda/desktops/elementary/switchboard-plug-keyboard/chkupdate.py | 2 +- .../elementary/switchboard-plug-mouse-touchpad/chkupdate.py | 2 +- .../elementary/switchboard-plug-networking/chkupdate.py | 2 +- .../elementary/switchboard-plug-notifications/chkupdate.py | 2 +- .../elementary/switchboard-plug-onlineaccounts/chkupdate.py | 2 +- .../elementary/switchboard-plug-pantheon-shell/chkupdate.py | 2 +- anda/desktops/elementary/switchboard-plug-printers/chkupdate.py | 2 +- anda/desktops/elementary/switchboard-plug-sharing/chkupdate.py | 2 +- anda/desktops/elementary/switchboard-plug-sound/chkupdate.py | 2 +- anda/desktops/elementary/switchboard-plug-tweaks/chkupdate.py | 2 +- anda/desktops/elementary/switchboard/chkupdate.py | 2 +- .../elementary/wingpanel-applications-menu/chkupdate.py | 2 +- .../elementary/wingpanel-indicator-bluetooth/chkupdate.py | 2 +- .../elementary/wingpanel-indicator-datetime/chkupdate.py | 2 +- .../elementary/wingpanel-indicator-keyboard/chkupdate.py | 2 +- .../elementary/wingpanel-indicator-network/chkupdate.py | 2 +- .../elementary/wingpanel-indicator-nightlight/chkupdate.py | 2 +- .../elementary/wingpanel-indicator-notifications/chkupdate.py | 2 +- anda/desktops/elementary/wingpanel-indicator-power/chkupdate.py | 2 +- .../elementary/wingpanel-indicator-session/chkupdate.py | 2 +- anda/desktops/elementary/wingpanel-indicator-sound/chkupdate.py | 2 +- anda/desktops/elementary/wingpanel/chkupdate.py | 2 +- anda/fonts/impallari-raleway-fonts/chkupdate.py | 2 +- anda/fonts/naikai/chkupdate.py | 2 +- anda/games/prismlauncher-nightly/chkupdate.py | 2 +- anda/games/prismlauncher-qt5-nightly/chkupdate.py | 2 +- anda/games/prismlauncher-qt5/chkupdate.py | 2 +- anda/games/prismlauncher/chkupdate.py | 2 +- anda/lib/libbismuth/chkupdate.py | 2 +- anda/lib/libhelium/chkupdate.py | 2 +- anda/rnote/chkupdate.py | 2 +- anda/rust/starship/chkupdate.py | 2 +- anda/sass/chkupdate.py | 2 +- anda/tau-helium/chkupdate.py | 2 +- anda/tau-hydrogen/chkupdate.py | 2 +- anda/tectonic/chkupdate.py | 2 +- 71 files changed, 72 insertions(+), 70 deletions(-) diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index 1006b8e828..609a3a0ca0 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -25,6 +25,8 @@ jobs: - name: Run Update run: bash ./update.sh + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Save run: | diff --git a/anda/desktops/elementary/contractor/chkupdate.py b/anda/desktops/elementary/contractor/chkupdate.py index 464cc74a07..e420b7bfbc 100644 --- a/anda/desktops/elementary/contractor/chkupdate.py +++ b/anda/desktops/elementary/contractor/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/editorconfig/chkupdate.py b/anda/desktops/elementary/editorconfig/chkupdate.py index dcd4ad28f7..bd97c85460 100644 --- a/anda/desktops/elementary/editorconfig/chkupdate.py +++ b/anda/desktops/elementary/editorconfig/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/elementary-calculator/chkupdate.py b/anda/desktops/elementary/elementary-calculator/chkupdate.py index c60f46f02a..7de61b894a 100644 --- a/anda/desktops/elementary/elementary-calculator/chkupdate.py +++ b/anda/desktops/elementary/elementary-calculator/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/elementary-calendar/chkupdate.py b/anda/desktops/elementary/elementary-calendar/chkupdate.py index 899f17e8da..f0f7f8af30 100644 --- a/anda/desktops/elementary/elementary-calendar/chkupdate.py +++ b/anda/desktops/elementary/elementary-calendar/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/elementary-camera/chkupdate.py b/anda/desktops/elementary/elementary-camera/chkupdate.py index 8b8985cf89..559fa791a0 100644 --- a/anda/desktops/elementary/elementary-camera/chkupdate.py +++ b/anda/desktops/elementary/elementary-camera/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/elementary-capnet-assist/chkupdate.py b/anda/desktops/elementary/elementary-capnet-assist/chkupdate.py index d682596e3b..bed03ca35d 100644 --- a/anda/desktops/elementary/elementary-capnet-assist/chkupdate.py +++ b/anda/desktops/elementary/elementary-capnet-assist/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/elementary-code/chkupdate.py b/anda/desktops/elementary/elementary-code/chkupdate.py index dac1cc8e08..3094cf5c0b 100644 --- a/anda/desktops/elementary/elementary-code/chkupdate.py +++ b/anda/desktops/elementary/elementary-code/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/elementary-files/chkupdate.py b/anda/desktops/elementary/elementary-files/chkupdate.py index d1e11fc044..73e841621b 100644 --- a/anda/desktops/elementary/elementary-files/chkupdate.py +++ b/anda/desktops/elementary/elementary-files/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/elementary-greeter/chkupdate.py b/anda/desktops/elementary/elementary-greeter/chkupdate.py index 68b59f3785..4ffcb12144 100644 --- a/anda/desktops/elementary/elementary-greeter/chkupdate.py +++ b/anda/desktops/elementary/elementary-greeter/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/elementary-icon-theme/chkupdate.py b/anda/desktops/elementary/elementary-icon-theme/chkupdate.py index b713f44233..0c8cbda227 100644 --- a/anda/desktops/elementary/elementary-icon-theme/chkupdate.py +++ b/anda/desktops/elementary/elementary-icon-theme/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/elementary-music/chkupdate.py b/anda/desktops/elementary/elementary-music/chkupdate.py index 8ceea7cd54..df20d60383 100644 --- a/anda/desktops/elementary/elementary-music/chkupdate.py +++ b/anda/desktops/elementary/elementary-music/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/elementary-notifications/chkupdate.py b/anda/desktops/elementary/elementary-notifications/chkupdate.py index b0fcee367c..41e590adf3 100644 --- a/anda/desktops/elementary/elementary-notifications/chkupdate.py +++ b/anda/desktops/elementary/elementary-notifications/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/elementary-onboarding/chkupdate.py b/anda/desktops/elementary/elementary-onboarding/chkupdate.py index 879c4e4741..d9bab43d07 100644 --- a/anda/desktops/elementary/elementary-onboarding/chkupdate.py +++ b/anda/desktops/elementary/elementary-onboarding/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/elementary-photos/chkupdate.py b/anda/desktops/elementary/elementary-photos/chkupdate.py index c05849a807..dbaab99a46 100644 --- a/anda/desktops/elementary/elementary-photos/chkupdate.py +++ b/anda/desktops/elementary/elementary-photos/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/elementary-print/chkupdate.py b/anda/desktops/elementary/elementary-print/chkupdate.py index dd76792462..929e1da796 100644 --- a/anda/desktops/elementary/elementary-print/chkupdate.py +++ b/anda/desktops/elementary/elementary-print/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/elementary-screenshot-tool/chkupdate.py b/anda/desktops/elementary/elementary-screenshot-tool/chkupdate.py index 66e032de8e..15a0080987 100644 --- a/anda/desktops/elementary/elementary-screenshot-tool/chkupdate.py +++ b/anda/desktops/elementary/elementary-screenshot-tool/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/elementary-settings-daemon/chkupdate.py b/anda/desktops/elementary/elementary-settings-daemon/chkupdate.py index 024eb1519c..9d6bf168fd 100644 --- a/anda/desktops/elementary/elementary-settings-daemon/chkupdate.py +++ b/anda/desktops/elementary/elementary-settings-daemon/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/elementary-shortcut-overlay/chkupdate.py b/anda/desktops/elementary/elementary-shortcut-overlay/chkupdate.py index 7c93185d81..90c580e38d 100644 --- a/anda/desktops/elementary/elementary-shortcut-overlay/chkupdate.py +++ b/anda/desktops/elementary/elementary-shortcut-overlay/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/elementary-sideload/chkupdate.py b/anda/desktops/elementary/elementary-sideload/chkupdate.py index f272208fa1..0c5faa1d4d 100644 --- a/anda/desktops/elementary/elementary-sideload/chkupdate.py +++ b/anda/desktops/elementary/elementary-sideload/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/elementary-sound-theme/chkupdate.py b/anda/desktops/elementary/elementary-sound-theme/chkupdate.py index 1097665687..dad03b026c 100644 --- a/anda/desktops/elementary/elementary-sound-theme/chkupdate.py +++ b/anda/desktops/elementary/elementary-sound-theme/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/elementary-tasks/chkupdate.py b/anda/desktops/elementary/elementary-tasks/chkupdate.py index 7062745cfe..d764caf737 100644 --- a/anda/desktops/elementary/elementary-tasks/chkupdate.py +++ b/anda/desktops/elementary/elementary-tasks/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/elementary-terminal/chkupdate.py b/anda/desktops/elementary/elementary-terminal/chkupdate.py index d9cb68e9f9..cfc1429c86 100644 --- a/anda/desktops/elementary/elementary-terminal/chkupdate.py +++ b/anda/desktops/elementary/elementary-terminal/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/elementary-theme/chkupdate.py b/anda/desktops/elementary/elementary-theme/chkupdate.py index c9ead73f47..d81f060e6a 100644 --- a/anda/desktops/elementary/elementary-theme/chkupdate.py +++ b/anda/desktops/elementary/elementary-theme/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/elementary-videos/chkupdate.py b/anda/desktops/elementary/elementary-videos/chkupdate.py index fea2278962..ed85bdbc2f 100644 --- a/anda/desktops/elementary/elementary-videos/chkupdate.py +++ b/anda/desktops/elementary/elementary-videos/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/elementary-wallpapers/chkupdate.py b/anda/desktops/elementary/elementary-wallpapers/chkupdate.py index 81208a436c..2adeefd693 100644 --- a/anda/desktops/elementary/elementary-wallpapers/chkupdate.py +++ b/anda/desktops/elementary/elementary-wallpapers/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/gala/chkupdate.py b/anda/desktops/elementary/gala/chkupdate.py index 65b799e726..b43215fc75 100644 --- a/anda/desktops/elementary/gala/chkupdate.py +++ b/anda/desktops/elementary/gala/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/granite-7/chkupdate.py b/anda/desktops/elementary/granite-7/chkupdate.py index f91a3df2f9..55014548fb 100644 --- a/anda/desktops/elementary/granite-7/chkupdate.py +++ b/anda/desktops/elementary/granite-7/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/pantheon-agent-geoclue2/chkupdate.py b/anda/desktops/elementary/pantheon-agent-geoclue2/chkupdate.py index 04527639e4..9db3dd9c3d 100644 --- a/anda/desktops/elementary/pantheon-agent-geoclue2/chkupdate.py +++ b/anda/desktops/elementary/pantheon-agent-geoclue2/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/pantheon-agent-polkit/chkupdate.py b/anda/desktops/elementary/pantheon-agent-polkit/chkupdate.py index 54d5c1bc56..9e1410b56a 100644 --- a/anda/desktops/elementary/pantheon-agent-polkit/chkupdate.py +++ b/anda/desktops/elementary/pantheon-agent-polkit/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/switchboard-plug-a11y/chkupdate.py b/anda/desktops/elementary/switchboard-plug-a11y/chkupdate.py index a4a1a7bf38..cee5d484ab 100644 --- a/anda/desktops/elementary/switchboard-plug-a11y/chkupdate.py +++ b/anda/desktops/elementary/switchboard-plug-a11y/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/switchboard-plug-about/chkupdate.py b/anda/desktops/elementary/switchboard-plug-about/chkupdate.py index f36706c9f1..162dba982d 100644 --- a/anda/desktops/elementary/switchboard-plug-about/chkupdate.py +++ b/anda/desktops/elementary/switchboard-plug-about/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/switchboard-plug-applications/chkupdate.py b/anda/desktops/elementary/switchboard-plug-applications/chkupdate.py index 48378a42e2..69c4064178 100644 --- a/anda/desktops/elementary/switchboard-plug-applications/chkupdate.py +++ b/anda/desktops/elementary/switchboard-plug-applications/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/switchboard-plug-bluetooth/chkupdate.py b/anda/desktops/elementary/switchboard-plug-bluetooth/chkupdate.py index 33132f2afe..7d12043907 100644 --- a/anda/desktops/elementary/switchboard-plug-bluetooth/chkupdate.py +++ b/anda/desktops/elementary/switchboard-plug-bluetooth/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/switchboard-plug-display/chkupdate.py b/anda/desktops/elementary/switchboard-plug-display/chkupdate.py index 950689226f..08fe02cc93 100644 --- a/anda/desktops/elementary/switchboard-plug-display/chkupdate.py +++ b/anda/desktops/elementary/switchboard-plug-display/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/switchboard-plug-keyboard/chkupdate.py b/anda/desktops/elementary/switchboard-plug-keyboard/chkupdate.py index d2343faf7b..6b5c2861e0 100644 --- a/anda/desktops/elementary/switchboard-plug-keyboard/chkupdate.py +++ b/anda/desktops/elementary/switchboard-plug-keyboard/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/switchboard-plug-mouse-touchpad/chkupdate.py b/anda/desktops/elementary/switchboard-plug-mouse-touchpad/chkupdate.py index dc50a3cf32..5ece641e3f 100644 --- a/anda/desktops/elementary/switchboard-plug-mouse-touchpad/chkupdate.py +++ b/anda/desktops/elementary/switchboard-plug-mouse-touchpad/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/switchboard-plug-networking/chkupdate.py b/anda/desktops/elementary/switchboard-plug-networking/chkupdate.py index 2c38f08d4a..ed8fdb95a2 100644 --- a/anda/desktops/elementary/switchboard-plug-networking/chkupdate.py +++ b/anda/desktops/elementary/switchboard-plug-networking/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/switchboard-plug-notifications/chkupdate.py b/anda/desktops/elementary/switchboard-plug-notifications/chkupdate.py index dffff8dc07..18c70c1502 100644 --- a/anda/desktops/elementary/switchboard-plug-notifications/chkupdate.py +++ b/anda/desktops/elementary/switchboard-plug-notifications/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/switchboard-plug-onlineaccounts/chkupdate.py b/anda/desktops/elementary/switchboard-plug-onlineaccounts/chkupdate.py index b88f00c37f..dbf4263e07 100644 --- a/anda/desktops/elementary/switchboard-plug-onlineaccounts/chkupdate.py +++ b/anda/desktops/elementary/switchboard-plug-onlineaccounts/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/switchboard-plug-pantheon-shell/chkupdate.py b/anda/desktops/elementary/switchboard-plug-pantheon-shell/chkupdate.py index 8bd713dcba..74815b4451 100644 --- a/anda/desktops/elementary/switchboard-plug-pantheon-shell/chkupdate.py +++ b/anda/desktops/elementary/switchboard-plug-pantheon-shell/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/switchboard-plug-printers/chkupdate.py b/anda/desktops/elementary/switchboard-plug-printers/chkupdate.py index c5db29fefb..5db7a343f1 100644 --- a/anda/desktops/elementary/switchboard-plug-printers/chkupdate.py +++ b/anda/desktops/elementary/switchboard-plug-printers/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/switchboard-plug-sharing/chkupdate.py b/anda/desktops/elementary/switchboard-plug-sharing/chkupdate.py index 4f3b94c55f..4dbf59921c 100644 --- a/anda/desktops/elementary/switchboard-plug-sharing/chkupdate.py +++ b/anda/desktops/elementary/switchboard-plug-sharing/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/switchboard-plug-sound/chkupdate.py b/anda/desktops/elementary/switchboard-plug-sound/chkupdate.py index ab3af9d72b..e39c74ba33 100644 --- a/anda/desktops/elementary/switchboard-plug-sound/chkupdate.py +++ b/anda/desktops/elementary/switchboard-plug-sound/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/switchboard-plug-tweaks/chkupdate.py b/anda/desktops/elementary/switchboard-plug-tweaks/chkupdate.py index b0329c2a99..3c46bd9988 100644 --- a/anda/desktops/elementary/switchboard-plug-tweaks/chkupdate.py +++ b/anda/desktops/elementary/switchboard-plug-tweaks/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/switchboard/chkupdate.py b/anda/desktops/elementary/switchboard/chkupdate.py index 1585ec23e7..0dfbb87376 100644 --- a/anda/desktops/elementary/switchboard/chkupdate.py +++ b/anda/desktops/elementary/switchboard/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/wingpanel-applications-menu/chkupdate.py b/anda/desktops/elementary/wingpanel-applications-menu/chkupdate.py index dd0a4b41e8..24b1c8a8a4 100644 --- a/anda/desktops/elementary/wingpanel-applications-menu/chkupdate.py +++ b/anda/desktops/elementary/wingpanel-applications-menu/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/wingpanel-indicator-bluetooth/chkupdate.py b/anda/desktops/elementary/wingpanel-indicator-bluetooth/chkupdate.py index fdc7aeac32..e57651bc21 100644 --- a/anda/desktops/elementary/wingpanel-indicator-bluetooth/chkupdate.py +++ b/anda/desktops/elementary/wingpanel-indicator-bluetooth/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/wingpanel-indicator-datetime/chkupdate.py b/anda/desktops/elementary/wingpanel-indicator-datetime/chkupdate.py index d8ef50bd4d..3db34f14a8 100644 --- a/anda/desktops/elementary/wingpanel-indicator-datetime/chkupdate.py +++ b/anda/desktops/elementary/wingpanel-indicator-datetime/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/wingpanel-indicator-keyboard/chkupdate.py b/anda/desktops/elementary/wingpanel-indicator-keyboard/chkupdate.py index 416775f7a4..5f6c0e9cb3 100644 --- a/anda/desktops/elementary/wingpanel-indicator-keyboard/chkupdate.py +++ b/anda/desktops/elementary/wingpanel-indicator-keyboard/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/wingpanel-indicator-network/chkupdate.py b/anda/desktops/elementary/wingpanel-indicator-network/chkupdate.py index 1124e4442d..bf66febba5 100644 --- a/anda/desktops/elementary/wingpanel-indicator-network/chkupdate.py +++ b/anda/desktops/elementary/wingpanel-indicator-network/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/wingpanel-indicator-nightlight/chkupdate.py b/anda/desktops/elementary/wingpanel-indicator-nightlight/chkupdate.py index cd3ac8c158..d2dbd1fe1e 100644 --- a/anda/desktops/elementary/wingpanel-indicator-nightlight/chkupdate.py +++ b/anda/desktops/elementary/wingpanel-indicator-nightlight/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/wingpanel-indicator-notifications/chkupdate.py b/anda/desktops/elementary/wingpanel-indicator-notifications/chkupdate.py index 15a617b87f..b81c2c3905 100644 --- a/anda/desktops/elementary/wingpanel-indicator-notifications/chkupdate.py +++ b/anda/desktops/elementary/wingpanel-indicator-notifications/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/wingpanel-indicator-power/chkupdate.py b/anda/desktops/elementary/wingpanel-indicator-power/chkupdate.py index 5078808779..42a74717de 100644 --- a/anda/desktops/elementary/wingpanel-indicator-power/chkupdate.py +++ b/anda/desktops/elementary/wingpanel-indicator-power/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/wingpanel-indicator-session/chkupdate.py b/anda/desktops/elementary/wingpanel-indicator-session/chkupdate.py index d183f09fd3..52c713deb7 100644 --- a/anda/desktops/elementary/wingpanel-indicator-session/chkupdate.py +++ b/anda/desktops/elementary/wingpanel-indicator-session/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/wingpanel-indicator-sound/chkupdate.py b/anda/desktops/elementary/wingpanel-indicator-sound/chkupdate.py index 0a250e2712..43784f5b63 100644 --- a/anda/desktops/elementary/wingpanel-indicator-sound/chkupdate.py +++ b/anda/desktops/elementary/wingpanel-indicator-sound/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/desktops/elementary/wingpanel/chkupdate.py b/anda/desktops/elementary/wingpanel/chkupdate.py index 5cbe79e075..e0a8ef91a2 100644 --- a/anda/desktops/elementary/wingpanel/chkupdate.py +++ b/anda/desktops/elementary/wingpanel/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/fonts/impallari-raleway-fonts/chkupdate.py b/anda/fonts/impallari-raleway-fonts/chkupdate.py index d1f19f980e..3c02e70f37 100644 --- a/anda/fonts/impallari-raleway-fonts/chkupdate.py +++ b/anda/fonts/impallari-raleway-fonts/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/fonts/naikai/chkupdate.py b/anda/fonts/naikai/chkupdate.py index 6e58f7034b..1fef62ee57 100644 --- a/anda/fonts/naikai/chkupdate.py +++ b/anda/fonts/naikai/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/games/prismlauncher-nightly/chkupdate.py b/anda/games/prismlauncher-nightly/chkupdate.py index de3467dc77..bde29103ca 100644 --- a/anda/games/prismlauncher-nightly/chkupdate.py +++ b/anda/games/prismlauncher-nightly/chkupdate.py @@ -11,7 +11,7 @@ LINK = f'https://api.github.com/repos/{REPO}/commits/HEAD' if datetime.utcnow().hour not in [0, 12]: exit(f'{NAME}: skipping update check') -sha = requests.get(LINK).json()['sha'] +sha = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['sha'] f = open(SPEC, 'r') matches = re.findall(REGEX_SHA, txt:=f.read()) diff --git a/anda/games/prismlauncher-qt5-nightly/chkupdate.py b/anda/games/prismlauncher-qt5-nightly/chkupdate.py index 5d08d27f81..66a2ecedd6 100644 --- a/anda/games/prismlauncher-qt5-nightly/chkupdate.py +++ b/anda/games/prismlauncher-qt5-nightly/chkupdate.py @@ -11,7 +11,7 @@ LINK = f'https://api.github.com/repos/{REPO}/commits/HEAD' if datetime.utcnow().hour not in [0, 12]: exit(f'{NAME}: skipping update check') -sha = requests.get(LINK).json()['sha'] +sha = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['sha'] f = open(SPEC, 'r') matches = re.findall(REGEX_SHA, txt:=f.read()) diff --git a/anda/games/prismlauncher-qt5/chkupdate.py b/anda/games/prismlauncher-qt5/chkupdate.py index 4999d75848..5817835695 100644 --- a/anda/games/prismlauncher-qt5/chkupdate.py +++ b/anda/games/prismlauncher-qt5/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/games/prismlauncher/chkupdate.py b/anda/games/prismlauncher/chkupdate.py index a25168a479..a041b97d66 100644 --- a/anda/games/prismlauncher/chkupdate.py +++ b/anda/games/prismlauncher/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/lib/libbismuth/chkupdate.py b/anda/lib/libbismuth/chkupdate.py index 5e7937dae9..0475c96d2e 100644 --- a/anda/lib/libbismuth/chkupdate.py +++ b/anda/lib/libbismuth/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/lib/libhelium/chkupdate.py b/anda/lib/libhelium/chkupdate.py index aa3834bb5f..f371c58cf4 100644 --- a/anda/lib/libhelium/chkupdate.py +++ b/anda/lib/libhelium/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/rnote/chkupdate.py b/anda/rnote/chkupdate.py index 7d398ba1fa..c6523fdeef 100644 --- a/anda/rnote/chkupdate.py +++ b/anda/rnote/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] ver = ver[1:] # starts with v with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) diff --git a/anda/rust/starship/chkupdate.py b/anda/rust/starship/chkupdate.py index e781703eee..cd6e8d722b 100644 --- a/anda/rust/starship/chkupdate.py +++ b/anda/rust/starship/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] ver = ver[1:] # starts with v with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) diff --git a/anda/sass/chkupdate.py b/anda/sass/chkupdate.py index 5d0c362aca..1e3730bf9d 100644 --- a/anda/sass/chkupdate.py +++ b/anda/sass/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/tau-helium/chkupdate.py b/anda/tau-helium/chkupdate.py index 18b7d9939e..5cb3b2f2e8 100644 --- a/anda/tau-helium/chkupdate.py +++ b/anda/tau-helium/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/tau-hydrogen/chkupdate.py b/anda/tau-hydrogen/chkupdate.py index 89ee38857d..91f4f3b268 100644 --- a/anda/tau-hydrogen/chkupdate.py +++ b/anda/tau-hydrogen/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") diff --git a/anda/tectonic/chkupdate.py b/anda/tectonic/chkupdate.py index f66fb084c5..91597b9b4b 100644 --- a/anda/tectonic/chkupdate.py +++ b/anda/tectonic/chkupdate.py @@ -9,7 +9,7 @@ SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' -ver = requests.get(LINK).json()['tag_name'][9:] +ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'][9:] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") From 83852e9d6e1498f21f70af7af7ee8a939ffd0314 Mon Sep 17 00:00:00 2001 From: Package Update Checker <> Date: Fri, 25 Nov 2022 02:29:02 +0000 Subject: [PATCH 66/74] Automatic Update: rnote tau-helium --- anda/rnote/rnote.spec | 2 +- anda/tau-helium/tau-helium.spec | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/anda/rnote/rnote.spec b/anda/rnote/rnote.spec index 1acec4c66b..3d9c6fb71f 100644 --- a/anda/rnote/rnote.spec +++ b/anda/rnote/rnote.spec @@ -1,5 +1,5 @@ Name: rnote -Version: 0.5.7 +Version: 0.5.8 Release: %autorelease Summary: Sketch and take handwritten notes. License: GPLv3 diff --git a/anda/tau-helium/tau-helium.spec b/anda/tau-helium/tau-helium.spec index 9874edb356..c44c72ad23 100644 --- a/anda/tau-helium/tau-helium.spec +++ b/anda/tau-helium/tau-helium.spec @@ -1,6 +1,6 @@ Summary: tauOS GTK/GNOME Shell Themes Name: tau-helium -Version: 1.1.21 +Version: 1.1.22 Release: 1%{?dist} License: GPLv3 URL: https://github.com/tau-OS/tau-helium @@ -32,6 +32,9 @@ mkdir -p licenses %{_datadir}/themes/Helium-dark/* %changelog +* Fri Nov 25 2022 root - 1.1.22-1 +- new version + * Fri Nov 18 2022 Lleyton Gray - 1.1.21-1 - new version From 749a5102d62fc11f8052c854838289bd528a651d Mon Sep 17 00:00:00 2001 From: Lleyton Gray Date: Sat, 26 Nov 2022 02:29:13 +0000 Subject: [PATCH 67/74] Add comps.xml --- .github/workflows/update-comps.yml | 30 ++++++++++++++ comps.xml | 65 ++++++++++++++++++++++++++++++ 2 files changed, 95 insertions(+) create mode 100644 .github/workflows/update-comps.yml create mode 100644 comps.xml diff --git a/.github/workflows/update-comps.yml b/.github/workflows/update-comps.yml new file mode 100644 index 0000000000..c343b923a4 --- /dev/null +++ b/.github/workflows/update-comps.yml @@ -0,0 +1,30 @@ +name: Push comps updates + +on: + push: + branches: + - main + paths: + - comps.xml + workflow_dispatch: + +jobs: + update-comps: + runs-on: ubuntu-latest + container: + image: fedora:37 + steps: + - uses: actions/checkout@v3 + - name: Install repositories + run: | + sudo dnf install -y dnf-plugins-core + sudo dnf config-manager --add-repo https://github.com/andaman-common-pkgs/subatomic-repos/raw/main/terra37.repo + - name: Install dependencies + run: | + sudo dnf install -y subatomic-cli + - name: Push to subatomic + run: | + subatomic-cli upload-comps \ + --server https://subatomic.fyralabs.com \ + --token ${{ secrets.SUBATOMIC_TOKEN }} \ + terra37 comps.xml diff --git a/comps.xml b/comps.xml new file mode 100644 index 0000000000..49fd8c8fad --- /dev/null +++ b/comps.xml @@ -0,0 +1,65 @@ + + + + + pantheon-desktop + <_name>Pantheon Desktop + <_description>The Pantheon desktop environment is the DE that powers elementaryOS. + false + true + + contractor + elementary-capnet-assist + elementary-icon-theme + elementary-notifications + elementary-sound-theme + elementary-theme + elementary-wallpapers + gala + gnome-session + pantheon-agent-geoclue2 + pantheon-agent-polkit + pantheon-session-settings + plank + wingpanel + wingpanel-applications-menu + wingpanel-indicator-bluetooth + wingpanel-indicator-datetime + wingpanel-indicator-keyboard + wingpanel-indicator-network + wingpanel-indicator-nightlight + wingpanel-indicator-notifications + wingpanel-indicator-power + wingpanel-indicator-session + wingpanel-indicator-sound + elementary-calculator + elementary-calendar + elementary-camera + elementary-code + elementary-files + elementary-greeter + elementary-music + elementary-photos + elementary-print + elementary-screenshot-tool + elementary-shortcut-overlay + elementary-sideload + elementary-terminal + elementary-videos + switchboard + switchboard-plug-a11y + switchboard-plug-about + switchboard-plug-applications + switchboard-plug-bluetooth + switchboard-plug-display + switchboard-plug-keyboard + switchboard-plug-mouse-touchpad + switchboard-plug-networking + switchboard-plug-notifications + switchboard-plug-pantheon-shell + switchboard-plug-printers + switchboard-plug-sharing + switchboard-plug-sound + + + \ No newline at end of file From cf8d2b30961a16e1d92af328ee1b88ffae09b3b8 Mon Sep 17 00:00:00 2001 From: lleyton Date: Fri, 25 Nov 2022 18:34:53 -0800 Subject: [PATCH 68/74] [comps] oops --- comps.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/comps.xml b/comps.xml index 49fd8c8fad..6f7494a240 100644 --- a/comps.xml +++ b/comps.xml @@ -3,8 +3,8 @@ pantheon-desktop - <_name>Pantheon Desktop - <_description>The Pantheon desktop environment is the DE that powers elementaryOS. + Pantheon Desktop + The Pantheon desktop environment is the DE that powers elementaryOS. false true @@ -62,4 +62,4 @@ switchboard-plug-sound - \ No newline at end of file + From b5f90792119fd5d4cb7b9d8b4ed629c27d34b20a Mon Sep 17 00:00:00 2001 From: windowsboy111 Date: Sun, 27 Nov 2022 11:49:19 +0800 Subject: [PATCH 69/74] evolution-data-server --- .../elementary/evolution-data-server/anda.hcl | 5 + .../evolution-data-server.spec | 2460 +++++++++++++++++ 2 files changed, 2465 insertions(+) create mode 100644 anda/desktops/elementary/evolution-data-server/anda.hcl create mode 100644 anda/desktops/elementary/evolution-data-server/evolution-data-server.spec diff --git a/anda/desktops/elementary/evolution-data-server/anda.hcl b/anda/desktops/elementary/evolution-data-server/anda.hcl new file mode 100644 index 0000000000..d2a8a71d55 --- /dev/null +++ b/anda/desktops/elementary/evolution-data-server/anda.hcl @@ -0,0 +1,5 @@ +project "pkg" { + rpm { + spec = "evolution-data-server.spec" + } +} diff --git a/anda/desktops/elementary/evolution-data-server/evolution-data-server.spec b/anda/desktops/elementary/evolution-data-server/evolution-data-server.spec new file mode 100644 index 0000000000..9cd98c2d23 --- /dev/null +++ b/anda/desktops/elementary/evolution-data-server/evolution-data-server.spec @@ -0,0 +1,2460 @@ +%undefine __cmake_in_source_build + +%define ldap_support 1 +%define static_ldap 0 +%define krb5_support 1 +%define largefile_support 1 + +# enabled only for Fedora +%global phonenum_support 0%{?fedora} + +# Coverity scan can override this to 0, to skip checking in gtk-doc generated code +%{!?with_docs: %global with_docs 1} + +%if 0%{?flatpak} +%global with_docs 0 +%endif + +%define glib2_version 2.68 +%define gtk3_version 3.20 +%define gcr_version 3.4 +%define gtk_doc_version 1.9 +%define gtk4_version 4.4 +%define goa_version 3.8 +%define libsecret_version 0.5 +%define libgdata_version 0.15.1 +%define libgweather_version 3.10 +%define libical_version 3.0.7 +%define libsoup_version 3.1.1 +%define nss_version 3.14 +%define sqlite_version 3.7.17 +%define webkit2gtk_version 2.34.0 +%define json_glib_version 1.0.4 + +%define credential_modules_dir %{_libdir}/evolution-data-server/credential-modules +%define camel_provider_dir %{_libdir}/evolution-data-server/camel-providers +%define ebook_backends_dir %{_libdir}/evolution-data-server/addressbook-backends +%define ecal_backends_dir %{_libdir}/evolution-data-server/calendar-backends +%define modules_dir %{_libdir}/evolution-data-server/registry-modules +%define uimodules_dir %{_libdir}/evolution-data-server/ui-modules + +%global dbus_service_name_address_book org.gnome.evolution.dataserver.AddressBook10 +%global dbus_service_name_calendar org.gnome.evolution.dataserver.Calendar8 +%global dbus_service_name_sources org.gnome.evolution.dataserver.Sources5 +%global dbus_service_name_user_prompter org.gnome.evolution.dataserver.UserPrompter0 + +%if "%{?_eds_dbus_services_prefix}" != "" +%global dbus_service_name_address_book %{?_eds_dbus_services_prefix}.%{dbus_service_name_address_book} +%global dbus_service_name_calendar %{?_eds_dbus_services_prefix}.%{dbus_service_name_calendar} +%global dbus_service_name_sources %{?_eds_dbus_services_prefix}.%{dbus_service_name_sources} +%global dbus_service_name_user_prompter %{?_eds_dbus_services_prefix}.%{dbus_service_name_user_prompter} +%endif + +### Abstract ### + +Name: evolution-data-server +Version: 3.46.1 +Epoch: 1 +Release: 1%{?dist} +Summary: Backend data server for Evolution +License: LGPLv2+ +URL: https://wiki.gnome.org/Apps/Evolution +Source: http://download.gnome.org/sources/%{name}/3.46/%{name}-%{version}.tar.xz + +Provides: evolution-webcal = %{version} +Obsoletes: evolution-webcal < 2.24.0 + +# RH-bug #1362477 +Recommends: pinentry-gui + +%if 0%{?fedora} +# From rhughes-f20-gnome-3-12 copr +Obsoletes: compat-evolution-data-server310-libcamel < 3.12 +%endif + +### Dependencies ### + +Requires: %{name}-langpacks = %{version}-%{release} + +### Build Dependencies ### + +BuildRequires: cmake +BuildRequires: gcc +BuildRequires: gcc-c++ +BuildRequires: gettext +BuildRequires: gperf +%if %{with_docs} +BuildRequires: gtk-doc >= %{gtk_doc_version} +%endif +BuildRequires: make +BuildRequires: vala +BuildRequires: systemd + +BuildRequires: pkgconfig(gcr-3) >= %{gcr_version} +BuildRequires: pkgconfig(gcr-base-3) >= %{gcr_version} +BuildRequires: pkgconfig(gio-2.0) >= %{glib2_version} +BuildRequires: pkgconfig(gio-unix-2.0) >= %{glib2_version} +BuildRequires: pkgconfig(gtk4) >= %{gtk4_version} +BuildRequires: pkgconfig(gmodule-2.0) >= %{glib2_version} +BuildRequires: pkgconfig(icu-i18n) +BuildRequires: pkgconfig(gtk+-3.0) >= %{gtk3_version} +BuildRequires: pkgconfig(goa-1.0) >= %{goa_version} +BuildRequires: pkgconfig(libgdata) >= %{libgdata_version} +BuildRequires: pkgconfig(gweather-3.0) >= %{libgweather_version} +BuildRequires: pkgconfig(libical-glib) >= %{libical_version} +BuildRequires: pkgconfig(libsecret-unstable) >= %{libsecret_version} +BuildRequires: pkgconfig(libsoup-3.0) >= %{libsoup_version} +BuildRequires: pkgconfig(libxml-2.0) +BuildRequires: pkgconfig(nspr) +BuildRequires: pkgconfig(nss) >= %{nss_version} +BuildRequires: pkgconfig(sqlite3) >= %{sqlite_version} +BuildRequires: pkgconfig(webkit2gtk-4.1) >= %{webkit2gtk_version} +BuildRequires: pkgconfig(webkit2gtk-5.0) >= 2.36.0 +BuildRequires: pkgconfig(json-glib-1.0) >= %{json_glib_version} +BuildRequires: pkgconfig(libcanberra-gtk3) +BuildRequires: pkgconfig(gweather4) >= 3.91 + +%if %{ldap_support} +BuildRequires: openldap-devel >= 2.0.11 +%if %{static_ldap} +BuildRequires: pkgconfig(openssl) +%endif +%endif + +%if %{krb5_support} +BuildRequires: krb5-devel >= 1.11 +%endif + +%if %{phonenum_support} +BuildRequires: libphonenumber-devel +BuildRequires: protobuf-devel +BuildRequires: boost-devel +%endif + +%description +The %{name} package provides a unified backend for programs that work +with contacts, tasks, and calendar information. + +It was originally developed for Evolution (hence the name), but is now used +by other packages. + +%package devel +Summary: Development files for building against %{name} +Requires: %{name}%{?_isa} = %{version}-%{release} + +Requires: pkgconfig(goa-1.0) >= %{goa_version} +Requires: pkgconfig(libgdata) >= %{libgdata_version} +Requires: pkgconfig(gweather-3.0) >= %{libgweather_version} +Requires: pkgconfig(libical-glib) >= %{libical_version} +Requires: pkgconfig(libsecret-unstable) >= %{libsecret_version} +Requires: pkgconfig(sqlite3) >= %{sqlite_version} +Requires: pkgconfig(webkit2gtk-4.0) >= %{webkit2gtk_version} +Requires: pkgconfig(json-glib-1.0) >= %{json_glib_version} + +%description devel +Development files needed for building things which link against %{name}. + +%package langpacks +Summary: Translations for %{name} +BuildArch: noarch +Requires: %{name} = %{version}-%{release} + +%description langpacks +This package contains translations for %{name}. + +%if %{with_docs} + +%package doc +Summary: Documentation files for %{name} +BuildArch: noarch + +%description doc +This package contains developer documentation for %{name}. + +# %%{with_docs} +%endif + +%package perl +Summary: Supplemental utilities that require Perl +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: perl-interpreter + +%description perl +This package contains supplemental utilities for %{name} that require Perl. + +%package tests +Summary: Tests for the %{name} package +Requires: %{name}%{?_isa} = %{version}-%{release} + +%description tests +The %{name}-tests package contains tests that can be used to verify +the functionality of the installed %{name} package. + +%prep +%autosetup -p1 -S gendiff + +%build + +%if %{ldap_support} + +%if %{static_ldap} +%define ldap_flags -DWITH_OPENLDAP=ON -DWITH_STATIC_LDAP=ON +# Set LIBS so that configure will be able to link with static LDAP libraries, +# which depend on Cyrus SASL and OpenSSL. XXX Is the "else" clause necessary? +if pkg-config openssl ; then + export LIBS="-lsasl2 `pkg-config --libs openssl`" +else + export LIBS="-lsasl2 -lssl -lcrypto" +fi +# newer versions of openldap are built with Mozilla NSS crypto, so also need +# those libs to link with the static ldap libs +if pkg-config nss ; then + export LIBS="$LIBS `pkg-config --libs nss`" +else + export LIBS="$LIBS -lssl3 -lsmime3 -lnss3 -lnssutil3 -lplds4 -lplc4 -lnspr4" +fi +%else +%define ldap_flags -DWITH_OPENLDAP=ON +%endif + +%else +%define ldap_flags -DWITH_OPENLDAP=OFF +%endif + +%if %{krb5_support} +%define krb5_flags -DWITH_KRB5=ON +%else +%define krb5_flags -DWITH_KRB5=OFF +%endif + +%if %{largefile_support} +%define largefile_flags -DENABLE_LARGEFILE=ON +%else +%define largefile_flags -DENABLE_LARGEFILE=OFF +%endif + +%if %{phonenum_support} +%define phonenum_flags -DWITH_PHONENUMBER=ON +%else +%define phonenum_flags -DWITH_PHONENUMBER=OFF +%endif + +%define ssl_flags -DENABLE_SMIME=ON + +%if %{with_docs} +%define gtkdoc_flags -DENABLE_GTK_DOC=ON +%else +%define gtkdoc_flags -DENABLE_GTK_DOC=OFF +%endif + +if ! pkg-config --exists nss; then + echo "Unable to find suitable version of nss to use!" + exit 1 +fi + +export CPPFLAGS="-I%{_includedir}/et" +export CFLAGS="$RPM_OPT_FLAGS -DLDAP_DEPRECATED -fPIC -I%{_includedir}/et -Wno-deprecated-declarations" + +%cmake -G "Unix Makefiles" \ + -DENABLE_MAINTAINER_MODE=OFF \ + -DWITH_LIBDB=OFF \ + -DENABLE_FILE_LOCKING=fcntl \ + -DENABLE_DOT_LOCKING=OFF \ + -DENABLE_INTROSPECTION=ON \ + -DENABLE_VALA_BINDINGS=ON \ + -DENABLE_INSTALLED_TESTS=ON \ + -DWITH_SYSTEMDUSERUNITDIR=%{_userunitdir} \ + %if "%{?_eds_dbus_services_prefix}" != "" + -DDBUS_SERVICES_PREFIX=%{?_eds_dbus_services_prefix} \ + %endif + %ldap_flags %krb5_flags %ssl_flags \ + %largefile_flags %gtkdoc_flags %phonenum_flags \ + %{nil} + +%cmake_build + +%install +%cmake_install + +# make sure the directory exists, because it's owned by eds +mkdir $RPM_BUILD_ROOT/%{uimodules_dir} || : + +# give the libraries some executable bits +find $RPM_BUILD_ROOT -name '*.so.*' -exec chmod +x {} \; + +%find_lang %{name} + +%files +%license COPYING +%doc README ChangeLog NEWS +%{_libdir}/libcamel-1.2.so.64 +%{_libdir}/libcamel-1.2.so.64.0.0 +%{_libdir}/libebackend-1.2.so.11 +%{_libdir}/libebackend-1.2.so.11.0.0 +%{_libdir}/libebook-1.2.so.21 +%{_libdir}/libebook-1.2.so.21.1.3 +%{_libdir}/libebook-contacts-1.2.so.4 +%{_libdir}/libebook-contacts-1.2.so.4.0.0 +%{_libdir}/libecal-2.0.so.2 +%{_libdir}/libecal-2.0.so.2.0.0 +%{_libdir}/libedata-book-1.2.so.27 +%{_libdir}/libedata-book-1.2.so.27.0.0 +%{_libdir}/libedata-cal-2.0.so.2 +%{_libdir}/libedata-cal-2.0.so.2.0.0 +%{_libdir}/libedataserver-1.2.so.27 +%{_libdir}/libedataserver-1.2.so.27.0.0 +%{_libdir}/libedataserverui-1.2.so.4 +%{_libdir}/libedataserverui-1.2.so.4.0.0 +%{_libdir}/libedataserverui4-1.0.so +%{_libdir}/libedataserverui4-1.0.so.0 +%{_libdir}/libedataserverui4-1.0.so.0.0.0 + +%{_libdir}/girepository-1.0/Camel-1.2.typelib +%{_libdir}/girepository-1.0/EBackend-1.2.typelib +%{_libdir}/girepository-1.0/EBook-1.2.typelib +%{_libdir}/girepository-1.0/EBookContacts-1.2.typelib +%{_libdir}/girepository-1.0/ECal-2.0.typelib +%{_libdir}/girepository-1.0/EDataBook-1.2.typelib +%{_libdir}/girepository-1.0/EDataCal-2.0.typelib +%{_libdir}/girepository-1.0/EDataServer-1.2.typelib +%{_libdir}/girepository-1.0/EDataServerUI-1.2.typelib +%{_libdir}/girepository-1.0/EDataServerUI4-1.0.typelib + +%{_libexecdir}/camel-gpg-photo-saver +%{_libexecdir}/camel-index-control-1.2 +%{_libexecdir}/camel-lock-helper-1.2 +%{_libexecdir}/evolution-addressbook-factory +%{_libexecdir}/evolution-addressbook-factory-subprocess +%{_libexecdir}/evolution-calendar-factory +%{_libexecdir}/evolution-calendar-factory-subprocess +%{_libexecdir}/evolution-scan-gconf-tree-xml +%{_libexecdir}/evolution-source-registry +%{_libexecdir}/evolution-user-prompter + +%dir %{_libexecdir}/evolution-data-server +%{_libexecdir}/evolution-data-server/addressbook-export +%{_libexecdir}/evolution-data-server/evolution-alarm-notify +%{_libexecdir}/evolution-data-server/list-sources + +%{_sysconfdir}/xdg/autostart/org.gnome.Evolution-alarm-notify.desktop +%{_datadir}/applications/org.gnome.Evolution-alarm-notify.desktop + +# GSettings schemas: +%{_datadir}/GConf/gsettings/evolution-data-server.convert +%{_datadir}/glib-2.0/schemas/org.gnome.Evolution.DefaultSources.gschema.xml +%{_datadir}/glib-2.0/schemas/org.gnome.evolution-data-server.gschema.xml +%{_datadir}/glib-2.0/schemas/org.gnome.evolution-data-server.addressbook.gschema.xml +%{_datadir}/glib-2.0/schemas/org.gnome.evolution-data-server.calendar.gschema.xml +%{_datadir}/glib-2.0/schemas/org.gnome.evolution.eds-shell.gschema.xml +%{_datadir}/glib-2.0/schemas/org.gnome.evolution.shell.network-config.gschema.xml + +%{_datadir}/evolution-data-server +%{_datadir}/dbus-1/services/%{dbus_service_name_address_book}.service +%{_datadir}/dbus-1/services/%{dbus_service_name_calendar}.service +%{_datadir}/dbus-1/services/%{dbus_service_name_sources}.service +%{_datadir}/dbus-1/services/%{dbus_service_name_user_prompter}.service +%{_datadir}/pixmaps/evolution-data-server + +%{_userunitdir}/evolution-addressbook-factory.service +%{_userunitdir}/evolution-calendar-factory.service +%{_userunitdir}/evolution-source-registry.service +%{_userunitdir}/evolution-user-prompter.service + +%dir %{_libdir}/evolution-data-server +%dir %{credential_modules_dir} +%dir %{camel_provider_dir} +%dir %{ebook_backends_dir} +%dir %{ecal_backends_dir} +%dir %{modules_dir} +%dir %{uimodules_dir} + +%{_libdir}/evolution-data-server/libedbus-private.so + +# Camel providers: +%{camel_provider_dir}/libcamelimapx.so +%{camel_provider_dir}/libcamelimapx.urls + +%{camel_provider_dir}/libcamellocal.so +%{camel_provider_dir}/libcamellocal.urls + +%{camel_provider_dir}/libcamelnntp.so +%{camel_provider_dir}/libcamelnntp.urls + +%{camel_provider_dir}/libcamelpop3.so +%{camel_provider_dir}/libcamelpop3.urls + +%{camel_provider_dir}/libcamelsendmail.so +%{camel_provider_dir}/libcamelsendmail.urls + +%{camel_provider_dir}/libcamelsmtp.so +%{camel_provider_dir}/libcamelsmtp.urls + +# e-d-s extensions: +%{credential_modules_dir}/module-credentials-goa.so +%{ebook_backends_dir}/libebookbackendcarddav.so +%{ebook_backends_dir}/libebookbackendfile.so +%{ebook_backends_dir}/libebookbackendldap.so +%{ecal_backends_dir}/libecalbackendcaldav.so +%{ecal_backends_dir}/libecalbackendcontacts.so +%{ecal_backends_dir}/libecalbackendfile.so +%{ecal_backends_dir}/libecalbackendgtasks.so +%{ecal_backends_dir}/libecalbackendhttp.so +%{ecal_backends_dir}/libecalbackendweather.so +%{ecal_backends_dir}/libecalbackendwebdavnotes.so +%{modules_dir}/module-cache-reaper.so +%{modules_dir}/module-google-backend.so +%{modules_dir}/module-gnome-online-accounts.so +%{modules_dir}/module-oauth2-services.so +%{modules_dir}/module-outlook-backend.so +%{modules_dir}/module-secret-monitor.so +%{modules_dir}/module-trust-prompt.so +%{modules_dir}/module-webdav-backend.so +%{modules_dir}/module-yahoo-backend.so + +%files devel +%{_includedir}/evolution-data-server +%{_libdir}/libcamel-1.2.so +%{_libdir}/libebackend-1.2.so +%{_libdir}/libebook-1.2.so +%{_libdir}/libebook-contacts-1.2.so +%{_libdir}/libecal-2.0.so +%{_libdir}/libedata-book-1.2.so +%{_libdir}/libedata-cal-2.0.so +%{_libdir}/libedataserver-1.2.so +%{_libdir}/libedataserverui-1.2.so +%{_libdir}/pkgconfig/camel-1.2.pc +%{_libdir}/pkgconfig/evolution-data-server-1.2.pc +%{_libdir}/pkgconfig/libebackend-1.2.pc +%{_libdir}/pkgconfig/libebook-1.2.pc +%{_libdir}/pkgconfig/libebook-contacts-1.2.pc +%{_libdir}/pkgconfig/libecal-2.0.pc +%{_libdir}/pkgconfig/libedata-book-1.2.pc +%{_libdir}/pkgconfig/libedata-cal-2.0.pc +%{_libdir}/pkgconfig/libedataserver-1.2.pc +%{_libdir}/pkgconfig/libedataserverui-1.2.pc +%{_libdir}/pkgconfig/libedataserverui4-1.0.pc +%{_datadir}/gir-1.0/Camel-1.2.gir +%{_datadir}/gir-1.0/EBackend-1.2.gir +%{_datadir}/gir-1.0/EBook-1.2.gir +%{_datadir}/gir-1.0/EBookContacts-1.2.gir +%{_datadir}/gir-1.0/ECal-2.0.gir +%{_datadir}/gir-1.0/EDataBook-1.2.gir +%{_datadir}/gir-1.0/EDataCal-2.0.gir +%{_datadir}/gir-1.0/EDataServer-1.2.gir +%{_datadir}/gir-1.0/EDataServerUI-1.2.gir +%{_datadir}/gir-1.0/EDataServerUI4-1.0.gir +%{_datadir}/vala/vapi/camel-1.2.deps +%{_datadir}/vala/vapi/camel-1.2.vapi +%{_datadir}/vala/vapi/libebackend-1.2.deps +%{_datadir}/vala/vapi/libebackend-1.2.vapi +%{_datadir}/vala/vapi/libebook-1.2.deps +%{_datadir}/vala/vapi/libebook-1.2.vapi +%{_datadir}/vala/vapi/libebook-contacts-1.2.deps +%{_datadir}/vala/vapi/libebook-contacts-1.2.vapi +%{_datadir}/vala/vapi/libecal-2.0.deps +%{_datadir}/vala/vapi/libecal-2.0.vapi +%{_datadir}/vala/vapi/libedata-book-1.2.deps +%{_datadir}/vala/vapi/libedata-book-1.2.vapi +%{_datadir}/vala/vapi/libedata-cal-2.0.deps +%{_datadir}/vala/vapi/libedata-cal-2.0.vapi +%{_datadir}/vala/vapi/libedataserver-1.2.deps +%{_datadir}/vala/vapi/libedataserver-1.2.vapi +%{_datadir}/vala/vapi/libedataserverui-1.2.deps +%{_datadir}/vala/vapi/libedataserverui-1.2.vapi +%{_datadir}/vala/vapi/libedataserverui4-1.0.deps +%{_datadir}/vala/vapi/libedataserverui4-1.0.vapi +/usr/lib/debug/usr/lib64/libcamel-1.2.so.*.debug +/usr/lib/debug/usr/lib64/libebackend-1.2.so.*.debug +/usr/lib/debug/usr/lib64/libebook-1.2.so.*.debug +/usr/lib/debug/usr/lib64/libebook-contacts-1.2.so.*.debug +/usr/lib/debug/usr/lib64/libecal-2.0.so.*.debug +/usr/lib/debug/usr/lib64/libedata-book-1.2.so.*.debug +/usr/lib/debug/usr/lib64/libedata-cal-2.0.so.*.debug +/usr/lib/debug/usr/lib64/libedataserver-1.2.so.*.debug +/usr/lib/debug/usr/lib64/libedataserverui-1.2.so.*.debug +/usr/lib/debug/usr/lib64/libedataserverui4-1.0.so.*.debug + +%files langpacks -f %{name}.lang + +%if %{with_docs} + +%files doc +%{_datadir}/gtk-doc/html/* + +%endif + +%files perl +%{_libexecdir}/evolution-data-server/csv2vcard + +%files tests +%{_libdir}/libetestserverutils.so +%{_libdir}/libetestserverutils.so.0 +%{_libdir}/libetestserverutils.so.0.0.0 +%{_libexecdir}/%{name}/installed-tests +%{_datadir}/installed-tests + +%changelog +* Fri Aug 05 2022 Milan Crha - 3.44.4-1 +- Update to 3.44.4 + +* Fri Jul 01 2022 Milan Crha - 3.44.3-1 +- Update to 3.44.3 + +* Fri May 27 2022 Milan Crha - 3.44.2-1 +- Update to 3.44.2 + +* Fri Apr 22 2022 Milan Crha - 3.44.1-1 +- Update to 3.44.1 + +* Fri Mar 18 2022 Milan Crha - 3.44.0-1 +- Update to 3.44.0 + +* Fri Mar 04 2022 Milan Crha - 3.43.3-1 +- Update to 3.43.3 + +* Fri Feb 11 2022 Milan Crha - 3.43.2-1 +- Update to 3.43.2 + +* Thu Jan 20 2022 Fedora Release Engineering - 3.43.1.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Fri Jan 07 2022 Milan Crha - 3.43.1.1-1 +- Update to 3.43.1.1 + +* Fri Dec 03 2021 Milan Crha - 3.42.2-1 +- Update to 3.42.2 + +* Sat Nov 06 2021 Adrian Reber - 3.42.1-3 +- Rebuilt for protobuf 3.19.0 + +* Fri Nov 05 2021 Milan Crha - 3.42.1-2 +- Add patch to correct ICalCompIter component's usage + +* Fri Oct 29 2021 Milan Crha - 3.42.1-1 +- Update to 3.42.1 + +* Thu Oct 28 2021 Adam Williamson - 3.42.0-2 +- Rebuild with newer protobuf and libphonenumber + +* Fri Sep 17 2021 Milan Crha - 3.42.0-1 +- Update to 3.42.0 + +* Fri Sep 03 2021 Milan Crha - 3.41.3-1 +- Update to 3.41.3 + +* Fri Aug 13 2021 Milan Crha - 3.41.2-1 +- Update to 3.41.2 + +* Wed Jul 21 2021 Fedora Release Engineering - 3.41.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Fri Jul 09 2021 Milan Crha - 3.41.1-1 +- Update to 3.41.1 + +* Fri Jun 04 2021 Milan Crha - 3.40.2-1 +- Update to 3.40.2 + +* Wed May 19 2021 Pete Walter - 3.40.1-2 +- Rebuild for ICU 69 + +* Fri Apr 30 2021 Milan Crha - 3.40.1-1 +- Update to 3.40.1 + +* Mon Mar 29 2021 Milan Crha - 3.40.0-3 +- Resolves: #1943818 (ESourceWebDAV: Fallback to SHA1 on SSL trust verification if needed) + +* Fri Mar 26 2021 Kalev Lember - 3.40.0-2 +- Drop unnecessary requires on dconf + +* Fri Mar 19 2021 Milan Crha - 3.40.0-1 +- Update to 3.40.0 + +* Fri Mar 12 2021 Milan Crha - 3.39.3-1 +- Update to 3.39.3 + +* Sat Feb 13 2021 Kalev Lember - 3.39.2-3 +- Drop temporary ABI compat + +* Fri Feb 12 2021 Kalev Lember - 3.39.2-2 +- Keep temporary ABI compat with previous soname + +* Fri Feb 12 2021 Milan Crha - 3.39.2-1 +- Update to 3.39.2 + +* Fri Feb 05 2021 Kalev Lember - 3.39.1-3 +- Recommend pinentry-gui virtual provide, rather than pinentry-gtk + +* Tue Jan 26 2021 Fedora Release Engineering - 3.39.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Fri Jan 08 2021 Milan Crha - 3.39.1-1 +- Update to 3.39.1 + +* Fri Nov 20 2020 Milan Crha - 3.38.2-1 +- Update to 3.38.2 + +* Mon Oct 05 2020 Milan Crha - 3.38.1-2 +- Correct D-Bus service file name - it can change when _eds_dbus_services_prefix is defined +- Replace perl-generators build time dependency with perl-interpreter install time dependency + +* Fri Oct 02 2020 Milan Crha - 3.38.1-1 +- Update to 3.38.1 + +* Sat Sep 26 2020 Adrian Reber - 3.38.0-2 +- Rebuilt for protobuf 3.13 + +* Fri Sep 11 2020 Milan Crha - 3.38.0-1 +- Update to 3.38.0 + +* Fri Sep 04 2020 Milan Crha - 3.37.92-1 +- Update to 3.37.92 + +* Fri Aug 07 2020 Milan Crha - 3.37.90-1 +- Update to 3.37.90 + +* Mon Jul 27 2020 Fedora Release Engineering - 3.37.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Tue Jul 14 2020 Milan Crha - 3.37.3-3 +- Rebuild in a side tag for bodhi, to be able to create an update + +* Fri Jul 03 2020 Milan Crha - 3.37.3-2 +- Add a patch for missing G_BEGIN_DECLS in e-soup-logger.h + +* Fri Jul 03 2020 Milan Crha - 3.37.3-1 +- Update to 3.37.3 + +* Tue Jun 23 2020 Adam Williamson - 3.37.2-2 +- Rebuild with newer protobuf and libphonenumber +- Backport several fixes for annoying bugs from mainline + +* Fri May 29 2020 Milan Crha - 3.37.2-1 +- Update to 3.37.2 + +* Sun May 17 2020 Pete Walter - 3.37.1-2 +- Rebuild for ICU 67 + +* Fri Apr 24 2020 Milan Crha - 3.37.1-1 +- Update to 3.37.1 + +* Wed Apr 01 2020 Nikhil Jha - 3.36.1-3 +- Build with phonenumber support + +* Mon Mar 30 2020 Milan Crha - 3.36.1-2 +- Remove libdb dependency + +* Fri Mar 27 2020 Milan Crha - 3.36.1-1 +- Update to 3.36.1 + +* Fri Mar 06 2020 Milan Crha - 3.36.0-1 +- Update to 3.36.0 + +* Fri Feb 28 2020 Milan Crha - 3.35.92-1 +- Update to 3.35.92 + +* Fri Feb 14 2020 Milan Crha - 3.35.91-1 +- Update to 3.35.91 + +* Fri Jan 31 2020 Milan Crha - 3.35.90-1 +- Update to 3.35.90 + +* Tue Jan 28 2020 Fedora Release Engineering - 3.35.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Tue Jan 07 2020 Milan Crha - 3.35.3-2 +- Add patch for RH bug #1754321 (alarm-notify: Double-free with certain types of the reminder) + +* Fri Jan 03 2020 Milan Crha - 3.35.3-1 +- Update to 3.35.3 + +* Fri Nov 22 2019 Milan Crha - 3.35.2-1 +- Update to 3.35.2 + +* Fri Nov 01 2019 Pete Walter - 3.35.1-2 +- Rebuild for ICU 65 + +* Fri Oct 11 2019 Milan Crha - 3.35.1-1 +- Update to 3.35.1 + +* Mon Oct 07 2019 Milan Crha - 3.34.1-1 +- Update to 3.34.1 + +* Mon Sep 09 2019 Milan Crha - 3.34.0-1 +- Update to 3.34.0 + +* Mon Sep 02 2019 Milan Crha - 3.33.92-1 +- Update to 3.33.92 + +* Mon Aug 19 2019 Milan Crha - 3.33.91-1 +- Update to 3.33.91 + +* Mon Aug 05 2019 Milan Crha - 3.33.90-1 +- Update to 3.33.90 + +* Thu Jul 25 2019 Fedora Release Engineering - 3.33.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Mon Jul 15 2019 Milan Crha - 3.33.4-1 +- Update to 3.33.4 + +* Mon Jul 08 2019 Kalev Lember - 3.33.3-2 +- Rebuilt for libgweather soname bump + +* Mon Jun 17 2019 Milan Crha - 3.33.3-1 +- Update to 3.33.3 + +* Mon May 20 2019 Milan Crha - 3.33.2-1 +- Update to 3.33.2 + +* Mon Apr 22 2019 Milan Crha - 3.33.1-1 +- Update to 3.33.1 + +* Mon Apr 08 2019 Milan Crha - 3.32.1-1 +- Update to 3.32.1 + +* Mon Mar 11 2019 Milan Crha - 3.32.0-1 +- Update to 3.32.0 + +* Mon Mar 04 2019 Milan Crha - 3.31.92-1 +- Update to 3.31.92 + +* Mon Feb 18 2019 Milan Crha - 3.31.91-1 +- Update to 3.31.91 + +* Mon Feb 04 2019 Kalev Lember - 3.31.90-2 +- Update BRs for vala packaging changes + +* Mon Feb 04 2019 Milan Crha - 3.31.90-1 +- Update to 3.31.90 + +* Thu Jan 31 2019 Fedora Release Engineering - 3.31.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Wed Jan 23 2019 Pete Walter - 3.31.4-3 +- Rebuild for ICU 63 + +* Mon Jan 07 2019 Milan Crha - 3.31.4-2 +- Fix typo in the latest Igor Gnatenko's commit (Remove obsolete scriptlets) + +* Mon Jan 07 2019 Milan Crha - 3.31.4-1 +- Update to 3.31.4 + +* Mon Dec 10 2018 Milan Crha - 3.31.3-1 +- Update to 3.31.3 + +* Mon Nov 12 2018 Milan Crha - 3.31.2-1 +- Update to 3.31.2 + +* Mon Oct 08 2018 Milan Crha - 3.31.1-1 +- Update to 3.31.1 + +* Mon Sep 24 2018 Milan Crha - 3.30.1-1 +- Update to 3.30.1 +- Remove patch for GNOME Evolution issue #86 (fixed upstream) + +* Mon Sep 03 2018 Milan Crha - 3.30.0-1 +- Update to 3.30.0 +- Add patch for GNOME Evolution issue #86 (Quoting of plain text mail into HTML mode mangles deeper levels) + +* Mon Aug 27 2018 Milan Crha - 3.29.92-1 +- Update to 3.29.92 + +* Mon Aug 13 2018 Milan Crha - 3.29.91-1 +- Update to 3.29.91 + +* Mon Jul 30 2018 Milan Crha - 3.29.90-1 +- Update to 3.29.90 + +* Mon Jul 16 2018 Milan Crha - 3.29.4-1 +- Update to 3.29.4 + +* Fri Jul 13 2018 Fedora Release Engineering - 3.29.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Tue Jul 10 2018 Pete Walter - 3.29.3-2 +- Rebuild for ICU 62 + +* Mon Jun 18 2018 Milan Crha - 3.29.3-1 +- Update to 3.29.3 + +* Mon May 21 2018 Milan Crha - 3.29.2-1 +- Update to 3.29.2 + +* Mon Apr 30 2018 Pete Walter - 3.29.1-2 +- Rebuild for ICU 61.1 + +* Mon Apr 16 2018 Milan Crha - 3.29.1-1 +- Update to 3.29.1 +- Remove fix to strip closing > from URLs when linkifying (BGO#795108) (Fixed upstream) +- Drop build dependency on python + +* Tue Apr 10 2018 Adam Williamson - 3.28.1-2 +- Backport fix to strip closing > from URLs when linkifying (BGO#795108) + +* Mon Apr 09 2018 Milan Crha - 3.28.1-1 +- Update to 3.28.1 + +* Mon Mar 12 2018 Milan Crha - 3.28.0-1 +- Update to 3.28.0 + +* Mon Mar 05 2018 Milan Crha - 3.27.92-1 +- Update to 3.27.92 + +* Mon Feb 19 2018 Milan Crha - 3.27.91-1 +- Update to 3.27.91 + +* Fri Feb 09 2018 Igor Gnatenko - 3.27.90-2 +- Escape macros in %%changelog + +* Tue Feb 06 2018 Milan Crha - 3.27.90-1 +- Update to 3.27.90 + +* Mon Feb 05 2018 Kalev Lember - 3.27.4-2 +- Rebuilt for libgweather soname bump + +* Mon Jan 08 2018 Milan Crha - 3.27.4-1 +- Update to 3.27.4 + +* Mon Dec 11 2017 Milan Crha - 3.27.3-1 +- Update to 3.27.3 + +* Thu Nov 30 2017 Pete Walter - 3.27.2-2 +- Rebuild for ICU 60.1 + +* Mon Nov 13 2017 Milan Crha - 3.27.2-1 +- Update to 3.27.2 + +* Mon Nov 06 2017 Milan Crha - 3.27.1-2 +- Rebuild for libical 3.0.0 + +* Mon Oct 16 2017 Milan Crha - 3.27.1-1 +- Update to 3.27.1 + +* Mon Oct 02 2017 Milan Crha - 3.26.1-1 +- Update to 3.26.1 + +* Mon Sep 11 2017 Milan Crha - 3.26.0-1 +- Update to 3.26.0 + +* Mon Sep 04 2017 Milan Crha - 3.25.92-1 +- Update to 3.25.92 + +* Tue Aug 22 2017 Ville Skyttä - 3.25.91-2 +- Own the %%{_libexecdir}/evolution-data-server dir +- Install COPYING as %%license + +* Mon Aug 21 2017 Milan Crha - 3.25.91-1 +- Update to 3.25.91 + +* Mon Aug 07 2017 Milan Crha - 3.25.90-1 +- Update to 3.25.90 + +* Wed Aug 02 2017 Fedora Release Engineering - 3.25.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Wed Jul 26 2017 Fedora Release Engineering - 3.25.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Mon Jul 17 2017 Milan Crha - 3.25.4-1 +- Update to 3.25.4 + +* Mon Jun 19 2017 Milan Crha - 3.25.3-1 +- Update to 3.25.3 + +* Mon May 22 2017 Milan Crha - 3.25.2-1 +- Update to 3.25.2 + +* Thu Apr 27 2017 Milan Crha - 3.25.1-2 +- Split translations into separate package + +* Mon Apr 24 2017 Milan Crha - 3.25.1-1 +- Update to 3.25.1 + +* Mon Apr 10 2017 Milan Crha - 3.24.1-1 +- Update to 3.24.1 + +* Mon Mar 20 2017 Milan Crha - 3.24.0-1 +- Update to 3.24.0 + +* Mon Mar 13 2017 Milan Crha - 3.23.92-1 +- Update to 3.23.92 + +* Mon Feb 27 2017 Milan Crha - 3.23.91-1 +- Update to 3.23.91 + +* Mon Feb 13 2017 Milan Crha - 3.23.90-1 +- Update to 3.23.90 + +* Fri Feb 10 2017 Fedora Release Engineering - 3.23.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Mon Jan 16 2017 Milan Crha - 3.23.4-1 +- Update to 3.23.4 +- Add Recommends: pinentry-gtk (RH bug #1362477) + +* Mon Dec 12 2016 Milan Crha - 3.23.3-1 +- Update to 3.23.3 +- Remove the patch for RH bug #1395987 (fixed upstream) + +* Mon Nov 21 2016 Milan Crha - 3.23.2-2 +- Add a patch for RH bug #1395987 (Build GSSAPI support for Camel) + +* Mon Nov 21 2016 Milan Crha - 3.23.2-1 +- Update to 3.23.2 + +* Mon Oct 24 2016 Milan Crha - 3.23.1-1 +- Update to 3.23.1 + +* Mon Oct 10 2016 Milan Crha - 3.22.1-1 +- Update to 3.22.1 + +* Mon Sep 19 2016 Milan Crha - 3.22.0-1 +- Update to 3.22.0 + +* Mon Sep 12 2016 Milan Crha - 3.21.92-1 +- Update to 3.21.92 + +* Mon Aug 29 2016 Milan Crha - 3.21.91-1 +- Update to 3.21.91 + +* Mon Aug 15 2016 Milan Crha - 3.21.90-1 +- Update to 3.21.90 + +* Mon Jul 18 2016 Milan Crha - 3.21.4-1 +- Update to 3.21.4 +- Introduce new "perl" subpackage (code moved from the evolution) + +* Mon Jun 20 2016 Milan Crha - 3.21.3-1 +- Update to 3.21.3 + +* Mon May 23 2016 Milan Crha - 3.21.2-1 +- Update to 3.21.2 + +* Mon Apr 25 2016 Milan Crha - 3.21.1-1 +- Update to 3.21.1 + +* Fri Apr 15 2016 David Tardon - 3.20.1-2 +- rebuild for ICU 57.1 + +* Mon Apr 11 2016 Milan Crha - 3.20.1-1 +- Update to 3.20.1 + +* Mon Mar 21 2016 Milan Crha - 3.20.0-1 +- Update to 3.20.0 + +* Mon Mar 14 2016 Milan Crha - 3.19.92-1 +- Update to 3.19.92 + +* Mon Feb 29 2016 Milan Crha - 3.19.91-1 +- Update to 3.19.91 + +* Mon Feb 15 2016 Milan Crha - 3.19.90-1 +- Update to 3.19.90 + +* Wed Feb 03 2016 Fedora Release Engineering - 3.19.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Mon Jan 18 2016 David Tardon - 3.19.4-2 +- rebuild for libical 2.0.0 + +* Mon Jan 18 2016 Milan Crha - 3.19.4-1 +- Update to 3.19.4 + +* Mon Dec 14 2015 Milan Crha - 3.19.3-1 +- Update to 3.19.3 + +* Mon Nov 23 2015 Milan Crha - 3.19.2-1 +- Update to 3.19.2 + +* Wed Oct 28 2015 David Tardon - 3.19.1-2 +- rebuild for ICU 56.1 + +* Mon Oct 26 2015 Milan Crha - 3.19.1-1 +- Update to 3.19.1 + +* Mon Oct 12 2015 Milan Crha - 3.18.1-1 +- Update to 3.18.1 + +* Mon Sep 21 2015 Milan Crha - 3.18.0-1 +- Update to 3.18.0 +- Remove a patch for compatibility with glib 2.45.8 (fixed upstream) + +* Thu Sep 17 2015 Kalev Lember - 3.17.92-2 +- Backport a patch for compatibility with glib 2.45.8 + +* Mon Sep 14 2015 Milan Crha - 3.17.92-1 +- Update to 3.17.92 + +* Mon Aug 31 2015 Milan Crha - 3.17.91-1 +- Update to 3.17.91 + +* Mon Aug 17 2015 Milan Crha - 3.17.90-1 +- Update to 3.17.90 + +* Mon Jul 20 2015 Milan Crha - 3.17.4-1 +- Update to 3.17.4 + +* Mon Jun 22 2015 Milan Crha - 3.17.3-1 +- Update to 3.17.3 + +* Wed Jun 17 2015 Fedora Release Engineering - 3.17.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Mon May 25 2015 Milan Crha - 3.17.2-1 +- Update to 3.17.2 + +* Mon Apr 27 2015 Milan Crha - 3.17.1-1 +- Update to 3.17.1 + +* Mon Apr 13 2015 Milan Crha - 3.16.1-1 +- Update to 3.16.1 + +* Mon Mar 23 2015 Milan Crha - 3.16.0-1 +- Update to 3.16.0 + +* Mon Mar 16 2015 Milan Crha - 3.15.92-1 +- Update to 3.15.92 +- Remove patch to fix libdb configure.ac check (fixed upstream) + +* Mon Mar 02 2015 Milan Crha - 3.15.91-1 +- Update to 3.15.91 +- Add patch to fix libdb configure.ac check + +* Mon Feb 16 2015 Milan Crha - 3.13.90-1 +- Update to 3.13.90 + +* Mon Jan 26 2015 David Tardon - 3.13.10-2 +- rebuild for ICU 54.1 + +* Mon Jan 26 2015 Milan Crha - 3.13.10-1 +- Update to 3.13.10 + +* Mon Dec 22 2014 Milan Crha - 3.13.9-1 +- Update to 3.13.9 + +* Mon Nov 24 2014 Milan Crha - 3.13.8-1 +- Update to 3.13.8 + +* Sun Nov 16 2014 Kalev Lember - 3.13.7-2 +- Obsolete compat-evolution-data-server310-libcamel from rhughes-f20-gnome-3-12 + copr + +* Mon Oct 27 2014 Milan Crha - 3.13.7-1 +- Update to 3.13.7 +- Re-enable parallel build + +* Mon Sep 22 2014 Milan Crha - 3.13.6-1 +- Update to 3.13.6 +- Remove patch for GNOME bug #735311 (fixed upstream) + +* Wed Aug 27 2014 Milan Crha - 3.13.5-3 +- Add patch for GNOME bug #735311 (Adapt to new Google HTTP restriction) + +* Tue Aug 26 2014 David Tardon - 3.13.5-2 +- rebuild for ICU 53.1 + +* Mon Aug 25 2014 Milan Crha - 3.13.5-1 +- Update to 3.13.5 + +* Sat Aug 16 2014 Fedora Release Engineering - 3.13.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Wed Jul 30 2014 Milan Crha - 3.13.4-1 +- Update to 3.13.4 +- Introduce tests subpackage with installed tests +- Remove patch for GNOME bug 733081 (fixed upstream) + +* Tue Jul 22 2014 Kalev Lember - 3.12.4-4 +- Rebuilt for gobject-introspection 1.41.4 + +* Fri Jul 18 2014 Milan Crha - 3.12.4-3 +- Update patch for GNOME bug 733081 (IMAPx job stuck with IDLE) + +* Wed Jul 16 2014 Milan Crha - 3.12.4-2 +- Add patch for GNOME bug 733081 (IMAPx job stuck with IDLE) + +* Mon Jul 14 2014 Milan Crha - 3.12.4-1 +- Update to 3.12.4 + +* Mon Jun 09 2014 Milan Crha - 3.12.3-1 +- Update to 3.12.3 + +* Sat Jun 07 2014 Fedora Release Engineering - 3.12.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Mon May 12 2014 Milan Crha - 3.12.2-1 +- Update to 3.12.2 + +* Wed Apr 16 2014 Adam Williamson - 3.12.1-2 +- rebuild for new libgdata + +* Mon Apr 14 2014 Milan Crha - 3.12.1-1 +- Update to 3.12.1 + +* Mon Mar 24 2014 Milan Crha - 3.12.0-1 +- Update to 3.12.0 + +* Mon Mar 17 2014 Milan Crha - 3.11.92-1 +- Update to 3.11.92 + +* Mon Mar 03 2014 Milan Crha - 3.11.91-1 +- Update to 3.11.91 + +* Mon Feb 17 2014 Milan Crha - 3.11.90-1 +- Update to 3.11.90 + +* Fri Feb 14 2014 Adam Williamson - 3.11.5-3 +- rebuild for new icu + +* Mon Feb 03 2014 Milan Crha - 3.11.5-2 +- Avoid compiler warning due to incorrect krb5 include folder + +* Mon Feb 03 2014 Milan Crha - 3.11.5-1 +- Update to 3.11.5 + +* Mon Jan 13 2014 Milan Crha - 3.11.4-1 +- Update to 3.11.4 + +* Sun Dec 22 2013 Ville Skyttä - 3.11.2-3 +- Drop empty AUTHORS from docs. + +* Thu Nov 21 2013 Milan Crha - 3.11.2-2 +- Rebuild for new libical (RH bug #1023020) + +* Mon Nov 18 2013 Milan Crha - 3.11.2-1 +- Update to 3.11.2 +- Conditionally build devel documentation +- Disable compiler warnings about deprecated symbols + +* Tue Oct 22 2013 Matthew Barnes - 3.11.1-1 +- Update to 3.11.1 + +* Mon Oct 14 2013 Milan Crha - 3.10.1-1 +- Update to 3.10.1 + +* Mon Sep 23 2013 Milan Crha - 3.10.0-1 +- Update to 3.10.0 + +* Mon Sep 16 2013 Milan Crha - 3.9.92-1 +- Update to 3.9.92 + +* Mon Sep 02 2013 Milan Crha - 3.9.91-1 +- Update to 3.9.91 + +* Mon Aug 19 2013 Milan Crha - 3.9.90-1 +- Update to 3.9.90 + +* Mon Aug 12 2013 Milan Crha - 3.9.5-3 +- Bump nss version requirement to 3.14 + +* Tue Aug 06 2013 Adam Williamson - 3.9.5-2 +- rebuild for new libgweather + +* Mon Jul 29 2013 Milan Crha - 3.9.5-1 +- Update to 3.9.5 + +* Sun Jul 21 2013 Matthew Barnes - 3.9.4-2 +- Require dconf for dconf-service, necessary for evolution-data-server + to operate properly. + +* Mon Jul 08 2013 Milan Crha - 3.9.4-1 +- Update to 3.9.4 + +* Fri Jun 21 2013 Kalev Lember - 3.9.3-2 +- Rebuilt for libgweather 3.9.3 soname bump + +* Mon Jun 17 2013 Milan Crha - 3.9.3-1 +- Update to 3.9.3 + +* Mon May 27 2013 Milan Crha - 3.9.2-1 +- Update to 3.9.2 + +* Fri May 24 2013 Rex Dieter 3.9.1-2 +- rebuild (libical) + +* Mon Apr 29 2013 Milan Crha - 3.9.1-1 +- Update to 3.9.1 + +* Mon Mar 25 2013 Milan Crha - 3.8.0-1 +- Update to 3.8.0 + +* Mon Mar 18 2013 Milan Crha - 3.7.92-1 +- Update to 3.7.92 + +* Mon Mar 04 2013 Milan Crha - 3.7.91-1 +- Update to 3.7.91 +- Remove an upstream .pc files fix for a libebook split (fixed upstream) +- Remove patch gor GNOME bug #693101 (fixed upstream) +- Remove patch for Red Hat bug #912503 (fixed upstream) + +* Thu Feb 21 2013 Milan Crha - 3.7.90-3 +- Add patch gor GNOME bug #693101 (IMAPx vanishes folder summary) +- Add patch for Red Hat bug #912503 (incorrect G_BEGIN/END_DECLS) + +* Mon Feb 18 2013 Milan Crha - 3.7.90-2 +- Add an upstream .pc files fix for a libebook split + +* Mon Feb 18 2013 Milan Crha - 3.7.90-1 +- Update to 3.7.90 + +* Mon Feb 04 2013 Milan Crha - 3.7.5-1 +- Update to 3.7.5 + +* Mon Jan 14 2013 Milan Crha - 3.7.4-1 +- Update to 3.7.4 +- Add --add-missing to automake call + +* Thu Dec 20 2012 Kalev Lember - 3.7.3-2 +- Rebuilt for libgweather 3.7.3 soname bump + +* Tue Dec 18 2012 Matthew Barnes - 3.7.3-1 +- Update to 3.7.3 +- Remove obsolete BuildRequires: + bison + dbus-glib-devel + libgnome-keyring-devel + liboauth-devel + +* Mon Nov 19 2012 Milan Crha - 3.7.2.1-1 +- Update to 3.7.2.1 + +* Mon Oct 22 2012 Milan Crha - 3.7.1-1 +- Update to 3.7.1 + +* Mon Sep 17 2012 Milan Crha - 3.5.92-1 +- Update to 3.5.92 + +* Mon Sep 03 2012 Milan Crha - 3.5.91-1 +- Update to 3.5.91 + +* Mon Aug 20 2012 Milan Crha - 3.5.90-1 +- Update to 3.5.90 + +* Mon Aug 06 2012 Milan Crha - 3.5.5-1 +- Update to 3.5.5 +- Remove patch for less memory usage from vTrash camel folders (fixed upstream) + +* Thu Jul 26 2012 Milan Crha - 3.5.4-3 +- Add patch for less memory usage from vTrash camel folders + +* Thu Jul 19 2012 Fedora Release Engineering - 3.5.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Mon Jul 16 2012 Milan Crha - 3.5.4-1 +- Update to 3.5.4 +- Change dependency from db4 to libdb + +* Sun Jul 1 2012 Matthew Barnes - 3.5.3.1-1 +- Update to 3.5.3.1 + +* Wed Jun 27 2012 Matthew Barnes - 3.5.3-3 +- Avoid exposing in a public header file. + +* Wed Jun 27 2012 Matthias Clasen - 3.5.3-2 +- Build against libgweather 3.5 + +* Mon Jun 25 2012 Matthew Barnes - 3.5.3-1 +- Update to 3.5.3 +- Add BR: gcr-devel >= 3.4 +- Drop BR: GConf2-devel \o/ + +* Mon Jun 04 2012 Milan Crha - 3.5.2-1 +- Update to 3.5.2 + +* Sun Apr 29 2012 Matthew Barnes - 3.5.1-1 +- Update to 3.5.1 + +* Tue Apr 24 2012 Kalev Lember - 3.4.1-2 +- Silence rpm scriptlet output + +* Mon Apr 16 2012 Richard Hughes - 3.4.1-1 +- Update to 3.4.1 + +* Mon Mar 26 2012 Milan Crha - 3.4.0-1 +- Update to 3.4.0 + +* Mon Mar 19 2012 Milan Crha - 3.3.92-1 +- Update to 3.3.92 + +* Tue Mar 06 2012 Milan Crha - 3.3.91-1 +- Update to 3.3.91 + +* Mon Feb 20 2012 Milan Crha - 3.3.90-1 +- Update to 3.3.90 + +* Mon Feb 06 2012 Milan Crha - 3.3.5-1 +- Update to 3.3.5 + +* Mon Jan 16 2012 Milan Crha - 3.3.4-1 +- Update to 3.3.4 + +* Fri Jan 13 2012 Fedora Release Engineering - 3.3.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Fri Dec 30 2011 Matthew Barnes - 3.3.3-2 +- Require libgnome-keyring-devel instead of gnome-keyring-devel. + +* Mon Dec 19 2011 Milan Crha - 3.3.3-1 +- Update to 3.3.3 + +* Mon Nov 21 2011 Milan Crha - 3.3.2-1 +- Update to 3.3.2 +- Remove patch to not call g_thread_init() (fixed upstream) + +* Mon Oct 24 2011 Milan Crha - 3.3.1-1 +- Update to 3.3.1 +- Add patch to not call g_thread_init() + +* Mon Sep 26 2011 Milan Crha - 3.2.0-1 +- Update to 3.2.0 + +* Mon Sep 19 2011 Milan Crha - 3.1.92-1 +- Update to 3.1.92 + +* Mon Sep 05 2011 Milan Crha - 3.1.91-1 +- Update to 3.1.91 +- Enable introspection and vala bindings + +* Mon Aug 29 2011 Milan Crha - 3.1.90-1 +- Update to 3.1.90 + +* Mon Aug 15 2011 Milan Crha - 3.1.5-1 +- Update to 3.1.5 + +* Sat Jul 23 2011 Matthew Barnes - 3.1.4-1 +- Update to 3.1.4 + +* Mon Jul 04 2011 Matthew Barnes - 3.1.3-1 +- Update to 3.1.3 +- Remove patch for libgdata-0.9.0 (fixed upstream). +- Disable SMP flags; some source directories are racy. +- Remove keyring option; gnome-keyring is mandatory now. +- Add BR: gnome-online-accounts-devel and liboauth-devel + +* Tue Jun 14 2011 Milan Crha - 3.1.2-1 +- Update to 3.1.2 +- Add patch by Philip Withnall to build against libgdata-0.9.0 + +* Mon May 09 2011 Milan Crha - 3.1.1-1 +- Update to 3.1.1 +- Drop groupwise backends, as it was split out upstream + +* Mon Apr 04 2011 Milan Crha - 3.0.0-1 +- Update to 3.0.0 + +* Mon Mar 21 2011 Milan Crha - 2.91.92-1 +- Update to 2.91.92 + +* Mon Mar 07 2011 Milan Crha - 2.91.91-1 +- Update to 2.91.91 + +* Mon Feb 21 2011 Milan Crha - 2.91.90-1 +- Update to 2.91.90 + +* Fri Feb 11 2011 Matthias Clasen 2.91.6-4 +- Rebuild against newer gtk + +* Tue Feb 08 2011 Fedora Release Engineering - 2.91.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Wed Feb 2 2011 Matthias Clasen - 2.91.6-2 +- Rebuild + +* Mon Jan 31 2011 Milan Crha - 2.91.6-1 +- Update to 2.91.6 +- Requires gtk3. + +* Mon Jan 31 2011 Caolánc McNamara - 2.91.5-4 +- Rebuild against new libgweather + +* Tue Jan 18 2011 Matthias Clasen - 2.91.5-3 +- Rebuild against new libgdata + +* Thu Jan 13 2011 Matthias Clasen - 2.91.5-2 +- Move girs to -devel + +* Mon Jan 10 2011 Milan Crha - 2.91.5-1 +- Update to 2.91.5 + +* Mon Dec 20 2010 Milan Crha - 2.91.4-1 +- Update to 2.91.4 + +* Mon Nov 29 2010 Milan Crha - 2.91.3-1 +- Update to 2.91.3 + +* Mon Nov 08 2010 Milan Crha - 2.91.2-1 +- Update to 2.91.2 + +* Fri Nov 05 2010 Milan Crha - 2.91.1-2 +- Rebuild against newer libxml2 + +* Mon Oct 18 2010 Milan Crha - 2.91.1-1 +- Update to 2.91.1 + +* Mon Oct 11 2010 Milan Crha - 2.91.0-1 +- Update to 2.91.0 + +* Wed Sep 29 2010 jkeating - 2.31.92-2 +- Rebuilt for gcc bug 634757 + +* Mon Sep 13 2010 Milan Crha - 2.31.92-1.fc15 +- Update to 2.31.92 + +* Mon Aug 30 2010 Milan Crha - 2.31.91-1.fc14 +- Update to 2.31.91 + +* Mon Aug 16 2010 Matthew Barnes - 2.31.90-1.fc14 +- Update to 2.31.90 + +* Mon Aug 02 2010 Matthew Barnes - 2.31.6-1.fc14 +- Update to 2.31.6 +- Resume GSEAL usage. +- Drop dbus-glib requirement. +- Bump glib2 requirement to 2.25.12. +- Roll back eds_base_version to 2.32. + +* Tue Jul 13 2010 Milan Crha - 2.31.5-1.fc14 +- Update to 2.31.5 + +* Mon Jun 07 2010 Milan Crha - 2.31.3-1.fc14 +- Update to 2.31.3 + +* Tue May 25 2010 Matthew Barnes - 2.31.2-2.fc14 +- Enable largefile support in Camel, to help debug GNOME bug #612082. + Debian turned this on recently and is experiencing problems, and I + want to get to the bottom of it and finally break this 2 GB barrier. + +* Mon May 24 2010 Milan Crha - 2.31.2-1.fc14 +- Update to 2.31.2 +- libecalbackendgoogle dropped. + +* Mon May 03 2010 Milan Crha - 2.31.1-1.fc14 +- Update to 2.31.1 +- Update BuildRequires. +- Remove imap4 camel provider support (dropped upstream). + +* Tue Feb 09 2010 Milan Crha - 2.29.90-3.fc13 +- Return back BuildRequires: libglade2-devel. + +* Mon Feb 08 2010 Matthew Barnes - 2.29.90-2.fc13 +- Rebuild to hopefully fix pkgconfig auto-provides glitch. + +* Mon Feb 08 2010 Milan Crha - 2.29.90-1.fc13 +- Update to 2.29.90 +- Removed unneeded BuildRequires. + +* Mon Jan 25 2010 Milan Crha - 2.29.6-1.fc13 +- Update to 2.29.6 + +* Tue Jan 12 2010 Milan Crha - 2.29.5-1.fc13 +- Update to 2.29.5 +- Correct Source URL + +* Mon Dec 21 2009 Milan Crha - 2.29.4-1.fc13 +- Update to 2.29.4 +- Remove patch for GNOME bug #487988 (fixed upstream). + +* Wed Dec 09 2009 Bastien Nocera 2.29.3-3 +- Remove libgnome and libgnomeui requirements + +* Wed Dec 02 2009 Matthew Barnes - 2.29.3-2.fc13 +- Devel subpackage does not need to require doc subpackage. + +* Mon Nov 30 2009 Milan Crha - 2.29.3-1.fc13 +- Update to 2.29.3 + +* Mon Nov 16 2009 Milan Crha - 2.29.2-1.fc13 +- Update to 2.29.2 + +* Tue Oct 27 2009 Matthew Barnes - 2.29.1-1.fc13 +- Update to 2.29.1 +- Bump eds_base_version to 2.30. +- Add dbus-glib build requirement. +- Drop Bonobo + ORBit dependency (yay!). +- Remove option to use OpenSSL instead of NSS. +- Drop eds_api_version definition since it will never change. +- Remove patch for GNOME bug #373146 (deviates from upstream). + +* Mon Sep 21 2009 Milan Crha - 2.28.0-1.fc12 +- Update to 2.28.0 + +* Mon Sep 07 2009 Milan Crha - 2.27.92-1.fc12 +- Update to 2.27.92 + +* Thu Aug 27 2009 Matthew Barnes - 2.27.91-3.fc12 +- Rebuild with old OpenSSL, er something... + +* Thu Aug 27 2009 Tomas Mraz - 2.27.91-2.fc12 +- rebuilt with new openssl + +* Mon Aug 24 2009 Milan Crha - 2.27.91-1.fc12 +- Update to 2.27.91 + +* Mon Aug 10 2009 Milan Crha - 2.27.90-1.fc12 +- Update to 2.27.90 + +* Mon Jul 27 2009 Milan Crha - 2.27.5-1.fc12 +- Update to 2.27.5 + +* Fri Jul 24 2009 Fedora Release Engineering - 2.27.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Mon Jul 13 2009 Matthew Barnes - 2.27.4-1.fc12 +- Update to 2.27.4 +- Remove patch for RH bug #505661 (fixed upstream). + +* Thu Jul 02 2009 Matthew Barnes - 2.27.3-3.fc12 +- Add patch for RH bug #505661 (crash on startup). + +* Wed Jul 01 2009 Milan Crha - 2.27.3-2.fc12 +- Rebuild against newer gcc + +* Mon Jun 15 2009 Matthew Barnes - 2.27.3-1.fc12 +- Update to 2.27.3 + +* Mon May 25 2009 Matthew Barnes - 2.27.2-1.fc12 +- Update to 2.27.2 +- Remove strict_build_settings since the settings are used upstream now. + +* Mon May 04 2009 Matthew Barnes - 2.27.1-1.fc12 +- Update to 2.27.1 +- Bump evo_major to 2.28. + +* Wed Apr 15 2009 Matthew Barnes - 2.26.1.1-1.fc11 +- Update to 2.26.1.1 + +* Mon Apr 13 2009 Matthew Barnes - 2.26.1-1.fc11 +- Update to 2.26.1 + +* Mon Mar 16 2009 Matthew Barnes - 2.26.0-1.fc11 +- Update to 2.26.0 +- Remove patch for RH bug #568332 (fixed upstream). +- Remove patch for GNOME bug #573240 (reverted upstream). + +* Fri Mar 13 2009 Matthew Barnes - 2.25.92-4.fc11 +- Revise patch for RH bug #568332 to match upstream commit. + +* Thu Mar 12 2009 Matthew Barnes - 2.25.92-3.fc11 +- Add patch for RH bug #568332 (thread leak in fsync() rate limiting). + +* Sat Mar 07 2009 Matthew Barnes - 2.25.92-2.fc11 +- Add patch to revert GNOME bug #573240 (IMAP message loading regressions). + +* Mon Mar 02 2009 Matthew Barnes - 2.25.92-1.fc11 +- Update to 2.25.92 + +* Tue Feb 24 2009 Matthias Clasen 2.25.91-3 +- Make -doc noarch + +* Tue Feb 24 2009 Fedora Release Engineering - 2.25.91-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Mon Feb 16 2009 Matthew Barnes - 2.25.91-1.fc11 +- Update to 2.25.91 + +* Fri Feb 06 2009 Matthew Barnes - 2.25.90-5.fc11 +- Update BuildRoot, License, Source and URL tags. +- Require gnome-common so we don't have to patch it out. + +* Wed Feb 04 2009 Matthew Barnes - 2.25.90-4.fc11 +- ... and fix our own includes too. + +* Wed Feb 04 2009 Matthew Barnes - 2.25.90-3.fc11 +- Work around libical's broken pkg-config file. + +* Mon Feb 02 2009 Matthew Barnes - 2.25.90-2.fc11 +- Forgot the libical requirement in devel subpackage. + +* Mon Feb 02 2009 Matthew Barnes - 2.25.90-1.fc11 +- Update to 2.25.90 +- Add libical build requirement. + +* Mon Jan 19 2009 Matthew Barnes - 2.25.5-1.fc11 +- Update to 2.25.5 +- Bump gtk2_version to 2.14.0. + +* Fri Jan 16 2009 Tomas Mraz - 2.25.4-2.fc11 +- rebuild with new openssl + +* Mon Jan 05 2009 Matthew Barnes - 2.25.4-1.fc11 +- Update to 2.25.4 + +* Mon Dec 15 2008 Matthew Barnes - 2.25.3-1.fc11 +- Update to 2.25.3 +- New BR: libgweather-devel + +* Thu Dec 04 2008 Matthew Barnes - 2.25-2-2.fc11 +- Rebuild due to recent pkg-config breakage. + +* Mon Dec 01 2008 Matthew Barnes - 2.25.2-1.fc11 +- Update to 2.25.2 + +* Thu Nov 27 2008 Matthew Barnes - 2.25.1-2.fc11 +- Obsolete the evolution-webcal package (RH bug #468855). + +* Mon Nov 03 2008 Matthew Barnes - 2.25.1-1.fc11 +- Update to 2.25.1 +- Bump eds_base_version to 2.26. +- Remove patch for RH bug #467804 (fixed upstream). + +* Thu Oct 23 2008 Matthew Barnes - 2.24.1-2.fc10 +- Add patch for RH bug #467804 (remove console spew). + +* Tue Oct 21 2008 Matthew Barnes - 2.24.1-1.fc10 +- Update to 2.24.1 + +* Mon Sep 22 2008 Matthew Barnes - 2.24.0-1.fc10 +- Update to 2.24.0 + +* Mon Sep 08 2008 Matthew Barnes - 2.23.92-1.fc10 +- Update to 2.23.92 + +* Mon Sep 01 2008 Matthew Barnes - 2.23.91-1.fc10 +- Update to 2.23.91 + +* Wed Aug 20 2008 Matthew Barnes - 2.23.90.1-1.fc10 +- Update to 2.23.90.1 + +* Mon Aug 04 2008 Matthew Barnes - 2.23.6-3.fc10 +- Add sqlite3 requirement to devel subpackage. + +* Mon Aug 04 2008 Matthew Barnes - 2.23.6-2.fc10 +- Add sqlite3 to Camel's pkgconfig requirements. + +* Mon Aug 04 2008 Matthew Barnes - 2.23.6-1.fc10 +- Update to 2.23.6 +- Add build requirement for sqlite. + +* Mon Jul 21 2008 Matthew Barnes - 2.23.5-1.fc10 +- Update to 2.23.5 +- Remove patch for RH bug #534080 (fixed upstream). + +* Fri Jul 18 2008 Tom "spot" Callaway 2.23.4-3 +- fix license tag + +* Thu Jul 03 2008 Matthew Barnes - 3.23.4-2.fc10 +- Add patch for RH bug #534080 (fix attachment saving). + +* Mon Jun 16 2008 Matthew Barnes - 3.23.4-1.fc10 +- Update to 2.23.4 + +* Mon Jun 02 2008 Matthew Barnes - 3.23.3-1.fc10 +- Update to 2.23.3 +- Remove patch for GNOME bug #531439 (fixed upstream). + +* Sun May 18 2008 Matthew Barnes - 2.23.2-3.fc10 +- Add patch for GNOME bug #531439 (GPG passphrases destroy passwords). + +* Tue May 13 2008 Matthew Barnes - 2.23.2-2.fc10 +- Fix some third-party package breakage caused by libebackend. + +* Mon May 12 2008 Matthew Barnes - 2.23.2-1.fc10 +- Update to 2.23.2 +- Add files for new libebackend library. +- Remove patch for RH bug #202309 (fixed upstream). + +* Mon Apr 21 2008 Matthew Barnes - 2.23.1-1.fc10 +- Update to 2.23.1 +- Bump eds_base_version to 2.24. +- Bump glib2 requirement to 2.16.1. +- Drop gnome-vfs2 requirement. + +* Mon Apr 07 2008 Matthew Barnes - 2.22.1-1.fc9 +- Update to 2.22.1 +- Remove patch for RH bug #296671 (fixed upstream). +- Remove patch for GNOME bug #523023 (fixed upstream). + +* Mon Mar 24 2008 Matthew Barnes - 2.22.0-3.fc9 +- Add patch for GNOME bug #523023 (EFolder leak in evo-ex-storage). + +* Tue Mar 11 2008 Matthew Barnes - 2.22.0-2.fc9 +- Add patch for RH bug #296671 (GC servers may not support NTLM). + +* Mon Mar 10 2008 Matthew Barnes - 2.22.0-1.fc9 +- Update to 2.22.0 + +* Mon Feb 25 2008 Matthew Barnes - 2.21.92-1.fc9 +- Update to 2.21.92 +- Remove patch for GNOME bug #516074 (fixed upstream). + +* Thu Feb 14 2008 Matthew Barnes - 2.21.91-3.fc9 +- Try removing the ancient "ldap-x86_64-hack" patch. + +* Wed Feb 13 2008 Matthew Barnes - 2.21.91-2.fc9 +- Rebuild against libsoup 2.3.2. + +* Mon Feb 11 2008 Matthew Barnes - 2.21.91-1.fc9 +- Update to 2.21.91 +- Add patch for GNOME bug #516074 (latest glibc breaks Camel). + +* Mon Jan 28 2008 Matthew Barnes - 2.21.90-1.fc9 +- Update to 2.21.90 +- Remove patch for GNOME bug #509644 (fixed upstream). + +* Thu Jan 17 2008 Matthew Barnes - 2.21.5-3.fc9 +- Rename evolution-1.4.4-ldap-x86_64-hack.patch to avoid namespace + collision with similarly named patch in evolution (RH bug #395551). + +* Wed Jan 16 2008 Matthew Barnes - 2.21.5-2.fc9 +- Add patch for GNOME bug #509644 (password dialog breakage). +- Remove patch for RH bug #384741 (fixed upstream). +- Remove patch for GNOME bug #363695 (obsolete). +- Remove patch for GNOME bug #376991 (obsolete). + +* Mon Jan 14 2008 Matthew Barnes - 2.21.5-1.fc9 +- Update to 2.21.5 + +* Mon Dec 17 2007 Matthew Barnes - 2.21.4-1.fc9 +- Update to 2.21.4 +- Require gtk-doc >= 1.9. + +* Tue Dec 4 2007 Matthias Clasen - 2.21.3-2 +- Rebuild against openssl + +* Mon Dec 03 2007 Matthew Barnes - 2.21.3-1.fc9 +- Update to 2.21.3 + +* Thu Nov 15 2007 Matthew Barnes - 2.21.2-2.fc9 +- Add patch for RH bug #384741 (authentication crash). + +* Mon Nov 12 2007 Matthew Barnes - 2.21.2-1.fc9 +- Update to 2.21.2 + +* Mon Oct 29 2007 Matthew Barnes - 2.21.1-1.fc9 +- Update to 2.21.1 +- Bump eds_base_version to 2.22. +- Remove patch for RH bug #212106 (fixed upstream). +- Remove patch for GNOME bug #417999 (fixed upstream). + +* Fri Oct 26 2007 Matthew Barnes - 1.12.1-4.fc9 +- Remove the use_gtk_doc macro. +- Remove redundant requirements. +- Use the name tag where appropriate. +- Add an evolution-data-server-doc subpackage. + +* Thu Oct 18 2007 Matthew Barnes - 1.12.1-3.fc9 +- Porting a couple patches over from RHEL5: +- Add patch for RH bug #212106 (address book error on fresh install). +- Add patch for RH bug #215702 (bad search filter for LDAP address books). + +* Tue Oct 16 2007 Matthew Barnes - 1.12.1-2.fc8 +- Disable patch for GNOME bug #376991 for now. It may be contributing + to password prompting problems as described in RH bug #296671. + +* Mon Oct 15 2007 Milan Crha - 1.12.1-1.fc8 +- Update to 1.12.1 + +* Mon Sep 17 2007 Matthew Barnes - 1.12.0-1.fc8 +- Update to 1.12.0 + +* Mon Sep 03 2007 Matthew Barnes - 1.11.92-1.fc8 +- Update to 1.11.92 + +* Tue Aug 28 2007 Milan Crha - 1.11.91-1.fc8 +- Update to 1.11.91 +- Removed patch for RH bug #215634 (fixed upstream). +- Removed patch for GNOME bug #466987 (fixed upstream). + +* Wed Aug 22 2007 Adam Jackson 1.11.90-4.fc8 +- Add Requires: glib2 >= 2.14.0, since it's in the buildroot now, and + forcibly introduces deps on symbols that don't exist in 2.13. If + only we had working symbol versioning. + +* Mon Aug 20 2007 Matthew Barnes - 1.11.90-3.fc8 +- Revise patch for GNOME bug #417999 to fix GNOME bug #447591 + (Automatic Contacts combo boxes don't work). + +* Mon Aug 13 2007 Matthew Barnes - 1.11.90-2.fc8 +- Re-enable the --with-libdb configure option. + +* Mon Aug 13 2007 Matthew Barnes - 1.11.90-1.fc8 +- Update to 1.11.90 +- Add patch for GNOME bug #466987 (glibc redefines "open"). +- Remove patch for GNOME bug #415891 (fixed upstream). + +* Wed Aug 08 2007 Matthew Barnes - 1.11.6.1-1.fc8 +- Update to 1.11.6.1 + +* Tue Jul 31 2007 Matthew Barnes - 1.11.6-1.fc8 +- Update to 1.11.6 +- Remove patch for GNOME bug #380534 (fixed upstream). + +* Fri Jul 27 2007 Matthew Barnes - 1.11.5-3.fc8 +- Add patch for GNOME bug #380534 (clarify version requirements). + +* Tue Jul 17 2007 Matthew Barnes - 1.11.5-2.fc8 +- Add patch for RH bug #243296 (fix LDAP configuration). + +* Mon Jul 09 2007 Matthew Barnes - 1.11.5-1.fc8 +- Update to 1.11.5 + +* Mon Jun 18 2007 Matthew Barnes - 1.11.4-1.fc8 +- Update to 1.11.4 +- Remove patch for RH bug #202309 (fixed upstream). +- Remove patch for GNOME bug #312854 (fixed upstream). +- Remove patch for GNOME bug #447414 (fixed upstream). + +* Fri Jun 15 2007 Matthew Barnes - 1.11.3-3.fc8 +- Add patch for GNOME bug #224277 (Camel IMAP security flaw). + +* Thu Jun 14 2007 Matthew Barnes - 1.11.3-2.fc8 +- Add patch for GNOME bug #312584 (renaming Exchange folders). + +* Mon Jun 04 2007 Matthew Barnes - 1.11.3-1.fc8 +- Update to 1.11.3 +- Remove patch for GNOME bug #415922 (fixed upstream). + +* Thu May 31 2007 Matthew Barnes - 1.11.2-3.fc8 +- Revise patch for GNOME bug #376991 to fix RH bug #241974. + +* Mon May 21 2007 Matthew Barnes - 1.11.2-2.fc8 +- Store account passwords in GNOME Keyring. + +* Fri May 18 2007 Matthew Barnes - 1.11.2-1.fc8 +- Update to 1.11.2 +- Bump eds_base_version to 1.12. +- Add patch to fix implicit function declarations. +- Remove patch for RH bug #203058 (fixed upstream). +- Remove patch for RH bug #210142 (fixed upstream). +- Remove patch for RH bug #235290 (fixed upstream). +- Remove patch for GNOME bug #360240 (fixed upstream). +- Remove patch for GNOME bug #360619 (fixed upstream). +- Remove patch for GNOME bug #373117 (fixed upstream). +- Revise patch for GNOME bug #415891 (partially fixed upstream). + +* Wed May 09 2007 Matthew Barnes - 1.10.1-6.fc7 +- Add patch for RH bug #215634 (read NSS certificates more reliably). + +* Tue May 08 2007 Matthew Barnes - 1.10.1-5.fc7 +- Add patch for GNOME bug #373146 (spam message triggers crash). + +* Mon May 07 2007 Matthew Barnes - 1.10.1-4.fc7 +- Add patch to fix a dangling pointer in e-source-group.c. + +* Mon Apr 30 2007 Matthew Barnes - 1.10.1-3.fc7 +- Revise patch for RH bug #235290 to not break string freeze. + +* Tue Apr 24 2007 Matthew Barnes - 1.10.1-2.fc7 +- Add patch for RH bug #235290 (APOP authentication vulnerability). + +* Mon Apr 09 2007 Matthew Barnes - 1.10.1-1.fc7 +- Update to 1.10.1 +- Remove evolution-data-server-1.10.0-no-more-beeps.patch (fixed upstream). + +* Wed Apr 04 2007 Matthew Barnes - 1.10.0-6.fc7 +- Revise patch for GNOME bug #417999 (another ESourceComboBox goof). + +* Mon Apr 02 2007 Matthew Barnes - 1.10.0-5.fc7 +- Make the new ESourceComboBox widget work properly (RH bug #234760). + +* Tue Mar 27 2007 Matthew Barnes - 1.10.0-4.fc7 +- Link to static evolution-openldap library (RH bug #210126). +- Require openssl-devel when statically linking against openldap. +- Add -Wdeclaration-after-statement to strict build settings. + +* Thu Mar 22 2007 Matthew Barnes - 1.10.0-3.fc7 +- Stop beeping at me! + +* Wed Mar 14 2007 Matthew Barnes - 1.10.0-2.fc7 +- Modify patch for GNOME bug #376991 to fix RH bug #231994. +- Add patch for GNOME bug #417999 (avoid deprecated GTK+ symbols). +- Remove evolution-data-server-1.0.2-workaround-cal-backend-leak.patch. +- Remove evolution-data-server-1.2.2-fix_open_calendar_declaration.patch. +- Remove evolution-data-server-1.3.8-fix-implicit-function-declarations. + +* Mon Mar 12 2007 Matthew Barnes - 1.10.0-1.fc7 +- Update to 1.10.0 +- Remove patch for GNOME bug #301363 (fixed upstream). + +* Fri Mar 09 2007 Matthew Barnes - 1.9.92-4.fc7 +- Add patch for GNOME bug #415922 (support MS ISA Server 2004). +- Patch by Kenny Root. + +* Thu Mar 08 2007 Matthew Barnes - 1.9.92-3.fc7 +- Add patch for GNOME bug #415891 (introduce EFlag API). +- Add patch for GNOME bug #376991 (refactor password handling). + +* Tue Mar 06 2007 Matthew Barnes - 1.9.92-2.fc7 +- Add patch for GNOME bug #301363 (update timezones). + +* Mon Feb 26 2007 Matthew Barnes - 1.9.92-1.fc7 +- Update to 1.9.92 +- Remove patch for GNOME bug #356177 (fixed upstream). +- Add minimum version to intltool requirement (current >= 0.35.5). + +* Mon Feb 12 2007 Matthew Barnes - 1.9.91-1.fc7 +- Update to 1.9.91 +- Add flag to disable deprecated Pango symbols. +- Remove patch for GNOME bug #359979 (fixed upstream). + +* Sun Jan 21 2007 Matthew Barnes - 1.9.5-4.fc7 +- Revise evolution-data-server-1.8.0-no-gnome-common.patch so that we no + longer have to run autoconf before building. + +* Wed Jan 10 2007 Matthew Barnes - 1.9.5-3.fc7 +- Add patch for GNOME bug #359979 (change EMsgPort semantics). + +* Tue Jan 09 2007 Matthew Barnes - 1.9.5-2.fc7 +- Require libsoup-devel in devel subpackage (RH bug #152482). + +* Mon Jan 08 2007 Matthew Barnes - 1.9.5-1.fc7 +- Update to 1.9.5 +- Remove patch for GNOME bug #362638 (fixed upstream). +- Remove patch for GNOME bug #387638 (fixed upstream). + +* Tue Dec 19 2006 Matthew Barnes - 1.9.4-1.fc7 +- Update to 1.9.4 +- Add patch for GNOME bug #373117 (storing color settings). +- Add patch for GNOME bug #387638 (implicit function declaration). + +* Mon Dec 04 2006 Matthew Barnes - 1.9.3-1.fc7 +- Update to 1.9.3 +- Remove patch for GNOME bug #353924 (fixed upstream). + +* Fri Nov 10 2006 Matthew Barnes - 1.9.2-3.fc7 +- Add patch for RH bug #210142 (calendar crash in indic locales). + +* Wed Nov 08 2006 Matthew Barnes - 1.9.2-2.fc7 +- Add patch for RH bug #203058 (name selector dialog glitch). + +* Mon Nov 06 2006 Matthew Barnes - 1.9.2-1.fc7 +- Update to 1.9.2 +- Remove patch for Gnome.org bugs #369168, #369259, and #369261 + (fixed upstream). + +* Thu Nov 2 2006 Matthew Barnes - 1.9.1-4.fc7 +- Add patch for Gnome.org bug #369168, #369259, and #369261 + (misc camel bugs reported by Hans Petter Jansson). + +* Wed Nov 1 2006 Matthew Barnes - 1.9.1-3.fc7 +- Add patch for Gnome.org bug #353924 (category sorting). + +* Fri Oct 27 2006 Matthew Barnes - 1.9.1-2.fc7 +- Rebuild + +* Fri Oct 27 2006 Matthew Barnes - 1.9.1-2.fc7 +- Update to 1.9.1 +- Add patch for Gnome.org bug #356177 (deprecate EMutex). +- Add patch for Gnome.org bug #363695 (deprecate EMemPool, EStrv, EPoolv). +- Remove Jerusalem.ics timezone file (fixed upstream). +- Remove patch for RH bug #198935 (fixed upstream). + +* Mon Oct 16 2006 Matthew Barnes - 1.8.1-1.fc7 +- Update to 1.8.1 +- Use stricter build settings. +- Add patch for Gnome.org bug #360240 ("unused variable" warnings). +- Add patch for Gnome.org bug #360619 ("incompatible pointer type" warnings). +- Add patch for Gnome.org bug #362638 (deprecate EThread). +- Remove patch for RH bug #198935 (fixed upstream). +- Remove patch for RH bug #205187 (fixed upstream). +- Remove patch for Gnome.org bug #353478 (fixed upstream). +- Remove patch for Gnome.org bug #356828 (fixed upstream). +- Remove patch for Gnome.org bug #357666 (fixed upstream). + +* Tue Sep 26 2006 Matthew Barnes - 1.8.0-11.fc6 +- Add patch for RH bug #203915 (fix dangerous mallocs in camel). + +* Mon Sep 25 2006 Matthew Barnes - 1.8.0-10.fc6 +- Add patch for Gnome.org bug #357666. + +* Thu Sep 21 2006 Matthew Barnes - 1.8.0-9.fc6 +- Revise patch for RH bug #198935 (fix a crash reported in bug #207446). + +* Wed Sep 20 2006 Matthew Barnes - 1.8.0-8.fc6 +- Revise patch for RH bug #198935 (fix a typo). + +* Wed Sep 20 2006 Matthias Clasen - 1.8.0-7.fc6 +- Fix the timezone info for Jerusalem (#207161) + +* Wed Sep 20 2006 Matthew Barnes - 1.8.0-6.fc6 +- Add patch for Gnome.org bug #356828 (lingering file on uninstall). + +* Mon Sep 18 2006 Matthew Barnes - 1.8.0-5.fc6 +- Revise patch for RH bug #205187 (use upstream's version). + +* Sat Sep 16 2006 Matthew Barnes - 1.8.0-4.fc6 +- Add patch for RH bug #205187 (crash on startup). + +* Fri Sep 15 2006 Matthew Barnes - 1.8.0-3.fc6 +- Revise patch for RH bug #198935 to eliminate a race condition. + +* Tue Sep 12 2006 Matthew Barnes - 1.8.0-2.fc6 +- Add patch for RH bug #198935. + +* Mon Sep 4 2006 Matthew Barnes - 1.8.0-1.fc6 +- Update to 1.8.0 +- Remove evolution-data-server-1.5.4-make_imap4_optional.patch (fixed upstream) + and save remaining hunk as evolution-data-server-1.8.0-no-gnome-common.patch. +- Remove patch for RH bug #202329 (fixed upstream). +- Remove patch for Gnome.org bug #349847 (fixed upstream). + +* Tue Aug 29 2006 Matthew Barnes - 1.7.92-4.fc6 +- Revise patch for RH bug #198935. +- Add patch for Gnome.org bug #353478. + +* Mon Aug 28 2006 Ray Strode - 1.7.92-3.fc6 +- Add patch from Veerapuram Varadhan to fix fd leak (bug 198935). + +* Tue Aug 22 2006 Matthew Barnes - 1.7.92-2 +- Add patch for Gnome.org bug #349847. + +* Mon Aug 21 2006 Matthew Barnes - 1.7.92-1 +- Update to 1.7.92 + +* Wed Aug 16 2006 Ray Strode - 1.7.91-3 +- Add fix from Matthias Clasen that might help bug 202309. + +* Mon Aug 14 2006 Matthew Barnes - 1.7.91-2 +- Add patch for RH bug #202329. + +* Mon Aug 7 2006 Matthew Barnes - 1.7.91-1 +- Update to 1.7.91 +- Remove patch for Gnome.org bug #348725 (fixed upstream). + +* Fri Aug 4 2006 Matthew Barnes - 1.7.90.1-5 +- Update to 1.7.90.1 (again) + +* Thu Aug 3 2006 Matthew Barnes - 1.7.4-5 +- Remove patches for Gnome.org bug #309079 (rejected upstream). +- One of these patches was causing RH bug #167157. + +* Thu Aug 3 2006 Matthew Barnes - 1.7.4-4 +- No longer packaging unused patches. + +* Mon Jul 31 2006 Matthew Barnes - 1.7.4-3 +- Revert to version 1.7.4 to prevent API/ABI breakage. +- Add back patch to make --with-libdb configure option work. + +* Mon Jul 31 2006 Ray Strode - 1.7.90.1-4 +- add executable bits to libs + +* Mon Jul 31 2006 Matthias Clasen - 1.7.90.1-3 +- Rebuild + +* Wed Jul 26 2006 Matthew Barnes - 1.7.90.1-2 +- Rebuild + +* Tue Jul 25 2006 Matthew Barnes - 1.7.90.1-1 +- Update to 1.7.90.1 +- Add patch for Gnome.org bug #348725. +- Remove patch to make --with-db configure option work (fixed upstream). + +* Wed Jul 19 2006 Matthew Barnes - 1.7.4-2 +- Dynamically link to BDB. +- Add patch to make --with-db configure option work. +- Add Requires for db4 and BuildRequires for db4-devel. +- Clean up spec file, renumber patches. + +* Wed Jul 12 2006 Matthew Barnes - 1.7.4-1 +- Update to 1.7.4 +- Remove patch for Gnome.org bug #345965 (fixed upstream). + +* Wed Jul 12 2006 Jesse Keating - 1.7.3-3.1 +- rebuild + +* Tue Jun 27 2006 Matthew Barnes - 1.7.3-3 +- Show GPG key name when asking for the password (Gnome.org #345965). + +* Wed Jun 14 2006 Tomas Mraz - 1.7.3-2 +- rebuilt with new gnutls + +* Tue Jun 13 2006 Matthisa Clasen 1.7.3-1 +- Update to 1.7.3 + +* Thu Jun 8 2006 Jeremy Katz - 1.7.2-3 +- BR flex + +* Sat May 27 2006 Matthew Barnes - 1.7.2-2 +- Add missing BuildRequires for gettext (#193360). + +* Wed May 17 2006 Matthew Barnes - 1.7.2 +- Update to 1.7.2 +- Remove evolution-data-server-1.7.1-nss_auto_detect.patch; in upstream now. + +* Sun May 14 2006 Matthew Barnes - 1.7.1-2 +- Add temporary patch evolution-data-server-1.7.1-nss_auto_detect.patch + to help `configure' detect the SSL modules (closes #191567). + +* Wed May 10 2006 Matthew Barnes - 1.7.1-1 +- Update to 1.7.1 +- Bump eds_base_version from 1.6 to 1.8. +- Disable evolution-data-server-1.2.0-validatehelo.patch (accepted upstream). + +* Mon Apr 10 2006 Matthias Clasen - 1.6.1-3 +- Avoid a multilib conflict + +* Mon Apr 10 2006 Matthias Clasen - 1.6.1-2 +- Update to 1.6.1 + +* Mon Mar 13 2006 Ray Strode - 1.6.0-1 +- 1.6.0 + +* Mon Feb 27 2006 Ray Strode - 1.5.92-1 +- 1.5.92 + +* Tue Feb 14 2006 David Malcolm - 1.5.91-1 +- 1.5.91 + +* Fri Feb 10 2006 Jesse Keating - 1.5.90-2.2 +- bump again for double-long bug on ppc(64) + +* Tue Feb 07 2006 Jesse Keating - 1.5.90-2.1 +- rebuilt for new gcc4.1 snapshot and glibc changes + +* Tue Jan 31 2006 Ray Strode - 1.5.90-2 +- add build deps (bug 137553) + +* Mon Jan 30 2006 David Malcolm - 1.5.90-1 +- 1.5.90 +- explicitly list various files rather than rely on globbing +- enabled parallel make + +* Wed Jan 25 2006 David Malcolm - 1.5.5-1 +- 1.5.5 +- added CalDAV backend to the list of packaged extensions + +* Mon Jan 9 2006 David Malcolm - 1.5.4-4 +- updated patch 300 to remove usage of GNOME_COMPILE_WARNINGS from configure.in + (since gnome-common might not be available when we rerun the autotools) + +* Mon Jan 9 2006 David Malcolm - 1.5.4-3 +- added patch to make the "imap4"/"IMAP4rev1" backend optional; disable it in + our packages; re-run automake since we have touched various Makefile.am + files; rerun intltoolize to avoid incompatibilities between tarball copy of + intltool-merge.in and intltool.m4 in intltool package (@EXPANDED_LIBDIR@ + renamed to @INTLTOOL_LIBDIR@) (#167574) +- explicitly list the camel providers and e-d-s extension files in the spec file + +* Thu Jan 5 2006 David Malcolm - 1.5.4-2 +- added patch from David Woodhouse to validate reverse DNS domain before using + in SMTP greeting (patch 103, #151121) + +* Tue Jan 3 2006 David Malcolm - 1.5.4-1 +- 1.5.4 + +* Mon Dec 19 2005 David Malcolm - 1.5.3-2 +- Update specfile and patch 5 (evolution-data-server-1.3.5-nspr_fix.patch) to + use nss rather than mozilla-nss throughout + +* Mon Dec 19 2005 David Malcolm - 1.5.3-1 +- 1.5.3 + +* Fri Dec 09 2005 Jesse Keating +- rebuilt + +* Tue Dec 6 2005 David Malcolm - 1.5.2-1 +- 1.5.2 +- bump eds_base_version from 1.4 to 1.6 +- updated patch 102 + +* Mon Dec 5 2005 David Malcolm - 1.4.2.1-1 +- 1.4.2.1 + +* Tue Nov 29 2005 David Malcolm - 1.4.2-1 +- 1.4.2 + +* Tue Nov 29 2005 David Malcolm - 1.4.1.1-3 +- add -DLDAP_DEPRECATED to CFLAGS (#172999) + +* Thu Nov 10 2005 David Malcolm - 1.4.1.1-2 +- Updated license field to reflect change from GPL to LGPL +- Remove all static libraries, not just those in /usr/lib; avoid listing libdir + subdirectory so that we can be more explicit about the package payload (bug + #172882) + +* Mon Oct 17 2005 David Malcolm - 1.4.1.1-1 +- 1.4.1.1 + +* Mon Oct 17 2005 David Malcolm - 1.4.1-2 +- Updated patch 102 (fix-implicit-function-declarations) to include fix for + http calendar backend (thanks to Peter Robinson) + +* Tue Oct 4 2005 David Malcolm - 1.4.1-1 +- 1.4.1 + +* Wed Sep 14 2005 Jeremy Katz - 1.4.0-2 +- rebuild now that mozilla builds on ppc64 + +* Tue Sep 6 2005 David Malcolm - 1.4.0-1 +- 1.4.0 +- Removed evolution-data-server-1.3.8-fix-libical-vsnprintf.c.patch; a version + of this is now upstream (was patch 103, added in 1.3.8-2) + +* Wed Aug 31 2005 David Malcolm - 1.3.8-6 +- Use regular LDAP library for now, rather than evolution-openldap (#167238) + +* Tue Aug 30 2005 David Malcolm - 1.3.8-5 +- Add -Werror-implicit-function-declaration back to CFLAGS at the make stage, + after the configure, to spot 64-bit problems whilst avoiding breaking + configuration tests; expand patch 102 to avoid this breaking libdb's CFLAGS + +* Wed Aug 24 2005 David Malcolm - 1.3.8-4 +- Remove -Werror-implicit-function-declaration from CFLAGS; this broke the + configuration test for fast mutexes in the internal copy of libdb, and hence + broke access to local addressbooks (#166742) +- Introduce static_ldap macro; use it to link to static evolution-openldap + library, containing NTLM support for LDAP binds (needed by Exchange support) + +* Tue Aug 23 2005 David Malcolm - 1.3.8-3 +- Updated patch 102 to fix further implicit function declarations + +* Tue Aug 23 2005 David Malcolm - 1.3.8-2 +- added patch (103) to fix problem with configuration macros in libical's + vsnprintf.c + +* Tue Aug 23 2005 David Malcolm - 1.3.8-1 +- 1.3.8 +- Add -Werror-implicit-function-declaration to CFLAGS, to avoid 64-bit issues + and add patch to fix these where they occur (patch 102) + +* Mon Aug 15 2005 David Malcolm - 1.3.7-2 +- rebuild + +* Tue Aug 9 2005 David Malcolm - 1.3.7-1 +- 1.3.7 + +* Mon Aug 8 2005 Tomas Mraz - 1.3.6.1-2 +- rebuild with new gnutls + +* Fri Jul 29 2005 David Malcolm - 1.3.6.1-1 +- 1.3.6.1 + +* Thu Jul 28 2005 David Malcolm - 1.3.6-1 +- 1.3.6 + +* Mon Jul 25 2005 David Malcolm - 1.3.5-2 +- Added patch to use nspr rather than mozilla-nspr when doing pkg-config tests + (Patch5: evolution-data-server-1.3.5-nspr_fix.patch) + +* Mon Jul 25 2005 David Malcolm - 1.3.5-1 +- 1.3.5 +- Split eds_major (was 1.2) into eds_base_version (1.4) and eds_api_version + (1.2) to correspond to BASE_VERSION and API_VERSION in configure.in; updated + rest of specfile accordingly. +- Removed upstreamed patch: + evolution-data-server-1.2.0-cope-with-a-macro-called-read.patch + +* Mon Jun 27 2005 David Malcolm - 1.2.2-4.fc5 +- Added leak fixes for GNOME bug 309079 provided by Mark G. Adams + +* Wed May 18 2005 David Malcolm - 1.2.2-3 +- bumped libsoup requirement to 2.2.3; removed mozilla_build_version, using + pkg-config instead for locating NSPRS and NSS headers/libraries (#158085) + +* Mon Apr 11 2005 David Malcolm - 1.2.2-2 +- added patch to calendar/libecal/e-cal.c to fix missing declaration of open_calendar + +* Mon Apr 11 2005 David Malcolm - 1.2.2-1 +- 1.2.2 + +* Thu Mar 17 2005 David Malcolm - 1.2.1-1 +- 1.2.1 + +* Thu Mar 10 2005 David Malcolm - 1.2.0-3 +- Removed explicit run-time spec-file requirement on mozilla. + The Mozilla NSS API/ABI stabilised by version 1.7.3 + The libraries are always located in the libdir + However, the headers are in /usr/include/mozilla-%%{mozilla_build_version} + and so they move each time the mozilla version changes. + So we no longer have an explicit mozilla run-time requirement in the specfile; + a requirement on the appropriate NSS and NSPR .so files is automagically generated on build. + We have an explicit, exact build-time version, so that we can find the headers (without + invoking an RPM query from the spec file; to do so is considered bad practice) +- Introduced mozilla_build_version, to replace mozilla_version +- Set mozilla_build_version to 1.7.6 to reflect current state of tree + +* Tue Mar 8 2005 David Malcolm - 1.2.0-2 +- Added a patch to deal with glibc defining a macro called "read" + +* Tue Mar 8 2005 David Malcolm - 1.2.0-1 +- 1.2.0 +- Removed patch for GCC 4 as this is now in upstream tarball + +* Wed Mar 2 2005 Jeremy Katz - 1.1.6-6 +- rebuild to fix library linking silliness + +* Tue Mar 1 2005 David Malcolm - 1.1.6-5 +- disabling gtk-doc on ia64 and s390x + +* Tue Mar 1 2005 David Malcolm - 1.1.6-4 +- added macro use_gtk_doc; added missing BuildRequires on gtk-doc; enabled gtk-doc generation on all platforms (had been disabled on ia64) + +* Tue Mar 1 2005 David Malcolm - 1.1.6-3 +- extended patch to deal with camel-groupwise-store-summary.c + +* Tue Mar 1 2005 David Malcolm - 1.1.6-2 +- added patch to fix badly-scoped declaration of "namespace_clear" in camel-imap-store-summary.c + +* Tue Mar 1 2005 David Malcolm - 1.1.6-1 +- 1.1.6 + +* Tue Feb 8 2005 David Malcolm - 1.1.5-3 +- rebuild + +* Tue Feb 8 2005 David Malcolm - 1.1.5-2 +- forgot to fix sources + +* Tue Feb 8 2005 David Malcolm - 1.1.5-1 +- 1.1.5 + +* Thu Jan 27 2005 David Malcolm - 1.1.4.2-1 +- Update from unstable 1.1.4.1 to unstable 1.1.1.4.2 + +* Wed Jan 26 2005 David Malcolm - 1.1.4.1-3 +- disable gtk-doc generation on ia64 for now + +* Wed Jan 26 2005 David Malcolm - 1.1.4.1-2 +- Exclude ppc64 due to missing mozilla dependency + +* Wed Jan 26 2005 David Malcolm - 1.1.4.1-1 +- Update from 1.0.3 to 1.1.4.1 +- Updated eds_major from 1.0 to 1.2; fixed translation search path. +- Removed 64-bit patch for calendar backend hash table; upstream now stores pointers to ECalBackendFactory, rather than GType +- Removed calendar optimisation patch for part of part of bug #141283 as this is now in the upstream tarball +- Added /usr/lib/evolution-data-server-%%{eds_major} to cover the extensions, plus the camel code now in e-d-s, rather than evolution +- Added /usr/share/pixmaps/evolution-data-server-%%{eds_major} to cover the category pixmaps +- Camel code from evolution is now in evolution-data-server: + - Added camel-index-control and camel-lock-helper to packaged files + - Added mozilla dependency code from the evolution package + - Ditto for LDAP + - Ditto for krb5 + - Ditto for NNTP support handling + - Ditto for --enable-file-locking and --enable-dot-locking +- Added requirements on libbonobo, libgnomeui, gnome-vfs2, GConf2, libglade2 +- Updated libsoup requirement from 2.2.1 to 2.2.2 +- Enabled gtk-doc + +* Wed Dec 15 2004 David Malcolm - 1.0.3-2 +- fixed packaging of translation files to reflect upstream change to GETTEXT_PACKAGE being evolution-data-server-1.0 rather than -1.5 + +* Wed Dec 15 2004 David Malcolm - 1.0.3-1 +- update from upstream 1.0.2 to 1.0.3: + * Address Book + - prevent e_book_commit_contact from crashing on multiple calls (Diego Gonzalez) + - prevent file backend from crashing if uid of vcard is NULL (Diego Gonzalez) + + * Calendar + #XB59904 - Speed up calendar queries (Rodrigo) + #XB69624 - make changes in evo corresponding to soap schema changes (Siva) + - fix libical build for automake 1.9 (Rodney) + - fix putenv usage for portability (Julio M. Merino Vidal) + + * Updated Translations: + - sv (Christian Rose) + +- Removed patches to fix build on x86_64 and calendar optimisation for XB59004 as these are in the upstream tarball + +* Tue Dec 7 2004 David Malcolm - 1.0.2-6 +- Amortize writes to a local cache of a webcal calendar, fixing further aspect of #141283 (upstream bugzilla #70267), as posted to mailing list here: +http://lists.ximian.com/archives/public/evolution-patches/2004-December/008338.html +(The groupwise part of that patch did not cleanly apply, so I removed it). + +* Thu Dec 2 2004 David Malcolm - 1.0.2-5 +- Added fix for #141283 (upstream bugzilla XB 59904), a backported calendar +optimisation patch posted to upstream development mailing list here: +http://lists.ximian.com/archives/public/evolution-patches/2004-November/008139.html + +* Wed Nov 3 2004 David Malcolm - 1.0.2-4 +- Added patch to fix usage of GINT_TO_POINTER/GPOINTER_TO_INT for calendar backend GType hash table, breaking on ia64 (#136914) + +* Wed Oct 20 2004 David Malcolm - 1.0.2-3 +- added workaround for a backend leak that causes the "contacts" calendar +backend to hold open an EBook for the local contacts (filed upstream at: +http://bugzilla.ximian.com/show_bug.cgi?id=68533 ); this was causing e-d-s to +never lose its last addressbook, and hence never quit. We workaround this by +detecting this condition and exiting when it occurs, fixing bug #134851 and #134849. + +* Tue Oct 12 2004 David Malcolm - 1.0.2-2 +- added patch to fix build on x86_64 (had multiple definitions of mutex code in libdb/dbinc.mutex.h) + +* Tue Oct 12 2004 David Malcolm - 1.0.2-1 +- update from 1.0.1 to 1.0.2 +- increased libsoup requirement to 2.2.1 to match configuration script + +* Tue Sep 28 2004 David Malcolm - 1.0.1-1 +- update from 1.0.0 to 1.0.1 +- removed patch that fixed warnings in calendar code (now in upstream tarball) + +* Mon Sep 20 2004 David Malcolm - 1.0.0-2 +- fixed various warnings in the calendar code + (filed upstream here: http://bugzilla.ximian.com/show_bug.cgi?id=66383) + +* Tue Sep 14 2004 David Malcolm - 1.0.0-1 +- update from 0.0.99 to 1.0.0 +- changed path in FTP source location from 0.0 to 1.0 + +* Tue Aug 31 2004 David Malcolm - 0.0.99-1 +- update from 0.0.98 to 0.0.99 +- increased libsoup requirement to 2.2.0 to match configuration script + +* Mon Aug 16 2004 David Malcolm - 0.0.98-1 +- updated tarball from 0.0.97 to 0.0.98; updated required libsoup version to 2.1.13 + +* Thu Aug 5 2004 Warren Togami - 0.0.97-2 +- pkgconfig -devel Requires libbonobo-devel, libgnome-devel + +* Wed Aug 4 2004 David Malcolm - 0.0.97-1 +- upgraded to 0.0.97; rewrote the package's description + +* Mon Jul 26 2004 David Malcolm +- rebuilt + +* Tue Jul 20 2004 David Malcolm - 0.0.96-2 +- added version numbers to the BuildRequires test for libsoup-devel and ORBit2-devel + +* Tue Jul 20 2004 David Malcolm - 0.0.96-1 +- 0.0.96; libsoup required is now 2.1.12 + +* Thu Jul 8 2004 David Malcolm +- rebuilt + +* Wed Jul 7 2004 David Malcolm +- rebuilt + +* Tue Jul 6 2004 David Malcolm - 0.0.95-1 +- 0.0.95 + +* Thu Jun 17 2004 David Malcolm - 0.0.94.1-1 +- 0.0.94.1 + +* Mon Jun 7 2004 David Malcolm - 0.0.94-2 +- rebuilt + +* Mon Jun 7 2004 David Malcolm - 0.0.94-1 +- 0.0.94 + +* Wed May 26 2004 David Malcolm - 0.0.93-4 +- added ORBit2 requirement + +* Fri May 21 2004 David Malcolm - 0.0.93-3 +- rebuild again + +* Fri May 21 2004 David Malcolm - 0.0.93-2 +- rebuilt + +* Thu May 20 2004 David Malcolm - 0.0.93-1 +- 0.0.93; libsoup required is now 2.1.10 + +* Wed Apr 21 2004 David Malcolm - 0.0.92-1 +- Update to 0.0.92; added a define and a requirement on the libsoup version + +* Wed Mar 10 2004 Jeremy Katz - 0.0.90-1 +- 0.0.90 + +* Fri Feb 13 2004 Elliot Lee +- rebuilt + +* Mon Jan 26 2004 Jeremy Katz - 0.0.6-1 +- 0.0.6 + +* Wed Jan 21 2004 Jeremy Katz - 0.0.5-2 +- better fix by using system libtool + +* Mon Jan 19 2004 Jeremy Katz 0.0.5-1 +- add some libdb linkage to make the build on x86_64 happy + +* Wed Jan 14 2004 Jeremy Katz 0.0.5-0 +- update to 0.0.5 + +* Sat Jan 3 2004 Jeremy Katz 0.0.4-0 +- Initial build. From aabbc576beb09e571f6b535d66fec21ba50e3305 Mon Sep 17 00:00:00 2001 From: windowsboy111 Date: Sun, 27 Nov 2022 14:31:01 +0800 Subject: [PATCH 70/74] Make chkupdate run every 30 minutes --- .github/workflows/update.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index 609a3a0ca0..a7fa8bd31e 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -4,7 +4,7 @@ name: Automatically check for updates on: schedule: - - cron: "0 */2 * * *" + - cron: "*/30 * * * *" workflow_dispatch: jobs: From f84c99f3fe980b2c5a74a75bec1c278965caf107 Mon Sep 17 00:00:00 2001 From: windowsboy111 Date: Sun, 27 Nov 2022 16:26:52 +0800 Subject: [PATCH 71/74] Update authy; Fix chkupdate --- anda/apps/authy/authy.spec | 2 +- anda/apps/authy/chkupdate.py | 2 +- .../elementary/editorconfig/chkupdate.py | 2 +- .../elementary/elementary-tasks/anda.hcl | 6 -- .../elementary/elementary-tasks/chkupdate.py | 19 ----- .../elementary-tasks/elementary-tasks.spec | 82 ------------------- .../impallari-raleway-fonts/chkupdate.py | 19 ----- 7 files changed, 3 insertions(+), 129 deletions(-) delete mode 100644 anda/desktops/elementary/elementary-tasks/anda.hcl delete mode 100644 anda/desktops/elementary/elementary-tasks/chkupdate.py delete mode 100644 anda/desktops/elementary/elementary-tasks/elementary-tasks.spec delete mode 100644 anda/fonts/impallari-raleway-fonts/chkupdate.py diff --git a/anda/apps/authy/authy.spec b/anda/apps/authy/authy.spec index c0465480cc..325a343dc3 100644 --- a/anda/apps/authy/authy.spec +++ b/anda/apps/authy/authy.spec @@ -1,5 +1,5 @@ Name: authy -Version: 2.2.1 +Version: 2.2.2 Release: 2%{?dist} Summary: Two factor authentication desktop application License: Unknown diff --git a/anda/apps/authy/chkupdate.py b/anda/apps/authy/chkupdate.py index 8a2eaa55cf..8d087b1817 100644 --- a/anda/apps/authy/chkupdate.py +++ b/anda/apps/authy/chkupdate.py @@ -32,7 +32,7 @@ except IndexError or AssertionError: link = data['channel-map'][0]['download']['url'] newspec = re.sub(REGEX_VER, f'Version:{found[0][0]}{ver}\n', content) -newspec = re.sub(REGEX_SRC, f'Source0:{found[0][0]}{link}\n', content) +newspec = re.sub(REGEX_SRC, f'Source0:{found[0][0]}{link}\n', newspec) f.close() f = open(SPEC, 'w') f.write(newspec) diff --git a/anda/desktops/elementary/editorconfig/chkupdate.py b/anda/desktops/elementary/editorconfig/chkupdate.py index bd97c85460..42f4599a41 100644 --- a/anda/desktops/elementary/editorconfig/chkupdate.py +++ b/anda/desktops/elementary/editorconfig/chkupdate.py @@ -3,7 +3,7 @@ import requests import re NAME = 'editorconfig' -REPO = "elementary/editorconfig-core-c" +REPO = "editorconfig/editorconfig-core-c" REGEX_VER = r'Version:\s*([\.\d]+)\n' SPEC = f"{NAME}.spec" LINK = f'https://api.github.com/repos/{REPO}/releases/latest' diff --git a/anda/desktops/elementary/elementary-tasks/anda.hcl b/anda/desktops/elementary/elementary-tasks/anda.hcl deleted file mode 100644 index 7808718adb..0000000000 --- a/anda/desktops/elementary/elementary-tasks/anda.hcl +++ /dev/null @@ -1,6 +0,0 @@ -project "pkg" { - rpm { - spec = "elementary-tasks.spec" - sources = "." - } -} diff --git a/anda/desktops/elementary/elementary-tasks/chkupdate.py b/anda/desktops/elementary/elementary-tasks/chkupdate.py deleted file mode 100644 index d764caf737..0000000000 --- a/anda/desktops/elementary/elementary-tasks/chkupdate.py +++ /dev/null @@ -1,19 +0,0 @@ -import os -import requests -import re - -NAME = 'elementary-tasks' -REPO = "elementary/tasks" -REGEX_VER = r'Version:\s*([\.\d]+)\n' -SPEC = f"{NAME}.spec" -LINK = f'https://api.github.com/repos/{REPO}/releases/latest' - - -ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] -with open(SPEC, 'r') as f: - matches = re.findall(REGEX_VER, f.read()) -if not len(matches): exit(f"{NAME}: Failed to match regex!") -cur = matches[0] -if ver == cur: exit(f'{NAME}: Up to date!') -print(f'{NAME}: {cur} -> {ver}') -os.system(f'rpmdev-bumpspec -n {ver} {SPEC}') diff --git a/anda/desktops/elementary/elementary-tasks/elementary-tasks.spec b/anda/desktops/elementary/elementary-tasks/elementary-tasks.spec deleted file mode 100644 index b565fd987a..0000000000 --- a/anda/desktops/elementary/elementary-tasks/elementary-tasks.spec +++ /dev/null @@ -1,82 +0,0 @@ -%global srcname tasks -%global appname io.elementary.tasks - -Name: elementary-tasks -Summary: Synced tasks and reminders application -Version: 6.3.1 -Release: %autorelease -License: GPLv3+ - -URL: https://github.com/elementary/tasks -Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz - -BuildRequires: desktop-file-utils -BuildRequires: gettext -BuildRequires: libappstream-glib -BuildRequires: meson >= 0.49 -BuildRequires: vala - -BuildRequires: pkgconfig(champlain-0.12) -BuildRequires: pkgconfig(champlain-gtk-0.12) -BuildRequires: pkgconfig(clutter-1.0) -BuildRequires: pkgconfig(clutter-gtk-1.0) -BuildRequires: pkgconfig(geocode-glib-1.0) -BuildRequires: pkgconfig(glib-2.0) -BuildRequires: pkgconfig(gobject-2.0) -BuildRequires: pkgconfig(granite) >= 6.2.0 -BuildRequires: pkgconfig(gtk+-3.0) -BuildRequires: pkgconfig(libedataserver-1.2) = 3.44.4 -BuildRequires: pkgconfig(libgdata) -BuildRequires: pkgconfig(libgeoclue-2.0) -BuildRequires: pkgconfig(libhandy-1) >= 0.90.0 -BuildRequires: pkgconfig(libical-glib) - -Requires: hicolor-icon-theme - -%description -%{summary}. - - -%prep -%autosetup -n %{srcname}-%{version} -p1 - - -%build -%meson -%meson_build - - -%install -%meson_install - -%find_lang %{appname} - - -%check -desktop-file-validate \ - %{buildroot}/%{_datadir}/applications/%{appname}.desktop - -desktop-file-validate \ - %{buildroot}/%{_sysconfdir}/xdg/autostart/%{appname}-daemon.desktop - -appstream-util validate-relax --nonet \ - %{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml - - -%files -f %{appname}.lang -%license LICENSE -%doc README.md - -%config(noreplace) %{_sysconfdir}/xdg/autostart/%{appname}-daemon.desktop - -%{_bindir}/%{appname} - -%{_datadir}/applications/%{appname}.desktop -%{_datadir}/glib-2.0/schemas/%{appname}.gschema.xml -%{_datadir}/icons/hicolor/*/apps/%{appname}.svg -%{_datadir}/metainfo/%{appname}.appdata.xml - - -%changelog -* Sat Oct 15 2022 windowsboy111 -- Repackaged for Terra diff --git a/anda/fonts/impallari-raleway-fonts/chkupdate.py b/anda/fonts/impallari-raleway-fonts/chkupdate.py deleted file mode 100644 index 3c02e70f37..0000000000 --- a/anda/fonts/impallari-raleway-fonts/chkupdate.py +++ /dev/null @@ -1,19 +0,0 @@ -import os -import requests -import re - -NAME = 'impallari-raleway-fonts' -REPO = "alexeiva/Raleway" -REGEX_VER = r'Version:\s*([\.\d]+)\n' -SPEC = f"{NAME}.spec" -LINK = f'https://api.github.com/repos/{REPO}/releases/latest' - - -ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] -with open(SPEC, 'r') as f: - matches = re.findall(REGEX_VER, f.read()) -if not len(matches): exit(f"{NAME}: Failed to match regex!") -cur = matches[0] -if ver == cur: exit(f'{NAME}: Up to date!') -print(f'{NAME}: {cur} -> {ver}') -os.system(f'rpmdev-bumpspec -n {ver} {SPEC}') From 9031c8fa41b6c0ecb430a373b7d7bbde4b50bd3b Mon Sep 17 00:00:00 2001 From: Package Update Checker <> Date: Sun, 27 Nov 2022 08:39:54 +0000 Subject: [PATCH 72/74] Automatic Update: editorconfig --- anda/desktops/elementary/editorconfig/editorconfig.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/anda/desktops/elementary/editorconfig/editorconfig.spec b/anda/desktops/elementary/editorconfig/editorconfig.spec index 53d2a99d61..4d9be0a672 100644 --- a/anda/desktops/elementary/editorconfig/editorconfig.spec +++ b/anda/desktops/elementary/editorconfig/editorconfig.spec @@ -12,8 +12,8 @@ editors.} Name: editorconfig Summary: Parser for EditorConfig files written in C -Version: 0.12.5 -Release: 4%{?dist} +Version: v0.12.5 +Release: 1%{?dist} License: BSD URL: https://github.com/editorconfig/editorconfig-core-c @@ -90,6 +90,9 @@ rm %{buildroot}/%{_libdir}/libeditorconfig_static.a %changelog +* Sun Nov 27 2022 root - v0.12.5-1 +- new version + * Sat Oct 15 2022 windowsboy111 - Repackaged for Terra From 11e281f300c85b6e2bb56bbfd135f622b206d89c Mon Sep 17 00:00:00 2001 From: windowsboy111 Date: Sun, 27 Nov 2022 16:48:54 +0800 Subject: [PATCH 73/74] Update chkupdate.py --- anda/desktops/elementary/editorconfig/chkupdate.py | 1 + 1 file changed, 1 insertion(+) diff --git a/anda/desktops/elementary/editorconfig/chkupdate.py b/anda/desktops/elementary/editorconfig/chkupdate.py index 42f4599a41..ca81deb137 100644 --- a/anda/desktops/elementary/editorconfig/chkupdate.py +++ b/anda/desktops/elementary/editorconfig/chkupdate.py @@ -10,6 +10,7 @@ LINK = f'https://api.github.com/repos/{REPO}/releases/latest' ver = requests.get(LINK, headers={'Authorization': 'Bearer ' + os.getenv('GITHUB_TOKEN')}).json()['tag_name'] +ver = ver[1:] with open(SPEC, 'r') as f: matches = re.findall(REGEX_VER, f.read()) if not len(matches): exit(f"{NAME}: Failed to match regex!") From 3e83913176da0d2edd907deddbdbf9a13d4c9a38 Mon Sep 17 00:00:00 2001 From: windowsboy111 Date: Sun, 27 Nov 2022 16:53:35 +0800 Subject: [PATCH 74/74] Update chkupdate.py --- anda/apps/authy/chkupdate.py | 1 - 1 file changed, 1 deletion(-) diff --git a/anda/apps/authy/chkupdate.py b/anda/apps/authy/chkupdate.py index 8d087b1817..7dd012e65e 100644 --- a/anda/apps/authy/chkupdate.py +++ b/anda/apps/authy/chkupdate.py @@ -17,7 +17,6 @@ def run_cmds(*cmds: str): raw = get('https://api.snapcraft.io/v2/snaps/info/authy', headers={'Snap-Device-Series': '16'}).text data = json.loads(raw) ver = data['channel-map'][0]['version'] - f = open(SPEC, 'r') content = f.read() found = re.findall(REGEX_VER, content)