Wipe out references to defunct sourceforge
The old location of strace-devel mailing list is defunct, it used to lose email messages and sometimes did not deliver any mails for days. The mailing list has been moved to strace-devel@lists.strace.io. * CREDITS.in: Update the mailing list address. (Zhang Le): Update email address. * README: Update the mailing list address. * README.md: Likewise. * configure.ac (AC_INIT): Likewise. * strace.1.in (.SH REPORTING BUGS): Likewise. * strace-log-merge.1.in (.SH REPORTING BUGS): Likewise. * sched.c (SYS_FUNC(sched_getattr)): Update the mailing list reference. * tests/scno_tampering.sh: Likewise. * qemu_multiarch_testing/README: Update git repository address. * NEWS: Mention the change of the mailing list address. Closes: https://github.com/strace/strace/issues/38
This commit is contained in:
parent
6ebf6c4f9e
commit
003c02745f
@ -8,9 +8,9 @@ These people have contributed to strace. Some have reported problems, others
|
|||||||
have contributed improvements to the documentation, actual code, provided
|
have contributed improvements to the documentation, actual code, provided
|
||||||
information, provided resources, or helped to port strace to new systems.
|
information, provided resources, or helped to port strace to new systems.
|
||||||
Those contributions are described in the version control logs and ChangeLog-CVS
|
Those contributions are described in the version control logs and ChangeLog-CVS
|
||||||
file. If your name has been left out, if you'd rather not be listed, or if
|
file. If your name has been left out, if you'd rather not be listed, or
|
||||||
you'd prefer a different address be used, please send a note to the
|
if you'd prefer a different address be used, please send a note to the
|
||||||
strace-devel@lists.sourceforge.net mailing list.
|
strace-devel@lists.strace.io mailing list.
|
||||||
|
|
||||||
##<
|
##<
|
||||||
## There is no need to list here any name that appears as an Author in
|
## There is no need to list here any name that appears as an Author in
|
||||||
@ -83,4 +83,4 @@ Tommi Rantala ext-tommi.1.rantala@nokia.com
|
|||||||
Topi Miettinen Topi.Miettinen@nic.fi
|
Topi Miettinen Topi.Miettinen@nic.fi
|
||||||
Xiaoning Ding dingxn@gmail.com
|
Xiaoning Ding dingxn@gmail.com
|
||||||
Zach Brown zach.brown@oracle.com
|
Zach Brown zach.brown@oracle.com
|
||||||
Zhang Le zhilg@users.sourceforge.net
|
Zhang Le robert.zhangle@gmail.com
|
||||||
|
3
NEWS
3
NEWS
@ -1,6 +1,9 @@
|
|||||||
Noteworthy changes in release ?.?? (????-??-??)
|
Noteworthy changes in release ?.?? (????-??-??)
|
||||||
===============================================
|
===============================================
|
||||||
|
|
||||||
|
* Changes in infrastructure
|
||||||
|
* The mailing list was moved to strace-devel@lists.strace.io.
|
||||||
|
|
||||||
* Bug fixes
|
* Bug fixes
|
||||||
* Fixed build on m68k.
|
* Fixed build on m68k.
|
||||||
|
|
||||||
|
2
README
2
README
@ -11,7 +11,7 @@ The project's homepage is at
|
|||||||
https://strace.io
|
https://strace.io
|
||||||
|
|
||||||
strace has a mailing list:
|
strace has a mailing list:
|
||||||
strace-devel@lists.sourceforge.net.
|
strace-devel@lists.strace.io
|
||||||
|
|
||||||
System requirements:
|
System requirements:
|
||||||
* Linux kernel >= 2.6.18 is recommended. Older versions might still work
|
* Linux kernel >= 2.6.18 is recommended. Older versions might still work
|
||||||
|
@ -9,7 +9,7 @@ See the file [NEWS](NEWS) for information on what has changed in recent versions
|
|||||||
|
|
||||||
Please read the file [INSTALL-git](INSTALL-git.md) for installation instructions.
|
Please read the file [INSTALL-git](INSTALL-git.md) for installation instructions.
|
||||||
|
|
||||||
The user discussion and development of strace take place on [the strace mailing list](https://lists.sourceforge.net/lists/listinfo/strace-devel) -- everyone is welcome to post bug reports, feature requests, comments and patches to strace-devel@lists.sourceforge.net. The mailing list archives are available at https://sourceforge.net/p/strace/mailman/strace-devel/ and other archival sites.
|
The user discussion and development of strace take place on [the strace mailing list](https://lists.strace.io/mailman/listinfo/strace-devel) -- everyone is welcome to post bug reports, feature requests, comments and patches to strace-devel@lists.strace.io. The mailing list archives are available at https://lists.strace.io/pipermail/strace-devel/ and other archival sites.
|
||||||
|
|
||||||
The GIT repository of strace is available at [GitHub](https://github.com/strace/strace/) and [GitLab](https://gitlab.com/strace/strace/).
|
The GIT repository of strace is available at [GitHub](https://github.com/strace/strace/) and [GitLab](https://gitlab.com/strace/strace/).
|
||||||
|
|
||||||
|
@ -33,7 +33,7 @@
|
|||||||
AC_PREREQ(2.57)
|
AC_PREREQ(2.57)
|
||||||
AC_INIT([strace],
|
AC_INIT([strace],
|
||||||
m4_esyscmd([./git-version-gen .tarball-version]),
|
m4_esyscmd([./git-version-gen .tarball-version]),
|
||||||
[strace-devel@lists.sourceforge.net],
|
[strace-devel@lists.strace.io],
|
||||||
[strace],
|
[strace],
|
||||||
[https://strace.io])
|
[https://strace.io])
|
||||||
m4_define([copyright_year], m4_esyscmd([./copyright-year-gen .year]))
|
m4_define([copyright_year], m4_esyscmd([./copyright-year-gen .year]))
|
||||||
|
@ -2,8 +2,7 @@ How to test strace build using Aboriginal Linux's system images.
|
|||||||
|
|
||||||
* Put a autoconf'ed strace source tree into hdc.dir/strace dir.
|
* Put a autoconf'ed strace source tree into hdc.dir/strace dir.
|
||||||
For example, this should work:
|
For example, this should work:
|
||||||
git clone git://strace.git.sourceforge.net/gitroot/strace/strace &&
|
git clone https://github.com/strace/strace && cd strace && ./bootstrap
|
||||||
cd strace && ./bootstrap
|
|
||||||
|
|
||||||
* Run ./make-hdc-img.sh: it will generate ext2 image file,
|
* Run ./make-hdc-img.sh: it will generate ext2 image file,
|
||||||
hdc.img, from hdc.dir/* data. This requires root for loop mount.
|
hdc.img, from hdc.dir/* data. This requires root for loop mount.
|
||||||
|
2
sched.c
2
sched.c
@ -183,7 +183,7 @@ SYS_FUNC(sched_getattr)
|
|||||||
* Due to a subtle gcc bug that leads to miscompiled aarch64
|
* Due to a subtle gcc bug that leads to miscompiled aarch64
|
||||||
* kernels, the 3rd argument of sched_getattr is not quite 32-bit
|
* kernels, the 3rd argument of sched_getattr is not quite 32-bit
|
||||||
* as on other architectures. For more details see
|
* as on other architectures. For more details see
|
||||||
* https://sourceforge.net/p/strace/mailman/message/35721703/
|
* https://lists.strace.io/pipermail/strace-devel/2017-March/006085.html
|
||||||
*/
|
*/
|
||||||
if (syserror(tcp))
|
if (syserror(tcp))
|
||||||
print_abnormal_hi(tcp->u_arg[2]);
|
print_abnormal_hi(tcp->u_arg[2]);
|
||||||
|
@ -140,7 +140,7 @@ Problems with
|
|||||||
.B strace-log-merge
|
.B strace-log-merge
|
||||||
should be reported to the
|
should be reported to the
|
||||||
.B strace
|
.B strace
|
||||||
mailing list at <strace\-devel@lists.sourceforge.net>.
|
mailing list at <strace\-devel@lists.strace.io>.
|
||||||
.\"
|
.\"
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
.BR strace (1)
|
.BR strace (1)
|
||||||
|
@ -1082,7 +1082,7 @@ Problems with
|
|||||||
.B strace
|
.B strace
|
||||||
should be reported to the
|
should be reported to the
|
||||||
.B strace
|
.B strace
|
||||||
mailing list at <strace\-devel@lists.sourceforge.net>.
|
mailing list at <strace\-devel@lists.strace.io>.
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
.BR strace-log-merge (1),
|
.BR strace-log-merge (1),
|
||||||
.BR ltrace (1),
|
.BR ltrace (1),
|
||||||
|
@ -50,7 +50,7 @@ case "$STRACE_ARCH" in
|
|||||||
require_min_kernel_version_or_skip 4.5 ;;
|
require_min_kernel_version_or_skip 4.5 ;;
|
||||||
mips)
|
mips)
|
||||||
# Only the native ABI is supported by the kernel properly, see
|
# Only the native ABI is supported by the kernel properly, see
|
||||||
# https://sourceforge.net/p/strace/mailman/message/35587571/
|
# https://lists.strace.io/pipermail/strace-devel/2017-January/005896.html
|
||||||
msg_prefix="mips $MIPS_ABI scno tampering does not work"
|
msg_prefix="mips $MIPS_ABI scno tampering does not work"
|
||||||
uname_m="$(uname -m)"
|
uname_m="$(uname -m)"
|
||||||
case "$MIPS_ABI:$uname_m" in
|
case "$MIPS_ABI:$uname_m" in
|
||||||
|
Loading…
x
Reference in New Issue
Block a user