View previous topic :: View next topic |
Author |
Message |
vcmota Guru
![Guru Guru](/images/ranks/rank_rect_3.gif)
Joined: 19 Jun 2017 Posts: 387
|
Posted: Fri Feb 07, 2025 12:39 pm Post subject: can't merge app-emulation/xen-tools |
|
|
I am trying to merge app-emulation/xen-tools but it is failing due to an error during compilation of sys-devel/dev86. I google it and found it is related to a bug filed more than 2 years ago, here. However it seems that it is not solved yet. So that means no one is using app-emulation/xen-tools since then?
Here is the error message:
Code: |
~> sudo cat /var/tmp/portage/sys-devel/dev86-0.16.21-r3/temp/build.log
Senha:
* Package: sys-devel/dev86-0.16.21-r3:0
* Repository: gentoo
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux
* FEATURES: network-sandbox nostrip preserve-libs sandbox selinux sesandbox splitdebug userpriv usersandbox
!!! Failed to set new SELinux execution context. Is your current SELinux context allowed to run Portage?
>>> Unpacking source...
>>> Unpacking Dev86src-0.16.21.tar.gz to /var/tmp/portage/sys-devel/dev86-0.16.21-r3/work
>>> Source unpacked in /var/tmp/portage/sys-devel/dev86-0.16.21-r3/work
!!! Failed to set new SELinux execution context. Is your current SELinux context allowed to run Portage?
>>> Preparing source in /var/tmp/portage/sys-devel/dev86-0.16.21-r3/work/dev86-0.16.21 ...
* Applying dev86-pic.patch ... [ ok ]
* Applying dev86-0.16.19-fortify.patch ... [ ok ]
* Applying dev86-0.16.21-non-void-return-clang.patch ... [ ok ]
* Applying dev86-0.16.21-make.patch ... [ ok ]
* Applying dev86-0.16.21-void-return-check-msdos-clang-fix.patch ... [ ok ]
* Not compiling elksemu on amd64
>>> Source prepared.
!!! Failed to set new SELinux execution context. Is your current SELinux context allowed to run Portage?
>>> Configuring source in /var/tmp/portage/sys-devel/dev86-0.16.21-r3/work/dev86-0.16.21 ...
>>> Source configured.
!!! Failed to set new SELinux execution context. Is your current SELinux context allowed to run Portage?
>>> Compiling source in /var/tmp/portage/sys-devel/dev86-0.16.21-r3/work/dev86-0.16.21 ...
make -j5 -j1 CC=x86_64-pc-linux-gnu-gcc LIBDIR=/usr/lib64/bcc INCLDIR=/usr/lib64/bcc all
make[1]: Entering directory '/var/tmp/portage/sys-devel/dev86-0.16.21-r3/work/dev86-0.16.21'
x86_64-pc-linux-gnu-gcc -O -DGNUMAKE -Wl,-O1 -Wl,--as-needed -Wl,-z,pack-relative-relocs -o ifdefg ifdef.c
./ifdefg -MU makefile.in >tmp.mak
echo > tmp.sed
[ "/usr/bin" != "//bin" ] || echo >> tmp.sed "s:%BINDIR%:/bin:"
[ "/usr/lib64/bcc" != "//lib/bcc" ] || echo >> tmp.sed "s:%LIBDIR%:/lib:"
[ "/usr/lib64/bcc" != "//lib/bcc" ] || echo >> tmp.sed "s:%INCLDIR%:/usr:"
[ "/usr/bin" != "//bin" ] || echo >> tmp.sed "s:%ASLDDIR%:/bin:"
[ "/usr/man" != "//man" ] || echo >> tmp.sed "s:%MANDIR%:/usr/man:"
echo >> tmp.sed "s:%PREFIX%:/usr:"
echo >> tmp.sed "s:%BINDIR%:/usr/bin:"
echo >> tmp.sed "s:%INCLDIR%:/usr/lib64/bcc:"
echo >> tmp.sed "s:%LIBDIR%:/usr/lib64/bcc:"
echo >> tmp.sed "s:%ASLDDIR%:/usr/bin:"
echo >> tmp.sed "s:%MANDIR%:/usr/man:"
echo >> tmp.sed "s:%ELKSSRC%:/usr/src/elks:"
echo >> tmp.sed "s:%CC%:x86_64-pc-linux-gnu-gcc:"
echo >> tmp.sed "s:%CFLAGS%:-O:"
echo >> tmp.sed "s:%LDFLAGS%:-Wl,-O1 -Wl,--as-needed -Wl,-z,pack-relative-relocs:"
sed -f tmp.sed < tmp.mak > make.tmp
mv -f make.tmp make.fil
PATH="`pwd`/bin:$PATH" make -f make.fil VERSION=0.16.21 TOPDIR=`pwd` all
make[2]: Entering directory '/var/tmp/portage/sys-devel/dev86-0.16.21-r3/work/dev86-0.16.21'
make -C libc .config.dir
make[3]: Entering directory '/var/tmp/portage/sys-devel/dev86-0.16.21-r3/work/dev86-0.16.21/libc'
sh Config_sh
Using default configuration
make[3]: Leaving directory '/var/tmp/portage/sys-devel/dev86-0.16.21-r3/work/dev86-0.16.21/libc'
echo '#define VERSION "'"0.16.21"'"' > bcc/version.h
echo '#define VERSION "'"0.16.21"'"' > as/version.h
echo '#define VERSION "'"0.16.21"'"' > bootblocks/version.h
echo '#define VERSION "'"0.16.21"'"' > ld/version.h
VER=0.16.21 ; \
echo "#define VER_MAJ ${VER%%.*}" >> bcc/version.h ; \
VER="${VER#*.}" ; \
echo "#define VER_MIN ${VER%.*}" >> bcc/version.h ; \
echo "#define VER_PAT ${VER#*.}" >> bcc/version.h
make -C bcc CC='x86_64-pc-linux-gnu-gcc' CFLAGS=' -O2 -fno-strict-aliasing' LDFLAGS='' PREFIX=/usr LIBDIR='/usr/lib64/bcc' BINDIR='/usr/bin' ANSI='' BCCARCH='' bcc ncc bcc-cc1
make[3]: Entering directory '/var/tmp/portage/sys-devel/dev86-0.16.21-r3/work/dev86-0.16.21/bcc'
x86_64-pc-linux-gnu-gcc -O2 -fno-strict-aliasing -DLOCALPREFIX=/usr -DBINDIR=/usr/bin -DDEFARCH=0 bcc.c -o bcc
bcc.c: In function ‘command_reset’:
bcc.c:668:35: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘long int’ [-Wformat=]
668 | fprintf(stderr, "PATH%d=%s\n", prefix-exec_prefixs, buf);
| ~^ ~~~~~~~~~~~~~~~~~~~
| | |
| int long int
| %ld
x86_64-pc-linux-gnu-gcc -O2 -fno-strict-aliasing -DLOCALPREFIX= -DDEFARCH=0 bcc.c -o ncc
bcc.c: In function ‘command_reset’:
bcc.c:668:35: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘long int’ [-Wformat=]
668 | fprintf(stderr, "PATH%d=%s\n", prefix-exec_prefixs, buf);
| ~^ ~~~~~~~~~~~~~~~~~~~
| | |
| int long int
| %ld
x86_64-pc-linux-gnu-gcc -O2 -fno-strict-aliasing -c bcc-cc1.c
x86_64-pc-linux-gnu-gcc -O2 -fno-strict-aliasing -c codefrag.c
x86_64-pc-linux-gnu-gcc -O2 -fno-strict-aliasing -c dbnode.c
x86_64-pc-linux-gnu-gcc -O2 -fno-strict-aliasing -c declare.c
x86_64-pc-linux-gnu-gcc -O2 -fno-strict-aliasing -c express.c
x86_64-pc-linux-gnu-gcc -O2 -fno-strict-aliasing -c exptree.c
x86_64-pc-linux-gnu-gcc -O2 -fno-strict-aliasing -c floatop.c
x86_64-pc-linux-gnu-gcc -O2 -fno-strict-aliasing -c function.c
x86_64-pc-linux-gnu-gcc -O2 -fno-strict-aliasing -c gencode.c
x86_64-pc-linux-gnu-gcc -O2 -fno-strict-aliasing -c genloads.c
x86_64-pc-linux-gnu-gcc -O2 -fno-strict-aliasing -c glogcode.c
x86_64-pc-linux-gnu-gcc -O2 -fno-strict-aliasing -c hardop.c
x86_64-pc-linux-gnu-gcc -O2 -fno-strict-aliasing -c input.c
x86_64-pc-linux-gnu-gcc -O2 -fno-strict-aliasing -c label.c
x86_64-pc-linux-gnu-gcc -O2 -fno-strict-aliasing -c loadexp.c
x86_64-pc-linux-gnu-gcc -O2 -fno-strict-aliasing -c longop.c
x86_64-pc-linux-gnu-gcc -O2 -fno-strict-aliasing -c output.c
output.c: In function ‘flushout’:
output.c:220:13: warning: ignoring return value of ‘write’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
220 | write(2, "output file error\n", 18);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
x86_64-pc-linux-gnu-gcc -O2 -fno-strict-aliasing -c preproc.c
x86_64-pc-linux-gnu-gcc -O2 -fno-strict-aliasing -c preserve.c
x86_64-pc-linux-gnu-gcc -O2 -fno-strict-aliasing -c scan.c
x86_64-pc-linux-gnu-gcc -O2 -fno-strict-aliasing -c softop.c
x86_64-pc-linux-gnu-gcc -O2 -fno-strict-aliasing -c state.c
x86_64-pc-linux-gnu-gcc -O2 -fno-strict-aliasing -c table.c
x86_64-pc-linux-gnu-gcc -O2 -fno-strict-aliasing -c type.c
x86_64-pc-linux-gnu-gcc -O2 -fno-strict-aliasing -c assign.c
x86_64-pc-linux-gnu-gcc -O2 -fno-strict-aliasing -c hashcmd.c
x86_64-pc-linux-gnu-gcc -O2 -fno-strict-aliasing -c debug.c
x86_64-pc-linux-gnu-gcc -O2 -fno-strict-aliasing -c dbprintf.c
dbprintf.c: In function ‘dbprintf’:
dbprintf.c:24:9: error: implicit declaration of function ‘vdbprintf’; did you mean ‘dbprintf’? [-Wimplicit-function-declaration]
24 | rv = vdbprintf(fmt,ptr);
| ^~~~~~~~~
| dbprintf
dbprintf.c: In function ‘putch’:
dbprintf.c:30:60: error: implicit declaration of function ‘write’ [-Wimplicit-function-declaration]
30 | static void putch(int ch) { static char buf[2]; *buf = ch; write(2,buf,1); }
| ^~~~~
dbprintf.c: In function ‘vdbprintf’:
dbprintf.c:110:20: error: implicit declaration of function ‘strlen’ [-Wimplicit-function-declaration]
110 | c = strlen(cp);
| ^~~~~~
dbprintf.c:7:1: note: include ‘<string.h>’ or provide a declaration of ‘strlen’
6 | #include <stdarg.h>
+++ |+#include <string.h>
7 | #define va_strt va_start
dbprintf.c:110:20: warning: incompatible implicit declaration of built-in function ‘strlen’ [-Wbuiltin-declaration-mismatch]
110 | c = strlen(cp);
| ^~~~~~
dbprintf.c:110:20: note: include ‘<string.h>’ or provide a declaration of ‘strlen’
make[3]: *** [Makefile:48: dbprintf.o] Error 1
make[3]: Leaving directory '/var/tmp/portage/sys-devel/dev86-0.16.21-r3/work/dev86-0.16.21/bcc'
make[2]: *** [make.fil:156: bcc86] Error 2
make[2]: Leaving directory '/var/tmp/portage/sys-devel/dev86-0.16.21-r3/work/dev86-0.16.21'
make[1]: *** [Makefile:26: all] Error 2
make[1]: Leaving directory '/var/tmp/portage/sys-devel/dev86-0.16.21-r3/work/dev86-0.16.21'
make: *** [GNUmakefile:6: all] Error 2
* ERROR: sys-devel/dev86-0.16.21-r3::gentoo failed (compile phase):
* emake failed
*
* If you need support, post the output of `emerge --info '=sys-devel/dev86-0.16.21-r3::gentoo'`,
* the complete build log and the output of `emerge -pqv '=sys-devel/dev86-0.16.21-r3::gentoo'`.
* The complete build log is located at '/var/tmp/portage/sys-devel/dev86-0.16.21-r3/temp/build.log'.
* The ebuild environment file is located at '/var/tmp/portage/sys-devel/dev86-0.16.21-r3/temp/environment'.
* Working directory: '/var/tmp/portage/sys-devel/dev86-0.16.21-r3/work/dev86-0.16.21'
* S: '/var/tmp/portage/sys-devel/dev86-0.16.21-r3/work/dev86-0.16.21'
~>
|
Thank you all!
Last edited by vcmota on Fri Feb 07, 2025 5:19 pm; edited 2 times in total |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
fedeliallalinea Administrator
![Administrator Administrator](/images/ranks/rank-admin.gif)
![](images/avatars/161653968057192eb39329f.jpg)
Joined: 08 Mar 2003 Posts: 31470 Location: here
|
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
vcmota Guru
![Guru Guru](/images/ranks/rank_rect_3.gif)
Joined: 19 Jun 2017 Posts: 387
|
Posted: Fri Feb 07, 2025 2:00 pm Post subject: |
|
|
It worked! Thank you! |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
vcmota Guru
![Guru Guru](/images/ranks/rank_rect_3.gif)
Joined: 19 Jun 2017 Posts: 387
|
Posted: Fri Feb 07, 2025 5:13 pm Post subject: |
|
|
Well well well... It is now xen-tool itself that won't compile, here is the final part of the log:
Code: |
"x86_64-pc-linux-gnu-gcc" -MMD -MF /var/tmp/portage/app-emulation/xen-tools-4.18.4_pre1/work/xen-4.18.3/tools/firmware/ovmf-dir-remote/Build/OvmfXen/RELEASE_GCC5/X64/CryptoPkg/Library/OpensslLib/OpensslLibCrypto/OUTPUT/openssl/crypto/bio/bss_acpt.obj.deps @/var/tmp/portage/app-emulation/xen-tools-4.18.4_pre1/work/xen-4.18.3/tools/firmware/ovmf-dir-remote/Build/OvmfXen/RELEASE_GCC5/X64/CryptoPkg/Library/OpensslLib/OpensslLibCrypto/OUTPUT/cc_resp.txt -c -o /var/tmp/portage/app-emulation/xen-tools-4.18.4_pre1/work/xen-4.18.3/tools/firmware/ovmf-dir-remote/Build/OvmfXen/RELEASE_GCC5/X64/CryptoPkg/Library/OpensslLib/OpensslLibCrypto/OUTPUT/openssl/crypto/bio/bss_acpt.obj /var/tmp/portage/app-emulation/xen-tools-4.18.4_pre1/work/xen-4.18.3/tools/firmware/ovmf-dir-remote/CryptoPkg/Library/OpensslLib/openssl/crypto/bio/bss_acpt.c
GenFfs -t EFI_FV_FILETYPE_DRIVER -g 240612B7-A063-11d4-9A3A-0090273FC14D -o /var/tmp/portage/app-emulation/xen-tools-4.18.4_pre1/work/xen-4.18.3/tools/firmware/ovmf-dir-remote/Build/OvmfXen/RELEASE_GCC5/FV/Ffs/240612B7-A063-11d4-9A3A-0090273FC14DUsbBusDxe/240612B7-A063-11d4-9A3A-0090273FC14D.ffs -oi /var/tmp/portage/app-emulation/xen-tools-4.18.4_pre1/work/xen-4.18.3/tools/firmware/ovmf-dir-remote/Build/OvmfXen/RELEASE_GCC5/FV/Ffs/240612B7-A063-11d4-9A3A-0090273FC14DUsbBusDxe/240612B7-A063-11d4-9A3A-0090273FC14DSEC2.1.pe32 -oi /var/tmp/portage/app-emulation/xen-tools-4.18.4_pre1/work/xen-4.18.3/tools/firmware/ovmf-dir-remote/Build/OvmfXen/RELEASE_GCC5/FV/Ffs/240612B7-A063-11d4-9A3A-0090273FC14DUsbBusDxe/240612B7-A063-11d4-9A3A-0090273FC14DSEC3.ui -oi /var/tmp/portage/app-emulation/xen-tools-4.18.4_pre1/work/xen-4.18.3/tools/firmware/ovmf-dir-remote/Build/OvmfXen/RELEASE_GCC5/FV/Ffs/240612B7-A063-11d4-9A3A-0090273FC14DUsbBusDxe/240612B7-A063-11d4-9A3A-0090273FC14DSEC4.ver
/usr/lib/gcc/x86_64-pc-linux-gnu/14/../../../../x86_64-pc-linux-gnu/bin/ld: read-only segment has dynamic relocations
collect2: error: ld returned 1 exit status
make[7]: *** [GNUmakefile:387: /var/tmp/portage/app-emulation/xen-tools-4.18.4_pre1/work/xen-4.18.3/tools/firmware/ovmf-dir-remote/Build/OvmfXen/RELEASE_GCC5/X64/UefiCpuPkg/CpuMpPei/CpuMpPei/DEBUG/CpuMpPei.dll] Error 1
make[7]: Leaving directory '/var/tmp/portage/app-emulation/xen-tools-4.18.4_pre1/work/xen-4.18.3/tools/firmware/ovmf-dir-remote/Build/OvmfXen/RELEASE_GCC5/X64/UefiCpuPkg/CpuMpPei/CpuMpPei'
build.py...
: error 7000: Failed to execute command
make tbuild [/var/tmp/portage/app-emulation/xen-tools-4.18.4_pre1/work/xen-4.18.3/tools/firmware/ovmf-dir-remote/Build/OvmfXen/RELEASE_GCC5/X64/UefiCpuPkg/CpuMpPei/CpuMpPei]
build.py...
: error 7000: Failed to execute command
make tbuild [/var/tmp/portage/app-emulation/xen-tools-4.18.4_pre1/work/xen-4.18.3/tools/firmware/ovmf-dir-remote/Build/OvmfXen/RELEASE_GCC5/X64/MdeModulePkg/Core/Dxe/DxeMain]
build.py...
: error F002: Failed to build module
/var/tmp/portage/app-emulation/xen-tools-4.18.4_pre1/work/xen-4.18.3/tools/firmware/ovmf-dir-remote/UefiCpuPkg/CpuMpPei/CpuMpPei.inf [X64, GCC5, RELEASE]
- Failed -
Build end time: 11:02:22, Feb.07 2025
Build total time: 00:01:09
make[6]: *** [Makefile:20: build] Error 1
make[6]: Leaving directory '/var/tmp/portage/app-emulation/xen-tools-4.18.4_pre1/work/xen-4.18.3/tools/firmware/ovmf-dir-remote'
make[5]: *** [/var/tmp/portage/app-emulation/xen-tools-4.18.4_pre1/work/xen-4.18.3/tools/firmware/../../tools/Rules.mk:203: subdir-all-ovmf-dir] Error 2
make[5]: Leaving directory '/var/tmp/portage/app-emulation/xen-tools-4.18.4_pre1/work/xen-4.18.3/tools/firmware'
make[4]: *** [/var/tmp/portage/app-emulation/xen-tools-4.18.4_pre1/work/xen-4.18.3/tools/firmware/../../tools/Rules.mk:198: subdirs-all] Error 2
make[4]: Leaving directory '/var/tmp/portage/app-emulation/xen-tools-4.18.4_pre1/work/xen-4.18.3/tools/firmware'
make[3]: *** [Makefile:37: all] Error 2
make[3]: Leaving directory '/var/tmp/portage/app-emulation/xen-tools-4.18.4_pre1/work/xen-4.18.3/tools/firmware'
make[2]: *** [/var/tmp/portage/app-emulation/xen-tools-4.18.4_pre1/work/xen-4.18.3/tools/../tools/Rules.mk:203: subdir-all-firmware] Error 2
make[2]: Leaving directory '/var/tmp/portage/app-emulation/xen-tools-4.18.4_pre1/work/xen-4.18.3/tools'
make[1]: *** [/var/tmp/portage/app-emulation/xen-tools-4.18.4_pre1/work/xen-4.18.3/tools/../tools/Rules.mk:198: subdirs-all] Error 2
make[1]: Leaving directory '/var/tmp/portage/app-emulation/xen-tools-4.18.4_pre1/work/xen-4.18.3/tools'
make: *** [Makefile:63: build-tools] Error 2
* ERROR: app-emulation/xen-tools-4.18.4_pre1::gentoo failed (compile phase):
* emake failed
*
* If you need support, post the output of `emerge --info '=app-emulation/xen-tools-4.18.4_pre1::gentoo'`,
* the complete build log and the output of `emerge -pqv '=app-emulation/xen-tools-4.18.4_pre1::gentoo'`.
* The complete build log is located at '/var/tmp/portage/app-emulation/xen-tools-4.18.4_pre1/temp/build.log'.
* The ebuild environment file is located at '/var/tmp/portage/app-emulation/xen-tools-4.18.4_pre1/temp/environment'.
* Working directory: '/var/tmp/portage/app-emulation/xen-tools-4.18.4_pre1/work/xen-4.18.3'
* S: '/var/tmp/portage/app-emulation/xen-tools-4.18.4_pre1/work/xen-4.18.3'
~>
|
I have found a related bug filed more than a year ago but no apparent solution... |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
fedeliallalinea Administrator
![Administrator Administrator](/images/ranks/rank-admin.gif)
![](images/avatars/161653968057192eb39329f.jpg)
Joined: 08 Mar 2003 Posts: 31470 Location: here
|
Posted: Fri Feb 07, 2025 5:58 pm Post subject: |
|
|
Can you post full build.log with wgetpaste and also your emerge --info? _________________ Questions are guaranteed in life; Answers aren't. |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
vcmota Guru
![Guru Guru](/images/ranks/rank_rect_3.gif)
Joined: 19 Jun 2017 Posts: 387
|
Posted: Fri Feb 07, 2025 6:59 pm Post subject: |
|
|
fedeliallalinea wrote: | Can you post full build.log with wgetpaste and also your emerge --info? |
Sure. Here is the full log. And emerge --info is:
Code: |
~> sudo emerge --info
Portage 3.0.66.1 (python 3.12.8-final-0, default/linux/amd64/23.0/split-usr/hardened/selinux, gcc-14, glibc-2.40-r8, 6.6.74-gentoo-gentoo-dist x86_64)
=================================================================
System uname: Linux-6.6.74-gentoo-gentoo-dist-x86_64-11th_Gen_Intel-R-_Core-TM-_i7-1165G7_@_2.80GHz-with-glibc2.40
KiB Mem: 32589764 total, 16126100 free
KiB Swap: 67108860 total, 67108860 free
Timestamp of repository gentoo: Fri, 07 Feb 2025 11:15:00 +0000
Head commit of repository gentoo: 782bcb876a1c93fa133f64f5f934a946045d49ae
sh bash 5.2_p37
ld GNU ld (Gentoo 2.43 p3) 2.43.1
app-misc/pax-utils: 1.3.8::gentoo
app-shells/bash: 5.2_p37::gentoo
dev-build/autoconf: 2.72-r1::gentoo
dev-build/automake: 1.16.5-r2::gentoo
dev-build/cmake: 3.30.6::gentoo
dev-build/libtool: 2.5.4::gentoo
dev-build/make: 4.4.1-r100::gentoo
dev-build/meson: 1.6.1::gentoo
dev-java/java-config: 2.3.4::gentoo
dev-lang/perl: 5.40.0-r1::gentoo
dev-lang/python: 3.10.16_p1::gentoo, 3.11.11_p1::gentoo, 3.12.8_p1::gentoo, 3.13.1_p1::gentoo
dev-lang/rust: 1.83.0-r1::gentoo
llvm-core/clang: 18.1.8-r6::gentoo, 19.1.4::gentoo
llvm-core/llvm: 18.1.8-r6::gentoo, 19.1.4::gentoo
sec-policy/selinux-base: 2.20240916-r1::gentoo
sys-apps/baselayout: 2.17::gentoo
sys-apps/openrc: 0.55.1::gentoo
sys-apps/sandbox: 2.39::gentoo
sys-devel/binutils: 2.43-r2::gentoo
sys-devel/binutils-config: 5.5.2::gentoo
sys-devel/gcc: 14.2.1_p20241221::gentoo
sys-devel/gcc-config: 2.12.1::gentoo
sys-kernel/linux-headers: 6.6-r1::gentoo (virtual/os-headers)
sys-libs/glibc: 2.40-r8::gentoo
sys-libs/libselinux: 3.7-r1::gentoo
Repositories:
gentoo
location: /var/db/repos/gentoo
sync-type: rsync
sync-uri: rsync://rsync.us.gentoo.org/gentoo-portage
priority: -1000
volatile: False
sync-rsync-verify-max-age: 24
sync-rsync-verify-metamanifest: yes
sync-rsync-verify-jobs: 1
sync-rsync-extra-opts:
ACCEPT_KEYWORDS="amd64"
ACCEPT_LICENSE="@FREE"
CBUILD="x86_64-pc-linux-gnu"
CFLAGS="-march=native -O2 -pipe"
CHOST="x86_64-pc-linux-gnu"
CONFIG_PROTECT="/etc /usr/share/config /usr/share/gnupg/qualified.txt"
CONFIG_PROTECT_MASK="/etc/ca-certificates.conf /etc/dconf /etc/env.d /etc/fonts/fonts.conf /etc/gconf /etc/gentoo-release /etc/revdep-rebuild /etc/sandbox.d /etc/terminfo"
CXXFLAGS="-march=native -O2 -pipe"
DISTDIR="/var/cache/distfiles"
ENV_UNSET="CARGO_HOME DBUS_SESSION_BUS_ADDRESS DISPLAY GDK_PIXBUF_MODULE_FILE GOBIN GOPATH PERL5LIB PERL5OPT PERLPREFIX PERL_CORE PERL_MB_OPT PERL_MM_OPT XAUTHORITY XDG_CACHE_HOME XDG_CONFIG_HOME XDG_DATA_HOME XDG_RUNTIME_DIR XDG_STATE_HOME"
FCFLAGS="-march=native -O2 -pipe"
FEATURES="assume-digests binpkg-docompress binpkg-dostrip binpkg-logs buildpkg-live config-protect-if-modified distlocks ebuild-locks fixlafiles ipc-sandbox merge-sync merge-wait multilib-strict network-sandbox news nostrip parallel-fetch pkgdir-index-trusted preserve-libs protect-owned qa-unresolved-soname-deps sandbox selinux sesandbox sfperms splitdebug strict unknown-features-warn unmerge-logs unmerge-orphans userfetch userpriv usersandbox usersync xattr"
FFLAGS="-march=native -O2 -pipe"
GENTOO_MIRRORS="ftp://ftp-stud.hs-esslingen.de/pub/Mirrors/gentoo/ ftp://ftp.byfly.by/pub/gentoo-distfiles/ ftp://ftp.fau.de/gentoo ftp://ftp.fi.muni.cz/pub/linux/gentoo/ ftp://ftp.free.fr/mirr ors/ftp.gentoo.org/ ftp://ftp.gwdg.de/pub/linux/gentoo/ ftp://ftp.halifax.rwth-aachen.de/gentoo/ ftp://ftp.iij.ad.jp/pub/linux/gentoo/ ftp://ftp.jaist.ac.jp/pub/Linux/Gentoo/ ftp://ftp.kais t.ac.kr/gentoo/ ftp://ftp.lysator.liu.se/gentoo/ ftp://ftp.mirrorservice.org/sites/distfiles.gentoo.org/ ftp://ftp.ntua.gr/pub/linux/gentoo/ ftp://ftp.rnl.tecnico.ulisboa.pt/pub/gentoo/gentoo-d istfiles/ ftp://ftp.snt.utwente.nl/pub/os/linux/gentoo ftp://ftp.swin.edu.au/gentoo ftp://ftp.twaren.net/Linux/Gentoo/ ftp://ftp.uni-hannover.de/gentoo/ ftp://ftp.uni-stuttgart.de/gentoo-di stfiles/ ftp://gentoo.mirror.web4u.cz/ ftp://linux.rz.ruhr-uni-bochum.de/gentoo-mirror/ ftp://mirror.as43289.net/gentoo ftp://mirror.csclub.uwaterloo.ca/gentoo-distfiles/ ftp://mirror.lagoo n.nc/gentoo/ ftp://mirror.mephi.ru/gentoo-distfiles/ ftp://mirror.netcologne.de/gentoo/ ftp://mirror.rise.ph/gentoo ftp://mirror.telepoint.bg/gentoo ftp://mirror.yandex.ru/gentoo-distfiles/ ftp://mirrors.dotsrc.org/gentoo/ ftp://mirrors.rit.edu/gentoo/ ftp://mirrors.soeasyto.com/distfiles.gentoo.org/ ftp://mirrors.tera-byte.com/pub/gentoo ftp://repo.ifca.es/gentoo-distfiles
ftp://tux.rainside.sk/gentoo/ http://ftp-stud.hs-esslingen.de/pub/Mirrors/gentoo/ http://ftp.agdsn.de/gentoo http://ftp.byfly.by/pub/gentoo-distfiles/ http://ftp.dei.uc.pt/pub/linux/gentoo/
http://ftp.fau.de/gentoo http://ftp.fi.muni.cz/pub/linux/gentoo/ http://ftp.free.fr/mirrors/ftp.gentoo.org/ http://ftp.gwdg.de/pub/linux/gentoo/ http://ftp.halifax.rwth-aachen.de/gentoo/
http://ftp.iij.ad.jp/pub/linux/gentoo/ http://ftp.jaist.ac.jp/pub/Linux/Gentoo/ http://ftp.kaist.ac.kr/pub/gentoo/ http://ftp.lysator.liu.se/gentoo/ http://ftp.ntua.gr/pub/linux/gentoo/ h ttp://ftp.riken.jp/Linux/gentoo/ http://ftp.rnl.tecnico.ulisboa.pt/pub/gentoo/gentoo-distfiles/ http://ftp.romnet.org/gentoo/ http://ftp.snt.utwente.nl/pub/os/linux/gentoo http://ftp.spline.inf .fu-berlin.de/mirrors/gentoo/ http://ftp.swin.edu.au/gentoo http://ftp.tu-ilmenau.de/mirror/gentoo/ http://ftp.twaren.net/Linux/Gentoo/ http://ftp.uni-hannover.de/gentoo/ http://ftp.uni-stu ttgart.de/gentoo-distfiles/ http://gentoo-mirror.alexxy.name/ http://gentoo-mirror.flux.utah.edu/ http://gentoo.aditsu.net:8000/ http://gentoo.c3sl.ufpr.br/ http://gentoo.jss.hu http:// gentoo.mirror.garr.it/ http://gentoo.mirror.root.lu/ http://gentoo.mirror.web4u.cz/ http://gentoo.mirrors.ovh.net/gentoo-distfiles/ http://gentoo.mirrors.tera-byte.com/ http://gentoo.osuosl .org/ http://linux.rz.ruhr-uni-bochum.de/download/gentoo-mirror/ http://mirror.aarnet.edu.au/pub/gentoo/ http://mirror.as43289.net/gentoo http://mirror.bytemark.co.uk/gentoo/ http://mirror. clarkson.edu/gentoo/ http://mirror.csclub.uwaterloo.ca/gentoo-distfiles/ http://mirror.eu.oneandone.net/linux/distributions/gentoo/gentoo/ http://mirror.init7.net/gentoo/ http://mirror.it4i.cz/ gentoo http://mirror.kumi.systems/gentoo/ http://mirror.lagoon.nc/gentoo/ http://mirror.leaseweb.com/gentoo/ http://mirror.lzu.edu.cn/gentoo http://mirror.mephi.ru/gentoo-distfiles/ htt p://mirror.netcologne.de/gentoo/ http://mirror.netzwerge.de/gentoo/ http://mirror.ps.kz/gentoo/pub http://mirror.rackspace.com/gentoo/ http://mirror.reenigne.net/gentoo/ http://mirror.rise. ph/gentoo http://mirror.servaxnet.com/gentoo/ http://mirror.telepoint.bg/gentoo http://mirror.wheel.sk/gentoo http://mirror.yandex.ru/gentoo-distfiles/ http://mirror1.sox.rs/gentoo/ htt p://mirrors.163.com/gentoo/ http://mirrors.aliyun.com/gentoo/ http://mirrors.dotsrc.org/gentoo/ http://mirrors.evoluso.com/gentoo/ http://mirrors.gethosted.online/gentoo/ http://mirrors.irc am.fr/pub/gentoo-distfiles/ http://mirrors.mit.edu/gentoo-distfiles/ http://mirrors.nju.edu.cn/gentoo/ http://mirrors.nxtgen.com/gentoo-mirror/gentoo-source/ http://mirrors.ptisp.pt/gentoo/
http://mirrors.rit.edu/gentoo/ http://mirrors.soeasyto.com/distfiles.gentoo.org/ http://mirrors.zju.edu.cn/gentoo/ http://quantum-mirror.hu/mirrors/pub/gentoo http://repo.jing.rocks/gentoo
http://tux.rainside.sk/gentoo/ http://www.gtlib.gatech.edu/pub/gentoo http://www.mirrorservice.org/sites/distfiles.gentoo.org/ https://ftp-stud.hs-esslingen.de/pub/Mirrors/gentoo/ https://ftp. agdsn.de/gentoo https://ftp.belnet.be/pub/rsync.gentoo.org/gentoo/ https://ftp.fau.de/gentoo https://ftp.gwdg.de/pub/linux/gentoo/ https://ftp.halifax.rwth-aachen.de/gentoo/ https://ftp.jai st.ac.jp/pub/Linux/Gentoo/ https://ftp.kaist.ac.kr/pub/gentoo/ https://ftp.lanet.kr/pub/gentoo/ https://ftp.linux.org.tr/gentoo/ https://ftp.lysator.liu.se/gentoo/ https://ftp.riken.jp/Linu x/gentoo/ https://ftp.rnl.tecnico.ulisboa.pt/pub/gentoo/gentoo-distfiles/ https://ftp.snt.utwente.nl/pub/os/linux/gentoo https://ftp.spline.inf.fu-berlin.de/mirrors/gentoo/ https://ftp.tu-ilmen au.de/mirror/gentoo/ https://ftp.uni-hannover.de/gentoo/ https://ftp.uni-stuttgart.de/gentoo-distfiles/ https://gentoo-mirror.alexxy.name/ https://gentoo.c3sl.ufpr.br/ https://gentoo.dimens iondata.com/ https://gentoo.jss.hu https://gentoo.mirror.garr.it/ https://gentoo.mirrors.ovh.net/gentoo-distfiles/ https://gentoo.osuosl.org/ https://gentoo.uls.co.za/ https://gentoo.ze ro.com.ar/gentoo/ https://linux.rz.ruhr-uni-bochum.de/download/gentoo-mirror/ https://mirror.aarnet.edu.au/pub/gentoo/ https://mirror.bytemark.co.uk/gentoo/ https://mirror.clarkson.edu/gentoo/
https://mirror.csclub.uwaterloo.ca/gentoo-distfiles/ https://mirror.dkm.cz/gentoo/ https://mirror.dogado.de/gentoo https://mirror.eu.oneandone.net/linux/distributions/gentoo/gentoo/ https:/ /mirror.init7.net/gentoo/ https://mirror.isoc.org.il/pub/gentoo/ https://mirror.it4i.cz/gentoo https://mirror.kumi.systems/gentoo/ https://mirror.lagoon.nc/gentoo/ https://mirror.leaseweb.c om/gentoo/ https://mirror.lzu.edu.cn/gentoo https://mirror.netcologne.de/gentoo/ https://mirror.netzwerge.de/gentoo/ https://mirror.ps.kz/gentoo/pub https://mirror.rackspace.com/gentoo/
https://mirror.reenigne.net/gentoo/ https://mirror.servaxnet.com/gentoo/ https://mirror.telepoint.bg/gentoo https://mirror.wheel.sk/gentoo https://mirror.yandex.ru/gentoo-distfiles/ https: //mirror1.sox.rs/gentoo/ https://mirrors.163.com/gentoo/ https://mirrors.aliyun.com/gentoo/ https://mirrors.dotsrc.org/gentoo/ https://mirrors.evoluso.com/gentoo/ https://mirrors.gethosted. online/gentoo/ https://mirrors.ircam.fr/pub/gentoo-distfiles/ https://mirrors.mit.edu/gentoo-distfiles/ https://mirrors.nju.edu.cn/gentoo/ https://mirrors.nxtgen.com/gentoo-mirror/gentoo-source / https://mirrors.ptisp.pt/gentoo/ https://mirrors.rit.edu/gentoo/ https://mirrors.soeasyto.com/distfiles.gentoo.org/ https://mirrors.tnonline.net/gentoo/gentoo-distfiles/ https://mirrors.t una.tsinghua.edu.cn/gentoo https://mirrors.ustc.edu.cn/gentoo/ https://mirrors.zju.edu.cn/gentoo/ https://quantum-mirror.hu/mirrors/pub/gentoo https://repo.ifca.es/gentoo-distfiles https:// repo.jing.rocks/gentoo https://www.mirrorservice.org/sites/distfiles.gentoo.org/ rsync://ftp-stud.hs-esslingen.de/gentoo/ rsync://ftp.agdsn.de/gentoo rsync://ftp.belnet.be/gentoo/gentoo/ rs ync://ftp.byfly.by/gentoo/ rsync://ftp.fau.de/gentoo rsync://ftp.fi.muni.cz/pub/linux/gentoo/ rsync://ftp.gwdg.de/gentoo/ rsync://ftp.halifax.rwth-aachen.de/gentoo/ rsync://ftp.iij.ad.jp/pu b/linux/gentoo/ rsync://ftp.jaist.ac.jp/pub/Linux/Gentoo/ rsync://ftp.kaist.ac.kr/gentoo/ rsync://ftp.linux.org.tr/gentoo-distfiles/ rsync://ftp.lysator.liu.se/gentoo/ rsync://ftp.riken.jp/ gentoo/ rsync://ftp.rnl.tecnico.ulisboa.pt/pub/gentoo/gentoo-distfiles/ rsync://ftp.snt.utwente.nl/gentoo rsync://ftp.spline.inf.fu-berlin.de/gentoo-distfiles/ rsync://ftp.tu-ilmenau.de/gentoo/ rsync://gentoo.c3sl.ufpr.br/gentoo/ rsync://gentoo.jss.hu/mirror rsync://gentoo.zero.com.ar/gentoo rsync://linux.rz.ruhr-uni-bochum.de/gentoo rsync://mirror.aarnet.edu.au/pub/gentoo/ r sync://mirror.bytemark.co.uk/gentoo/ rsync://mirror.clarkson.edu/gentoo/ rsync://mirror.csclub.uwaterloo.ca/gentoo-distfiles rsync://mirror.dkm.cz/gentoo/ rsync://mirror.eu.oneandone.net/gentoo / rsync://mirror.init7.net/gentoo/ rsync://mirror.it4i.cz/gentoo rsync://mirror.kumi.systems/gentoo/ rsync://mirror.lagoon.nc/gentoo/ rsync://mirror.leaseweb.com/gentoo/ rsync://mirror. mephi.ru/gentoo-distfiles/ rsync://mirror.netcologne.de/gentoo/ rsync://mirror.netzwerge.de/gentoo rsync://mirror.ps.kz/gentoo rsync://mirror.rackspace.com/gentoo/ rsync://mirror.telepoint. bg/gentoo rsync://mirror1.sox.rs/gentoo/ rsync://mirrors.dotsrc.org/gentoo/ rsync://mirrors.ircam.fr/pub/gentoo-distfiles/ rsync://mirrors.mit.edu/gentoo-distfiles/ rsync://mirrors.rit.edu/ gentoo/ rsync://mirrors.tera-byte.com/gentoo rsync://mirrors.tnonline.net/gentoo-distfiles rsync://mirrors.zju.edu.cn/gentoo/ rsync://quantum-mirror.hu/gentoo rsync://repo.ifca.es/gentoo-di stfiles rsync://repo.jing.rocks/gentoo rsync://rsync.gtlib.gatech.edu/gentoo rsync://rsync.mirrors.ustc.edu.cn/gentoo/ rsync://rsync.mirrorservice.org/distfiles.gentoo.org/"
LANG="pt_BR.utf8"
LDFLAGS="-Wl,-O1 -Wl,--as-needed -Wl,-z,pack-relative-relocs"
LEX="flex"
LINGUAS="en pt pt_BR zh zn_CN"
MAKEOPTS="-j5"
PKGDIR="/var/cache/binpkgs"
PORTAGE_CONFIGROOT="/"
PORTAGE_RSYNC_OPTS="--recursive --links --safe-links --perms --times --omit-dir-times --compress --force --whole-file --delete --stats --human-readable --timeout=180 --exclude=/distfiles --exclude=/local --exclude=/packages --exclude=/.git"
PORTAGE_TMPDIR="/var/tmp"
SHELL="/bin/bash"
USE="X acl acpi alsa amd64 audit bluetooth bzip2 caps cet crypt dbus elogind eselect-ldso fortran gdbm hardened iconv icu ipv6 lapack libtirpc multilib ncurses nls opengl openmp pam pcre pic pie policykit pulseaudio readline savedconfig seccomp selinux split-usr ssl ssp symlink test-rust threads udev unicode wayland xattr xtpax zlib" ABI_X86="64" ADA_TARGET="gcc_13" APACHE2_MODULES="authn_core authz_core socache_shmcb unixd actions alias auth_basic authn_anon authn_dbm authn_file authz_dbm authz_groupfile authz_host authz_owner authz_user autoindex cache cgi cgid dav dav_fs dav_lock deflate dir env expires ext_filter file_cache
filter headers include info log_config logio mime mime_magic negotiation rewrite setenvif speling status unique_id userdir usertrack vhost_alias" CALLIGRA_FEATURES="karbon sheets words" COLLECTD_PLUGINS="df interface irq load memory rrdtool swap syslog" CPU_FLAGS_X86="mmx mmxext sse sse2" ELIBC="glibc" GPSD_PROTOCOLS="ashtech aivdm earthmate evermore fv18 garmin garmintxt gpsclock greis isync itrax navcom oceanserver oncore rtcm104v2 rtcm104v3 sirf skytraq superstar2 tsip tripmate tnt ublox" GRUB_PLATFORMS="efi-64" GUILE_SINGLE_TARGET="3-0" GUILE_TARGETS="3-0" INPUT_DEVICES="libinput wacom" KERNEL="linux" L10N="en en-US pt pt-BR zh zh-CN" LCD_DEVICES="bayrad cfontz glk hd44780 lb216 lcdm001 mtxorb text" LUA_SINGLE_TARGET="lua5-1" LUA_TARGETS="lua5-1" OFFICE_IMPLEMENTATION="libreoffice" PHP_TARGETS="php8-2" POSTGRES_TARGETS="postgres16"
PYTHON_SINGLE_TARGET="python3_12" PYTHON_TARGETS="python3_12" RUBY_TARGETS="ruby32" SANE_BACKENDS="hp" VIDEO_CARDS="intel nouveau" XTABLES_ADDONS="quota2 psd pknock lscan length2 ipv4options ipp2p iface geoip fuzzy condition tarpit sysrq proto logmark ipmark dhcpmac delude chaos account"
Unset: ADDR2LINE, AR, ARFLAGS, AS, ASFLAGS, CC, CCLD, CONFIG_SHELL, CPP, CPPFLAGS, CTARGET, CXX, CXXFILT, ELFEDIT, EMERGE_DEFAULT_OPTS, EXTRA_ECONF, F77FLAGS, FC, GCOV, GPROF, INSTALL_MASK, LC_ALL, LD, LFLAGS, LIBTOOL, MAKE, MAKEFLAGS, NM, OBJCOPY, OBJDUMP, PORTAGE_BINHOST, PORTAGE_BUNZIP2_COMMAND, PORTAGE_COMPRESS, PORTAGE_COMPRESS_FLAGS, PORTAGE_RSYNC_EXTRA_OPTS, PYTHONPATH, RANLIB, READELF, RUSTFLAGS, SIZE, STRINGS,
STRIP, YACC, YFLAGS
|
Thank you again! |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
sam_ Developer
![Developer Developer](/images/ranks/rank-dev.gif)
![](images/avatars/7738740495f7d1acc45bdb.jpg)
Joined: 14 Aug 2020 Posts: 2135
|
Posted: Fri Feb 07, 2025 7:10 pm Post subject: |
|
|
bug 889452 isn't related, but 603636 is. It's just recently been promoted to an error because it's dangerous. |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
vcmota Guru
![Guru Guru](/images/ranks/rank_rect_3.gif)
Joined: 19 Jun 2017 Posts: 387
|
Posted: Fri Feb 07, 2025 7:55 pm Post subject: |
|
|
sam_ wrote: | bug 889452 isn't related, but 603636 is. It's just recently been promoted to an error because it's dangerous. |
That means the safe route it to abandon xen-tools?
Thank you! |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
sam_ Developer
![Developer Developer](/images/ranks/rank-dev.gif)
![](images/avatars/7738740495f7d1acc45bdb.jpg)
Joined: 14 Aug 2020 Posts: 2135
|
Posted: Sat Feb 08, 2025 12:49 am Post subject: |
|
|
Let me see what I can do first. Please hold. |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
sam_ Developer
![Developer Developer](/images/ranks/rank-dev.gif)
![](images/avatars/7738740495f7d1acc45bdb.jpg)
Joined: 14 Aug 2020 Posts: 2135
|
Posted: Sat Feb 08, 2025 1:47 am Post subject: |
|
|
I've pushed some fixes. Give it an hour or so then emerge --sync and it should work, hopefully. |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
vcmota Guru
![Guru Guru](/images/ranks/rank_rect_3.gif)
Joined: 19 Jun 2017 Posts: 387
|
Posted: Sun Feb 09, 2025 12:11 am Post subject: |
|
|
Thank you sam_ for your work, but it is still not merging. You can see the log here. I did first a full update:
Code: |
~> sudo emerge-webrsync
~> sudo emerge --sync
~> sudo emerge --ask --update --deep --with-bdeps=y --changed-deps --newuse --changed-use @world
|
and just after I tried to merge xen-tools, again without success. |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
sam_ Developer
![Developer Developer](/images/ranks/rank-dev.gif)
![](images/avatars/7738740495f7d1acc45bdb.jpg)
Joined: 14 Aug 2020 Posts: 2135
|
Posted: Sun Feb 09, 2025 12:35 am Post subject: |
|
|
Huh. It doesn't apply edk2-202202-binutils-2.41-textrels.patch which it should do with USE=ovmf. Maybe it hadn't landed in the emerge-webrsync snapshot you tried (given I did it quite late yesterday). emerge --sync would normally cover that after but not if in repos.conf, it's configured to also do webrsync.
Can you show me emerge --info? |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
vcmota Guru
![Guru Guru](/images/ranks/rank_rect_3.gif)
Joined: 19 Jun 2017 Posts: 387
|
Posted: Sun Feb 09, 2025 12:55 am Post subject: |
|
|
Of course, I've put it here. |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
sam_ Developer
![Developer Developer](/images/ranks/rank-dev.gif)
![](images/avatars/7738740495f7d1acc45bdb.jpg)
Joined: 14 Aug 2020 Posts: 2135
|
Posted: Sun Feb 09, 2025 1:13 am Post subject: |
|
|
Looks like the sync was unsuccessful, as it says:
Quote: |
Timestamp of repository gentoo: Thu, 06 Feb 2025 09:15:00 +0000
|
Could you try again? |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
vcmota Guru
![Guru Guru](/images/ranks/rank_rect_3.gif)
Joined: 19 Jun 2017 Posts: 387
|
Posted: Sun Feb 09, 2025 1:32 am Post subject: |
|
|
Now --webrsync and --sync both worked, but endup installing a huge update. As soon as it finishes I will try xen-tools and let you know.
Thank you very much for your help! |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
sam_ Developer
![Developer Developer](/images/ranks/rank-dev.gif)
![](images/avatars/7738740495f7d1acc45bdb.jpg)
Joined: 14 Aug 2020 Posts: 2135
|
Posted: Sun Feb 09, 2025 1:39 am Post subject: |
|
|
Thank you! |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|