Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolaasuni committed Apr 12, 2024
1 parent db27eb4 commit 7e3591c
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: List php modules using "no php ini" mode
run: php -m -n
- name: Cache module
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.composer/cache/
key: composer-cache
Expand Down
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
# This file is part of tc-lib-pdf-font software library.
# ----------------------------------------------------------------------------------------------------------------------

SHELL=/bin/bash
.SHELLFLAGS=-o pipefail -c

# Project owner
OWNER=tecnickcom

Expand Down Expand Up @@ -119,6 +122,10 @@ help:
.PHONY: all
all: help

# Full build and test sequence
.PHONY: x
x: buildall

# Full build and test sequence
.PHONY: buildall
buildall: deps codefix fonts qa bz2 rpm deb
Expand Down
2 changes: 1 addition & 1 deletion RELEASE
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1
0
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.2.2
2.2.3
2 changes: 1 addition & 1 deletion resources/debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ Vcs-Git: https://github.com/~#VENDOR#~/~#PROJECT#~.git
Package: ~#PKGNAME#~
Provides: php-~#PROJECT#~
Architecture: all
Depends: php (>= 8.0.0), php-json, php-zip, php-tecnickcom-tc-lib-file (<< 2.0.0), php-tecnickcom-tc-lib-file (>= 2.0.10), php-tecnickcom-tc-lib-unicode-data (<< 2.0.0), php-tecnickcom-tc-lib-unicode-data (>= 2.0.10), php-tecnickcom-tc-lib-pdf-encrypt (<< 2.0.0), php-tecnickcom-tc-lib-pdf-encrypt (>= 2.1.1), php-tecnickcom-tc-lib-pdf-font-core (<< 2.0.0), php-tecnickcom-tc-lib-pdf-font-data-core (>= 1.8.7), ${misc:Depends}
Depends: php (>= 8.0.0), php-json, php-zip, php-tecnickcom-tc-lib-file (<< 2.0.0), php-tecnickcom-tc-lib-file (>= 2.0.11), php-tecnickcom-tc-lib-unicode-data (<< 2.0.0), php-tecnickcom-tc-lib-unicode-data (>= 2.0.11), php-tecnickcom-tc-lib-pdf-encrypt (<< 2.0.0), php-tecnickcom-tc-lib-pdf-encrypt (>= 2.1.2), php-tecnickcom-tc-lib-pdf-font-core (<< 2.0.0), php-tecnickcom-tc-lib-pdf-font-data-core (>= 1.8.7), ${misc:Depends}
Description: PHP PDF Fonts Library
PHP library containing PDF font methods and utilities.
2 changes: 1 addition & 1 deletion resources/rpm/fonts.spec
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@ rm -rf $RPM_BUILD_ROOT
%docdir %{_docpath}

%changelog
* Tue Dec 01 2015 Nicola Asuni <[email protected]> 1.0.0-1
* Tue Dec 01 2024 Nicola Asuni <[email protected]> 1.0.0-1
- Initial Commit
8 changes: 4 additions & 4 deletions resources/rpm/rpm.spec
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ Requires: php-json
Requires: php-pcre
Requires: php-zlib
Requires: php-composer(%{c_vendor}/tc-lib-file) < 2.0.0
Requires: php-composer(%{c_vendor}/tc-lib-file) >= 2.0.10
Requires: php-composer(%{c_vendor}/tc-lib-file) >= 2.0.11
Requires: php-composer(%{c_vendor}/tc-lib-unicode-data) < 2.0.0
Requires: php-composer(%{c_vendor}/tc-lib-unicode-data) >= 2.0.10
Requires: php-composer(%{c_vendor}/tc-lib-unicode-data) >= 2.0.11
Requires: php-composer(%{c_vendor}/tc-lib-pdf-encrypt) < 2.0.0
Requires: php-composer(%{c_vendor}/tc-lib-pdf-encrypt) >= 2.1.1
Requires: php-composer(%{c_vendor}/tc-lib-pdf-encrypt) >= 2.1.2
Requires: php-composer(%{c_vendor}/tc-lib-pdf-font-data-core) < 2.0.0
Requires: php-composer(%{c_vendor}/tc-lib-pdf-font-data-core) >= 1.8.7

Expand Down Expand Up @@ -53,5 +53,5 @@ rm -rf $RPM_BUILD_ROOT
#%config(noreplace) %{_configpath}*

%changelog
* Mon Aug 10 2015 Nicola Asuni <[email protected]> 1.0.0-1
* Mon Aug 10 2024 Nicola Asuni <[email protected]> 1.0.0-1
- Initial Commit

0 comments on commit 7e3591c

Please sign in to comment.