Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolaasuni committed Nov 22, 2024
1 parent 810444d commit 7461fc8
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ help:
@echo " make rpm : Build an RPM package for RedHat-like Linux distributions"
@echo " make server : Start the development server"
@echo " make test : Run unit tests"
@echo " make versionup: Increase the version patch number"
@echo ""
@echo "To test and build everything from scratch:"
@echo "make buildall"
Expand Down Expand Up @@ -268,3 +269,9 @@ test:
uninstall:
rm -rf $(PATHINSTBIN)
rm -rf $(PATHINSTDOC)

# Increase the version patch number
.PHONY: versionup
versionup:
echo ${VERSION} | gawk -F. '{printf("%d.%d.%d\n",$$1,$$2,(($$3+1)));}' > VERSION

2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.12
3.0.13
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-tecnickcom-tc-lib-pdf-filter (<< 2.0.0), php-tecnickcom-tc-lib-pdf-filter (>= 2.0.15), ${misc:Depends}
Depends: php (>= 8.0.0), php-tecnickcom-tc-lib-pdf-filter (<< 2.0.0), php-tecnickcom-tc-lib-pdf-filter (>= 2.0.16), ${misc:Depends}
Description: PHP PDF Parser Library
PHP library to parse PDF documents.
2 changes: 1 addition & 1 deletion resources/rpm/rpm.spec
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ BuildArch: noarch

Requires: php(language) >= 8.0.0
Requires: php-composer(%{c_vendor}/tc-lib-pdf-filter) < 2.0.0
Requires: php-composer(%{c_vendor}/tc-lib-pdf-filter) >= 2.0.15
Requires: php-composer(%{c_vendor}/tc-lib-pdf-filter) >= 2.0.16
Requires: php-pcre

Provides: php-composer(%{c_vendor}/%{gh_project}) = %{version}
Expand Down

0 comments on commit 7461fc8

Please sign in to comment.