Compare commits
No commits in common. "rawhide" and "f35" have entirely different histories.
4 changed files with 13 additions and 90 deletions
6
.gitignore
vendored
6
.gitignore
vendored
|
|
@ -5,9 +5,3 @@
|
||||||
/php-paragonie-constant-time-encoding-55af0dc.tar.gz
|
/php-paragonie-constant-time-encoding-55af0dc.tar.gz
|
||||||
/php-paragonie-constant-time-encoding-47a1ced.tar.gz
|
/php-paragonie-constant-time-encoding-47a1ced.tar.gz
|
||||||
/php-paragonie-constant-time-encoding-f34c2b1.tar.gz
|
/php-paragonie-constant-time-encoding-f34c2b1.tar.gz
|
||||||
/php-paragonie-constant-time-encoding-2.5.0-9229e15.tgz
|
|
||||||
/php-paragonie-constant-time-encoding-2.6.1-d6e1d5d.tgz
|
|
||||||
/php-paragonie-constant-time-encoding-2.6.2-c1b1d82.tgz
|
|
||||||
/php-paragonie-constant-time-encoding-2.6.3-58c3f47.tgz
|
|
||||||
/php-paragonie-constant-time-encoding-2.8.0-ce27936.tgz
|
|
||||||
/php-paragonie-constant-time-encoding-2.8.2-e30811f.tgz
|
|
||||||
|
|
|
||||||
27
makesrc.sh
27
makesrc.sh
|
|
@ -1,27 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
NAME=$(basename $PWD)
|
|
||||||
OWNER=$(sed -n '/^%global github_owner/{s/.* //;p}' $NAME.spec)
|
|
||||||
PROJECT=$(sed -n '/^%global github_name/{s/.* //;p}' $NAME.spec)
|
|
||||||
VERSION=$(sed -n '/^Version:/{s/.* //;p}' $NAME.spec)
|
|
||||||
COMMIT=$(sed -n '/^%global commit0/{s/.* //;p}' $NAME.spec)
|
|
||||||
SHORT=${COMMIT:0:7}
|
|
||||||
|
|
||||||
echo -e "\nCreate git snapshot\nName=$NAME, Owner=$OWNER, Project=$PROJECT, Version=$VERSION\n"
|
|
||||||
|
|
||||||
echo "Cloning..."
|
|
||||||
git clone https://github.com/$OWNER/$PROJECT.git $PROJECT-$COMMIT
|
|
||||||
|
|
||||||
echo "Getting commit..."
|
|
||||||
pushd $PROJECT-$COMMIT
|
|
||||||
git checkout $COMMIT
|
|
||||||
cp composer.json ../composer.json
|
|
||||||
popd
|
|
||||||
|
|
||||||
echo "Archiving..."
|
|
||||||
tar czf $NAME-$VERSION-$SHORT.tgz --exclude .git $PROJECT-$COMMIT
|
|
||||||
|
|
||||||
echo "Cleaning..."
|
|
||||||
rm -rf $PROJECT-$COMMIT
|
|
||||||
|
|
||||||
echo "Done."
|
|
||||||
|
|
@ -5,20 +5,19 @@
|
||||||
%global github_owner paragonie
|
%global github_owner paragonie
|
||||||
%global github_name constant_time_encoding
|
%global github_name constant_time_encoding
|
||||||
|
|
||||||
%global commit0 e30811f7bc69e4b5b6d5783e712c06c8eabf0226
|
%global commit0 f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c
|
||||||
%global shortcommit0 %(c=%{commit0}; echo ${c:0:7})
|
%global shortcommit0 %(c=%{commit0}; echo ${c:0:7})
|
||||||
|
|
||||||
|
|
||||||
Name: php-%{composer_vendor}-constant-time-encoding
|
Name: php-%{composer_vendor}-constant-time-encoding
|
||||||
Version: 2.8.2
|
Version: 2.4.0
|
||||||
Release: 1%{?dist}
|
Release: 4%{?dist}
|
||||||
Summary: Constant-time Implementations of RFC 4648 Encoding
|
Summary: Constant-time Implementations of RFC 4648 Encoding
|
||||||
|
|
||||||
License: MIT
|
License: MIT
|
||||||
|
|
||||||
URL: https://github.com/%{github_owner}/%{github_name}
|
URL: https://github.com/%{github_owner}/%{github_name}
|
||||||
Source0: %{url}/archive/%{commit0}.tar.gz#/%{name}-%{version}-%{shortcommit0}.tgz
|
Source0: %{url}/archive/%{commit0}.tar.gz#/%{name}-%{shortcommit0}.tar.gz
|
||||||
Source1: makesrc.sh
|
|
||||||
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
|
|
@ -27,7 +26,14 @@ BuildRequires: php(language) >= 7
|
||||||
BuildRequires: php-mbstring
|
BuildRequires: php-mbstring
|
||||||
BuildRequires: php-spl
|
BuildRequires: php-spl
|
||||||
# "phpunit/phpunit": "^6|^7|^8|^9"
|
# "phpunit/phpunit": "^6|^7|^8|^9"
|
||||||
|
%if 0%{?fedora} >= 32 || 0%{?rhel} >= 9
|
||||||
BuildRequires: phpunit9
|
BuildRequires: phpunit9
|
||||||
|
%global phpunit %{_bindir}/phpunit9
|
||||||
|
%else
|
||||||
|
BuildRequires: phpunit8
|
||||||
|
%global phpunit %{_bindir}/phpunit8
|
||||||
|
%endif
|
||||||
|
|
||||||
BuildRequires: php-fedora-autoloader-devel
|
BuildRequires: php-fedora-autoloader-devel
|
||||||
|
|
||||||
# "php": "^7|^8"
|
# "php": "^7|^8"
|
||||||
|
|
@ -35,8 +41,6 @@ Requires: php(language) >= 7
|
||||||
Requires: php-mbstring
|
Requires: php-mbstring
|
||||||
Requires: php-spl
|
Requires: php-spl
|
||||||
|
|
||||||
Suggests: php-sodium
|
|
||||||
|
|
||||||
Provides: php-composer(%{composer_vendor}/%{composer_project}) = %{version}
|
Provides: php-composer(%{composer_vendor}/%{composer_project}) = %{version}
|
||||||
|
|
||||||
%description
|
%description
|
||||||
|
|
@ -56,8 +60,7 @@ mkdir -p %{buildroot}%{_datadir}/php/%{composer_namespace}
|
||||||
cp -pr src/* %{buildroot}%{_datadir}/php/%{composer_namespace}
|
cp -pr src/* %{buildroot}%{_datadir}/php/%{composer_namespace}
|
||||||
|
|
||||||
%check
|
%check
|
||||||
%{_bindir}/phpab -t fedora -o tests/autoload.php src tests
|
%{phpunit} tests --verbose --bootstrap=src/autoload.php
|
||||||
%{_bindir}/phpunit9 tests --verbose --bootstrap=tests/autoload.php
|
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%dir %{_datadir}/php/ParagonIE
|
%dir %{_datadir}/php/ParagonIE
|
||||||
|
|
@ -66,53 +69,6 @@ cp -pr src/* %{buildroot}%{_datadir}/php/%{composer_namespace}
|
||||||
%license LICENSE.txt
|
%license LICENSE.txt
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Wed Oct 01 2025 François Kooman <fkooman@tuxed.net> - 2.8.2-1
|
|
||||||
- update to 2.8.2
|
|
||||||
|
|
||||||
* Tue Sep 23 2025 François Kooman <fkooman@tuxed.net> - 2.8.0-1
|
|
||||||
- update to 2.8.0
|
|
||||||
- hard build dependency on PHPUnit 9 now
|
|
||||||
- add php-sodium extension as a suggestion
|
|
||||||
|
|
||||||
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.3-9
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Jan 18 2025 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.3-8
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jul 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.3-7
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.3-6
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.3-5
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.3-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.3-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.3-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Jun 14 2022 François Kooman <fkooman@tuxed.net> - 2.6.3-1
|
|
||||||
- update to 2.6.3
|
|
||||||
|
|
||||||
* Mon Jun 13 2022 François Kooman <fkooman@tuxed.net> - 2.6.2-1
|
|
||||||
- update to 2.6.2 (RHBZ#1494754)
|
|
||||||
- autoload required files for tests as well
|
|
||||||
|
|
||||||
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.5.0-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Jan 17 2022 François Kooman <fkooman@tuxed.net> - 2.5.0-1
|
|
||||||
- update to 2.5.0
|
|
||||||
- add makesrc.sh to download source as upstream included .gitattributes to not
|
|
||||||
export tests
|
|
||||||
|
|
||||||
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.0-4
|
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.0-4
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
|
|
||||||
2
sources
2
sources
|
|
@ -1 +1 @@
|
||||||
SHA512 (php-paragonie-constant-time-encoding-2.8.2-e30811f.tgz) = 06ed2956086022e92f95b3b30e4222a3511de7cb22de038a92c080424443f7745528c8ab916b9848e06b1312711dc32415bbcf592008bd0026ac7413651e0291
|
SHA512 (php-paragonie-constant-time-encoding-f34c2b1.tar.gz) = bc3a56954c54994064a0b022c04265f13a47b317c90846f42bc2ffc2641a9ae3fb4762ce9de5e8af487b70d8912b215f596c0ccc6286cf8663e6f59fffd929d1
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue