From b861db953ad13fa826696edccfd7329c10b4ffac9c8446862f6200653b886dd7 Mon Sep 17 00:00:00 2001 From: Fridrich Strba Date: Sun, 12 Mar 2023 17:20:06 +0000 Subject: [PATCH] Accepting request 1069581 from home:urbic:java Submitting a new package OBS-URL: https://build.opensuse.org/request/show/1069581 OBS-URL: https://build.opensuse.org/package/show/Java:packages/rxjava?expand=0&rev=1 --- .gitattributes | 23 +++++++++++++++ .gitignore | 1 + rxjava-3.1.6.pom | 44 +++++++++++++++++++++++++++++ rxjava.changes | 4 +++ rxjava.spec | 73 ++++++++++++++++++++++++++++++++++++++++++++++++ v3.1.6.tar.gz | 3 ++ 6 files changed, 148 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 rxjava-3.1.6.pom create mode 100644 rxjava.changes create mode 100644 rxjava.spec create mode 100644 v3.1.6.tar.gz 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/rxjava-3.1.6.pom b/rxjava-3.1.6.pom new file mode 100644 index 0000000..3f093b2 --- /dev/null +++ b/rxjava-3.1.6.pom @@ -0,0 +1,44 @@ + + + + + + + + 4.0.0 + io.reactivex.rxjava3 + rxjava + 3.1.6 + RxJava + Reactive Extensions for Java + https://github.com/ReactiveX/RxJava + 2013 + + + The Apache Software License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + akarnokd + David Karnok + https://github.com/akarnokd/ + + + + scm:git:git://github.com/ReactiveX/RxJava.git + scm:git:ssh://git@github.com/ReactiveX/RxJava.git + https://github.com/ReactiveX/RxJava + + + + org.reactivestreams + reactive-streams + 1.0.4 + compile + + + diff --git a/rxjava.changes b/rxjava.changes new file mode 100644 index 0000000..10b8c05 --- /dev/null +++ b/rxjava.changes @@ -0,0 +1,4 @@ +------------------------------------------------------------------- +Fri Jan 27 22:58:25 UTC 2023 - Anton Shvetz + +- Initial packaging with v3.1.6 diff --git a/rxjava.spec b/rxjava.spec new file mode 100644 index 0000000..649ae4f --- /dev/null +++ b/rxjava.spec @@ -0,0 +1,73 @@ +# +# spec file for package rxjava +# +# Copyright (c) 2023 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: rxjava +Version: 3.1.6 +Release: 0 +Summary: Reactive Extensions for the JVM +License: Apache-2.0 +Group: Development/Libraries/Java +URL: https://github.com/ReactiveX/RxJava +Source0: %{url}/archive/refs/tags/v%{version}.tar.gz +Source1: https://repo1.maven.org/maven2/io/reactivex/%{name}3/%{name}/%{version}/%{name}-%{version}.pom +BuildRequires: maven-local +BuildRequires: mvn(org.reactivestreams:reactive-streams) +BuildArch: noarch + +%description +RxJava is a Java VM implementation of Reactive Extensions: a library for +composing asynchronous and event-based programs by using observable sequences. + +It extends the observer pattern to support sequences of data/events and adds +operators that allow you to compose sequences together declaratively while +abstracting away concerns about things like low-level threading, +synchronization, thread-safety and concurrent data structures. + +%package javadoc +Summary: API documentation for %{name} +Group: Documentation/HTML + +%description javadoc +API documentation for %{name}. + +%prep +%setup -q -n RxJava-%{version} +cp %{SOURCE1} pom.xml + +%pom_add_plugin org.apache.maven.plugins:maven-compiler-plugin \ +' + 8 + 8 +' + +%{mvn_file} : %{name} + +%build +%{mvn_build} -f + +%install +%mvn_install + +%files -f .mfiles +%license LICENSE +%doc {README,DESIGN}.md + +%files javadoc -f .mfiles-javadoc +%license LICENSE + +%changelog diff --git a/v3.1.6.tar.gz b/v3.1.6.tar.gz new file mode 100644 index 0000000..db2b9d7 --- /dev/null +++ b/v3.1.6.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:618a1d3eb9bf735869743ef73bf98be8a715884ac4577e15de86cfa4949cbfa0 +size 1882088