Hello community,
here is the log from the commit of package php7-phpunit7_0 for openSUSE:Factory
checked in at 2019-02-08 12:12:08
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/php7-phpunit7_0 (Old)
and /work/SRC/openSUSE:Factory/.php7-phpunit7_0.new.28833 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "php7-phpunit7_0"
Fri Feb 8 12:12:08 2019 rev:2 rq:672279 version:7.5.3
Changes:
--------
--- /work/SRC/openSUSE:Factory/php7-phpunit7_0/php7-phpunit7_0.changes
2018-03-04 12:51:22.634273089 +0100
+++
/work/SRC/openSUSE:Factory/.php7-phpunit7_0.new.28833/php7-phpunit7_0.changes
2019-02-08 12:12:11.761496413 +0100
@@ -1,0 +2,7 @@
+Wed Feb 6 14:57:42 UTC 2019 - [email protected]
+
+- Updated package to release 7.5.3
+- Only build for supported PHP versions
+- Added source verification
+
+-------------------------------------------------------------------
Old:
----
phpunit-7.0.2.phar
New:
----
php7-phpunit7_0.keyring
phpunit-7.5.3.phar
phpunit-7.5.3.phar.asc
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ php7-phpunit7_0.spec ++++++
--- /var/tmp/diff_new_pack.SLpsEl/_old 2019-02-08 12:12:15.953494842 +0100
+++ /var/tmp/diff_new_pack.SLpsEl/_new 2019-02-08 12:12:15.953494842 +0100
@@ -1,7 +1,7 @@
#
# spec file for package php7-phpunit7_0
#
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -12,21 +12,25 @@
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
Name: php7-phpunit7_0
-Version: 7.0.2
+Version: 7.5.3
Release: 0
Summary: Testing framework for PHP
License: BSD-2-Clause
Group: Development/Tools/Building
URL: https://phpunit.de/
Source: https://phar.phpunit.de/phpunit-%{version}.phar
-Source1:
https://raw.githubusercontent.com/sebastianbergmann/phpunit/%{version}/README.md
-Source2:
https://raw.githubusercontent.com/sebastianbergmann/phpunit/%{version}/LICENSE
-Requires: php7 <= 7.4.0
+Source1: https://phar.phpunit.de/phpunit-%{version}.phar.asc
+Source2: %{name}.keyring
+Source3:
https://raw.githubusercontent.com/sebastianbergmann/phpunit/%{version}/LICENSE
+Source4:
https://raw.githubusercontent.com/sebastianbergmann/phpunit/%{version}/README.md
+BuildRequires: php7 < 7.4.0
+BuildRequires: php7 >= 7.1.0
+Requires: php7 < 7.4.0
Requires: php7 >= 7.1.0
Requires: php7-dom
Requires: php7-phar
@@ -39,6 +43,7 @@
%prep
%setup -q -c -T
+cp %{SOURCE3} %{SOURCE4} .
%build
# empty section
@@ -48,13 +53,9 @@
install -d -m 0750 %{buildroot}%{_bindir}
install -m 0755 %{SOURCE0} %{buildroot}%{_bindir}/phpunit
-# Install documents
-install -d -m 0750 %{buildroot}%{_docdir}/%{name}
-install -m 0644 %{SOURCE1} %{buildroot}%{_docdir}/%{name}
-install -m 0644 %{SOURCE2} %{buildroot}%{_docdir}/%{name}
-
%files
+%license LICENSE
+%doc README.md
%{_bindir}/phpunit
-%{_docdir}/%{name}
%changelog
++++++ LICENSE ++++++
--- /var/tmp/diff_new_pack.SLpsEl/_old 2019-02-08 12:12:15.993494827 +0100
+++ /var/tmp/diff_new_pack.SLpsEl/_new 2019-02-08 12:12:15.997494825 +0100
@@ -1,6 +1,6 @@
PHPUnit
-Copyright (c) 2001-2018, Sebastian Bergmann <[email protected]>.
+Copyright (c) 2001-2019, Sebastian Bergmann <[email protected]>.
All rights reserved.
Redistribution and use in source and binary forms, with or without
++++++ README.md ++++++
--- /var/tmp/diff_new_pack.SLpsEl/_old 2019-02-08 12:12:16.021494816 +0100
+++ /var/tmp/diff_new_pack.SLpsEl/_new 2019-02-08 12:12:16.021494816 +0100
@@ -4,29 +4,19 @@
[](https://packagist.org/packages/phpunit/phpunit)
[](https://php.net/)
-[](https://phpunit.de/build-status.html)
+[](https://phpunit.de/build-status.html)
## Installation
-We distribute a [PHP Archive (PHAR)](https://php.net/phar) that has all
required (as well as some optional) dependencies of PHPUnit bundled in a single
file:
+We distribute a [PHP Archive (PHAR)](https://php.net/phar) that has all
required (as well as some optional) dependencies of PHPUnit 7.5 bundled in a
single file:
```bash
-$ wget https://phar.phpunit.de/phpunit.phar
+$ wget https://phar.phpunit.de/phpunit-7.5.phar
-$ chmod +x phpunit.phar
-
-$ mv phpunit.phar /usr/local/bin/phpunit
-```
-
-You can also immediately use the PHAR after you have downloaded it, of course:
-
-```bash
-$ wget https://phar.phpunit.de/phpunit.phar
-
-$ php phpunit.phar
+$ php phpunit-7.5.phar --version
```
-Alternatively, you may use [Composer](https://getcomposer.org/) to download
and install PHPUnit as well as its dependencies. Please refer to the
[documentation](https://phpunit.de/documentation.html) for details on how to do
this.
+Alternatively, you may use [Composer](https://getcomposer.org/) to download
and install PHPUnit as well as its dependencies. Please refer to the "[Getting
Started](https://phpunit.de/getting-started-with-phpunit.html)" guide for
details on how to install PHPUnit.
## Contribute
@@ -37,10 +27,14 @@
Thanks to everyone who has contributed to PHPUnit! You can find a detailed
list of contributors on every PHPUnit related package on GitHub. This list
shows only the major components:
* [PHPUnit](https://github.com/sebastianbergmann/phpunit/graphs/contributors)
-*
[PHP_CodeCoverage](https://github.com/sebastianbergmann/php-code-coverage/graphs/contributors)
-*
[PHPUnit_MockObject](https://github.com/sebastianbergmann/phpunit-mock-objects/graphs/contributors)
+*
[php-code-coverage](https://github.com/sebastianbergmann/php-code-coverage/graphs/contributors)
A very special thanks to everyone who has contributed to the documentation and
helps maintain the translations:
-* [PHPUnit
Documentation](https://github.com/sebastianbergmann/phpunit-documentation/graphs/contributors)
+*
[English](https://github.com/sebastianbergmann/phpunit-documentation-english/graphs/contributors)
+*
[Spanish](https://github.com/sebastianbergmann/phpunit-documentation-spanish/graphs/contributors)
+*
[French](https://github.com/sebastianbergmann/phpunit-documentation-french/graphs/contributors)
+*
[Japanese](https://github.com/sebastianbergmann/phpunit-documentation-japanese/graphs/contributors)
+* [Brazilian
Portuguese](https://github.com/sebastianbergmann/phpunit-documentation-brazilian-portuguese/graphs/contributors)
+* [Simplified
Chinese](https://github.com/sebastianbergmann/phpunit-documentation-chinese/graphs/contributors)