Skip to content
Snippets Groups Projects
Commit f8de35c6 authored by Simon McVittie's avatar Simon McVittie
Browse files

Merge tag 'v0.20190801.0'

steam-runtime-tools v0.20190801.0
parents 9993e6fa eb9cee4e
No related branches found
No related tags found
No related merge requests found
Pipeline #1326 passed
steam-runtime-tools (0.20190801.0-0+steamrt1.1) scout; urgency=medium
[ Ludovico de Nittis ]
* Add inspect-library helper and wrapper
[ Simon McVittie ]
* Add a skeleton for SrtLibrary, representing a shared library
* Add symbolic constants for the i386 and x86_64 ABIs
* Locate libsteam-runtime-tools with dladdr1(), not by iterating link map
* _srt_get_helpers_path: Adjust mapping from ${libdir} to ${prefix}
* Add a script to wrap tests with valgrind
* Don't build gtk-doc documentation if gtk-doc is too old
* Install enums.h below ${includedir} as intended
* Add missing enums.h to <steam-runtime-tools/steam-runtime-tools.h>
* build: Ensure that enums.[ch] are generated before compiling examples
* _srt_get_helpers_path: If in /lib, assume helpers are in /usr/libexec
* test-utils: Add some missing test assertions etc.
* d/tests: Log debug messages
* d/tests: Mark gnome-desktop-testing to be skipped if not installable
* debian: Enable Gitlab-CI
* utils: Ensure that g_type_init() gets called
* build: Allow C99 constructs
* build: Disable -Wunused-local-typedefs
* inspect-library: Treat "-" as meaning stdin
* inspect-library: Add simple command-line parsing
* inspect-library: Make memory management more obvious
* inspect-library: Reuse a buffer between iterations
* inspect-library: Allow just a symbol on a line, with no @
* inspect-library: Add support for consuming deb-symbols(5) files
* Add a skeleton for SrtSystemInfo
-- Simon McVittie <smcv@collabora.com> Thu, 01 Aug 2019 18:54:13 +0100
steam-runtime-tools (0.20190717.0-0+collabora1) upstream; urgency=medium
* Initial release
......
......@@ -2,3 +2,18 @@ libsteam-runtime-tools-0.so.0 libsteam-runtime-tools-0-0 #MINVER#
* Build-Depends-Package: libsteam-runtime-tools-0-dev
srt_architecture_can_run_i386@Base 0.20190717.0
srt_architecture_can_run_x86_64@Base 0.20190717.0
srt_check_library_presence@Base 0.20190801.0
srt_library_get_absolute_path@Base 0.20190801.0
srt_library_get_dependencies@Base 0.20190801.0
srt_library_get_issues@Base 0.20190801.0
srt_library_get_missing_symbols@Base 0.20190801.0
srt_library_get_misversioned_symbols@Base 0.20190801.0
srt_library_get_multiarch_tuple@Base 0.20190801.0
srt_library_get_soname@Base 0.20190801.0
srt_library_get_type@Base 0.20190801.0
srt_library_issues_get_type@Base 0.20190801.0
srt_library_symbols_format_get_type@Base 0.20190801.0
srt_system_info_can_run@Base 0.20190801.0
srt_system_info_can_write_to_uinput@Base 0.20190801.0
srt_system_info_get_type@Base 0.20190801.0
srt_system_info_new@Base 0.20190801.0
......@@ -21,11 +21,11 @@
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
project('steam-runtime-tools', 'c', version : '0.20190717.0')
project('steam-runtime-tools', 'c', version : '0.20190801.0')
api_major = '0'
abi_major = '0'
abi_minor = '20190717.0'
abi_minor = '20190801.0'
pkg = import('pkgconfig')
gnome = import('gnome')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment