commit b88716aab16579e46935bd4dda892706eb0b72213d20d081c48dea16a50ca0d2 Author: Fridrich Strba Date: Wed Jan 19 13:04:09 2022 +0000 OBS-URL: https://build.opensuse.org/package/show/Java:packages/apache-chainsaw?expand=0&rev=1 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -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 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/_service b/_service new file mode 100644 index 0000000..ef0f68b --- /dev/null +++ b/_service @@ -0,0 +1,16 @@ + + + git + https://github.com/apache/logging-chainsaw.git + rel/apache-chainsaw-2.1.0 + rel/apache-chainsaw-* + @PARENT_TAG@ + rel/apache-chainsaw-(.*) + apache-chainsaw + + + *.tar + xz + + + diff --git a/apache-chainsaw-2.1.0.tar.xz b/apache-chainsaw-2.1.0.tar.xz new file mode 100644 index 0000000..4440485 --- /dev/null +++ b/apache-chainsaw-2.1.0.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81751780ef92a5b6b20f5b6f8789bb1f56000395bfbeabb29f36089db27523ca +size 654084 diff --git a/apache-chainsaw.spec b/apache-chainsaw.spec new file mode 100644 index 0000000..36fbdfe --- /dev/null +++ b/apache-chainsaw.spec @@ -0,0 +1,85 @@ +# +# spec file for package apache-chainsaw +# +# 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/ +# + + +%global short_name chainsaw +%global repo_name logging-%{short_name} +Name: apache-%{short_name} +Version: 2.1.0 +Release: 0 +Summary: Apache Chainsaw +License: Apache-2.0 +Group: Development/Libraries/Java +URL: https://logging.apache.org/chainsaw +Source0: %{name}-%{version}.tar.xz +BuildRequires: fdupes +BuildRequires: java-devel >= 1.8 +BuildRequires: maven-local +BuildRequires: mvn(ant-contrib:ant-contrib) +BuildRequires: mvn(com.jcraft:jsch) +BuildRequires: mvn(com.thoughtworks.xstream:xstream) +BuildRequires: mvn(commons-logging:commons-logging) +BuildRequires: mvn(javax.jmdns:jmdns) +BuildRequires: mvn(log4j:apache-log4j-extras) +BuildRequires: mvn(log4j:log4j:1.2.16) +BuildRequires: mvn(org.apache.ant:ant) +BuildRequires: mvn(org.apache.commons:commons-vfs2) +BuildRequires: mvn(org.apache.geronimo.specs:geronimo-jms_1.1_spec) +BuildRequires: mvn(org.apache.logging:logging-parent:pom:) +BuildRequires: mvn(org.apache.maven.plugins:maven-antrun-plugin) +BuildRequires: mvn(org.codehaus.mojo:build-helper-maven-plugin) +BuildArch: noarch + +%description +Graphical Viewer for Logging events from a local or remote log4j event system. + +%package javadoc +Summary: API documentation for %{name} +Group: Documentation/HTML + +%description javadoc +%{summary}. + +%prep +%setup -q + +%pom_remove_plugin :maven-source-plugin +%pom_remove_plugin :appassembler-maven-plugin +%pom_remove_plugin :maven-assembly-plugin + +%pom_change_dep :commons-vfs org.apache.commons:commons-vfs2 +perl -pi -e 's#org\.apache\.commons\.vfs\.#org\.apache\.commons\.vfs2\.#g' \ + src/main/java/org/apache/log4j/chainsaw/vfs/VFSLogFilePatternReceiver.java +%pom_remove_dep org.apache.openejb:javaee-api +%pom_remove_dep org.projectlombok:lombok + + + +%build +%{mvn_build} -f -- -Dsource=8 + +%install +%mvn_install +%fdupes -s %{buildroot}%{_javadocdir} + +%files -f .mfiles +%license LICENSE NOTICE + +%files javadoc -f .mfiles-javadoc +%license LICENSE NOTICE + +%changelog