56675ff448
Accepting request 1248504 from devel:tools
...
OBS-URL: https://build.opensuse.org/request/show/1248504
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=125
2025-02-27 13:49:58 +00:00
fac113cdc0
Accepting request 1237989 from devel:tools
...
OBS-URL: https://build.opensuse.org/request/show/1237989
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=124
2025-01-17 17:36:41 +00:00
Martin Pluskal
f7c0cf9e42
- Avoid usage of %{_libdir} in a noarch package: noarch cannot rely
...
on libdir, an arch-dependent variable. Rather use %{_prefix}/lib*
to remove files. Fixes build with RPM 4.20.
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=152
2025-01-15 07:39:56 +00:00
58d8c93523
Accepting request 1181552 from devel:tools
...
- Upgrade to version 5.1. See systemtap.changes for changelog
- Upgrade to version 5.1. See systemtap.changes for changelog
- Upgrade to version 5.1. See systemtap.changes for changelog
- Update to version 5.1
Summary of changes:
* SystemTap frontend (stap) changes
- An experimental "--build-as=USER" flag to reduce privilege during
script compilation, which is a security improvement effort.
- New probe-points for userland hardware breakpoints/watchpoints
targeting processes (PR31180):
probe process.data(ADDRESS).write
probe process.data(ADDRESS).rw
probe process.data(ADDRESS).length(LEN).write
probe process.data(ADDRESS).length(LEN).rw
- Support for stap --remote=bpf.
- Improved searching heuristics for probing symbol names with/without
symbol-version suffixes and with/without weak names.
- Made long-running debuginfod downloads more cleanly interruptible.
- Improved stap-prep heuristics for finding debuginfo for "-rt"
(real-time) kernels.
* SystemTap backend changes
- Dynamic namespace switching for processes targeted via "-x PID",
allowing processes running within containers to be probed.
- Improved message transport robustness for heavy traffic (individual
messages spanning pages) and for short runs (avoiding loss of
last-gasp messages).
- Added MTAG macro on several internal memory allocation routines
to improve leak warnings. Corrected a bunch of leaks.
- "stap -t" now reports module initialization timings too.
- Ported runtime for GCC14 compatibility, with its more recent C
dialect warnings.
- Support for DW_OP_bra in DWARF location lists, which makes a few
more $context variables accessible to systemtap.
* SystemTap tapset changes
- Portability fixes for more recent kernels, as always.
- set_kernel_string* tapset functions improved range checking.
- print_ubacktrace_fileline() works with PIE binaries.
- Many portability improvements and some fixes in the testsuite.
- Enhancements for the tcp, nfs, memory tapsets.
Drop following patches (upstream):
- bpf-translate.cxx-fix-build-against-upcoming-gcc14.patch
- get-shm_flag-defines-from-the-appropriate-include-file-for-linux-6.8-kernel.patch
- pr31288-build-with-gcc14-cont.patch
- pr31288-build-with-gcc14.patch
- pr31373-deal-with-the-removal-of-strlcpy-from-linux-6.8.patch
- staprun-fix-build-against-upcoming-gcc14.patch
- stapvirt.c-more-gcc-14-werror-calloc-transposed-args-compatibility.patch
OBS-URL: https://build.opensuse.org/request/show/1181552
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=123
2024-06-19 14:36:11 +00:00
Tony Jones
29b0745414
- Upgrade to version 5.1. See systemtap.changes for changelog
...
- Upgrade to version 5.1. See systemtap.changes for changelog
- Upgrade to version 5.1. See systemtap.changes for changelog
- Update to version 5.1
Summary of changes:
* SystemTap frontend (stap) changes
- An experimental "--build-as=USER" flag to reduce privilege during
script compilation, which is a security improvement effort.
- New probe-points for userland hardware breakpoints/watchpoints
targeting processes (PR31180):
probe process.data(ADDRESS).write
probe process.data(ADDRESS).rw
probe process.data(ADDRESS).length(LEN).write
probe process.data(ADDRESS).length(LEN).rw
- Support for stap --remote=bpf.
- Improved searching heuristics for probing symbol names with/without
symbol-version suffixes and with/without weak names.
- Made long-running debuginfod downloads more cleanly interruptible.
- Improved stap-prep heuristics for finding debuginfo for "-rt"
(real-time) kernels.
* SystemTap backend changes
- Dynamic namespace switching for processes targeted via "-x PID",
allowing processes running within containers to be probed.
- Improved message transport robustness for heavy traffic (individual
messages spanning pages) and for short runs (avoiding loss of
last-gasp messages).
- Added MTAG macro on several internal memory allocation routines
to improve leak warnings. Corrected a bunch of leaks.
- "stap -t" now reports module initialization timings too.
- Ported runtime for GCC14 compatibility, with its more recent C
dialect warnings.
- Support for DW_OP_bra in DWARF location lists, which makes a few
more $context variables accessible to systemtap.
* SystemTap tapset changes
- Portability fixes for more recent kernels, as always.
- set_kernel_string* tapset functions improved range checking.
- print_ubacktrace_fileline() works with PIE binaries.
- Many portability improvements and some fixes in the testsuite.
- Enhancements for the tcp, nfs, memory tapsets.
Drop following patches (upstream):
- bpf-translate.cxx-fix-build-against-upcoming-gcc14.patch
- get-shm_flag-defines-from-the-appropriate-include-file-for-linux-6.8-kernel.patch
- pr31288-build-with-gcc14-cont.patch
- pr31288-build-with-gcc14.patch
- pr31373-deal-with-the-removal-of-strlcpy-from-linux-6.8.patch
- staprun-fix-build-against-upcoming-gcc14.patch
- stapvirt.c-more-gcc-14-werror-calloc-transposed-args-compatibility.patch
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=150
2024-06-17 23:02:55 +00:00
ef99a2febc
Accepting request 1164227 from devel:tools
...
- Fix runtime issues with v6.8 kernel (bsc#1222249)
New patch: get-shm_flag-defines-from-the-appropriate-include-file-for-linux-6.8-kernel.patch
New patch: pr31373-deal-with-the-removal-of-strlcpy-from-linux-6.8.patch
- Fix gcc14 build errors (bsc#1221706)
New patch: bpf-translate.cxx-fix-build-against-upcoming-gcc14.patch
New patch: pr31288-build-with-gcc14-cont.patch
New patch: pr31288-build-with-gcc14.patch
New patch: staprun-fix-build-against-upcoming-gcc14.patch
New patch: stapvirt.c-more-gcc-14-werror-calloc-transposed-args-compatibility.patch
OBS-URL: https://build.opensuse.org/request/show/1164227
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=122
2024-04-03 15:18:57 +00:00
Tony Jones
54d088036b
Accepting request 1164226 from home:jones_tony:branches:devel:tools
...
- Fix runtime issues with v6.8 kernel (bsc#1222249)
New patch: get-shm_flag-defines-from-the-appropriate-include-file-for-linux-6.8-kernel.patch
New patch: pr31373-deal-with-the-removal-of-strlcpy-from-linux-6.8.patch
- Fix gcc14 build errors (bsc#1221706)
New patch: bpf-translate.cxx-fix-build-against-upcoming-gcc14.patch
New patch: pr31288-build-with-gcc14-cont.patch
New patch: pr31288-build-with-gcc14.patch
New patch: staprun-fix-build-against-upcoming-gcc14.patch
New patch: stapvirt.c-more-gcc-14-werror-calloc-transposed-args-compatibility.patch
OBS-URL: https://build.opensuse.org/request/show/1164226
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=148
2024-04-02 19:00:34 +00:00
aaa55661fe
Accepting request 1158885 from devel:tools
...
OBS-URL: https://build.opensuse.org/request/show/1158885
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=121
2024-03-20 20:09:38 +00:00
Martin Pluskal
b7c241a997
Accepting request 1157163 from home:pgajdos
...
- remove dependency on /usr/bin/python3 using
%python3_fix_shebang macro, [bsc#1212476]
- remove dependency on /usr/bin/python3 using
%python3_fix_shebang macro, [bsc#1212476]
OBS-URL: https://build.opensuse.org/request/show/1157163
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=146
2024-03-18 07:39:40 +00:00
80f37a2d4e
Accepting request 1141758 from devel:tools
...
OBS-URL: https://build.opensuse.org/request/show/1141758
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=120
2024-01-28 18:39:18 +00:00
Martin Pluskal
e29344c8e4
Accepting request 1135754 from home:sp1rit
...
Upgrade to version 5.0
OBS-URL: https://build.opensuse.org/request/show/1135754
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=144
2024-01-26 15:07:07 +00:00
4d62f4af44
Accepting request 1086106 from devel:tools
...
OBS-URL: https://build.opensuse.org/request/show/1086106
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=119
2023-05-13 15:16:56 +00:00
Tony Jones
da9aa00c52
Accepting request 1085967 from home:dirkmueller:Factory
...
- update to 4.9:
* ISystemtap: the new interactive systemtap jupyter kernel.
This provides a simple GUI for writing/running Systemtap
scripts in an easy, incremental way within Jupyterlab.
Added 2 news scripts, stap-jupyter-install
and stap-jupyter-container. See stap-jupyter(1).
* The new "language-server" mode, specified by "stap
--language-server", starts a LSP server which will
communicate with the client via stdio.
* This server currently supports code completion suggestions.
* See language-server/README.md for more details and usage
instructions.
* Safety/liveness checking for $context variable assignments in
probes of retpoline-compiled kernels is temporarily disabled.
* DWARF-related probes (.function, .statement) now merge DWARF
and non-DWARF symbol-table based matches, rather than being
either-or.
* The python3 tapset was extended to support python3 3.9, 3.10,
and 3.11. See stapprobes(3stap) for further details on probing
python functions.
* A template cve band-aid script is now included, which
demonstrates how to use a new 'livepatch.stp' tapset to
standardize activation, interactive control,
and monitoring of systemtap cve band-aids.
* The kernel runtime now uses much less memory when the number
of "possible CPUs" are way more than the online ones. For
example, VMWare guests usually have 128 "possible CPUs" while fewer
CPUs are actually present or online in the guest system.
* The memory allocation size is now irrelevant to the value of
NR_CPUS of the current kernel. It is only subject to the
OBS-URL: https://build.opensuse.org/request/show/1085967
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=142
2023-05-10 16:07:34 +00:00
d70c6d995b
Accepting request 1084620 from devel:tools
...
OBS-URL: https://build.opensuse.org/request/show/1084620
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=118
2023-05-05 13:56:40 +00:00
ec88825037
Accepting request 1084615 from home:dimstar:Factory
...
- Add _multibuild to define 2nd spec file as additional flavor.
Eliminates the need for source package links in OBS.
OBS-URL: https://build.opensuse.org/request/show/1084615
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=140
2023-05-04 11:34:07 +00:00
11ca52cc75
Accepting request 1003071 from devel:tools
...
- Upgrade to version 4.7. See systemtap.spec for changelog
- Upgrade to version 4.7. See systemtap.spec for changelog
- Upgrade to version 4.7. See systemtap.spec for changelog
- Remove patches (upstream):
Handle-user-supplied-sdt-probe-argument-template.patch
PR28778-gcc-warning-tweak-for-sprintf-precision-parameter.patch
buildrun-for-LKM-backend-add-Wno-infinite-recursion.patch
gcc12-c-compatibility-re-tweak-for-rhel6-use-function-pointer-instead-of-lambdas-instead-of-ptr_fun.patch
gcc12-c-compatibility-tweak-use-lambdas-instead-of-ptr_fun.patch
gcc12-warning-suppression.patch
sys-sdt.h-fp-constraints-aarch64-s390.patch
sys-sdt.h-fp-constraints-arm32.patch
sys-sdt.h-fp-constraints-x86_64.patch
- Update to version 4.7
Release notes: https://sourceware.org/pipermail/systemtap/2022q2/027491.html
- Remove patches (upstream):
Handle-user-supplied-sdt-probe-argument-template.patch
PR28778-gcc-warning-tweak-for-sprintf-precision-parameter.patch
buildrun-for-LKM-backend-add-Wno-infinite-recursion.patch
gcc12-c-compatibility-re-tweak-for-rhel6-use-function-pointer-instead-of-lambdas-instead-of-ptr_fun.patch
gcc12-c-compatibility-tweak-use-lambdas-instead-of-ptr_fun.patch
gcc12-warning-suppression.patch
sys-sdt.h-fp-constraints-aarch64-s390.patch
sys-sdt.h-fp-constraints-arm32.patch
sys-sdt.h-fp-constraints-x86_64.patch
- Update systemtap.keyring
OBS-URL: https://build.opensuse.org/request/show/1003071
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=117
2022-09-16 11:31:48 +00:00
Tony Jones
18485ffdc4
- Upgrade to version 4.7. See systemtap.spec for changelog
...
- Upgrade to version 4.7. See systemtap.spec for changelog
- Upgrade to version 4.7. See systemtap.spec for changelog
- Remove patches (upstream):
Handle-user-supplied-sdt-probe-argument-template.patch
PR28778-gcc-warning-tweak-for-sprintf-precision-parameter.patch
buildrun-for-LKM-backend-add-Wno-infinite-recursion.patch
gcc12-c-compatibility-re-tweak-for-rhel6-use-function-pointer-instead-of-lambdas-instead-of-ptr_fun.patch
gcc12-c-compatibility-tweak-use-lambdas-instead-of-ptr_fun.patch
gcc12-warning-suppression.patch
sys-sdt.h-fp-constraints-aarch64-s390.patch
sys-sdt.h-fp-constraints-arm32.patch
sys-sdt.h-fp-constraints-x86_64.patch
- Update to version 4.7
Release notes: https://sourceware.org/pipermail/systemtap/2022q2/027491.html
- Remove patches (upstream):
Handle-user-supplied-sdt-probe-argument-template.patch
PR28778-gcc-warning-tweak-for-sprintf-precision-parameter.patch
buildrun-for-LKM-backend-add-Wno-infinite-recursion.patch
gcc12-c-compatibility-re-tweak-for-rhel6-use-function-pointer-instead-of-lambdas-instead-of-ptr_fun.patch
gcc12-c-compatibility-tweak-use-lambdas-instead-of-ptr_fun.patch
gcc12-warning-suppression.patch
sys-sdt.h-fp-constraints-aarch64-s390.patch
sys-sdt.h-fp-constraints-arm32.patch
sys-sdt.h-fp-constraints-x86_64.patch
- Update systemtap.keyring
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=138
2022-09-13 01:07:15 +00:00
59de7f7975
Accepting request 971957 from devel:tools
...
OBS-URL: https://build.opensuse.org/request/show/971957
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=116
2022-04-25 22:00:27 +00:00
Tony Jones
f0cadb895f
Accepting request 971956 from home:jones_tony:branches:devel:tools
...
- Remove unnecessary patches. Only patches specific to dtrace are needed.
OBS-URL: https://build.opensuse.org/request/show/971956
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=136
2022-04-22 01:30:13 +00:00
a297538fa5
Accepting request 958521 from devel:tools
...
OBS-URL: https://build.opensuse.org/request/show/958521
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=115
2022-03-05 13:42:53 +00:00
Tony Jones
d090c61581
Accepting request 958520 from home:jones_tony:branches:devel:tools
...
- Add gcc12 support (bsc#1196583)
New patch: PR28778-gcc-warning-tweak-for-sprintf-precision-parameter.patch
New patch: gcc12-c-compatibility-tweak-use-lambdas-instead-of-ptr_fun.patch
New patch: gcc12-c-compatibility-re-tweak-for-rhel6-use-function-pointer-instead-of-lambdas-instead-of-ptr_fun.patch
New patch: buildrun-for-LKM-backend-add-Wno-infinite-recursion.patch
New patch: gcc12-warning-suppression.patch
- Add gcc12 support (bsc#1196583)
New patch: PR28778-gcc-warning-tweak-for-sprintf-precision-parameter.patch
New patch: gcc12-c-compatibility-tweak-use-lambdas-instead-of-ptr_fun.patch
New patch: gcc12-c-compatibility-re-tweak-for-rhel6-use-function-pointer-instead-of-lambdas-instead-of-ptr_fun.patch
New patch: buildrun-for-LKM-backend-add-Wno-infinite-recursion.patch
New patch: gcc12-warning-suppression.patch
- Add gcc12 support (bsc#1196583)
New patch: PR28778-gcc-warning-tweak-for-sprintf-precision-parameter.patch
New patch: gcc12-c-compatibility-tweak-use-lambdas-instead-of-ptr_fun.patch
New patch: gcc12-c-compatibility-re-tweak-for-rhel6-use-function-pointer-instead-of-lambdas-instead-of-ptr_fun.patch
New patch: buildrun-for-LKM-backend-add-Wno-infinite-recursion.patch
New patch: gcc12-warning-suppression.patch
OBS-URL: https://build.opensuse.org/request/show/958520
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=134
2022-03-02 19:46:23 +00:00
d12a77640f
Accepting request 958209 from devel:tools
...
OBS-URL: https://build.opensuse.org/request/show/958209
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=114
2022-03-02 17:20:02 +00:00
Martin Pluskal
814c21c0e0
Accepting request 956363 from home:Andreas_Schwab:Factory
...
- Handle-user-supplied-sdt-probe-argument-template.patch: Fix glibc build
failure on s390x
OBS-URL: https://build.opensuse.org/request/show/956363
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=133
2022-03-01 08:07:15 +00:00
2f68f3e7f0
Accepting request 954978 from devel:tools
...
OBS-URL: https://build.opensuse.org/request/show/954978
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=113
2022-02-16 23:30:20 +00:00
Tony Jones
eeabf351d4
Accepting request 954972 from home:jones_tony:branches:devel:tools
...
OBS-URL: https://build.opensuse.org/request/show/954972
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=132
2022-02-15 14:47:59 +00:00
Tony Jones
db94805d84
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=131
2022-01-27 23:49:34 +00:00
Tony Jones
ae65c38712
Accepting request 949540 from home:jones_tony:branches:devel:tools
...
- Upgrade to version 4.6. See systemtap.spec for changelog
- Upgrade to version 4.6. See systemtap.spec for changelog
- Upgrade to version 4.6. See systemtap.spec for changelog
- Update to version 4.6
4.6 release notes: https://sourceware.org/pipermail/systemtap/2021q4/027370.html
4.5 release notes: https://sourceware.org/pipermail/systemtap/2021q2/027225.html
4.4 release notes: https://sourceware.org/pipermail/systemtap/2020q4/027074.html
4.3 release notes: https://sourceware.org/pipermail/systemtap/2020q2/026923.html
Remove patches (upstream):
- systemtap-amend-fallback-comment-to-work-with-newer-gcc.patch
- systemtap-fix-strict-prototypes-in-autoconf-stack-trace-save-regs.c.patch
Update systemtap.keyring for new signer
OBS-URL: https://build.opensuse.org/request/show/949540
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=130
2022-01-27 23:39:59 +00:00
672d791758
Accepting request 889320 from devel:tools
...
- Adjust stap-server.conf to refer to /run not /var/run (bsc#1185068)
OBS-URL: https://build.opensuse.org/request/show/889320
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=112
2021-05-02 16:35:07 +00:00
Tony Jones
0d346a8484
- Adjust stap-server.conf to refer to /run not /var/run (bsc#1185068)
...
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=128
2021-04-28 14:40:26 +00:00
f863ead70b
Accepting request 832676 from devel:tools
...
OBS-URL: https://build.opensuse.org/request/show/832676
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=111
2020-09-14 09:59:53 +00:00
Martin Pluskal
9dda6bd9ba
Accepting request 828932 from home:dimstar:Factory
...
- Use %{_tmpfilesdir} instead of wrong %{_libexecdir}/tmpfiles.d
that just coincidentally happened to match (boo#1174075).
OBS-URL: https://build.opensuse.org/request/show/828932
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=126
2020-09-07 06:47:24 +00:00
ef3f9112c2
Accepting request 770416 from devel:tools
...
Add recommends on kernel-devel
OBS-URL: https://build.opensuse.org/request/show/770416
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=110
2020-02-11 21:16:29 +00:00
Tony Jones
021aa36757
- Add recommends on kernel-devel (bsc#1158733)
...
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=124
2020-02-06 02:04:20 +00:00
587f33aeaf
Accepting request 769807 from devel:tools
...
bsc#1161296
OBS-URL: https://build.opensuse.org/request/show/769807
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=109
2020-02-04 18:51:37 +00:00
Tony Jones
b48f10e425
- Resolve protoype issue when invoking tracebacks (bsc#1161296)
...
Also dependent fix to handle GCC fallthrough
New patch: systemtap-fix-strict-prototypes-in-autoconf-stack-trace-save-regs.c.patch
New patch: systemtap-amend-fallback-comment-to-work-with-newer-gcc.patch
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=122
2020-02-03 23:48:47 +00:00
Tony Jones
b9a650135b
Accepting request 767822 from home:dimstar:Factory
...
- Replace libebl-devel BuildRequires with libdw-devel: ebl is
being absorbed by libdw.
Needed for Staging:B / elfutils update
OBS-URL: https://build.opensuse.org/request/show/767822
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=121
2020-01-28 17:25:01 +00:00
5b2116b91f
Accepting request 754799 from devel:tools
...
OBS-URL: https://build.opensuse.org/request/show/754799
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=108
2019-12-11 11:03:40 +00:00
Tony Jones
fc2d5de39b
Accepting request 754798 from home:jones_tony:branches:devel:tools
...
Update to version 4.2
OBS-URL: https://build.opensuse.org/request/show/754798
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=119
2019-12-06 21:00:37 +00:00
4235f8f30d
Accepting request 746400 from devel:tools
...
OBS-URL: https://build.opensuse.org/request/show/746400
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=107
2019-11-13 12:12:34 +00:00
Tony Jones
6d2496a6d1
Accepting request 746399 from home:jones_tony:branches:devel:tools
...
Submit fix
OBS-URL: https://build.opensuse.org/request/show/746399
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=117
2019-11-07 20:26:06 +00:00
d891d4978a
Accepting request 738186 from devel:tools
...
- Do not require exact version of systemtap-dtrace as build
counters are not same for different packages
- Moved the dtrace binary into a separate package to resolve build
cycle with glib2 (bsc#1145438).
- Moved the dtrace binary into a separate package to resolve build
cycle with glib2 (bsc#1145438).
OBS-URL: https://build.opensuse.org/request/show/738186
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=106
2019-10-17 10:17:23 +00:00
Martin Pluskal
d10f34b236
- Do not require exact version of systemtap-dtrace as build
...
counters are not same for different packages
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=115
2019-10-14 07:33:31 +00:00
Martin Pluskal
dcdde06c8f
Accepting request 735295 from home:mgorse:branches:devel:tools
...
- Moved the dtrace binary into a separate package to resolve build
cycle with glib2 (bsc#1145438).
OBS-URL: https://build.opensuse.org/request/show/735295
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=114
2019-10-10 08:16:08 +00:00
Tony Jones
9dd402c963
Accepting request 734832 from devel:tools
...
Revert multibuild changes, rejected in Factory
OBS-URL: https://build.opensuse.org/request/show/734832
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=113
2019-10-03 16:52:33 +00:00
Martin Pluskal
c81acb1fd7
Accepting request 733499 from home:mgorse:branches:devel:tools
...
- Move License and Group outside of conditionals, since they are
the same for all flavors.
OBS-URL: https://build.opensuse.org/request/show/733499
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=112
2019-09-27 07:59:57 +00:00
Martin Pluskal
83ebabfad1
Accepting request 731721 from home:mgorse:branches:devel:tools
...
- Convert to multibuild.
- Move dtrace binary into its own package to allow building glib2
with systemtap support while avoiding a build cycle
(bsc#1145438).
- Remove %defattr from %files: no longer needed.
OBS-URL: https://build.opensuse.org/request/show/731721
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=111
2019-09-26 07:51:46 +00:00
fc660e08be
Accepting request 723839 from devel:tools
...
OBS-URL: https://build.opensuse.org/request/show/723839
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=105
2019-08-27 13:19:29 +00:00
Tony Jones
61ea7eb10f
Accepting request 723838 from home:jones_tony:branches:devel:tools
...
Update to v4.1
OBS-URL: https://build.opensuse.org/request/show/723838
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=109
2019-08-15 21:36:03 +00:00
eea0da878f
Accepting request 694583 from devel:tools
...
OBS-URL: https://build.opensuse.org/request/show/694583
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=104
2019-04-21 06:59:35 +00:00
Tony Jones
5be91d74c3
Accepting request 694440 from home:joeyli:branches:devel:tools
...
Add BuildRequire libavahi-devel, otherwise that the systemstap-server and systemstap client do not work. (bsc#1132538)
OBS-URL: https://build.opensuse.org/request/show/694440
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=107
2019-04-15 16:10:19 +00:00
Stephan Kulow
b9204a96ea
Accepting request 670898 from devel:tools
...
OBS-URL: https://build.opensuse.org/request/show/670898
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=103
2019-02-08 10:59:53 +00:00
a08568ce1a
Accepting request 670128 from home:dimstar:Factory
...
- BuildRequire pkgconfig(systemd) instead of systemd: allow to use
systemd-mini during build.
- Use %tmpfiles_create macro in -server package: consider the right
usage in transactional update cases.
OBS-URL: https://build.opensuse.org/request/show/670128
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=105
2019-02-03 18:17:43 +00:00
9ab15158ae
Accepting request 664152 from devel:tools
...
OBS-URL: https://build.opensuse.org/request/show/664152
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=102
2019-01-29 13:38:20 +00:00
7475db2cd3
Accepting request 662889 from home:mgorse:branches:devel:tools
...
- Remove glib2-devel from BuildRequires: it appears not to be used
and causes a build loop if glib2 is built with SDT markers
(bsc#1090047).
OBS-URL: https://build.opensuse.org/request/show/662889
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=103
2019-01-09 18:06:29 +00:00
a4a60f2622
Accepting request 629493 from devel:tools
...
OBS-URL: https://build.opensuse.org/request/show/629493
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=101
2018-08-24 14:49:17 +00:00
Martin Pluskal
ce0a3f0c47
Accepting request 627384 from home:simson:branches:devel:tools
...
- Upgrade to version 3.3:
Changelog: https://lwn.net/Articles/757030/
eBPF backend extensions, easier access to examples, adapting to
meltdown/spectre complications, real-time / high-cpu-count
concurrency fixes
- Added public key of "Frank Ch. Eigler <fche@elastic.org >",
since he signed the new package
- Upgrade to version 3.3:
Changelog: https://lwn.net/Articles/757030/
eBPF backend extensions, easier access to examples, adapting to
meltdown/spectre complications, real-time / high-cpu-count
concurrency fixes
- Remove patches, because the issues were fixed upstream:
systemtap-change-extra_cflags-escape-processing.patch
- Adjust patch for version 3.3:
systemtap-build-source-dir.patch
- Added public key of "Frank Ch. Eigler <fche@elastic.org >",
since he signed the new package
- Upgrade to version 3.3:
Changelog: https://lwn.net/Articles/757030/
eBPF backend extensions, easier access to examples, adapting to
meltdown/spectre complications, real-time / high-cpu-count
concurrency fixes
- Remove patches, because the issues were fixed upstream:
systemtap-fixes-for-gcc-8.patch
systemtap-change-extra_cflags-escape-processing.patch
- Adjust patch for version 3.3:
systemtap-build-source-dir.patch
- Added public key of "Frank Ch. Eigler <fche@elastic.org >",
since he signed the new package
OBS-URL: https://build.opensuse.org/request/show/627384
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=101
2018-08-16 07:21:58 +00:00
70b5f8ec7c
Accepting request 591170 from devel:tools
...
OBS-URL: https://build.opensuse.org/request/show/591170
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=100
2018-03-29 09:50:06 +00:00
Tony Jones
3983a728fd
Accepting request 591169 from home:jones_tony:branches:devel:tools
...
- GCC 8 fixes (bsc#1084642)
New patch: systemtap-fixes-for-gcc-8.patch
OBS-URL: https://build.opensuse.org/request/show/591169
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=99
2018-03-26 16:18:28 +00:00
4e20aa823f
Accepting request 578343 from devel:tools
...
- Add Conflicts with systemtap-sdt-devel, as that one again
provides the headers as well.
- Care for pecularities of build counter syncs between different
build rings: the Requires from sdt-devel can't use %release
for systemtap-headers, but we also don't want to just include
%version, so separate both totally:
* Add the include headers to sdt-devel again.
* Add Conflicts with systemtap-headers to care for the resulting
file conflicts.
* Remove Require from sdt-devel to systemtap-headers again. (forwarded request 578031 from matz2)
OBS-URL: https://build.opensuse.org/request/show/578343
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=99
2018-02-25 11:19:23 +00:00
49da3875a7
Accepting request 578031 from home:matz2:branches:devel:tools
...
- Add Conflicts with systemtap-sdt-devel, as that one again
provides the headers as well.
- Care for pecularities of build counter syncs between different
build rings: the Requires from sdt-devel can't use %release
for systemtap-headers, but we also don't want to just include
%version, so separate both totally:
* Add the include headers to sdt-devel again.
* Add Conflicts with systemtap-headers to care for the resulting
file conflicts.
* Remove Require from sdt-devel to systemtap-headers again.
OBS-URL: https://build.opensuse.org/request/show/578031
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=97
2018-02-20 12:53:55 +00:00
13a8210f16
Accepting request 574715 from home:matz2:branches:devel:tools
...
- Don't include the headers files in sdt-devel
- Add systemtap-headers to Requires of sdt-devel, so that it
provides the same files as before. [fate#324969]
- Created new specfile systemtap-headers.spec, so bootstrap cycles
packages can use them without blowing up the cycle.
[fate#324969]
OBS-URL: https://build.opensuse.org/request/show/574715
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=96
2018-02-12 15:44:31 +00:00
83346a181e
Accepting request 572162 from devel:tools
...
OBS-URL: https://build.opensuse.org/request/show/572162
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=98
2018-02-03 14:40:43 +00:00
Tony Jones
1e6b91b9a3
Accepting request 572161 from home:jones_tony:branches:devel:tools
...
- Fix python3 build failures
OBS-URL: https://build.opensuse.org/request/show/572161
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=94
2018-02-02 23:46:27 +00:00
c650161fd7
Accepting request 544287 from devel:tools
...
- Upgrade to version 3.2. See systemtap.spec for changelog
Drop patch: systemtap-doc-back-down-gettext-version.diff
- Upgrade to version 3.2
Changelog: https://sourceware.org/ml/systemtap/2017-q4/msg00096.html
Drop patch: systemtap-tweak-i386-argument-passing.patch (upstream)
Update keyring.
- Fix issue with Kbuild handling of escaped paths (bsc#1067437)
Add patch: systemtap-change-extra_cflags-escape-processing.patch
OBS-URL: https://build.opensuse.org/request/show/544287
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=97
2017-11-23 08:36:13 +00:00
Tony Jones
ec1ad2eea2
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=92
2017-11-21 19:00:03 +00:00
Tony Jones
c7bce3d5b3
Accepting request 544280 from home:jones_tony:branches:devel:tools
...
- Fix issue with Kbui;d handling of escaped paths (bsc#1067437)
Add patch: systemtap-change-extra_cflags-escape-processing.patch
OBS-URL: https://build.opensuse.org/request/show/544280
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=91
2017-11-21 18:16:51 +00:00
Tony Jones
4fee6ccbe4
Accepting request 544008 from home:jones_tony:branches:devel:tools
...
- Upgrade to version 3.2. See systemtap.spec for changelog
Drop patch: systemtap-doc-back-down-gettext-version.diff
- Upgrade to version 3.2
Changelog: https://sourceware.org/ml/systemtap/2017-q4/msg00096.html
Drop patch: systemtap-tweak-i386-argument-passing.patch (upstream)
Add patch: systemtap-change-extra_cflags-escape-processing.patch
Update keyring.
OBS-URL: https://build.opensuse.org/request/show/544008
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=90
2017-11-21 02:55:31 +00:00
aed829ac4e
Accepting request 540630 from devel:tools
...
OBS-URL: https://build.opensuse.org/request/show/540630
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=96
2017-11-14 13:18:56 +00:00
a78f35ba30
Accepting request 540484 from home:pluskalm:branches:devel:tools
...
- Use pytho3 by default (fate#323526)
* Do not explicitly require python by subpackage, dependency gets
generated automatically
OBS-URL: https://build.opensuse.org/request/show/540484
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=88
2017-11-10 18:27:48 +00:00
d6e769f21a
Accepting request 483898 from devel:tools
...
1
OBS-URL: https://build.opensuse.org/request/show/483898
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=95
2017-04-24 07:45:32 +00:00
Tony Jones
2c9ede183c
Accepting request 483897 from home:jones_tony:branches:devel:tools
...
OBS-URL: https://build.opensuse.org/request/show/483897
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=86
2017-03-30 20:00:30 +00:00
Tony Jones
1bde4080f5
Accepting request 483191 from home:jeff_mahoney:branches:devel:tools
...
- Update to version 3.1. See systemtap.spec for changelog
Added patch: systemtap-doc-back-down-gettext-version.diff
- Update to version 3.1
Update keyring with new key
Changelog:
https://sourceware.org/ml/systemtap/2017-q1/msg00106.html
OBS-URL: https://build.opensuse.org/request/show/483191
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=85
2017-03-28 20:46:58 +00:00
535c274b31
Accepting request 386394 from devel:tools
...
OBS-URL: https://build.opensuse.org/request/show/386394
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=94
2016-04-11 07:12:54 +00:00
Tony Jones
766172bbf6
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=84
2016-04-08 17:37:02 +00:00
Tony Jones
217be436d2
Accepting request 384300 from home:jones_tony:branches:devel:tools
...
OBS-URL: https://build.opensuse.org/request/show/384300
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=83
2016-04-04 23:30:37 +00:00
9f507cf061
Accepting request 344291 from devel:tools
...
1
OBS-URL: https://build.opensuse.org/request/show/344291
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=93
2015-11-18 21:31:06 +00:00
Tony Jones
8766fbfb65
Accepting request 344290 from home:jones_tony:branches:devel:tools
...
OBS-URL: https://build.opensuse.org/request/show/344290
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=81
2015-11-13 19:54:25 +00:00
269073fddd
Accepting request 330584 from devel:tools
...
1
OBS-URL: https://build.opensuse.org/request/show/330584
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=92
2015-09-17 07:18:05 +00:00
Martin Pluskal
44f20ab9eb
Accepting request 330582 from home:jones_tony:branches:devel:tools
...
OBS-URL: https://build.opensuse.org/request/show/330582
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=79
2015-09-12 05:34:52 +00:00
e3a227655f
Accepting request 293451 from devel:tools
...
OBS-URL: https://build.opensuse.org/request/show/293451
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=91
2015-03-30 17:10:10 +00:00
Martin Pluskal
4897f1bd5a
- Update keyring with new key
...
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=78
2015-03-27 17:04:10 +00:00
Martin Pluskal
5fd69a1e68
Accepting request 293421 from home:posophe:branches:devel:tools
...
update
OBS-URL: https://build.opensuse.org/request/show/293421
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=77
2015-03-27 16:48:03 +00:00
02287603bb
Accepting request 286557 from devel:tools
...
1
OBS-URL: https://build.opensuse.org/request/show/286557
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=90
2015-02-20 11:42:57 +00:00
Tony Jones
572bfcbe48
Accepting request 286556 from home:pluskalm:branches:devel:tools
...
- Add gpg signature and keyring
- Cleanup spec file with spec-cleaner
- Add keyring and signature
- Cleanup spec file with spec-cleaner
OBS-URL: https://build.opensuse.org/request/show/286556
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=75
2015-02-17 21:16:31 +00:00
Stephan Kulow
f50e826756
Accepting request 249477 from devel:tools
...
1
OBS-URL: https://build.opensuse.org/request/show/249477
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=89
2014-09-17 19:23:23 +00:00
Tony Jones
e6e1e7e95c
Accepting request 249476 from home:jones_tony:branches:devel:tools
...
OBS-URL: https://build.opensuse.org/request/show/249476
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=73
2014-09-15 20:52:04 +00:00
Stephan Kulow
caa74e7410
Accepting request 234491 from devel:tools
...
- use %_rundir if available (forwarded request 234471 from coolo)
OBS-URL: https://build.opensuse.org/request/show/234491
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=87
2014-05-22 18:38:21 +00:00
Stephan Kulow
4bd731b286
Accepting request 234471 from home:coolo:branches:openSUSE:Factory
...
- use %_rundir if available
OBS-URL: https://build.opensuse.org/request/show/234471
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=71
2014-05-18 04:48:20 +00:00
Stephan Kulow
8a3cb2eeb5
Accepting request 232504 from devel:tools
...
(forwarded request 232503 from jones_tony)
OBS-URL: https://build.opensuse.org/request/show/232504
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=86
2014-05-06 12:03:28 +00:00
Tony Jones
e00aa353b8
Accepting request 232503 from home:jones_tony:branches:devel:tools
...
OBS-URL: https://build.opensuse.org/request/show/232503
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=69
2014-05-03 05:56:24 +00:00
Tomáš Chvátal
c6399a4803
Accepting request 211783 from devel:tools
...
(forwarded request 211782 from jones_tony)
OBS-URL: https://build.opensuse.org/request/show/211783
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=85
2013-12-22 18:37:58 +00:00
Tony Jones
6f46e39f76
Accepting request 211782 from home:jones_tony:branches:devel:tools
...
OBS-URL: https://build.opensuse.org/request/show/211782
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=67
2013-12-19 22:20:56 +00:00
Stephan Kulow
c1d30f88a4
Accepting request 207803 from devel:tools
...
OBS-URL: https://build.opensuse.org/request/show/207803
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=84
2013-11-22 18:09:48 +00:00
Tony Jones
7f950043e7
Accepting request 207802 from home:jones_tony:branches:devel:tools
...
OBS-URL: https://build.opensuse.org/request/show/207802
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=65
2013-11-21 00:31:50 +00:00
Tomáš Chvátal
ab0bdc123e
Accepting request 186514 from devel:tools
...
(forwarded request 186513 from jones_tony)
OBS-URL: https://build.opensuse.org/request/show/186514
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=82
2013-08-12 12:25:56 +00:00
Tony Jones
7594979649
Accepting request 186513 from home:jones_tony:branches:devel:tools
...
OBS-URL: https://build.opensuse.org/request/show/186513
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=63
2013-08-08 22:44:35 +00:00
Stephan Kulow
b5c7796a4e
Accepting request 176457 from devel:tools
...
Update version. (forwarded request 176456 from jones_tony)
OBS-URL: https://build.opensuse.org/request/show/176457
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=81
2013-05-27 08:04:54 +00:00
Tony Jones
9d57853118
Accepting request 176456 from home:jones_tony:branches:devel:tools
...
Update version.
OBS-URL: https://build.opensuse.org/request/show/176456
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=61
2013-05-24 02:08:00 +00:00
Stephan Kulow
9e9df098f3
Accepting request 157013 from devel:tools
...
(forwarded request 157012 from jones_tony)
OBS-URL: https://build.opensuse.org/request/show/157013
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=80
2013-03-03 20:09:18 +00:00
Tony Jones
e2d6fc4365
Accepting request 157012 from home:jones_tony:branches:devel:tools
...
OBS-URL: https://build.opensuse.org/request/show/157012
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=59
2013-03-01 16:19:47 +00:00
Stephan Kulow
346a412fb4
Accepting request 148160 from devel:tools
...
Verified against systemtap-testsuite w/ latest Factory. Feel free to leave in devel:tools if too late in release cycle.
OBS-URL: https://build.opensuse.org/request/show/148160
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=78
2013-01-12 13:54:05 +00:00
Tony Jones
d23249ff0b
Accepting request 148159 from home:jones_tony:branches:devel:tools
...
Update to 2.0. Verified against current Factory using systemtap-testsuite.
OBS-URL: https://build.opensuse.org/request/show/148159
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=57
2013-01-12 05:43:52 +00:00
Stephan Kulow
abc04b5dac
Accepting request 138503 from devel:tools
...
- Fix build with new systemd location. (forwarded request 138501 from fcrozat)
OBS-URL: https://build.opensuse.org/request/show/138503
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=77
2012-10-18 20:03:58 +00:00
f90f448826
Accepting request 138501 from openSUSE:Factory:Staging:Systemd
...
- Fix build with new systemd location.
OBS-URL: https://build.opensuse.org/request/show/138501
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=55
2012-10-17 12:55:26 +00:00
Stephan Kulow
9ddf3a5adc
Accepting request 129077 from devel:tools
...
Fix build with glibc 2.16 (forwarded request 129075 from a_jaeger)
OBS-URL: https://build.opensuse.org/request/show/129077
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=76
2012-07-30 07:47:09 +00:00
df88822268
Accepting request 129075 from home:a_jaeger:FactoryFix
...
Fix build with glibc 2.16
OBS-URL: https://build.opensuse.org/request/show/129075
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=53
2012-07-27 10:33:12 +00:00
Stephan Kulow
dc75c82faa
Accepting request 125474 from devel:tools
...
upgrade to 1.8 (forwarded request 125473 from jirislaby)
OBS-URL: https://build.opensuse.org/request/show/125474
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=75
2012-06-25 12:24:34 +00:00
7b50b9c758
Accepting request 125473 from home:jirislaby:branches:devel:tools
...
upgrade to 1.8
OBS-URL: https://build.opensuse.org/request/show/125473
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=51
2012-06-19 20:38:49 +00:00
Stephan Kulow
8e03a87e3a
Accepting request 125045 from devel:tools
...
- Add systemtap-automake112.patch: Fix build with automake 1.12:
+ Support for automatic de-ANSI-fication has been removed.
+ Patch taken from upstream, git commit id 5b2bc70.
Using the upstream patch now.
Note: the patch is >99% useless: Patching configure => it's autogenerated by autoreconf call anyway.
Most projects for this reason don't even carry the generated configure script in their git tree. (forwarded request 125044 from dimstar)
OBS-URL: https://build.opensuse.org/request/show/125045
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=73
2012-06-15 12:25:52 +00:00
16a8978084
Accepting request 125044 from home:dimstar:branches:devel:tools
...
- Add systemtap-automake112.patch: Fix build with automake 1.12:
+ Support for automatic de-ANSI-fication has been removed.
+ Patch taken from upstream, git commit id 5b2bc70.
Using the upstream patch now.
Note: the patch is >99% useless: Patching configure => it's autogenerated by autoreconf call anyway.
Most projects for this reason don't even carry the generated configure script in their git tree.
OBS-URL: https://build.opensuse.org/request/show/125044
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=49
2012-06-14 20:58:07 +00:00
Stephan Kulow
633ca67dc1
Accepting request 107593 from devel:tools
...
Automatic submission by obs-autosubmit
OBS-URL: https://build.opensuse.org/request/show/107593
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=72
2012-03-01 16:28:13 +00:00
Tony Jones
886da04a93
Accepting request 107476 from home:jones_tony:branches:devel:tools
...
OBS-URL: https://build.opensuse.org/request/show/107476
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=47
2012-02-28 23:33:45 +00:00
Stephan Kulow
238636b97b
Accepting request 101933 from devel:tools
...
- add automake too
OBS-URL: https://build.opensuse.org/request/show/101933
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=71
2012-01-31 09:22:32 +00:00
Stephan Kulow
a698759e69
- add automake too
...
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=44
2012-01-29 06:34:38 +00:00
Stephan Kulow
20c869faab
Accepting request 97577 from devel:tools
...
- add autoconf as buildrequire to avoid implicit dependency
OBS-URL: https://build.opensuse.org/request/show/97577
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=70
2011-12-27 17:38:49 +00:00
Stephan Kulow
1935f2268c
prepare_spec
...
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=41
2011-12-21 11:21:19 +00:00
Stephan Kulow
2ba91ca781
Accepting request 97562 from home:coolo:removeautoconf
...
add autoconf to buildrequires (forwarded request 97546 from coolo)
OBS-URL: https://build.opensuse.org/request/show/97562
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=40
2011-12-21 11:20:22 +00:00
edff7f0c7d
Accepting request 93304 from home:a_jaeger:branches:openSUSE:Factory
...
Create tmpfiles during new install.
OBS-URL: https://build.opensuse.org/request/show/93304
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=39
2011-11-24 13:00:00 +00:00
Stephan Kulow
af09b6b963
Accepting request 90883 from devel:tools
...
Resubmit with requested info on changes. I'm not putting the entire upstream changelog into the file, links to upstream release notes will be sufficient!
OBS-URL: https://build.opensuse.org/request/show/90883
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=69
2011-11-10 15:05:31 +00:00
Tony Jones
9c9e046f85
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=36
2011-11-09 17:58:22 +00:00
Tony Jones
c6e296972e
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=35
2011-11-09 06:22:01 +00:00
14aa29960a
Accepting request 89983 from home:jirislaby:branches:devel:tools
...
udpate to 1.6
OBS-URL: https://build.opensuse.org/request/show/89983
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=34
2011-11-02 19:17:40 +00:00
Tony Jones
1268408de2
- Fix for Bug 710291 - systemtap: fails rpmlint check non-ghost-in-var-run
...
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=33
2011-08-19 08:40:34 +00:00
Sascha Peilicke
ceeb36a9b0
Autobuild autoformatter for 72899
...
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=67
2011-06-08 07:08:50 +00:00
OBS User buildservice-autocommit
cb083f3ca2
Updating link to change in openSUSE:Factory/systemtap revision 67.0
...
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=af7adc036b065243422536cf01cd8cbe
2011-06-08 07:08:50 +00:00
Sascha Peilicke
4bad79eb2c
Accepting request 72899 from devel:tools
...
- fix file dependencies of examples and testsuite (forwarded request 72849 from coolo)
OBS-URL: https://build.opensuse.org/request/show/72899
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=66
2011-06-08 07:08:41 +00:00
Tony Jones
bbf3e43f64
Accepting request 72849 from home:coolo:branches:openSUSE:Factory
...
- fix file dependencies of examples and testsuite
OBS-URL: https://build.opensuse.org/request/show/72849
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=31
2011-06-07 18:19:23 +00:00
Sascha Peilicke
667bd9073c
Autobuild autoformatter for 70640
...
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=65
2011-05-19 09:04:22 +00:00
OBS User buildservice-autocommit
01f3d4995f
Updating link to change in openSUSE:Factory/systemtap revision 65.0
...
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=773d3b9dd7f3cfdc8ca242d21820cf7c
2011-05-19 09:04:22 +00:00
Sascha Peilicke
a0bcd8c5af
Accepting request 70640 from devel:tools
...
fix gcc 4.6 build for docs package (forwarded request 70412 from jirislaby)
OBS-URL: https://build.opensuse.org/request/show/70640
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=64
2011-05-19 09:04:14 +00:00
Stephan Kulow
4a4595c3ca
Accepting request 70412 from home:jirislaby:branches:devel:tools
...
fix gcc 4.6 build for docs package
OBS-URL: https://build.opensuse.org/request/show/70412
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=29
2011-05-19 08:30:27 +00:00
Sascha Peilicke
3a62f30eee
Autobuild autoformatter for 69301
...
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=63
2011-05-03 07:25:47 +00:00
OBS User buildservice-autocommit
c1e33f5f2b
Updating link to change in openSUSE:Factory/systemtap revision 63.0
...
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=15a007fd9d4a6f0e69cd2fd9918cf5a4
2011-05-03 07:25:47 +00:00
Sascha Peilicke
3ce5870150
Accepting request 69301 from devel:tools
...
Build fixes for gcc 4.6
OBS-URL: https://build.opensuse.org/request/show/69301
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=62
2011-05-03 07:25:33 +00:00
Tony Jones
8be12bb3ec
Accepting request 69252 from home:namtrac:branches:devel:tools
...
Fix gcc 4.6 compilation
OBS-URL: https://build.opensuse.org/request/show/69252
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=27
2011-05-02 18:32:56 +00:00
Sascha Peilicke
5f4a64bee2
Autobuild autoformatter for 64329
...
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=61
2011-03-17 09:24:19 +00:00
OBS User buildservice-autocommit
0ddb6e6e42
Updating link to change in openSUSE:Factory/systemtap revision 61.0
...
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=c327c341830d2f2a56a95241910e76e4
2011-03-17 09:24:19 +00:00
Sascha Peilicke
31b4ea2c80
Accepting request 64329 from devel:tools
...
Accepted submit request 64329 from user prusnak
OBS-URL: https://build.opensuse.org/request/show/64329
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=60
2011-03-17 09:24:12 +00:00
Pavol Rusnak
8d3aed0ee6
Accepting request 64204 from home:jirislaby:branches:devel:tools
...
OBS-URL: https://build.opensuse.org/request/show/64204
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=25
2011-03-16 15:58:07 +00:00
Ruediger Oertel
b45fb301cd
Accepting request 61732 from devel:tools
...
Accepted submit request 61732 from user jones_tony
OBS-URL: https://build.opensuse.org/request/show/61732
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=59
2011-02-18 11:02:29 +00:00
Tony Jones
030cacf896
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=23
2011-02-18 04:39:19 +00:00
Tony Jones
e7efb5386c
Accepting request 61688 from home:jones_tony:branches:devel:tools
...
Talked to coolo, tested with preload on x86_64 and i586/
OBS-URL: https://build.opensuse.org/request/show/61688
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=22
2011-02-18 00:53:03 +00:00
13b07cbeda
Autobuild autoformatter for 58238
...
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=57
2011-01-14 15:25:14 +00:00
922af87ff7
Accepting request 58238 from devel:tools
...
Accepted submit request 58238 from user trenn
OBS-URL: https://build.opensuse.org/request/show/58238
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=56
2011-01-14 15:25:05 +00:00
71b8c4302b
- Hopefully fix bnc#664105:
...
Kernel segfault in kernel/timer.c - comm: stapio (process) - related to preloadtrace.ko
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=20
2011-01-14 14:50:30 +00:00
OBS User autobuild
f43b33c964
Accepting request 48044 from devel:tools
...
Copy from devel:tools/systemtap based on submit request 48044 from user jones_tony
OBS-URL: https://build.opensuse.org/request/show/48044
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=55
2010-09-17 18:58:59 +00:00
Tony Jones
acbfe3b198
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=18
2010-09-13 19:18:34 +00:00
Tony Jones
215b8aea3d
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=17
2010-09-13 19:17:45 +00:00
Tony Jones
f6c4873017
Accepting request 48013 from home:coolo:branches:openSUSE:Factory
...
OBS-URL: https://build.opensuse.org/request/show/48013
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=16
2010-09-13 19:06:36 +00:00
Pavol Rusnak
8105eab822
Accepting request 47193 from home:azouhr:branches:devel:tools
...
OBS-URL: https://build.opensuse.org/request/show/47193
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=15
2010-09-06 13:26:32 +00:00
Tony Jones
c550a80693
Accepting request 47100 from home:jones_tony:branches:devel:tools
...
Copy from home:jones_tony:branches:devel:tools/systemtap via accept of submit request 47100 revision 2.
Request was accepted with message:
OBS-URL: https://build.opensuse.org/request/show/47100
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=14
2010-09-03 22:57:05 +00:00
OBS User autobuild
bf157528a5
Accepting request 43629 from devel:tools
...
Copy from devel:tools/systemtap based on submit request 43629 from user prusnak
OBS-URL: https://build.opensuse.org/request/show/43629
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=54
2010-07-23 19:25:51 +00:00
OBS User buildservice-autocommit
34f4a4cddb
Updating link to change in openSUSE:Factory/systemtap revision 54.0
...
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=de0e33def1217bcb3e8e3124893d8868
2010-07-23 19:25:51 +00:00
OBS User autobuild
2c4c28dfe3
Accepting request 43629 from devel:tools
...
checked in (request 43629)
OBS-URL: https://build.opensuse.org/request/show/43629
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=13
2010-07-23 19:25:50 +00:00
Pavol Rusnak
af8494b7bc
Accepting request 43603 from home:vuntz:branches:devel:tools
...
Copy from home:vuntz:branches:devel:tools/systemtap via accept of submit request 43603 revision 2.
Request was accepted with message:
Reviewed ok
OBS-URL: https://build.opensuse.org/request/show/43603
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=12
2010-07-21 13:53:52 +00:00
OBS User autobuild
819b9139f0
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=51
2010-03-18 15:31:16 +00:00
OBS User autobuild
7a01c10dd3
Accepting request 34653 from devel:tools
...
Copy from devel:tools/systemtap based on submit request 34653 from user jones_tony
OBS-URL: https://build.opensuse.org/request/show/34653
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=50
2010-03-12 00:39:21 +00:00
OBS User autobuild
b8cefb4b4d
Accepting request 34653 from devel:tools
...
checked in (request 34653)
OBS-URL: https://build.opensuse.org/request/show/34653
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=11
2010-03-12 00:39:20 +00:00
Tony Jones
5165295d2f
Accepting request 34652 from home:jones_tony:Factory
...
Copy from home:jones_tony:Factory/systemtap via accept of submit request 34652 revision 6.
Request was accepted with message:
OBS-URL: https://build.opensuse.org/request/show/34652
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=10
2010-03-12 00:04:39 +00:00
Stephan Kulow
f843c43c01
converted link to branch
...
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=9
2010-02-19 15:14:51 +00:00
OBS User autobuild
01651c963d
Accepting request 25953 from devel:tools
...
Copy from devel:tools/systemtap based on submit request 25953 from user jones_tony
OBS-URL: https://build.opensuse.org/request/show/25953
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=49
2009-12-08 11:19:13 +00:00
OBS User autobuild
a9cdc7d2f9
checked in
...
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=8
2009-12-08 11:19:12 +00:00
Tony Jones
c888d4e1d8
Accepting request 25952 from home:jones_tony:Factory
...
Copy from home:jones_tony:Factory/systemtap via accept of submit request 25952 revision 3.
Request was accepted with message:
OBS-URL: https://build.opensuse.org/request/show/25952
OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=7
2009-12-08 01:08:09 +00:00
OBS User autobuild
475dee4b96
Accepting request 17726 from devel:tools
...
Copy from devel:tools/systemtap based on submit request 17726 from user tiwai
OBS-URL: https://build.opensuse.org/request/show/17726
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=47
2009-08-13 22:00:08 +00:00
OBS User unknown
645d0014de
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=46
2009-07-23 14:26:04 +00:00
OBS User unknown
a0c763a6fc
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=45
2009-06-19 23:28:16 +00:00
OBS User unknown
0c9cabfc8b
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=44
2009-05-28 00:18:25 +00:00
OBS User unknown
5a3815edbf
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=43
2009-05-20 12:42:39 +00:00
OBS User unknown
04df6affb3
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=42
2009-05-20 10:03:04 +00:00
OBS User unknown
8e9ae4f2b9
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=41
2009-05-08 15:11:33 +00:00
OBS User unknown
208b23a622
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=40
2009-02-19 22:53:20 +00:00
OBS User unknown
2ed307abde
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=39
2009-02-12 21:57:24 +00:00
OBS User unknown
af4f66734a
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=38
2009-02-08 03:39:28 +00:00
OBS User unknown
020294aa90
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=37
2009-02-03 23:39:48 +00:00
OBS User unknown
8575ab72e5
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=36
2009-01-29 22:53:16 +00:00
OBS User unknown
cf7792af6b
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=35
2009-01-16 00:54:25 +00:00
OBS User unknown
d9776c22dd
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=34
2009-01-12 17:22:01 +00:00
OBS User unknown
77d0af8a35
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=33
2008-12-19 14:18:43 +00:00
OBS User unknown
9ad3c40615
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=32
2008-12-16 16:49:03 +00:00
OBS User unknown
2590d952ed
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=31
2008-12-15 14:08:38 +00:00
OBS User unknown
73a610e6a9
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=30
2008-12-05 14:49:58 +00:00
OBS User unknown
b094a811d3
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=29
2008-11-21 14:53:24 +00:00
OBS User unknown
a06d145de6
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=28
2008-11-04 16:58:25 +00:00
OBS User unknown
86cf4c3078
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=27
2008-09-13 10:19:36 +00:00
OBS User unknown
7db7d1e059
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=26
2008-08-14 00:38:19 +00:00
OBS User unknown
a9c66641d5
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=25
2008-06-25 21:56:44 +00:00
OBS User unknown
e288e9837b
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=24
2008-03-14 16:58:07 +00:00
OBS User unknown
bba61bc3c8
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=23
2008-01-30 20:34:34 +00:00
OBS User unknown
39ff8fe8c3
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=22
2008-01-12 02:27:42 +00:00
OBS User unknown
5352411cc1
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=21
2007-11-19 16:37:06 +00:00
OBS User unknown
0bca070259
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=20
2007-10-25 23:57:13 +00:00
OBS User unknown
fb8dc28cdb
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=19
2007-10-25 00:29:49 +00:00
OBS User unknown
318b6d25d6
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=18
2007-10-22 15:52:18 +00:00
OBS User unknown
d3d86ab787
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=17
2007-08-15 18:37:22 +00:00
OBS User unknown
5970f62fc2
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=16
2007-07-16 16:22:32 +00:00
OBS User unknown
99688baa6c
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=15
2007-07-04 21:57:08 +00:00
OBS User unknown
a44f9f8229
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=14
2007-06-06 16:18:07 +00:00
OBS User unknown
c1179b039d
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=13
2007-05-22 16:34:24 +00:00
OBS User unknown
d7a294e2d7
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=12
2007-05-21 16:48:08 +00:00
OBS User unknown
7afc3a6b8b
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=11
2007-04-24 20:38:33 +00:00
OBS User unknown
006c905a69
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=10
2007-03-20 00:19:02 +00:00
OBS User unknown
c899d74a39
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=9
2007-03-09 00:51:26 +00:00
OBS User unknown
eff69407bd
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=8
2007-03-07 21:50:43 +00:00
OBS User unknown
674365e287
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=7
2007-02-26 12:25:47 +00:00
OBS User unknown
02b58a64c9
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=6
2007-02-25 22:39:54 +00:00
OBS User unknown
10c188eeb6
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=5
2007-02-15 17:08:01 +00:00
OBS User unknown
e6492ee021
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=4
2007-02-06 23:34:56 +00:00
OBS User unknown
4e7f4f3f2f
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=3
2007-02-02 14:47:32 +00:00
OBS User unknown
a1d76e051d
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=2
2007-01-30 17:08:10 +00:00
OBS User unknown
e01fc2ffe4
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=1
2007-01-10 00:58:04 +00:00