summaryrefslogtreecommitdiffstats
path: root/php-pecl-seassnowflake.spec
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2022-09-15 09:08:40 +0200
committerRemi Collet <remi@php.net>2022-09-15 09:08:40 +0200
commitc61b96d3f9c3f7ce58dd6112204d5cf4c757f4e5 (patch)
tree913b43bd203b04dad71a41fc923492257be3efdb /php-pecl-seassnowflake.spec
parentfac6c2df737b05c076fe566003b37de9eb14de0a (diff)
add patch for PHP 8.2 from
https://github.com/SeasX/SeasSnowflake/pull/9
Diffstat (limited to 'php-pecl-seassnowflake.spec')
-rw-r--r--php-pecl-seassnowflake.spec26
1 files changed, 8 insertions, 18 deletions
diff --git a/php-pecl-seassnowflake.spec b/php-pecl-seassnowflake.spec
index 9218584..e1018eb 100644
--- a/php-pecl-seassnowflake.spec
+++ b/php-pecl-seassnowflake.spec
@@ -1,6 +1,6 @@
# remirepo spec file for php-pecl-seassnowflake
#
-# Copyright (c) 2021 Remi Collet
+# Copyright (c) 2021-2022 Remi Collet
# License: CC-BY-SA
# http://creativecommons.org/licenses/by-sa/4.0/
#
@@ -22,7 +22,7 @@
Summary: PHP Extension for Distributed unique ID generator
Name: %{?scl_prefix}php-pecl-%{rpm_name}
Version: 1.0.0
-Release: 2%{?dist}%{!?scl:%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')}}
+Release: 3%{?dist}%{!?scl:%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')}}
License: PHP
URL: https://pecl.php.net/package/%{proj_name}
Source0: https://pecl.php.net/get/%{proj_name}-%{version}.tgz
@@ -30,6 +30,7 @@ Source0: https://pecl.php.net/get/%{proj_name}-%{version}.tgz
Patch0: https://patch-diff.githubusercontent.com/raw/SeasX/SeasSnowflake/pull/3.patch
Patch1: https://patch-diff.githubusercontent.com/raw/SeasX/SeasSnowflake/pull/5.patch
Patch2: https://patch-diff.githubusercontent.com/raw/SeasX/SeasSnowflake/pull/6.patch
+Patch3: https://patch-diff.githubusercontent.com/raw/SeasX/SeasSnowflake/pull/9.patch
BuildRequires: make
BuildRequires: %{?dtsprefix}gcc
@@ -46,22 +47,6 @@ Provides: %{?scl_prefix}php-%{pecl_name}%{?_isa} = %{version}
Provides: %{?scl_prefix}php-pecl(%{proj_name}) = %{version}
Provides: %{?scl_prefix}php-pecl(%{proj_name})%{?_isa} = %{version}
-%if "%{?packager}" == "Remi Collet" && 0%{!?scl:1} && 0%{?rhel}
-# Other third party repo stuff
-%if "%{php_version}" > "7.3"
-Obsoletes: php73-pecl-%{pecl_name} <= %{version}
-%endif
-%if "%{php_version}" > "7.4"
-Obsoletes: php74-pecl-%{pecl_name} <= %{version}
-%endif
-%if "%{php_version}" > "8.0"
-Obsoletes: php80-pecl-%{pecl_name} <= %{version}
-%endif
-%if "%{php_version}" > "8.1"
-Obsoletes: php81-pecl-%{pecl_name} <= %{version}
-%endif
-%endif
-
%description
SeasSnowflake is a distributed unique ID generator inspired by
@@ -86,6 +71,7 @@ find . -type f -exec chmod -x {} \;
%patch0 -p1
%patch1 -p1
%patch2 -p1
+%patch3 -p1
: Sanity check, really often broken
extver=$(sed -n '/#define PHP_SEASSNOWFLAKE_VERSION /{s/.* "//;s/".*$//;p}' php_SeasSnowflake.h)
@@ -209,6 +195,10 @@ fi
%changelog
+* Thu Sep 15 2022 Remi Collet <remi@remirepo.net> - 1.0.0-3
+- add patch for PHP 8.2 from
+ https://github.com/SeasX/SeasSnowflake/pull/9
+
* Wed Sep 01 2021 Remi Collet <remi@remirepo.net> - 1.0.0-2
- rebuild for 8.1.0RC1