Sync from SUSE:SLFO:Main truth revision 1078c7e748948cc276858bc604f73158

This commit is contained in:
Adrian Schröter 2024-05-04 01:31:37 +02:00
commit 45a7459aa2
5 changed files with 143 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

14
_service Normal file
View File

@ -0,0 +1,14 @@
<services>
<service name="tar_scm" mode="disabled">
<param name="scm">git</param>
<param name="url">git@github.com:google/truth.git</param>
<param name="revision">release_0_24</param>
<param name="versionformat">0.24</param>
<param name="filename">truth</param>
</service>
<service name="recompress" mode="disabled">
<param name="file">*.tar</param>
<param name="compression">xz</param>
</service>
<service name="set_version" mode="disabled"/>
</services>

BIN
truth-0.24.tar.xz (Stored with Git LFS) Normal file

Binary file not shown.

22
truth.changes Normal file
View File

@ -0,0 +1,22 @@
-------------------------------------------------------------------
Thu Jan 13 17:57:14 UTC 2022 - Fridrich Strba <fstrba@suse.com>
- Fix build with newer auto version by adding the
auto-value-annotations artifact to the dependencies
-------------------------------------------------------------------
Tue May 11 17:25:43 UTC 2021 - Fridrich Strba <fstrba@suse.com>
- Increase java version requirement in order to build with newer
guava
-------------------------------------------------------------------
Tue Nov 26 15:13:50 UTC 2019 - Fridrich Strba <fstrba@suse.com>
- Upgrade to version 0.24 to fix building of javadoc with
java 11
-------------------------------------------------------------------
Tue May 7 10:58:36 UTC 2019 - Fridrich Strba <fstrba@suse.com>
- Initial packaging of truth 0.23

81
truth.spec Normal file
View File

@ -0,0 +1,81 @@
#
# spec file for package truth
#
# Copyright (c) 2022 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
Name: truth
Version: 0.24
Release: 0
Summary: An assertion framework for Java unit tests
License: Apache-2.0
Group: Development/Libraries/Java
URL: https://github.com/google/truth
Source0: %{name}-%{version}.tar.xz
BuildRequires: fdupes
BuildRequires: java-devel >= 1.8
BuildRequires: maven-local
BuildRequires: mvn(com.google.auto.value:auto-value)
BuildRequires: mvn(com.google.auto.value:auto-value-annotations)
BuildRequires: mvn(com.google.code.findbugs:jsr305)
BuildRequires: mvn(com.google.guava:guava)
BuildRequires: mvn(junit:junit)
BuildRequires: mvn(org.codehaus.plexus:plexus-io)
BuildRequires: mvn(org.sonatype.oss:oss-parent:pom:)
BuildArch: noarch
%description
Truth is a library provides alternative ways to express assertions in
unit tests. It can be used as a replacement for JUnit's assertions or FEST
or it can be used alongside where other approaches seem more suitable.
%package javadoc
Summary: Javadoc for %{name}
Group: Documentation/HTML
%description javadoc
This package contains the API documentation for %{name}.
%prep
%setup -q
%pom_remove_plugin :maven-gpg-plugin
%pom_remove_plugin :gwt-maven-plugin core
%pom_remove_dep :gwt-user core
%pom_remove_dep :guava-gwt core
%pom_add_dep com.google.auto.value:auto-value-annotations:1.6 core
%pom_xpath_inject "pom:build/pom:plugins/pom:plugin[pom:artifactId[text()='maven-compiler-plugin']]/pom:configuration" "
<testExcludes>
<exclude>**/gwt/*.java</exclude>
</testExcludes>" core
%build
%{mvn_build} -f \
%if %{?pkg_vcmp:%pkg_vcmp java-devel >= 9}%{!?pkg_vcmp:0}
-- -Dmaven.compiler.release=8
%endif
%install
%mvn_install
%fdupes -s %{buildroot}%{_javadocdir}
%files -f .mfiles
%doc README.md
%dir %{_javadir}/%{name}
%license LICENSE
%files javadoc -f .mfiles-javadoc
%license LICENSE
%changelog