Accepting request 887974 from home:benoit_monin
- Update to version 1.17 - Use meson_install macro to fix build OBS-URL: https://build.opensuse.org/request/show/887974 OBS-URL: https://build.opensuse.org/package/show/hardware/scrcpy?expand=0&rev=71
This commit is contained in:
parent
2a622330f4
commit
1b9ace18c2
2
.gitattributes
vendored
2
.gitattributes
vendored
@ -22,4 +22,4 @@
|
||||
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||
*.zst filter=lfs diff=lfs merge=lfs -text
|
||||
## Specific LFS patterns
|
||||
scrcpy-server-v1.16 filter=lfs diff=lfs merge=lfs -text
|
||||
scrcpy-server-v1.17 filter=lfs diff=lfs merge=lfs -text
|
||||
|
2
_service
2
_service
@ -5,7 +5,7 @@
|
||||
<param name="versionformat">@PARENT_TAG@</param>
|
||||
<param name="versionrewrite-pattern">v(.*)</param>
|
||||
<param name="changesgenerate">enable</param>
|
||||
<param name="revision">v1.16</param>
|
||||
<param name="revision">v1.17</param>
|
||||
</service>
|
||||
<service name="recompress" mode="disabled">
|
||||
<param name="file">*.tar</param>
|
||||
|
@ -1,4 +1,4 @@
|
||||
<servicedata>
|
||||
<service name="tar_scm">
|
||||
<param name="url">https://github.com/Genymobile/scrcpy.git</param>
|
||||
<param name="changesrevision">d7779d08e8f9004ec44197cd8eb7fdec0e1d4dd1</param></service></servicedata>
|
||||
<param name="changesrevision">f682b87ba5ed6a5126cc23dff905218b177a2436</param></service></servicedata>
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:92b675c384afa161c2a24ac127faafef05ecfe036136b25619183727a0333f9b
|
||||
size 219740
|
3
scrcpy-1.17.tar.xz
Normal file
3
scrcpy-1.17.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fdcdd7521d90f79db6a77ad48681f0edc99fd3e2519e9376f4e7ac775b4ce618
|
||||
size 231228
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:94a79e05b4498d0460ab7bd9d12cbf05156e3a47bf0c5d1420cee1d4493b3832
|
||||
size 33622
|
3
scrcpy-server-v1.17
Normal file
3
scrcpy-server-v1.17
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:11b5ad2d1bc9b9730fb7254a78efd71a8ff46b1938ff468e47a21b653a1b6725
|
||||
size 34930
|
@ -1,3 +1,64 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Apr 22 09:40:22 UTC 2021 - benoit.monin@gmx.fr
|
||||
|
||||
- Update to version 1.17:
|
||||
* Bump version to 1.17
|
||||
* Kill the server only after a small delay
|
||||
* Call CloseHandle() after wait on Windows
|
||||
* Initialize server struct dynamically
|
||||
* Interrupt device threads on stop
|
||||
* Mention how to add default arguments on Windows
|
||||
* Happy new year 2021!
|
||||
* Upgrade SDL (2.0.14) for Windows
|
||||
* Rename release.make to release.mk
|
||||
* Unify release makefile
|
||||
* Replace noconsole binary by a wrapper script
|
||||
* Improve rotation documentation
|
||||
* Document Windows command line usage
|
||||
* Remove duplicate include
|
||||
* Upgrade JUnit to 4.13
|
||||
* Pause on error from a wrapper script
|
||||
* Reference encoder section from FAQ
|
||||
* Reference FFmpeg Windows builds from GitHub
|
||||
* Upgrade platform-tools (30.0.5) for Windows
|
||||
* Fix build errors for macOS
|
||||
* Document shell command to get the device IP
|
||||
* Upgrade gradle build tools to 4.0.1
|
||||
* Fix size_t format specifier for Windows
|
||||
* Document --encoder option
|
||||
* List available encoders on invalid name specified
|
||||
* Log encoder name
|
||||
* Adding new option --encoder
|
||||
* Add option to force legacy method for pasting
|
||||
* Add an option to forward all clicks
|
||||
* Add local.properties to gitignore
|
||||
* Remove spurious space
|
||||
* Mention version of Indonesian translation
|
||||
* Add Indonesian translation for README.md
|
||||
* Enable Java deprecation warnings details
|
||||
* Remove deprecation warning
|
||||
* Fix options order
|
||||
* Fix FAQ.ko.md
|
||||
* Fix "press Enter key" message
|
||||
* Remove unused field
|
||||
* Add missing mutex unlock on error
|
||||
* Add simplified Chinese translation for README.md
|
||||
* Fix README indentation
|
||||
* Upgrade Android SDK to 30
|
||||
* Use portable shebang for all bash scripts
|
||||
* Use a more portable shebang for bash
|
||||
* Use "/usr/bin/env bash" for build-wrapper.sh
|
||||
* Adapt call() on ContentProvider for Android 11
|
||||
* Fix feature test macro
|
||||
* Fix more log format warning
|
||||
* Reset power mode only if screen is on
|
||||
* Make Device methods static when possible
|
||||
* Add undetected device error message in FAQ
|
||||
* List available shortcut keys on error
|
||||
* Reference --shortcut-mod from shortcuts list
|
||||
* Update links to v1.16 in README and BUILD
|
||||
- Use meson_install macro to fix build
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Aug 15 12:50:10 UTC 2020 - dmueller@suse.com
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
Name: scrcpy
|
||||
Version: 1.16
|
||||
Version: 1.17
|
||||
Release: 0
|
||||
Summary: Display and control your Android device
|
||||
License: Apache-2.0
|
||||
@ -46,11 +46,7 @@ This application provides display and control of Android devices connected on US
|
||||
%meson_build
|
||||
|
||||
%install
|
||||
# rise up error with jar
|
||||
#%%meson_install
|
||||
install -Dm 0755 build/app/%{name} %{buildroot}%{_bindir}/%{name}
|
||||
install -Dm 0644 build/server/scrcpy-server %{buildroot}%{_datadir}/%{name}/scrcpy-server
|
||||
install -Dm 0644 app/%{name}.1 %{buildroot}%{_mandir}/man1/%{name}.1
|
||||
%meson_install
|
||||
|
||||
%files
|
||||
%license LICENSE
|
||||
|
Loading…
Reference in New Issue
Block a user