From c5582959ac086b7ef8708a9059b8028dc3df3d44 Mon Sep 17 00:00:00 2001 From: Liwei Ge Date: Tue, 26 Oct 2021 09:52:14 +0800 Subject: [PATCH] spec: add loongarch64 platform support Signed-off-by: Liwei Ge --- python-pymongo.spec | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/python-pymongo.spec b/python-pymongo.spec index 18910cc..f35a0f1 100644 --- a/python-pymongo.spec +++ b/python-pymongo.spec @@ -1,8 +1,9 @@ +%define anolis_release .0.1 %bcond_without python3 %bcond_with python36_module # Only build on architectures supported by mongodb in RHEL8 -%global mongodb_arches x86_64 ppc64le aarch64 s390x +%global mongodb_arches x86_64 ppc64le aarch64 s390x loongarch64 # Fix private-shared-object-provides error %{?filter_setup: @@ -22,7 +23,7 @@ Name: python-pymongo Version: 3.7.0 -Release: 1%{?dist} +Release: 1%{anolis_release}%{?dist} # All code is ASL 2.0 except bson/time64*.{c,h} which is MIT License: ASL 2.0 and MIT @@ -285,6 +286,9 @@ pkill mongod %changelog +* Tue Jan 25 2022 Liwei Ge - 3.7.0-1.0.1 +- Add loongarch64 platform support + * Fri Oct 09 2020 Lukas Javorsky - 3.7.0-1 - Rebase to 3.7.0 - Includes new SCRAM-SHA-256 authentication -- Gitee