tetra 2.0.2 → 2.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/SPECIAL_CASES.md +2 -0
- data/lib/template/kit.spec +2 -2
- data/lib/tetra/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fc70e50e797a6d7f3e1f8bf939fcbd31e3fd355c
|
|
4
|
+
data.tar.gz: 0ba9f1dfd08c8b427d77240e90de8333fde643a4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dbe3806d2e52a522dbaa2edc2b0a2fdc62dfd44c5309c6a325c466a595d76ccd6219e863a3d257defc386c8393a3a50853a35c45a43a8583825c3d737955505f
|
|
7
|
+
data.tar.gz: fa0973157b6f75ada34c98872dbf4d589dad18ca0cf89c8979dca8f59a2ee79cd3622f38b072b0b4986dd3d1bc701ba663999b135dec2cae0ac4466bd155cc1f
|
data/SPECIAL_CASES.md
CHANGED
|
@@ -137,6 +137,8 @@ Assuming your project uses the [Gradle Wrapper](http://gradle.org/docs/current/u
|
|
|
137
137
|
|
|
138
138
|
Note that you cannot put files in `kit/` directly because your build would break on relocation, see [GRADLE-2690](https://issues.gradle.org/browse/GRADLE-2690).
|
|
139
139
|
|
|
140
|
+
Also note that Gradle typically ships with libnative as a platform-dependent binary library. That means you will need to build the RPM package on an x86_64 host.
|
|
141
|
+
|
|
140
142
|
## [OBS](build.opensuse.org) integration
|
|
141
143
|
|
|
142
144
|
If you want to submit your package to OBS, you can do so by copying contents of the `packages` in a proper OBS project directory.
|
data/lib/template/kit.spec
CHANGED
|
@@ -34,7 +34,7 @@ It should not be used except for rebuilding other packages,
|
|
|
34
34
|
thus it should never be installed on end users' systems.
|
|
35
35
|
|
|
36
36
|
%prep
|
|
37
|
-
%setup -q -n
|
|
37
|
+
%setup -q -T -D -n .
|
|
38
38
|
|
|
39
39
|
%build
|
|
40
40
|
# nothing to do, precompiled by design
|
|
@@ -42,7 +42,7 @@ thus it should never be installed on end users' systems.
|
|
|
42
42
|
%install
|
|
43
43
|
export NO_BRP_CHECK_BYTECODE_VERSION=true
|
|
44
44
|
install -d -m 0755 %{buildroot}%{_datadir}/tetra/
|
|
45
|
-
|
|
45
|
+
tar -C %{buildroot}%{_datadir}/tetra --strip-components=1 -xJf %{S:0}
|
|
46
46
|
%fdupes -s %{buildroot}%{_datadir}/tetra/
|
|
47
47
|
|
|
48
48
|
%files
|
data/lib/tetra/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tetra
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Silvio Moioli
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2017-09-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -421,7 +421,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
421
421
|
version: '0'
|
|
422
422
|
requirements: []
|
|
423
423
|
rubyforge_project: tetra
|
|
424
|
-
rubygems_version: 2.5.
|
|
424
|
+
rubygems_version: 2.5.2
|
|
425
425
|
signing_key:
|
|
426
426
|
specification_version: 4
|
|
427
427
|
summary: A tool to package Java projects
|