Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolaasuni committed Feb 7, 2021
1 parent 431064f commit d70c1b8
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 13 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Expand Up @@ -60,4 +60,3 @@ after_success:
- "echo 'coverage_clover: target/coverage/coverage.xml' >> .coveralls.yml"
- "echo 'json_path: target/coverage/coveralls-upload.json' >> .coveralls.yml"
- if [ "$TRAVIS_PHP_VERSION" = "7.4" ]; then php vendor/php-coveralls/php-coveralls/bin/php-coveralls -v; fi;
- if [ "$TRAVIS_BRANCH" == "main" ] && [ "$TRAVIS_PHP_VERSION" = "7.4" ] && [ -n "$BT_APIUSER" ]; then make bintray APIUSER=${BT_APIUSER} APIKEY=${BT_APIKEY}; fi;
6 changes: 0 additions & 6 deletions Makefile
Expand Up @@ -89,7 +89,6 @@ help:
@echo "$(PROJECT) Makefile."
@echo "The following commands are available:"
@echo ""
@echo " make bintray : Upload RPM and DEB packages to bintray (requires APIUSER and APIKEY)"
@echo " make buildall : Build and test everything from scratch"
@echo " make bz2 : Package the library in a compressed bz2 archive"
@echo " make clean : Delete the vendor and target directories"
Expand All @@ -112,11 +111,6 @@ help:
.PHONY: all
all: help

# upload rpm and deb packages to bintray
.PHONY: bintray
bintray:
@curl -T $(TARGETDIR)/RPM/RPMS/noarch/php-tecnickcom-${PROJECT}-${VERSION}-${RELEASE}.noarch.rpm -u${APIUSER}:${APIKEY} -H "X-Bintray-Package:${PROJECT}" -H "X-Bintray-Version:${VERSION}" -H "X-Bintray-Publish:1" -H "X-Bintray-Override:1" https://api.bintray.com/content/tecnickcom/rpm/php-tecnickcom-${PROJECT}-${VERSION}-${RELEASE}.noarch.rpm
@curl -T $(TARGETDIR)/DEB/php-tecnickcom-${PROJECT}_${VERSION}-${RELEASE}_all.deb -u${APIUSER}:${APIKEY} -H "X-Bintray-Package:${PROJECT}" -H "X-Bintray-Version:${VERSION}" -H "X-Bintray-Debian-Distribution:all" -H "X-Bintray-Debian-Component:main" -H "X-Bintray-Debian-Architecture:all" -H "X-Bintray-Publish:1" -H "X-Bintray-Override:1" https://api.bintray.com/content/tecnickcom/deb/php-tecnickcom-${PROJECT}_${VERSION}-${RELEASE}_all.deb

# Full build and test sequence
.PHONY: buildall
Expand Down
3 changes: 0 additions & 3 deletions README.md
Expand Up @@ -17,8 +17,6 @@
* **license** http://www.gnu.org/copyleft/lesser.html GNU-LGPL v3 (see LICENSE.TXT)
* **link** https://github.com/tecnickcom/tc-lib-unicode
* **SRC DOC** https://tcpdf.org/docs/srcdoc/tc-lib-unicode
* **RPM** https://bintray.com/tecnickcom/rpm/tc-lib-unicode
* **DEB** https://bintray.com/tecnickcom/deb/tc-lib-unicode

## Description

Expand Down Expand Up @@ -104,7 +102,6 @@ When this library is installed using an RPM or DEB package, you can use it your
require_once ('/usr/share/php/Com/Tecnick/Unicode/autoload.php');
```

**NOTE:** Updated RPM and Debian packages of this library can be downloaded from: https://bintray.com/tecnickcom


## Developer(s) Contact
Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
1.4.1
1.4.4
2 changes: 1 addition & 1 deletion resources/debian/control
Expand Up @@ -10,6 +10,6 @@ Vcs-Git: https://github.com/~#VENDOR#~/~#PROJECT#~.git
Package: ~#PKGNAME#~
Provides: php-~#PROJECT#~
Architecture: all
Depends: php (>= 5.4.0), php-mbstring, php-tecnickcom-tc-lib-unicode-data (<< 2.0.0), php-tecnickcom-tc-lib-unicode-data (>=1.7.0), ${misc:Depends}
Depends: php (>= 5.4.0), php-mbstring, php-tecnickcom-tc-lib-unicode-data (<< 2.0.0), php-tecnickcom-tc-lib-unicode-data (>= 1.7.3), ${misc:Depends}
Description: PHP Unicode methods.
PHP library containing Unicode methods.
2 changes: 1 addition & 1 deletion resources/rpm/rpm.spec
Expand Up @@ -18,7 +18,7 @@ BuildArch: noarch

Requires: php(language) >= 5.4.0
Requires: php-composer(%{c_vendor}/tc-lib-unicode-data) < 2.0.0
Requires: php-composer(%{c_vendor}/tc-lib-unicode-data) >= 1.7.0
Requires: php-composer(%{c_vendor}/tc-lib-unicode-data) >= 1.7.3
Requires: php-pcre
Requires: php-mbstring

Expand Down

0 comments on commit d70c1b8

Please sign in to comment.