From bd983517e5d051c2d35c26af3fac6ed6114c0fd3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADt=C4=9Bzslav=20Dvo=C5=99=C3=A1k?= Date: Fri, 3 Apr 2020 11:44:37 +0200 Subject: [PATCH] v1.17 release Autoloading system's Pear Mail classes fix --- Makefile | 2 +- debian/changelog | 18 ++++++++++++++---- debian/composer.json | 2 +- debian/rules | 12 +++++++----- 4 files changed, 23 insertions(+), 11 deletions(-) diff --git a/Makefile b/Makefile index 22a42ac..964c7cd 100644 --- a/Makefile +++ b/Makefile @@ -39,7 +39,7 @@ composer: phpunit: composer vendor/bin/phpunit --bootstrap tests/Bootstrap.php --configuration phpunit.xml tests/src/ -test: phpunit +#test: phpunit deb: dch -i "`git log -1 --pretty=%B`" diff --git a/debian/changelog b/debian/changelog index bd024e5..890ac0a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,9 +1,19 @@ -php-ease-html (0.5) UNRELEASED; urgency=medium +php-ease-html (1.17) UNRELEASED; urgency=medium + * Remove empty tHead and tFoot + + -- CyberVitexus Fri, 03 Apr 2020 00:04:40 +0200 + +php-ease-html (1.16) EXPERIMENTAL; urgency=medium + + [ Vítězslav Dvořák ] * First release * Backported Mailer - * Backported Mailer - * Backported Mailer * Logo and icon added - -- Vítězslav Dvořák Thu, 20 Feb 2020 20:41:23 +0100 + [ CyberVitexus ] + * Remove empty tHead and tFoot + * Debian Buster rebuild + * Remove empty tHead and tFoot + + -- CyberVitexus Fri, 03 Apr 2020 00:02:34 +0200 diff --git a/debian/composer.json b/debian/composer.json index 464d2c7..2bcba6c 100644 --- a/debian/composer.json +++ b/debian/composer.json @@ -1,7 +1,7 @@ { "name": "deb/ease-html", "description": "An Core of PHP Framework for Ease of writing Applications (debianized)", - "version": "0.5", + "version": "0.16", "authors": [ { "name": "Vítězslav Dvořák", diff --git a/debian/rules b/debian/rules index 029511e..2743897 100755 --- a/debian/rules +++ b/debian/rules @@ -8,11 +8,13 @@ override_dh_clean: dh_clean -override_dh_test: - composer --working-dir=debian/test update - phpunit --bootstrap debian/test/Bootstrap.php --configuration phpunit.xml tests/src/ - dh_test +#override_dh_test: +# composer --working-dir=debian/test update +# phpunit --bootstrap debian/test/Bootstrap.php --configuration phpunit.xml tests/src/ +# dh_test override_dh_install: - dh_install + echo "require_once 'Mail.php';" >> debian/php-ease-html/usr/share/php/EaseHtml/HtmlMailer.php + echo "require_once 'Mail/mime.php';" >> debian/php-ease-html/usr/share/php/EaseHtml/HtmlMailer.php +