Skip to content

bump(x11/audacity-ffmpeg): 7.1, revbump audacity for ffmpeg-audacity 7.1#22614

Merged
TomJo2000 merged 1 commit into
termux:masterfrom
robertkirkman:bump-audacity-ffmpeg
Dec 20, 2024
Merged

bump(x11/audacity-ffmpeg): 7.1, revbump audacity for ffmpeg-audacity 7.1#22614
TomJo2000 merged 1 commit into
termux:masterfrom
robertkirkman:bump-audacity-ffmpeg

Conversation

@robertkirkman

Copy link
Copy Markdown
Member

following the directions given here: #22502 (comment)

(paraphrased) "if audacity works with ffmpeg 7 we should recompile it and upgrade the ffmpeg subpackage"

Alternative implementation of this change (deleting subpackage) that I tested first
--- a/x11-packages/audacity/audacity-ffmpeg.subpackage.sh
+++ /dev/null
@@ -1,5 +0,0 @@
-TERMUX_SUBPKG_DESCRIPTION="Minimal FFmpeg libraries for Audacity"
-TERMUX_SUBPKG_INCLUDE="
-opt/audacity/lib/
-share/doc/audacity-ffmpeg/
-"
--- a/x11-packages/audacity/build.sh
+++ b/x11-packages/audacity/build.sh
@@ -3,18 +3,11 @@ TERMUX_PKG_DESCRIPTION="An easy-to-use, multi-track audio editor and recorder"
 TERMUX_PKG_LICENSE="GPL-2.0"
 TERMUX_PKG_MAINTAINER="@termux"
 TERMUX_PKG_VERSION="3.7.1"
-_FFMPEG_VERSION=6.1.1
-TERMUX_PKG_SRCURL=(https://github.com/audacity/audacity/archive/Audacity-${TERMUX_PKG_VERSION}.tar.gz
-                   https://www.ffmpeg.org/releases/ffmpeg-${_FFMPEG_VERSION}.tar.xz)
-TERMUX_PKG_SHA256=(
-	02457fe0ae1dab3a9a50ce54836cdd78a2d3ab51650d42696cab417210f03906
-	8684f4b00f94b85461884c3719382f1261f0d9eb3d59640a1f4ac0873616f968
-)
-TERMUX_PKG_DEPENDS="gdk-pixbuf, glib, gtk3, libc++, libexpat, libflac, libid3tag, libogg, libopus, libsndfile, libsoundtouch, libsoxr, libuuid, libvorbis, libwavpack, mpg123, opusfile, portaudio, portmidi, wxwidgets"
+TERMUX_PKG_REVISION=1
+TERMUX_PKG_SRCURL=https://github.com/audacity/audacity/archive/Audacity-${TERMUX_PKG_VERSION}.tar.gz
+TERMUX_PKG_SHA256=02457fe0ae1dab3a9a50ce54836cdd78a2d3ab51650d42696cab417210f03906
+TERMUX_PKG_DEPENDS="ffmpeg, gdk-pixbuf, glib, gtk3, libc++, libexpat, libflac, libid3tag, libogg, libopus, libsndfile, libsoundtouch, libsoxr, libuuid, libvorbis, libwavpack, mpg123, opusfile, portaudio, portmidi, wxwidgets"
 TERMUX_PKG_BUILD_DEPENDS="libjpeg-turbo, libjpeg-turbo-static, libmp3lame, libpng, rapidjson, zlib"
-# Support for FFmpeg 5.0 is not backported:
-# https://github.com/audacity/audacity/issues/2445
-TERMUX_PKG_SUGGESTS="audacity-ffmpeg"
 TERMUX_PKG_HOSTBUILD=true
 TERMUX_PKG_UPDATE_VERSION_REGEXP="\d+.\d+.\d+"
 TERMUX_PKG_AUTO_UPDATE=true
@@ -44,11 +37,6 @@ TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
 -Daudacity_use_twolame=off
 -DUSE_MIDI=OFF
 "
-TERMUX_PKG_RM_AFTER_INSTALL="
-opt/audacity/include
-opt/audacity/lib/pkgconfig
-opt/audacity/share
-"
 
 # Function to obtain the .deb URL
 obtain_deb_url() {
@@ -119,49 +107,6 @@ termux_step_host_build() {
 }
 
 termux_step_pre_configure() {
-	local _FFMPEG_PREFIX=${TERMUX_PREFIX}/opt/${TERMUX_PKG_NAME}
-	LDFLAGS="-Wl,-rpath=${_FFMPEG_PREFIX}/lib ${LDFLAGS}"
-
-	local _ARCH
-	case ${TERMUX_ARCH} in
-		arm ) _ARCH=armeabi-v7a ;;
-		i686 ) _ARCH=x86 ;;
-		* ) _ARCH=$TERMUX_ARCH ;;
-	esac
-
-	mkdir -p _ffmpeg-${_FFMPEG_VERSION}
-	pushd _ffmpeg-${_FFMPEG_VERSION}
-	$TERMUX_PKG_SRCDIR/ffmpeg-${_FFMPEG_VERSION}/configure \
-		--prefix=${_FFMPEG_PREFIX} \
-		--cc=${CC} \
-		--pkg-config=false \
-		--arch=${_ARCH} \
-		--cross-prefix=llvm- \
-		--enable-cross-compile \
-		--target-os=android \
-		--disable-version3 \
-		--disable-static \
-		--enable-shared \
-		--disable-all \
-		--disable-autodetect \
-		--disable-doc \
-		--enable-avcodec \
-		--enable-avformat \
-		--disable-asm
-	make -j ${TERMUX_PKG_MAKE_PROCESSES}
-	make install
-	popd
-
-	local lib
-	for lib in libavcodec libavformat libavutil; do
-		local pc=${TERMUX_PREFIX}/lib/pkgconfig/${lib}.pc
-		if [ -e ${pc} ]; then
-			mv ${pc}{,.tmp}
-		fi
-	done
-	export PKG_CONFIG_PATH=${_FFMPEG_PREFIX}/lib/pkgconfig
-	CPPFLAGS="-I${_FFMPEG_PREFIX}/include ${CPPFLAGS}"
-
 	CPPFLAGS+=" -Dushort=u_short -Dulong=u_long"
 	CXXFLAGS+=" -std=c++17"
 	# Adding `image-compiler` we built in host_build step
@@ -171,26 +116,6 @@ termux_step_pre_configure() {
 	export LD_LIBRARY_PATH="$TERMUX_PKG_HOSTBUILD_DIR/prefix/usr/lib/x86_64-linux-gnu"
 }
 
-termux_step_post_make_install() {
-	unset PKG_CONFIG_PATH
-	local lib
-	for lib in libavcodec libavformat libavutil; do
-		local pc=${TERMUX_PREFIX}/lib/pkgconfig/${lib}.pc
-		if [ -e ${pc}.tmp ] && [ ! -e ${pc} ]; then
-			mv ${pc}{.tmp,}
-		fi
-	done
-
-	local _FFMPEG_DOCDIR=$TERMUX_PREFIX/share/doc/audacity-ffmpeg
-	mkdir -p ${_FFMPEG_DOCDIR}
-	ln -sfr ${TERMUX_PREFIX}/share/LICENSES/LGPL-2.1.txt \
-		${_FFMPEG_DOCDIR}/LICENSE
-}
-
-termux_step_post_massage() {
-	rm -rf lib/pkgconfig
-}
-
 termux_step_create_debscripts() {
 	cat <<-EOF > ./postinst
 		#!$TERMUX_PREFIX/bin/sh
--- a/x11-packages/audacity/ffmpeg-configure.patch
+++ /dev/null
@@ -1,51 +0,0 @@
-+++ ./ffmpeg-6.1.1/configure
-@@ -5336,13 +5336,9 @@
-         striptype=""
-         ;;
-     android)
--        disable symver
-         enable section_data_rel_ro
-         add_cflags -fPIE
-         add_ldexeflags -fPIE -pie
--        SLIB_INSTALL_NAME='$(SLIBNAME)'
--        SLIB_INSTALL_LINKS=
--        SHFLAGS='-shared -Wl,-soname,$(SLIBNAME)'
-         ;;
-     haiku)
-         prefix_default="/boot/common"
-+++ ./ffmpeg-6.1.1/libavcodec/allcodecs.c
-@@ -154,7 +154,6 @@
- extern const FFCodec ff_h264_crystalhd_decoder;
- extern const FFCodec ff_h264_v4l2m2m_decoder;
- extern const FFCodec ff_h264_mediacodec_decoder;
--extern const FFCodec ff_h264_mediacodec_encoder;
- extern const FFCodec ff_h264_mmal_decoder;
- extern const FFCodec ff_h264_qsv_decoder;
- extern const FFCodec ff_h264_rkmpp_decoder;
-@@ -850,6 +849,7 @@
- extern const FFCodec ff_libopenh264_decoder;
- extern const FFCodec ff_h264_amf_encoder;
- extern const FFCodec ff_h264_cuvid_decoder;
-+extern const FFCodec ff_h264_mediacodec_encoder;
- extern const FFCodec ff_h264_mf_encoder;
- extern const FFCodec ff_h264_nvenc_encoder;
- extern const FFCodec ff_h264_omx_encoder;
-+++ ./ffmpeg-6.1.1/libavutil/file_open.c
-@@ -119,7 +119,7 @@
- #undef free
-     free(ptr);
- #else
--    size_t len = strlen(prefix) + 12; /* room for "/tmp/" and "XXXXXX\0" */
-+    size_t len = strlen(prefix) + strlen("@TERMUX_PREFIX@/tmp/") + 7; /* room for "@TERMUX_PREFIX@/tmp/" and "XXXXXX\0" */
-     *filename  = av_malloc(len);
- #endif
-     /* -----common section-----*/
-@@ -136,7 +136,7 @@
- #   endif
-     fd = open(*filename, O_RDWR | O_BINARY | O_CREAT | O_EXCL, 0600);
- #else
--    snprintf(*filename, len, "/tmp/%sXXXXXX", prefix);
-+    snprintf(*filename, len, "@TERMUX_PREFIX@/tmp/%sXXXXXX", prefix);
-     fd = mkstemp(*filename);
- #if defined(_WIN32) || defined (__ANDROID__)
-     if (fd < 0) {

and described here, before modifying it to be the way shown in this PR on the advice of twaik.

@robertkirkman

Copy link
Copy Markdown
Member Author

The lint failed in a section of the file that I did not modify in this PR, so I will be forced to minimally edit another section of the file in order to make it pass the current version of the linter.

@robertkirkman

Copy link
Copy Markdown
Member Author

When I locally revert 085665f (committed today) the lint passes locally, but I can't figure out how to make it pass while that commit is applied. I am not sure what to do so I will mark this as a draft and wait @twaik

@robertkirkman robertkirkman marked this pull request as draft December 18, 2024 21:04
following the directions given here: termux#22502 (comment)
(paraphrased) "if audacity works with ffmpeg 7 we should recompile it and upgrade the ffmpeg subpackage"
@twaik twaik force-pushed the bump-audacity-ffmpeg branch from d3b647f to 00cbc06 Compare December 18, 2024 21:15
@robertkirkman

Copy link
Copy Markdown
Member Author

Thank you, it seems obvious when I check what you did but it was not easy for me to find that, I had seen that it said line 89 but somehow I still couldn't find it.

@twaik

twaik commented Dec 18, 2024

Copy link
Copy Markdown
Member

Probably you do not have whitespace highlighting enabled in your editor.
image

@robertkirkman robertkirkman marked this pull request as ready for review December 18, 2024 21:29
@Biswa96 Biswa96 mentioned this pull request Dec 19, 2024
6 tasks
@TomJo2000 TomJo2000 merged commit 504d465 into termux:master Dec 20, 2024
@RalfWerner

Copy link
Copy Markdown

I updated my packages with pkg up and checked audacity. Thanks, the audio output works now. However, the recording doesn't. Should it work?

But for l=libportaudio.so is missing the version .2. This could be fixed in the path $PREFIX/lib by symlink ln -s $l $l.2

Shouldn't this be done by the update?

@TomJo2000

Copy link
Copy Markdown
Member

Shouldn't this be done by the update?

It should. We probably missed this.

@RalfWerner

Copy link
Copy Markdown

and recording?

@robertkirkman

robertkirkman commented Feb 1, 2025

Copy link
Copy Markdown
Member Author

@RalfWerner

  • I see that some people do have a problem with libportaudio.so.2, I am not sure what the problem is there and I cannot reproduce it yet, since I have portaudio version 19.07.00-2 installed and dpkg -L portaudio shows that it contains libportaudio.so.2 for me.
  • OpenSLES-compatible programs can record audio in Termux, including Audacity, but to do so, a manual step is required, of installing the Termux:API app and then going to the Settings app permissions settings of the Termux:API app and setting the Microphone permission to "Allow":

image

After doing that, I am able to record audio in Audacity.

@RalfWerner

Copy link
Copy Markdown

Thanks @robertkirkman . Unfortunately I haven't had any success yet. Can you spot something missing in the following shot?
image
The Device has two Mic's on Top and Bottom

@robertkirkman

Copy link
Copy Markdown
Member Author

This is my configuration in Audacity

Screenshot_20250201-025743_TermuxX11

Differences I notice between mine and yours:

  • for me the "Interface Host" is set on "android OpenSLES", but I see that is not an option for you, maybe if you can turn off PulseAudio it would be available for you
  • For you the "Recording Device" is set on "Monitor of..." , usually when that happens in PulseAudio it means that it is set to record a loopback of the playback device, not a physical microphone, but for me it is set on something named "default", and that setting is able to record the physical microphone for me.

@RalfWerner

Copy link
Copy Markdown

maybe if you can turn off PulseAudio it would be available for you

The current pid of pulseaudio is 8755, which I terminated with kill and did a rescan, but that doesn't change. What needs to be done to set android OpenSGLES as host?

@robertkirkman

Copy link
Copy Markdown
Member Author

I do not know unfortunately, because, on all of my devices, I see the same "android OpenSLES" entry in Audacity, and I am not able to get any device to show what you see.
Even one of my devices where PulseAudio with Firefox by itself and Audacity OpenSLES are separately working at the same time, does not show that.
Screenshot_20250201-051905_TermuxX11
maybe you have other versions of some packages, or specific settings that I don't have

@RalfWerner

RalfWerner commented Feb 2, 2025

Copy link
Copy Markdown

maybe you have other versions of some packages, or specific settings

I've no problem with audio output in Firefox either. Possibly in the packages. I've about 400 on my devices (Samsung Pad here) and use:
dpkg-query -Wf '\${Installed-Size}\t\${Package}\n'|sort -nr>ud to create the file to compare it with the state before pkg up with *diff. With grep aud ud I find 4 and with opensl none. How is it for you?

all packages sorted by size in file ud and ur
-Ralf
aalib                         616
aapt                          6236
abseil-cpp                    8400
adwaita-icon-theme            13980
adwaita-icon-theme-legacy     7732
alsa-lib                      2264
android-tools                 12540
apksigner                     1036
apt                           4000
asciidoc                      1760
asciidoctor                   6452
aspell                        2604
at-spi2-core                  3280
aterm                         184
atk                           4
audacity                      30836
autoconf                      3644
automake                      2824
babl                          872
bash                          4264
bash-completion               2612
bc                            180
binutils                      36
binutils-bin                  8852
binutils-libs                 12528
bison                         2652
brotli                        1032
bzip2                         128
ca-certificates               276
ca-certificates-java          216
clang                         190148
cmake                         47672
command-not-found             604
coreutils                     2644
cups                          11836
curl                          380
dash                          180
dbus                          1732
debianutils                   116
desktop-file-utils            256
dialog                        276
diffutils                     588
docbook-xml                   2412
docbook-xsl                   33400
dos2unix                      348
double-conversion             268
dpkg                          1340
ed                            180
enchant                       292
exiv2                         5076
feh                           568
ffmpeg                        33884
fftw                          3392
file                          10388
findutils                     884
firefox                       220488
flex                          904
fluxbox                       2512
fmt                           824
fontconfig                    696
fontconfig-utils              132
freetype                      1696
fribidi                       444
game-music-emu                376
gawk                          3236
gcc-9                         91336
gdbm                          568
gdk-pixbuf                    960
gegl                          5756
gettext                       15544
gexiv2                        660
ghostscript                   47136
giflib                        100
gimp                          20356
gimp-data                     44904
git                           23044
glib                          19984
glib-bin                      764
glib-networking               188
glu                           516
gnupg                         5340
golang                        226620
gperf                         368
gpgme                         1140
gpgmepp                       708
gpgv                          492
graphene                      1972
grep                          392
gst-plugins-bad               7712
gst-plugins-base              12160
gst-plugins-good              4552
gstreamer                     8860
gtk-update-icon-cache         72
gtk2                          17952
gtk3                          31572
gzip                          316
harfbuzz                      4340
harfbuzz-icu                  60
help2man                      96
hicolor-icon-theme            108
htop-legacy                   212
hunspell                      1244
hunspell-en-us                584
imagemagick                   19840
imath                         1016
imlib2                        1284
inetutils                     1160
jack                          4
jack2                         2128
jbig2dec                      192
json-c                        292
json-glib                     784
jsoncpp                       440
kf6-kwindowsystem             1204
krb5                          3936
ldd                           44
ldns                          2868
less                          372
lfortran                      38584
libandroid-complex-math       64
libandroid-execinfo           88
libandroid-glob               68
libandroid-posix-semaphore    52
libandroid-selinux            308
libandroid-shmem              72
libandroid-spawn              96
libandroid-support            76
libandroid-sysv-semaphore     64
libandroid-utimes             52
libaom                        7228
libarchive                    1020
libass                        508
libassuan                     332
libbluray                     384
libbz2                        116
libc++                        1304
libcaca                       1376
libcairo                      1640
libcap-ng                     268
libcompiler-rt                35660
libcrypt                      68
libcurl                       3240
libdav1d                      832
libdb                         2248
libde265                      504
libdecor                      224
libdrm                        876
libdvdnav                     216
libdvdread                    372
libedit                       304
libepoxy                      2732
libevent                      1144
libexif                       584
libexpat                      368
libffi                        228
libflac                       936
libfontenc                    100
libgcrypt                     1612
libgd                         672
libgfortran5                  1468
libglvnd                      3244
libgmp                        1240
libgnutls                     2400
libgpg-error                  572
libgraphite                   288
libheif                       1516
libhyphen                     192
libice                        436
libiconv                      1196
libicu                        42212
libid3tag                     172
libidn                        688
libidn2                       428
libinih                       128
libisl                        5500
libjasper                     996
libjpeg-turbo                 2056
libjpeg-turbo-progs           348
libjxl                        7064
libkokkos                     7476
libksba                       404
libllvm                       146528
libltdl                       96
liblua52                      288
liblua54                      360
liblxqt                       968
liblz4                        352
liblzma                       844
liblzo                        444
libmd                         188
libmp3lame                    352
libmpc                        284
libmpfr                       1004
libmypaint                    416
libnettle                     1424
libnghttp2                    532
libnghttp3                    308
libnotify                     288
libnpth                       92
libnspr                       1068
libnss                        9552
libogg                        684
libopencore-amr               292
libopenmpt                    2200
libopus                       540
libotr                        376
libpciaccess                  116
libpixman                     644
libplacebo                    1464
libpng                        516
libprotobuf                   6800
libpsl                        196
libqtxdg                      684
librav1e                      2180
libraw                        2780
libresolv-wrapper             104
librsvg                       40924
libsamplerate                 1644
libsecret                     1192
libsixel                      584
libsm                         332
libsmartcols                  316
libsndfile                    708
libsoundtouch                 480
libsoup3                      1836
libsoxr                       1084
libsqlite                     1856
libsrt                        912
libssh                        820
libssh2                       1156
libtalloc                     164
libtasn1                      468
libtheora                     692
libtiff                       6648
libtirpc                      548
libtool                       2784
libuchardet                   396
libudfread                    104
libunbound                    1196
libunistring                  3212
libusb                        248
libuuid                       80
libuv                         344
libv4l                        396
libvidstab                    1004
libvmaf                       1576
libvncserver                  788
libvo-amrwbenc                160
libvorbis                     1768
libvpx                        2392
libwavpack                    644
libwayland                    932
libwayland-protocols          1276
libwebp                       848
libwebrtc-audio-processing    1584
libx11                        13712
libx264                       1260
libx265                       2684
libxau                        128
libxaw                        1924
libxcb                        12780
libxcomposite                 136
libxcursor                    372
libxcvt                       100
libxdamage                    80
libxdmcp                      196
libxext                       616
libxfixes                     104
libxfont2                     272
libxft                        492
libxi                         788
libxinerama                   108
libxkbcommon                  964
libxkbfile                    240
libxml2                       1832
libxml2-utils                 128
libxmu                        456
libxpm                        364
libxpresent                   128
libxrandr                     192
libxrender                    164
libxshmfence                  76
libxslt                       1800
libxss                        144
libxt                         3120
libxtst                       232
libxv                         208
libxxf86dga                   188
libxxf86vm                    192
libyaml                       204
libzimg                       564
libzix                        212
libzopfli                     348
lilv                          324
littlecms                     540
lld                           17660
llvm                          55904
lsof                          392
lv2                           1444
lzip                          232
m4                            664
make                          936
mc                            3144
mesa                          16192
mpg123                        916
mpv-x                         5164
mypaint-brushes               3836
nano                          928
ncurses                       1596
ncurses-ui-libs               148
ncurses-utils                 268
ndk-sysroot                   20572
net-tools                     564
ninja                         288
obconf-qt                     904
ocl-icd                       736
openal-soft                   2108
openbox                       1268
openexr                       8244
opengl                        4
openh264                      1000
openjdk-17                    226260
openjdk-17-x                  15168
openjpeg                      516
openssh                       5964
openssh-sftp-server           176
openssl                       7752
openssl-1.1                   4400
opusfile                      240
pango                         2476
patch                         228
pcre                          2708
pcre2                         4104
perl                          67736
pinentry                      208
pipewire                      8796
pkg-config                    136
poppler                       7388
poppler-data                  13196
portaudio                     148
portmidi                      164
postgresql                    29520
procps                        680
proot                         296
proot-distro                  228
protobuf                      4000
psmisc                        184
pulseaudio                    4040
python                        58668
python-ensurepip-wheels       1820
python-lxml                   4168
python-pip                    13360
python2                       18772
qemu-user-i386                1964
qt6-qtbase                    72100
qt6-qtdeclarative             113812
qt6-qtlanguageserver          6324
qt6-qtsvg                     1108
qt6-qtwayland                 10232
readline                      1124
resolv-conf                   48
rhash                         376
rubberband                    1620
ruby                          38436
rust                          265032
rust-std-aarch64-linux-android98076
sdl2                          4132
sed                           412
serd                          196
setup-scripts                 96
shared-mime-info              2592
socat                         684
sord                          180
speexdsp                      168
sratom                        96
startup-notification          124
svt-av1                       4184
tar                           1244
termux-am                     620
termux-am-socket              88
termux-api                    340
termux-auth                   80
termux-exec                   48
termux-keyring                180
termux-licenses               372
termux-tools                  548
termux-x11-nightly            64
texinfo                       10116
thunderbird                   226292
ttf-dejavu                    10108
unzip                         328
update-info-dir               48
util-linux                    4072
valac                         13380
vulkan-loader                 4
vulkan-loader-android         72
webkit2gtk-4.1                96776
wget                          792
which                         84
woff2                         432
wxwidgets                     25404
x11-repo                      52
x11vnc                        1600
xcb-util                      108
xcb-util-cursor               88
xcb-util-image                116
xcb-util-keysyms              72
xcb-util-renderutil           80
xcb-util-wm                   268
xkeyboard-config              4044
xorg-font-util                332
xorg-fonts-75dpi              15996
xorg-fonts-alias              80
xorg-fonts-encodings          816
xorg-mkfontscale              104
xorg-protocol-txt             60
xorg-setxkbmap                76
xorg-util-macros              144
xorg-xauth                    112
xorg-xdpyinfo                 88
xorg-xkbcomp                  248
xorg-xlsfonts                 76
xorg-xmessage                 92
xorgproto                     2280
xsltproc                      68
xvidcore                      392
xwayland                      1924
xxhash                        408
xz-utils                      224
zip                           556
zlib                          256
zstd                          1300
-Robert
abseil-cpp                    8400
adwaita-icon-theme            13980
adwaita-icon-theme-legacy     7732
angle-android                 19520
appstream                     2356
apt                           4000
arj                           376
aspell                        2604
assimp                        10860
at-spi2-core                  3280
atk                           4
audacity                      30836
bash                          4264
brotli                        1032
bsdtar                        1476
bzip2                         128
ca-certificates               272
clang                         190148
command-not-found             604
coreutils                     2644
cpio                          240
curl                          380
dash                          180
dbus                          1732
dconf                         424
debianutils                   116
desktop-file-utils            256
dialog                        276
diffutils                     588
dos2unix                      348
dpkg                          1340
ed                            180
enchant                       292
exo                           480
ffmpeg                        33884
fftw                          3392
file                          10388
file-roller                   700
file-roller-help              1980
findutils                     884
firefox                       220508
fontconfig                    704
freeglut                      480
freetype                      1696
fribidi                       444
game-music-emu                376
garcon                        712
gawk                          3236
gcr4                          2164
gdb                           15600
gdbm                          568
gdk-pixbuf                    960
giflib                        100
glib                          19984
glib-bin                      764
glib-networking               188
glm                           24228
glmark2                       11248
glu                           516
gnupg                         5340
gpgv                          492
graphene                      1972
grep                          392
gsettings-desktop-schemas     352
gst-plugins-bad               7712
gst-plugins-base              12168
gst-plugins-good              4552
gstreamer                     8884
gtk-layer-shell               344
gtk-update-icon-cache         72
gtk3                          32324
gtk4                          38160
gtkmm4                        12700
guile                         59132
gvfs                          1500
gzip                          316
harfbuzz                      4340
harfbuzz-icu                  60
hicolor-icon-theme            108
hunspell                      1244
hunspell-en-us                584
imlib2                        1284
inetutils                     1160
iproute2                      2784
iso-codes                     3056
json-glib                     784
jsoncpp                       440
krb5                          3936
ldns                          2868
less                          372
libadwaita                    4396
libandroid-execinfo           88
libandroid-glob               68
libandroid-posix-semaphore    52
libandroid-selinux            308
libandroid-shmem              72
libandroid-spawn              96
libandroid-support            76
libandroid-utimes             52
libaom                        7228
libarchive                    1020
libass                        508
libassuan                     332
libbluray                     384
libbsd                        1324
libbz2                        116
libc++                        1304
libcaca                       1376
libcairo                      1640
libcairomm-1.16               612
libcanberra                   348
libcap-ng                     268
libcompiler-rt                35660
libcrypt                      68
libcurl                       3240
libdav1d                      888
libdb                         2248
libde265                      504
libdecor                      224
libdisplay-info               388
libdrm                        876
libedit                       304
libepoxy                      2732
libevent                      1144
libexif                       584
libexpat                      368
libffi                        228
libflac                       936
libgc                         880
libgcrypt                     1612
libglibmm-2.68                7792
libglvnd                      3244
libgmp                        1240
libgnutls                     2400
libgpg-error                  572
libgraphite                   288
libgtop                       696
libheif                       1516
libhyphen                     192
libice                        436
libiconv                      1196
libicu                        42212
libid3tag                     172
libidn2                       428
libjpeg-turbo                 2056
libjxl                        7064
libksba                       404
libllvm                       146524
libltdl                       96
libluajit                     592
liblz4                        352
liblzma                       844
liblzo                        444
libmd                         188
libmp3lame                    352
libmpfr                       1004
libnettle                     1424
libnghttp2                    532
libnghttp3                    308
libnotify                     288
libnpth                       92
libnspr                       1068
libnss                        9552
libogg                        684
libopencore-amr               292
libopenmpt                    2200
libopus                       540
libpangomm-2.48               888
libpixman                     644
libpng                        532
libpsl                        196
librav1e                      2180
libresolv-wrapper             104
librsvg                       40924
libsamplerate                 1644
libsecret                     1204
libsigc++-3.0                 468
libsm                         332
libsmartcols                  316
libsndfile                    708
libsoundtouch                 480
libsoup3                      1836
libsoxr                       1084
libsqlite                     1864
libsrt                        912
libssh                        820
libssh2                       1156
libstemmer                    812
libtasn1                      468
libtheora                     692
libthread-db                  56
libtiff                       6648
libtirpc                      548
libudfread                    104
libunbound                    1196
libunistring                  3212
libuuid                       80
libv4l                        396
libvidstab                    1004
libvmaf                       1576
libvo-amrwbenc                160
libvorbis                     1768
libvpx                        2392
libvte                        2688
libwavpack                    648
libwayland                    932
libwebp                       848
libwebrtc-audio-processing    1584
libwnck                       852
libx11                        13712
libx264                       1260
libx265                       2684
libxau                        128
libxcb                        12780
libxcb-errors                 104
libxcomposite                 136
libxcursor                    372
libxdamage                    80
libxdmcp                      196
libxext                       616
libxfce4ui                    876
libxfce4util                  424
libxfce4windowing             652
libxfixes                     104
libxft                        492
libxi                         788
libxinerama                   108
libxkbcommon                  964
libxkbfile                    240
libxklavier                   220
libxml2                       1832
libxmlb                       696
libxmu                        456
libxpresent                   128
libxrandr                     192
libxrender                    164
libxshmfence                  76
libxslt                       1800
libxss                        144
libxt                         3120
libxtst                       232
libxv                         208
libxxf86vm                    192
libyaml                       204
libzimg                       564
littlecms                     540
lld                           17660
llvm                          55904
lsof                          392
luanti                        8536
luanti-common                 10880
lxde-icon-theme               8520
lz4                           296
lzip                          232
lzop                          276
make                          936
mesa                          16192
mesa-demos                    51936
mesa-vulkan-icd-freedreno     8744
mpg123                        916
nano                          928
ncurses                       1596
ncurses-ui-libs               148
ndk-sysroot                   20572
net-tools                     564
netcat-openbsd                92
ocl-icd                       736
openal-soft                   2108
opengl                        4
openh264                      1000
openjpeg                      516
openssh                       5980
openssh-sftp-server           176
openssl                       7752
opusfile                      240
p11-kit                       3488
p7zip                         8652
pango                         2480
patch                         228
pavucontrol                   540
pcre2                         4104
perl                          67736
pinentry                      208
pkg-config                    136
portaudio                     332
portmidi                      164
procps                        680
psmisc                        184
pulseaudio                    4040
pulseaudio-glib               84
python                        58668
python-ensurepip-wheels       1820
python-pip                    13360
readline                      1124
resolv-conf                   48
rubberband                    1620
sdl2                          4132
sed                           412
shared-mime-info              2592
speexdsp                      168
startup-notification          124
svt-av1                       4184
tar                           1244
termux-am                     620
termux-am-socket              88
termux-auth                   80
termux-exec                   48
termux-keyring                180
termux-licenses               372
termux-tools                  548
termux-x11-nightly            64
thunar                        1940
thunar-archive-plugin         116
ttf-dejavu                    10108
tumbler                       524
tur-repo                      60
unrar                         468
unzip                         328
util-linux                    4072
vim-gtk                       33284
virglrenderer-android         4816
vkmark                        1676
vulkan-loader                 4
vulkan-loader-generic         628
vulkan-tools                  2164
webkit2gtk-4.1                96776
webkitgtk-6.0                 91696
which                         84
woff2                         432
wxwidgets                     25316
x11-repo                      52
xcb-util                      108
xcb-util-wm                   268
xdg-utils                     328
xfce4                         4
xfce4-notifyd                 748
xfce4-panel                   2548
xfce4-session                 840
xfce4-settings                2748
xfce4-terminal                540
xfconf                        544
xfdesktop                     3368
xfwm4                         3932
xkeyboard-config              4044
xorg-iceauth                  88
xorg-xauth                    112
xorg-xkbcomp                  248
xorg-xprop                    100
xorg-xrdb                     96
xvidcore                      392
xxhash                        408
xz-utils                      224
zenity                        11360
zip                           556
zlib                          256
zstd                          1300

@robertkirkman

robertkirkman commented Feb 2, 2025

Copy link
Copy Markdown
Member Author

Your command does not produce the same format of lines on my device that you sent me, instead it printed some lines like this:

$124	$startup-notification
$12168	$gst-plugins-base
$1204	$libsecret
$1196	$libunbound
$1196	$libiconv

When I used this way of typing it instead, I saw the same format as yours: dpkg-query -Wf '${Installed-Size}\t${Package}\n' | sort -nr

dpkg-query sorted from one of my devices where audacity recording works
220508	firefox
190148	clang
146524	libllvm
96776	webkit2gtk-4.1
91696	webkitgtk-6.0
67736	perl
59132	guile
58668	python
55904	llvm
51936	mesa-demos
42212	libicu
40924	librsvg
38160	gtk4
35660	libcompiler-rt
33884	ffmpeg
33284	vim-gtk
32324	gtk3
30836	audacity
25316	wxwidgets
24228	glm
20572	ndk-sysroot
19984	glib
19520	angle-android
17660	lld
16192	mesa
15600	gdb
13980	adwaita-icon-theme
13712	libx11
13360	python-pip
12780	libxcb
12700	gtkmm4
12168	gst-plugins-base
11360	zenity
11248	glmark2
10880	luanti-common
10860	assimp
10388	file
10108	ttf-dejavu
9552	libnss
8884	gstreamer
8744	mesa-vulkan-icd-freedreno
8652	p7zip
8536	luanti
8520	lxde-icon-theme
8400	abseil-cpp
7792	libglibmm-2.68
7752	openssl
7732	adwaita-icon-theme-legacy
7712	gst-plugins-bad
7228	libaom
7064	libjxl
6648	libtiff
5980	openssh
5340	gnupg
4816	virglrenderer-android
4552	gst-plugins-good
4396	libadwaita
4340	harfbuzz
4264	bash
4184	svt-av1
4132	sdl2
4104	pcre2
4072	util-linux
4044	xkeyboard-config
4040	pulseaudio
4000	apt
3936	krb5
3932	xfwm4
3488	p11-kit
3392	fftw
3368	xfdesktop
3280	at-spi2-core
3244	libglvnd
3240	libcurl
3236	gawk
3212	libunistring
3120	libxt
3056	iso-codes
2868	ldns
2784	iproute2
2748	xfce4-settings
2732	libepoxy
2688	libvte
2684	libx265
2644	coreutils
2604	aspell
2592	shared-mime-info
2548	xfce4-panel
2480	pango
2400	libgnutls
2392	libvpx
2356	appstream
2248	libdb
2200	libopenmpt
2180	librav1e
2164	vulkan-tools
2164	gcr4
2108	openal-soft
2056	libjpeg-turbo
1980	file-roller-help
1972	graphene
1940	thunar
1864	libsqlite
1836	libsoup3
1832	libxml2
1820	python-ensurepip-wheels
1800	libxslt
1768	libvorbis
1732	dbus
1696	freetype
1676	vkmark
1644	libsamplerate
1640	libcairo
1620	rubberband
1612	libgcrypt
1596	ncurses
1584	libwebrtc-audio-processing
1576	libvmaf
1516	libheif
1500	gvfs
1476	bsdtar
1424	libnettle
1376	libcaca
1340	dpkg
1324	libbsd
1304	libc++
1300	zstd
1284	imlib2
1260	libx264
1244	tar
1244	hunspell
1240	libgmp
1204	libsecret
1196	libunbound
1196	libiconv
1160	inetutils
1156	libssh2
1144	libevent
1124	readline
1084	libsoxr
1068	libnspr
1032	brotli
1020	libarchive
1004	libvidstab
1004	libmpfr
1000	openh264
964	libxkbcommon
960	gdk-pixbuf
936	make
936	libflac
932	libwayland
928	nano
916	mpg123
912	libsrt
888	libpangomm-2.48
888	libdav1d
884	findutils
880	libgc
876	libxfce4ui
876	libdrm
852	libwnck
848	libwebp
844	liblzma
840	xfce4-session
820	libssh
812	libstemmer
788	libxi
784	json-glib
764	glib-bin
748	xfce4-notifyd
736	ocl-icd
712	garcon
708	libsndfile
704	fontconfig
700	file-roller
696	libxmlb
696	libgtop
692	libtheora
684	libogg
680	procps
652	libxfce4windowing
648	libwavpack
644	libpixman
628	vulkan-loader-generic
620	termux-am
616	libxext
612	libcairomm-1.16
604	command-not-found
592	libluajit
588	diffutils
584	libexif
584	hunspell-en-us
572	libgpg-error
568	gdbm
564	net-tools
564	libzimg
556	zip
548	termux-tools
548	libtirpc
544	xfconf
540	xfce4-terminal
540	pavucontrol
540	littlecms
540	libopus
532	libpng
532	libnghttp2
524	tumbler
516	openjpeg
516	glu
508	libass
504	libde265
492	libxft
492	gpgv
480	libsoundtouch
480	freeglut
480	exo
468	unrar
468	libtasn1
468	libsigc++-3.0
456	libxmu
444	liblzo
444	fribidi
440	jsoncpp
436	libice
432	woff2
428	libidn2
424	libxfce4util
424	dconf
412	sed
408	xxhash
404	libksba
396	libv4l
392	xvidcore
392	lsof
392	grep
388	libdisplay-info
384	libbluray
380	curl
376	game-music-emu
376	arj
372	termux-licenses
372	libxcursor
372	less
368	libexpat
352	libmp3lame
352	liblz4
352	gsettings-desktop-schemas
348	libcanberra
348	dos2unix
344	gtk-layer-shell
332	portaudio
332	libsm
332	libassuan
328	xdg-utils
328	unzip
316	libsmartcols
316	gzip
308	libnghttp3
308	libandroid-selinux
304	libedit
296	lz4
292	libopencore-amr
292	enchant
288	libnotify
288	libgraphite
276	lzop
276	dialog
272	ca-certificates
268	xcb-util-wm
268	libcap-ng
256	zlib
256	desktop-file-utils
248	xorg-xkbcomp
240	opusfile
240	libxkbfile
240	cpio
232	lzip
232	libxtst
228	patch
228	libffi
224	xz-utils
224	libdecor
220	libxklavier
208	pinentry
208	libxv
204	libyaml
196	libxdmcp
196	libpsl
192	libxxf86vm
192	libxrandr
192	libhyphen
188	libmd
188	glib-networking
184	psmisc
180	termux-keyring
180	ed
180	dash
176	openssh-sftp-server
172	libid3tag
168	speexdsp
164	portmidi
164	libxrender
160	libvo-amrwbenc
148	ncurses-ui-libs
144	libxss
136	pkg-config
136	libxcomposite
128	libxpresent
128	libxau
128	bzip2
124	startup-notification
116	thunar-archive-plugin
116	libbz2
116	debianutils
112	xorg-xauth
108	xcb-util
108	libxinerama
108	hicolor-icon-theme
104	libxfixes
104	libxcb-errors
104	libudfread
104	libresolv-wrapper
100	xorg-xprop
100	giflib
96	xorg-xrdb
96	libltdl
96	libandroid-spawn
92	netcat-openbsd
92	libnpth
88	xorg-iceauth
88	termux-am-socket
88	libandroid-execinfo
84	which
84	pulseaudio-glib
80	termux-auth
80	libxdamage
80	libuuid
76	libxshmfence
76	libandroid-support
72	libandroid-shmem
72	gtk-update-icon-cache
68	libcrypt
68	libandroid-glob
64	termux-x11-nightly
60	tur-repo
60	harfbuzz-icu
56	libthread-db
52	x11-repo
52	libandroid-utimes
52	libandroid-posix-semaphore
48	termux-exec
48	resolv-conf
4	xfce4
4	vulkan-loader
4	opengl
4	atk

Could you show the versions of your packages using apt list --installed?

apt list --installed
Listing...
abseil-cpp/stable,now 20240116.2-1 aarch64 [installed,automatic]
adwaita-icon-theme-legacy/x11,now 46.2-1 all [installed,automatic]
adwaita-icon-theme/x11,now 47.0 all [installed,automatic]
angle-android/stable,now 2.1.24755-91985374-1 aarch64 [installed,automatic]
appstream/stable,now 1.0.4 aarch64 [installed,automatic]
apt/stable,now 2.8.1-1 aarch64 [installed]
arj/stable,now 3.10.22-5 aarch64 [installed,automatic]
aspell/stable,now 0.60.8.1 aarch64 [installed,automatic]
assimp/stable,now 5.4.3 aarch64 [installed,automatic]
at-spi2-core/stable,now 2.54.1 aarch64 [installed,automatic]
atk/x11,now 2.48.0 all [installed,automatic]
audacity/x11,now 3.7.1-1 aarch64 [installed]
bash/stable,now 5.2.37 aarch64 [installed]
brotli/stable,now 1.1.0 aarch64 [installed,automatic]
bsdtar/stable,now 3.7.7 aarch64 [installed,automatic]
bzip2/stable,now 1.0.8-6 aarch64 [installed]
ca-certificates/stable,now 1:2024.12.31 all [installed]
clang/stable,now 19.1.7 aarch64 [installed,automatic]
command-not-found/stable,now 2.4.0-61 aarch64 [installed]
coreutils/stable,now 9.5-3 aarch64 [installed]
cpio/stable,now 2.15 aarch64 [installed,automatic]
curl/stable,now 8.11.1 aarch64 [installed]
dash/stable,now 0.5.12 aarch64 [installed]
dbus/stable,now 1.15.6-3 aarch64 [installed,automatic]
dconf/x11,now 0.40.0-4 aarch64 [installed,automatic]
debianutils/stable,now 5.21 aarch64 [installed]
desktop-file-utils/x11,now 0.28 aarch64 [installed,automatic]
dialog/stable,now 1.3-20240307-0 aarch64 [installed]
diffutils/stable,now 3.10 aarch64 [installed]
dos2unix/stable,now 7.5.2 aarch64 [installed]
dpkg/stable,now 1.22.6-1 aarch64 [installed]
ed/stable,now 1.21 aarch64 [installed]
enchant/stable,now 2.8.2-1 aarch64 [installed,automatic]
exo/x11,now 4.20.0 aarch64 [installed,automatic]
ffmpeg/stable,now 7.1-2 aarch64 [installed,automatic]
fftw/stable,now 3.3.10-3 aarch64 [installed,automatic]
file-roller-help/x11,now 44.4 all [installed,automatic]
file-roller/x11,now 44.4 aarch64 [installed,automatic]
file/stable,now 5.46 aarch64 [installed,automatic]
findutils/stable,now 4.10.0 aarch64 [installed]
firefox/x11,now 134.0.2 aarch64 [installed]
fontconfig/stable,now 2.16.0 aarch64 [installed,automatic]
freeglut/x11,now 3.4.0 aarch64 [installed,automatic]
freetype/stable,now 2.13.3 aarch64 [installed,automatic]
fribidi/stable,now 1.0.16 aarch64 [installed,automatic]
game-music-emu/stable,now 0.6.3-1 aarch64 [installed,automatic]
garcon/x11,now 4.20.0 aarch64 [installed,automatic]
gawk/stable,now 5.3.0 aarch64 [installed]
gcr4/x11,now 4.3.0 aarch64 [installed,automatic]
gdb/stable,now 15.2 aarch64 [installed]
gdbm/stable,now 1.24 aarch64 [installed,automatic]
gdk-pixbuf/stable,now 2.42.12 aarch64 [installed,automatic]
giflib/stable,now 5.2.2 aarch64 [installed,automatic]
glib-bin/stable,now 2.82.4 aarch64 [installed,automatic]
glib-networking/stable,now 2.80.1 aarch64 [installed,automatic]
glib/stable,now 2.82.4 aarch64 [installed,automatic]
glm/stable,now 1.0.1 aarch64 [installed,automatic]
glmark2/x11,now 2023.01-2 aarch64 [installed]
glu/x11,now 9.0.3 aarch64 [installed,automatic]
gnupg/stable,now 2.4.5-3 aarch64 [installed,automatic]
gpgv/stable,now 2.4.5-3 aarch64 [installed]
graphene/stable,now 1.10.8-1 aarch64 [installed,automatic]
grep/stable,now 3.11 aarch64 [installed]
gsettings-desktop-schemas/x11,now 47.1 all [installed,automatic]
gst-plugins-bad/stable,now 1.24.12 aarch64 [installed,automatic]
gst-plugins-base/stable,now 1.24.12 aarch64 [installed,automatic]
gst-plugins-good/stable,now 1.24.12 aarch64 [installed,automatic]
gstreamer/stable,now 1.24.12 aarch64 [installed,automatic]
gtk-layer-shell/x11,now 0.9.0 aarch64 [installed,automatic]
gtk-update-icon-cache/x11,now 3.24.48 aarch64 [installed,automatic]
gtk3/x11,now 3.24.48 aarch64 [installed,automatic]
gtk4/x11,now 4.16.12 aarch64 [installed,automatic]
gtkmm4/x11,now 4.16.0 aarch64 [installed,automatic]
guile/stable,now 3.0.9-2 aarch64 [installed,automatic]
gvfs/x11,now 1.55.1 aarch64 [installed,automatic]
gzip/stable,now 1.13 aarch64 [installed]
harfbuzz-icu/stable,now 10.2.0 aarch64 [installed,automatic]
harfbuzz/stable,now 10.2.0 aarch64 [installed,automatic]
hicolor-icon-theme/x11,now 0.18 all [installed,automatic]
hunspell-en-us/stable,now 20240129 all [installed,automatic]
hunspell/stable,now 1.7.2 aarch64 [installed,automatic]
imlib2/stable,now 1.12.3-1 aarch64 [installed,automatic]
inetutils/stable,now 2.5 aarch64 [installed]
iproute2/stable,now 6.12.0 aarch64 [installed]
iso-codes/x11,now 4.17.0 all [installed,automatic]
json-glib/stable,now 1.10.6 aarch64 [installed,automatic]
jsoncpp/stable,now 1.9.6 aarch64 [installed,automatic]
krb5/stable,now 1.21.3 aarch64 [installed,automatic]
ldns/stable,now 1.8.4 aarch64 [installed,automatic]
less/stable,now 668 aarch64 [installed]
libadwaita/x11,now 1.6.4 aarch64 [installed,automatic]
libandroid-execinfo/stable,now 0.1-1 aarch64 [installed,automatic]
libandroid-glob/stable,now 0.6-2 aarch64 [installed]
libandroid-posix-semaphore/stable,now 0.1-3 aarch64 [installed,automatic]
libandroid-selinux/stable,now 14.0.0.11 aarch64 [installed,automatic]
libandroid-shmem/stable,now 0.5 aarch64 [installed,automatic]
libandroid-spawn/stable,now 0.3 aarch64 [installed,automatic]
libandroid-support/stable,now 29 aarch64 [installed]
libandroid-utimes/stable,now 0.4 aarch64 [installed,automatic]
libaom/stable,now 3.11.0 aarch64 [installed,automatic]
libarchive/stable,now 3.7.7 aarch64 [installed,automatic]
libass/stable,now 0.17.3 aarch64 [installed,automatic]
libassuan/stable,now 3.0.1-2 aarch64 [installed]
libbluray/stable,now 1.3.4-1 aarch64 [installed,automatic]
libbsd/stable,now 0.11.7-1 aarch64 [installed,automatic]
libbz2/stable,now 1.0.8-6 aarch64 [installed]
libc++/stable,now 27c aarch64 [installed]
libcaca/stable,now 0.99.beta20-1 aarch64 [installed,automatic]
libcairo/stable,now 1.18.2 aarch64 [installed,automatic]
libcairomm-1.16/stable,now 1.18.0 aarch64 [installed,automatic]
libcanberra/x11,now 0.30-7 aarch64 [installed,automatic]
libcap-ng/stable,now 2:0.8.5 aarch64 [installed]
libcompiler-rt/stable,now 19.1.7 aarch64 [installed,automatic]
libcrypt/stable,now 0.2-5 aarch64 [installed,automatic]
libcurl/stable,now 8.11.1 aarch64 [installed]
libdav1d/stable,now 1.5.1 aarch64 [installed,automatic]
libdb/stable,now 18.1.40-4 aarch64 [installed,automatic]
libde265/stable,now 1.0.15 aarch64 [installed,automatic]
libdecor/x11,now 0.2.2-1 aarch64 [installed,automatic]
libdisplay-info/stable,now 0.2.0 aarch64 [installed,automatic]
libdrm/stable,now 2.4.124 aarch64 [installed,automatic]
libedit/stable,now 20240517-3.1-0 aarch64 [installed,automatic]
libepoxy/stable,now 1.5.10-2 aarch64 [installed,automatic]
libevent/stable,now 2.1.12-2 aarch64 [installed]
libexif/stable,now 0.6.25 aarch64 [installed,automatic]
libexpat/stable,now 2.6.4 aarch64 [installed,automatic]
libffi/stable,now 3.4.6-1 aarch64 [installed,automatic]
libflac/stable,now 1.4.3 aarch64 [installed,automatic]
libgc/stable,now 8.2.8 aarch64 [installed,automatic]
libgcrypt/stable,now 1.11.0 aarch64 [installed]
libglibmm-2.68/stable,now 2.82.0 aarch64 [installed,automatic]
libglvnd/stable,now 1.7.0 aarch64 [installed,automatic]
libgmp/stable,now 6.3.0-1 aarch64 [installed]
libgnutls/stable,now 3.8.5 aarch64 [installed]
libgpg-error/stable,now 1.50 aarch64 [installed]
libgraphite/stable,now 1.3.14-2 aarch64 [installed,automatic]
libgtop/stable,now 2.41.3 aarch64 [installed,automatic]
libheif/stable,now 1.19.5-1 aarch64 [installed,automatic]
libhyphen/stable,now 2.8.8 aarch64 [installed,automatic]
libice/stable,now 1.1.2 aarch64 [installed,automatic]
libiconv/stable,now 1.17 aarch64 [installed]
libicu/stable,now 76.1 aarch64 [installed,automatic]
libid3tag/stable,now 0.16.3 aarch64 [installed,automatic]
libidn2/stable,now 2.3.7 aarch64 [installed]
libjpeg-turbo/stable,now 3.1.0 aarch64 [installed,automatic]
libjxl/stable,now 0.11.1 aarch64 [installed,automatic]
libksba/stable,now 1.6.7-1 aarch64 [installed,automatic]
libllvm/stable,now 19.1.7 aarch64 [installed,automatic]
libltdl/stable,now 2.5.4 aarch64 [installed,automatic]
libluajit/stable,now 1:2.1.1731601260 aarch64 [installed,automatic]
liblz4/stable,now 1.10.0 aarch64 [installed]
liblzma/stable,now 5.6.4 aarch64 [installed]
liblzo/stable,now 2.10-3 aarch64 [installed,automatic]
libmd/stable,now 1.1.0 aarch64 [installed]
libmp3lame/stable,now 3.100-5 aarch64 [installed,automatic]
libmpfr/stable,now 4.2.1 aarch64 [installed]
libnettle/stable,now 3.10.1 aarch64 [installed]
libnghttp2/stable,now 1.64.0 aarch64 [installed]
libnghttp3/stable,now 1.7.0 aarch64 [installed]
libnotify/x11,now 0.8.3-1 aarch64 [installed,automatic]
libnpth/stable,now 1.6-2 aarch64 [installed]
libnspr/stable,now 4.36 aarch64 [installed,automatic]
libnss/stable,now 3.107 aarch64 [installed,automatic]
libogg/stable,now 1.3.5 aarch64 [installed,automatic]
libopencore-amr/stable,now 0.1.6 aarch64 [installed,automatic]
libopenmpt/stable,now 0.7.13 aarch64 [installed,automatic]
libopus/stable,now 1.5.2 aarch64 [installed,automatic]
libpangomm-2.48/stable,now 2.56.1 aarch64 [installed,automatic]
libpixman/stable,now 0.44.2 aarch64 [installed,automatic]
libpng/stable,now 1.6.46 aarch64 [installed,automatic]
libpsl/stable,now 0.21.5 aarch64 [installed,automatic]
librav1e/stable,now 0.7.1-2 aarch64 [installed,automatic]
libresolv-wrapper/stable,now 1.1.7-4 aarch64 [installed,automatic]
librsvg/stable,now 2.59.2 aarch64 [installed,automatic]
libsamplerate/stable,now 0.2.2-1 aarch64 [installed,automatic]
libsecret/stable,now 0.21.6 aarch64 [installed,automatic]
libsigc++-3.0/stable,now 3.6.0 aarch64 [installed,automatic]
libsm/stable,now 1.2.5 aarch64 [installed,automatic]
libsmartcols/stable,now 2.40.2-2 aarch64 [installed]
libsndfile/stable,now 1.2.2 aarch64 [installed,automatic]
libsoundtouch/stable,now 2.3.3 aarch64 [installed,automatic]
libsoup3/stable,now 3.6.4 aarch64 [installed,automatic]
libsoxr/stable,now 0.1.3-7 aarch64 [installed,automatic]
libsqlite/stable,now 3.48.0 aarch64 [installed,automatic]
libsrt/stable,now 1.5.4 aarch64 [installed,automatic]
libssh2/stable,now 1.11.1 aarch64 [installed]
libssh/stable,now 0.11.1 aarch64 [installed,automatic]
libstemmer/stable,now 2.2.0-1 aarch64 [installed,automatic]
libtasn1/stable,now 4.19.0-1 aarch64 [installed,automatic]
libtheora/stable,now 1.1.1-1 aarch64 [installed,automatic]
libthread-db/stable,now 22-1 aarch64 [installed,automatic]
libtiff/stable,now 4.7.0 aarch64 [installed,automatic]
libtirpc/stable,now 1.3.6 aarch64 [installed]
libudfread/stable,now 1.1.2 aarch64 [installed,automatic]
libunbound/stable,now 1.22.0 aarch64 [installed]
libunistring/stable,now 1.3 aarch64 [installed]
libuuid/stable,now 2.40.2-2 aarch64 [installed,automatic]
libv4l/stable,now 1.24.1-1 aarch64 [installed,automatic]
libvidstab/stable,now 1.1.1-1 aarch64 [installed,automatic]
libvmaf/stable,now 3.0.0 aarch64 [installed,automatic]
libvo-amrwbenc/stable,now 0.1.3 aarch64 [installed,automatic]
libvorbis/stable,now 1.3.7-2 aarch64 [installed,automatic]
libvpx/stable,now 1:1.15.0-1 aarch64 [installed,automatic]
libvte/x11,now 2:0.76.4-1 aarch64 [installed,automatic]
libwavpack/stable,now 5.8.1 aarch64 [installed,automatic]
libwayland/stable,now 1.23.1-1 aarch64 [installed,automatic]
libwebp/stable,now 1.5.0 aarch64 [installed,automatic]
libwebrtc-audio-processing/stable,now 1.3-1 aarch64 [installed,automatic]
libwnck/x11,now 43.2 aarch64 [installed,automatic]
libx11/stable,now 1.8.10 aarch64 [installed,automatic]
libx264/stable,now 1:0.164.3191 aarch64 [installed,automatic]
libx265/stable,now 4.1 aarch64 [installed,automatic]
libxau/stable,now 1.0.12 aarch64 [installed,automatic]
libxcb-errors/now 1.0.1 aarch64 [installed,local]
libxcb/stable,now 1.17.0 aarch64 [installed,automatic]
libxcomposite/x11,now 0.4.6 aarch64 [installed,automatic]
libxcursor/stable,now 1.2.3 aarch64 [installed,automatic]
libxdamage/x11,now 1.1.6 aarch64 [installed,automatic]
libxdmcp/stable,now 1.1.5 aarch64 [installed,automatic]
libxext/stable,now 1.3.6 aarch64 [installed,automatic]
libxfce4ui/x11,now 4.20.0 aarch64 [installed,automatic]
libxfce4util/x11,now 4.20.0 aarch64 [installed,automatic]
libxfce4windowing/x11,now 4.20.0 aarch64 [installed,automatic]
libxfixes/stable,now 6.0.1 aarch64 [installed,automatic]
libxft/stable,now 2.3.8 aarch64 [installed,automatic]
libxi/stable,now 1.8.2 aarch64 [installed,automatic]
libxinerama/x11,now 1.1.5 aarch64 [installed,automatic]
libxkbcommon/x11,now 1.7.0 aarch64 [installed,automatic]
libxkbfile/x11,now 1.1.3 aarch64 [installed,automatic]
libxklavier/x11,now 5.4-26 aarch64 [installed,automatic]
libxml2/stable,now 2.13.5 aarch64 [installed,automatic]
libxmlb/stable,now 0.3.21 aarch64 [installed,automatic]
libxmu/x11,now 1.2.1 aarch64 [installed,automatic]
libxpresent/x11,now 1.0.1 aarch64 [installed,automatic]
libxrandr/stable,now 1.5.4 aarch64 [installed,automatic]
libxrender/stable,now 0.9.12 aarch64 [installed,automatic]
libxshmfence/stable,now 1.3.3 aarch64 [installed,automatic]
libxslt/stable,now 1.1.42-1 aarch64 [installed,automatic]
libxss/stable,now 1.2.4 aarch64 [installed,automatic]
libxt/stable,now 1.3.1 aarch64 [installed,automatic]
libxtst/stable,now 1.2.5 aarch64 [installed,automatic]
libxv/stable,now 1.0.13 aarch64 [installed,automatic]
libxxf86vm/stable,now 1.1.6 aarch64 [installed,automatic]
libyaml/stable,now 0.2.5-4 aarch64 [installed,automatic]
libzimg/stable,now 3.0.5 aarch64 [installed,automatic]
littlecms/stable,now 2.16 aarch64 [installed,automatic]
lld/stable,now 19.1.7 aarch64 [installed,automatic]
llvm/stable,now 19.1.7 aarch64 [installed,automatic]
lsof/stable,now 4.99.4 aarch64 [installed]
luanti-common/x11,now 1:5.10.0-4 all [installed,automatic]
luanti/x11,now 1:5.10.0-4 aarch64 [installed]
lxde-icon-theme/x11,now 0.5.1-22 all [installed,automatic]
lz4/stable,now 1.10.0 aarch64 [installed,automatic]
lzip/stable,now 1.25 aarch64 [installed,automatic]
lzop/stable,now 1.04-1 aarch64 [installed,automatic]
make/stable,now 4.4.1 aarch64 [installed,automatic]
mesa-demos/x11,now 9.0.0-4 aarch64 [installed]
mesa-vulkan-icd-freedreno/stable,now 24.3.4 aarch64 [installed]
mesa/stable,now 24.3.4 aarch64 [installed,automatic]
mpg123/stable,now 1.32.10 aarch64 [installed,automatic]
nano/stable,now 8.3 aarch64 [installed]
ncurses-ui-libs/stable,now 6.5.20240831-2 aarch64 [installed,automatic]
ncurses/stable,now 6.5.20240831-2 aarch64 [installed]
ndk-sysroot/stable,now 27c aarch64 [installed,automatic]
net-tools/stable,now 2.10.0 aarch64 [installed]
netcat-openbsd/stable,now 1.228-1-0 aarch64 [installed]
ocl-icd/stable,now 2.3.2 aarch64 [installed,automatic]
openal-soft/stable,now 1.24.2 aarch64 [installed,automatic]
opengl/stable,now 0.1 all [installed,automatic]
openh264/stable,now 2.5.0 aarch64 [installed,automatic]
openjpeg/stable,now 2.5.3 aarch64 [installed,automatic]
openssh-sftp-server/stable,now 9.9p1-5 aarch64 [installed,automatic]
openssh/stable,now 9.9p1-5 aarch64 [installed]
openssl/stable,now 1:3.3.2 aarch64 [installed]
opusfile/stable,now 0.12-3 aarch64 [installed,automatic]
p11-kit/stable,now 0.25.5 aarch64 [installed,automatic]
p7zip/stable,now 17.06 aarch64 [installed,automatic]
pango/stable,now 1.56.1 aarch64 [installed,automatic]
patch/stable,now 2.7.6-4 aarch64 [installed]
pavucontrol/x11,now 6.1 aarch64 [installed]
pcre2/stable,now 10.44 aarch64 [installed]
perl/stable,now 5.38.2-3 aarch64 [installed,automatic]
pinentry/stable,now 1.3.1-1 aarch64 [installed,automatic]
pkg-config/stable,now 0.29.2-2 aarch64 [installed,automatic]
portaudio/stable,now 19.07.00-2 aarch64 [installed,automatic]
portmidi/stable,now 2.0.4 aarch64 [installed,automatic]
procps/stable,now 3.3.17-5 aarch64 [installed]
psmisc/stable,now 23.7 aarch64 [installed]
pulseaudio-glib/stable,now 17.0-1 aarch64 [installed,automatic]
pulseaudio/stable,now 17.0-1 aarch64 [installed]
python-ensurepip-wheels/stable,now 3.12.8 all [installed,automatic]
python-pip/stable,now 24.3.1 all [installed,automatic]
python/stable,now 3.12.8 aarch64 [installed,automatic]
readline/stable,now 8.2.13 aarch64 [installed]
resolv-conf/stable,now 1.3 aarch64 [installed]
rubberband/stable,now 4.0.0 aarch64 [installed,automatic]
sdl2/x11,now 2.30.11 aarch64 [installed,automatic]
sed/stable,now 4.9-1 aarch64 [installed]
shared-mime-info/x11,now 2.4 aarch64 [installed,automatic]
speexdsp/stable,now 1.2.1 aarch64 [installed,automatic]
startup-notification/x11,now 0.12-28 aarch64 [installed,automatic]
svt-av1/stable,now 2.3.0 aarch64 [installed,automatic]
tar/stable,now 1.35 aarch64 [installed]
termux-am-socket/stable,now 1.5.0 aarch64 [installed]
termux-am/stable,now 0.8.0-1 all [installed]
termux-auth/stable,now 1.5.0 aarch64 [installed,automatic]
termux-exec/stable,now 1:1.0 aarch64 [installed]
termux-keyring/stable,now 3.12-1 all [installed]
termux-licenses/stable,now 2.0-3 all [installed]
termux-tools/stable,now 1.44.6 aarch64 [installed]
termux-x11-nightly/x11,now 1.03.01-3 all [installed]
thunar-archive-plugin/x11,now 0.5.3 aarch64 [installed,automatic]
thunar/x11,now 4.20.1-1 aarch64 [installed,automatic]
ttf-dejavu/stable,now 2.37-8 all [installed,automatic]
tumbler/x11,now 4.20.0 aarch64 [installed,automatic]
tur-repo/stable,now 1.0.1 all [installed]
unrar/stable,now 7.1.3 aarch64 [installed,automatic]
unzip/stable,now 6.0-9 aarch64 [installed]
util-linux/stable,now 2.40.2-2 aarch64 [installed]
vim-gtk/x11,now 9.1.1050 aarch64 [installed]
virglrenderer-android/now 1.0.1-4 aarch64 [installed,local]
vkmark/tur-packages,now 2023.04.12-r139.ab6e6f3-0 aarch64 [installed]
vulkan-loader-generic/stable,now 1.4.306 aarch64 [installed,automatic]
vulkan-loader/stable,now 0.0.3 all [installed,automatic]
vulkan-tools/stable,now 1.4.306 aarch64 [installed]
webkit2gtk-4.1/x11,now 2.42.4-3 aarch64 [installed,automatic]
webkitgtk-6.0/x11,now 2.42.4-2 aarch64 [installed,automatic]
which/stable,now 2.21 aarch64 [installed,automatic]
woff2/stable,now 1.0.2-3 aarch64 [installed,automatic]
wxwidgets/x11,now 3.2.2.1-4 aarch64 [installed,automatic]
x11-repo/stable,now 8.4-1 all [installed]
xcb-util-wm/x11,now 0.4.2 aarch64 [installed,automatic]
xcb-util/x11,now 0.4.1 aarch64 [installed,automatic]
xdg-utils/x11,now 1.1.3-1 aarch64 [installed,automatic]
xfce4-notifyd/x11,now 0.9.6 aarch64 [installed,automatic]
xfce4-panel/x11,now 4.20.0 aarch64 [installed,automatic]
xfce4-session/x11,now 4.20.0 aarch64 [installed,automatic]
xfce4-settings/x11,now 4.20.0-1 aarch64 [installed,automatic]
xfce4-terminal/x11,now 1.1.4-1 aarch64 [installed,automatic]
xfce4/x11,now 2.1-17 all [installed]
xfconf/x11,now 4.20.0 aarch64 [installed,automatic]
xfdesktop/x11,now 4.20.0-1 aarch64 [installed,automatic]
xfwm4/x11,now 4.20.0 aarch64 [installed,automatic]
xkeyboard-config/x11,now 2.43-1 all [installed,automatic]
xorg-iceauth/x11,now 1.0.10 aarch64 [installed,automatic]
xorg-xauth/x11,now 1.1.3-1 aarch64 [installed,automatic]
xorg-xkbcomp/x11,now 1.4.7 aarch64 [installed,automatic]
xorg-xprop/x11,now 1.2.8 aarch64 [installed,automatic]
xorg-xrdb/x11,now 1.2.2-1 aarch64 [installed,automatic]
xvidcore/stable,now 1.3.7 aarch64 [installed,automatic]
xxhash/stable,now 0.8.3 aarch64 [installed]
xz-utils/stable,now 5.6.4 aarch64 [installed]
zenity/x11,now 4.0.3 aarch64 [installed,automatic]
zip/stable,now 3.0-5 aarch64 [installed,automatic]
zlib/stable,now 1.3.1 aarch64 [installed]
zstd/stable,now 1.5.6-2 aarch64 [installed]

In your list, audacity has the same size as mine, but portaudio has a different size. Maybe yours is different.

@RalfWerner

Copy link
Copy Markdown

Sorry for the typo. The 2x2 lists are comparable to Ralf/Robert's 431/356 lines each. The first method gives me 2 more packages (openssl-1.1,postgresql) and we have different packages installed, but these should not have any influence on recordings.

but portaudio has a different size. Maybe yours is different.

my portaudio version is 20180920-1 and yours is 19.07.00-2. If I delete it and reinstall it, I get mine again.

remove and include of portaudio
[~]$ pkg rm portaudio
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following packages were automatically installed and are no longer required:
  glu libdecor libnotify libsecret libsoundtouch libwavpack opusfile portmidi sdl2 webkit2gtk-4.1 wxwidgets
Use 'apt autoremove' to remove them.
The following packages will be REMOVED:
  audacity portaudio
0 upgraded, 0 newly installed, 2 to remove and 0 not upgraded.
After this operation, 31.7 MB disk space will be freed.
Do you want to continue? [Y/n]
(Reading database ... 88570 files and directories currently installed.)
Removing audacity (3.7.1-1) ...
Removing portaudio (20180920-1) ...
Processing triggers for desktop-file-utils (0.28) ...
Processing triggers for shared-mime-info (2.4) ...
Processing triggers for gtk-update-icon-cache (3.24.48) ...
[~]$ pkg in portaudio
Checking availability of current mirror:
[*] https://packages.termux.dev/apt/termux-main: ok
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following packages were automatically installed and are no longer required:
  glu libdecor libnotify libsecret libsoundtouch libwavpack opusfile portmidi sdl2 webkit2gtk-4.1 wxwidgets
Use 'apt autoremove' to remove them.
The following NEW packages will be installed:
  portaudio
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B/34.8 kB of archives.
After this operation, 152 kB of additional disk space will be used.
Selecting previously unselected package portaudio.
(Reading database ... 88381 files and directories currently installed.)
Preparing to unpack .../portaudio_20180920-1_aarch64.deb ...
Unpacking portaudio (20180920-1) ...
Setting up portaudio (20180920-1) ...
[3]+  Done                    audacity
[~]$ pkg up
Checking availability of current mirror:
[*] https://packages.termux.dev/apt/termux-main: ok
Hit:1 https://packages.termux.dev/apt/termux-main stable InRelease
Hit:2 https://packages.termux.dev/apt/termux-x11 x11 InRelease
Hit:3 https://its-pointless.github.io/files/24 termux InRelease
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
All packages are up to date.
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Calculating upgrade... Done
The following packages were automatically installed and are no longer required:
  glu libdecor libnotify libsecret libsoundtouch libwavpack opusfile portmidi sdl2 webkit2gtk-4.1 wxwidgets
Use 'apt autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

How did you install your portaudio version?

Comparison of packages

apt list --installed (Ralf)
Listing... Ralf
aalib/stable,now 1.4rc5-12 aarch64 [installed,automatic]
aapt/stable,now 13.0.0.6-16 aarch64 [installed]
abseil-cpp/stable,now 20240116.2-1 aarch64 [installed,automatic]
adwaita-icon-theme-legacy/x11,now 46.2-1 all [installed,automatic]
adwaita-icon-theme/x11,now 47.0 all [installed,automatic]
alsa-lib/stable,now 1.2.13 aarch64 [installed,automatic]
android-tools/stable,now 35.0.2 aarch64 [installed]
apksigner/stable,now 33.0.1 all [installed]
apt/stable,now 2.8.1-1 aarch64 [installed]
asciidoc/stable,now 10.2.1-1 all [installed]
asciidoctor/stable,now 2.0.23 all [installed]
aspell/stable,now 0.60.8.1 aarch64 [installed,automatic]
at-spi2-core/stable,now 2.54.1 aarch64 [installed,automatic]
aterm/x11,now 1.0.1-33 aarch64 [installed]
atk/x11,now 2.48.0 all [installed,automatic]
audacity/x11,now 3.7.1-1 aarch64 [installed]
autoconf/stable,now 2.72 all [installed]
automake/stable,now 1.17 all [installed]
babl/stable,now 0.1.110 aarch64 [installed,automatic]
bash-completion/stable,now 2.16.0 all [installed,automatic]
bash/stable,now 5.2.37 aarch64 [installed]
bc/stable,now 1.07.1-1 aarch64 [installed]
binutils-bin/stable,now 2.43.1 aarch64 [installed,automatic]
binutils-libs/stable,now 2.43.1 aarch64 [installed,automatic]
binutils/stable,now 2.43.1 aarch64 [installed,automatic]
bison/stable,now 3.8.2-3 aarch64 [installed]
brotli/stable,now 1.1.0 aarch64 [installed,automatic]
bzip2/stable,now 1.0.8-6 aarch64 [installed]
ca-certificates-java/stable,now 1:2024.12.31 all [installed,automatic]
ca-certificates/stable,now 1:2024.12.31 all [installed]
clang/stable,now 19.1.7 aarch64 [installed]
cmake/stable,now 3.31.5 aarch64 [installed]
command-not-found/stable,now 2.4.0-59 aarch64 [installed]
coreutils/stable,now 9.5-3 aarch64 [installed]
cups/stable,now 2.4.11 aarch64 [installed,automatic]
curl/stable,now 8.11.1 aarch64 [installed]
dash/stable,now 0.5.12 aarch64 [installed]
dbus/stable,now 1.15.6-3 aarch64 [installed,automatic]
debianutils/stable,now 5.21 aarch64 [installed]
desktop-file-utils/x11,now 0.28 aarch64 [installed,automatic]
dialog/stable,now 1.3-20240307-0 aarch64 [installed]
diffutils/stable,now 3.10 aarch64 [installed]
docbook-xml/stable,now 4.5-4 all [installed,automatic]
docbook-xsl/stable,now 1.79.2-1 all [installed,automatic]
dos2unix/stable,now 7.5.2 aarch64 [installed]
double-conversion/stable,now 3.3.0 aarch64 [installed,automatic]
dpkg/stable,now 1.22.6-1 aarch64 [installed]
ed/stable,now 1.21 aarch64 [installed]
enchant/stable,now 2.8.2-1 aarch64 [installed,automatic]
exiv2/stable,now 2:0.28.3 aarch64 [installed,automatic]
feh/x11,now 3.10.3 aarch64 [installed]
ffmpeg/stable,now 7.1-2 aarch64 [installed,automatic]
fftw/stable,now 3.3.10-3 aarch64 [installed,automatic]
file/stable,now 5.46 aarch64 [installed]
findutils/stable,now 4.10.0 aarch64 [installed]
firefox/x11,now 134.0.2 aarch64 [installed]
flex/stable,now 2.6.4-3 aarch64 [installed]
fluxbox/x11,now 1.3.7-36 aarch64 [installed]
fmt/stable,now 1:11.1.3 aarch64 [installed,automatic]
fontconfig-utils/stable,now 2.16.0 aarch64 [installed,automatic]
fontconfig/stable,now 2.16.0 aarch64 [installed,automatic]
freetype/stable,now 2.13.3 aarch64 [installed,automatic]
fribidi/stable,now 1.0.16 aarch64 [installed,automatic]
game-music-emu/stable,now 0.6.3-1 aarch64 [installed,automatic]
gawk/stable,now 5.3.0 aarch64 [installed]
gcc-9/termux,now 9.3.0-2 aarch64 [installed]
gdbm/stable,now 1.24 aarch64 [installed,automatic]
gdk-pixbuf/stable,now 2.42.12 aarch64 [installed]
gegl/stable,now 0.4.52 aarch64 [installed,automatic]
gettext/stable,now 0.23.1 aarch64 [installed]
gexiv2/stable,now 0.14.3-1 aarch64 [installed,automatic]
ghostscript/stable,now 10.03.1-1 aarch64 [installed,automatic]
giflib/stable,now 5.2.2 aarch64 [installed,automatic]
gimp-data/x11,now 2.10.38-2 all [installed,automatic]
gimp/x11,now 2.10.38-2 aarch64 [installed]
git/stable,now 2.48.1 aarch64 [installed]
glib-bin/stable,now 2.82.4 aarch64 [installed,automatic]
glib-networking/stable,now 2.80.1 aarch64 [installed,automatic]
glib/stable,now 2.82.4 aarch64 [installed,automatic]
glu/x11,now 9.0.3 aarch64 [installed,automatic]
gnupg/stable,now 2.4.5-3 aarch64 [installed]
golang/stable,now 3:1.23.5 aarch64 [installed]
gperf/stable,now 3.1-7 aarch64 [installed]
gpgme/stable,now 1.24.1 aarch64 [installed,automatic]
gpgmepp/stable,now 1.24.1 aarch64 [installed,automatic]
gpgv/stable,now 2.4.5-3 aarch64 [installed]
graphene/stable,now 1.10.8-1 aarch64 [installed,automatic]
grep/stable,now 3.11 aarch64 [installed]
gst-plugins-bad/stable,now 1.24.12 aarch64 [installed,automatic]
gst-plugins-base/stable,now 1.24.12 aarch64 [installed,automatic]
gst-plugins-good/stable,now 1.24.12 aarch64 [installed,automatic]
gstreamer/stable,now 1.24.12 aarch64 [installed,automatic]
gtk-update-icon-cache/x11,now 3.24.48 aarch64 [installed,automatic]
gtk2/x11,now 2.24.33-5 aarch64 [installed]
gtk3/x11,now 3.24.48 aarch64 [installed,automatic]
gzip/stable,now 1.13 aarch64 [installed]
harfbuzz-icu/stable,now 10.2.0 aarch64 [installed,automatic]
harfbuzz/stable,now 10.2.0 aarch64 [installed,automatic]
help2man/stable,now 1.49.3 all [installed]
hicolor-icon-theme/x11,now 0.18 all [installed,automatic]
htop-legacy/now 1:2.2.0-1 aarch64 [installed,local]
hunspell-en-us/stable,now 20240129 all [installed,automatic]
hunspell/stable,now 1.7.2 aarch64 [installed,automatic]
imagemagick/stable,now 7.1.1.43 aarch64 [installed]
imath/stable,now 3.1.12 aarch64 [installed,automatic]
imlib2/stable,now 1.12.3-1 aarch64 [installed,automatic]
inetutils/stable,now 2.5 aarch64 [installed]
jack2/stable,now 1.9.22-1 aarch64 [installed,automatic]
jack/stable,now 0.0.1 all [installed,automatic]
jbig2dec/stable,now 0.20 aarch64 [installed,automatic]
json-c/stable,now 0.18 aarch64 [installed,automatic]
json-glib/stable,now 1.10.6 aarch64 [installed,automatic]
jsoncpp/stable,now 1.9.6 aarch64 [installed,automatic]
kf6-kwindowsystem/x11,now 6.10.0 aarch64 [installed,automatic]
krb5/stable,now 1.21.3 aarch64 [installed,automatic]
ldd/stable,now 0.3 aarch64 [installed]
ldns/stable,now 1.8.4 aarch64 [installed,automatic]
less/stable,now 668 aarch64 [installed]
lfortran/stable,now 0.19.0-1 aarch64 [installed]
libandroid-complex-math/stable,now 0.2 aarch64 [installed,automatic]
libandroid-execinfo/stable,now 0.1-1 aarch64 [installed,automatic]
libandroid-glob/stable,now 0.6-2 aarch64 [installed]
libandroid-posix-semaphore/stable,now 0.1-3 aarch64 [installed,automatic]
libandroid-selinux/stable,now 14.0.0.11 aarch64 [installed,automatic]
libandroid-shmem/stable,now 0.5 aarch64 [installed,automatic]
libandroid-spawn/stable,now 0.3 aarch64 [installed,automatic]
libandroid-support/stable,now 29 aarch64 [installed]
libandroid-sysv-semaphore/stable,now 0.1 aarch64 [installed,automatic]
libandroid-utimes/stable,now 0.4 aarch64 [installed,automatic]
libaom/stable,now 3.11.0 aarch64 [installed,automatic]
libarchive/stable,now 3.7.7 aarch64 [installed,automatic]
libass/stable,now 0.17.3 aarch64 [installed,automatic]
libassuan/stable,now 3.0.1-2 aarch64 [installed,automatic]
libbluray/stable,now 1.3.4-1 aarch64 [installed,automatic]
libbz2/stable,now 1.0.8-6 aarch64 [installed]
libc++/stable,now 27c aarch64 [installed]
libcaca/stable,now 0.99.beta20-1 aarch64 [installed,automatic]
libcairo/stable,now 1.18.2 aarch64 [installed,automatic]
libcap-ng/stable,now 2:0.8.5 aarch64 [installed,automatic]
libcompiler-rt/stable,now 19.1.7 aarch64 [installed,automatic]
libcrypt/stable,now 0.2-5 aarch64 [installed]
libcurl/stable,now 8.11.1 aarch64 [installed]
libdav1d/stable,now 1.5.1 aarch64 [installed,automatic]
libdb/stable,now 18.1.40-4 aarch64 [installed,automatic]
libde265/stable,now 1.0.15 aarch64 [installed,automatic]
libdecor/x11,now 0.2.2-1 aarch64 [installed,automatic]
libdrm/stable,now 2.4.124 aarch64 [installed,automatic]
libdvdnav/stable,now 6.1.1 aarch64 [installed,automatic]
libdvdread/stable,now 6.1.3 aarch64 [installed,automatic]
libedit/stable,now 20240517-3.1-0 aarch64 [installed,automatic]
libepoxy/stable,now 1.5.10-2 aarch64 [installed,automatic]
libevent/stable,now 2.1.12-2 aarch64 [installed,automatic]
libexif/stable,now 0.6.25 aarch64 [installed,automatic]
libexpat/stable,now 2.6.4 aarch64 [installed,automatic]
libffi/stable,now 3.4.6-1 aarch64 [installed,automatic]
libflac/stable,now 1.4.3 aarch64 [installed,automatic]
libfontenc/x11,now 1.1.8 aarch64 [installed,automatic]
libgcrypt/stable,now 1.11.0 aarch64 [installed]
libgd/stable,now 1:2.3.3-4 aarch64 [installed,automatic]
libgfortran5/termux,now 11.1.0 aarch64 [installed]
libglvnd/stable,now 1.7.0 aarch64 [installed,automatic]
libgmp/stable,now 6.3.0-1 aarch64 [installed]
libgnutls/stable,now 3.8.5 aarch64 [installed]
libgpg-error/stable,now 1.50 aarch64 [installed]
libgraphite/stable,now 1.3.14-2 aarch64 [installed,automatic]
libheif/stable,now 1.19.5-1 aarch64 [installed,automatic]
libhyphen/stable,now 2.8.8 aarch64 [installed,automatic]
libice/stable,now 1.1.2 aarch64 [installed,automatic]
libiconv/stable,now 1.17 aarch64 [installed]
libicu/stable,now 76.1 aarch64 [installed,automatic]
libid3tag/stable,now 0.16.3 aarch64 [installed,automatic]
libidn2/stable,now 2.3.7 aarch64 [installed]
libidn/stable,now 1.42 aarch64 [installed,automatic]
libinih/stable,now 58 aarch64 [installed,automatic]
libisl/stable,now 0.26 aarch64 [installed]
libjasper/stable,now 4.2.4 aarch64 [installed,automatic]
libjpeg-turbo-progs/stable,now 3.1.0 aarch64 [installed,automatic]
libjpeg-turbo/stable,now 3.1.0 aarch64 [installed,automatic]
libjxl/stable,now 0.11.1 aarch64 [installed,automatic]
libkokkos/stable,now 4.5.01 aarch64 [installed]
libksba/stable,now 1.6.7-1 aarch64 [installed,automatic]
libllvm/stable,now 19.1.7 aarch64 [installed,automatic]
libltdl/stable,now 2.5.4 aarch64 [installed,automatic]
liblua52/stable,now 5.2.4-8 aarch64 [installed,automatic]
liblua54/stable,now 5.4.7 aarch64 [installed,automatic]
liblxqt/x11,now 2.1.0 aarch64 [installed,automatic]
liblz4/stable,now 1.10.0 aarch64 [installed]
liblzma/stable,now 5.6.4 aarch64 [installed]
liblzo/stable,now 2.10-3 aarch64 [installed,automatic]
libmd/stable,now 1.1.0 aarch64 [installed,automatic]
libmp3lame/stable,now 3.100-5 aarch64 [installed,automatic]
libmpc/stable,now 1.3.1 aarch64 [installed]
libmpfr/stable,now 4.2.1 aarch64 [installed]
libmypaint/stable,now 1.6.1-1 aarch64 [installed,automatic]
libnettle/stable,now 3.10.1 aarch64 [installed]
libnghttp2/stable,now 1.64.0 aarch64 [installed]
libnghttp3/stable,now 1.7.0 aarch64 [installed,automatic]
libnotify/x11,now 0.8.3-1 aarch64 [installed,automatic]
libnpth/stable,now 1.6-2 aarch64 [installed,automatic]
libnspr/stable,now 4.36 aarch64 [installed,automatic]
libnss/stable,now 3.107 aarch64 [installed,automatic]
libogg/stable,now 1.3.5 aarch64 [installed,automatic]
libopencore-amr/stable,now 0.1.6 aarch64 [installed,automatic]
libopenmpt/stable,now 0.7.13 aarch64 [installed,automatic]
libopus/stable,now 1.5.2 aarch64 [installed,automatic]
libotr/stable,now 4.1.1-2 aarch64 [installed,automatic]
libpciaccess/x11,now 0.17 aarch64 [installed,automatic]
libpixman/stable,now 0.44.2 aarch64 [installed,automatic]
libplacebo/stable,now 6.338.2-1 aarch64 [installed,automatic]
libpng/stable,now 1.6.46 aarch64 [installed,automatic]
libprotobuf/stable,now 2:25.1-3 aarch64 [installed,automatic]
libpsl/stable,now 0.21.5 aarch64 [installed,automatic]
libqtxdg/x11,now 4.1.0-1 aarch64 [installed,automatic]
librav1e/stable,now 0.7.1-2 aarch64 [installed,automatic]
libraw/stable,now 0.21.3 aarch64 [installed,automatic]
libresolv-wrapper/stable,now 1.1.7-4 aarch64 [installed,automatic]
librsvg/stable,now 2.59.2 aarch64 [installed,automatic]
libsamplerate/stable,now 0.2.2-1 aarch64 [installed,automatic]
libsecret/stable,now 0.21.6 aarch64 [installed,automatic]
libsixel/stable,now 1.10.5 aarch64 [installed,automatic]
libsm/stable,now 1.2.5 aarch64 [installed,automatic]
libsmartcols/stable,now 2.40.2-2 aarch64 [installed,automatic]
libsndfile/stable,now 1.2.2 aarch64 [installed,automatic]
libsoundtouch/stable,now 2.3.3 aarch64 [installed,automatic]
libsoup3/stable,now 3.6.4 aarch64 [installed,automatic]
libsoxr/stable,now 0.1.3-7 aarch64 [installed,automatic]
libsqlite/stable,now 3.48.0 aarch64 [installed,automatic]
libsrt/stable,now 1.5.4 aarch64 [installed,automatic]
libssh2/stable,now 1.11.1 aarch64 [installed]
libssh/stable,now 0.11.1 aarch64 [installed,automatic]
libtalloc/stable,now 2.4.2 aarch64 [installed,automatic]
libtasn1/stable,now 4.19.0-1 aarch64 [installed,automatic]
libtheora/stable,now 1.1.1-1 aarch64 [installed,automatic]
libtiff/stable,now 4.7.0 aarch64 [installed,automatic]
libtirpc/stable,now 1.3.6 aarch64 [installed]
libtool/stable,now 2.5.4 aarch64 [installed]
libuchardet/stable,now 0.0.8 aarch64 [installed,automatic]
libudfread/stable,now 1.1.2 aarch64 [installed,automatic]
libunbound/stable,now 1.22.0 aarch64 [installed,automatic]
libunistring/stable,now 1.3 aarch64 [installed]
libusb/stable,now 1.0.27-1 aarch64 [installed]
libuuid/stable,now 2.40.2-2 aarch64 [installed,automatic]
libuv/stable,now 1.50.0 aarch64 [installed,automatic]
libv4l/stable,now 1.24.1-1 aarch64 [installed,automatic]
libvidstab/stable,now 1.1.1-1 aarch64 [installed,automatic]
libvmaf/stable,now 3.0.0 aarch64 [installed,automatic]
libvncserver/x11,now 0.9.15 aarch64 [installed,automatic]
libvo-amrwbenc/stable,now 0.1.3 aarch64 [installed,automatic]
libvorbis/stable,now 1.3.7-2 aarch64 [installed,automatic]
libvpx/stable,now 1:1.15.0-1 aarch64 [installed,automatic]
libwavpack/stable,now 5.8.1 aarch64 [installed,automatic]
libwayland-protocols/stable,now 1.38 all [installed,automatic]
libwayland/stable,now 1.23.1-1 aarch64 [installed,automatic]
libwebp/stable,now 1.5.0 aarch64 [installed,automatic]
libwebrtc-audio-processing/stable,now 1.3-1 aarch64 [installed,automatic]
libx11/stable,now 1.8.10 aarch64 [installed,automatic]
libx264/stable,now 1:0.164.3191 aarch64 [installed,automatic]
libx265/stable,now 4.1 aarch64 [installed,automatic]
libxau/stable,now 1.0.12 aarch64 [installed,automatic]
libxaw/x11,now 1.0.16 aarch64 [installed,automatic]
libxcb/stable,now 1.17.0 aarch64 [installed,automatic]
libxcomposite/x11,now 0.4.6 aarch64 [installed,automatic]
libxcursor/stable,now 1.2.3 aarch64 [installed,automatic]
libxcvt/x11,now 0.1.3 aarch64 [installed,automatic]
libxdamage/x11,now 1.1.6 aarch64 [installed,automatic]
libxdmcp/stable,now 1.1.5 aarch64 [installed,automatic]
libxext/stable,now 1.3.6 aarch64 [installed,automatic]
libxfixes/stable,now 6.0.1 aarch64 [installed,automatic]
libxfont2/x11,now 2.0.7 aarch64 [installed,automatic]
libxft/stable,now 2.3.8 aarch64 [installed,automatic]
libxi/stable,now 1.8.2 aarch64 [installed]
libxinerama/x11,now 1.1.5 aarch64 [installed]
libxkbcommon/x11,now 1.7.0 aarch64 [installed,automatic]
libxkbfile/x11,now 1.1.3 aarch64 [installed,automatic]
libxml2-utils/stable,now 2.13.5 aarch64 [installed,automatic]
libxml2/stable,now 2.13.5 aarch64 [installed,automatic]
libxmu/x11,now 1.2.1 aarch64 [installed,automatic]
libxpm/x11,now 3.5.17 aarch64 [installed]
libxpresent/x11,now 1.0.1 aarch64 [installed,automatic]
libxrandr/stable,now 1.5.4 aarch64 [installed,automatic]
libxrender/stable,now 0.9.12 aarch64 [installed,automatic]
libxshmfence/stable,now 1.3.3 aarch64 [installed,automatic]
libxslt/stable,now 1.1.42-1 aarch64 [installed,automatic]
libxss/stable,now 1.2.4 aarch64 [installed,automatic]
libxt/stable,now 1.3.1 aarch64 [installed,automatic]
libxtst/stable,now 1.2.5 aarch64 [installed,automatic]
libxv/stable,now 1.0.13 aarch64 [installed,automatic]
libxxf86dga/x11,now 1.1.6 aarch64 [installed,automatic]
libxxf86vm/stable,now 1.1.6 aarch64 [installed,automatic]
libyaml/stable,now 0.2.5-4 aarch64 [installed,automatic]
libzimg/stable,now 3.0.5 aarch64 [installed,automatic]
libzix/stable,now 0.6.2 aarch64 [installed,automatic]
libzopfli/stable,now 1.0.3-3 aarch64 [installed,automatic]
lilv/stable,now 0.24.26 aarch64 [installed,automatic]
littlecms/stable,now 2.16 aarch64 [installed,automatic]
lld/stable,now 19.1.7 aarch64 [installed,automatic]
llvm/stable,now 19.1.7 aarch64 [installed,automatic]
lsof/stable,now 4.99.4 aarch64 [installed]
lv2/stable,now 1.18.10-4 aarch64 [installed,automatic]
lzip/stable,now 1.25 aarch64 [installed]
m4/stable,now 1.4.19-4 aarch64 [installed]
make/stable,now 4.4.1 aarch64 [installed]
mc/stable,now 4.8.33 aarch64 [installed]
mesa/stable,now 24.3.4 aarch64 [installed,automatic]
mpg123/stable,now 1.32.10 aarch64 [installed,automatic]
mpv-x/x11,now 0.39.0-2 aarch64 [installed]
mypaint-brushes/stable,now 2.0.2 all [installed,automatic]
nano/stable,now 8.3 aarch64 [installed]
ncurses-ui-libs/stable,now 6.5.20240831-2 aarch64 [installed,automatic]
ncurses-utils/stable,now 6.5.20240831-2 aarch64 [installed,automatic]
ncurses/stable,now 6.5.20240831-2 aarch64 [installed]
ndk-sysroot/stable,now 27c aarch64 [installed,automatic]
net-tools/stable,now 2.10.0 aarch64 [installed]
ninja/stable,now 1.12.1 aarch64 [installed]
obconf-qt/x11,now 0.16.5 aarch64 [installed,automatic]
ocl-icd/stable,now 2.3.2 aarch64 [installed,automatic]
openal-soft/stable,now 1.24.2 aarch64 [installed,automatic]
openbox/x11,now 3.6.1-58 aarch64 [installed]
openexr/stable,now 3.2.4 aarch64 [installed,automatic]
opengl/stable,now 0.1 all [installed,automatic]
openh264/stable,now 2.5.0 aarch64 [installed,automatic]
openjdk-17-x/stable,now 17.0-37 aarch64 [installed,automatic]
openjdk-17/stable,now 17.0-37 aarch64 [installed,automatic]
openjpeg/stable,now 2.5.3 aarch64 [installed,automatic]
openssh-sftp-server/stable,now 9.9p1-5 aarch64 [installed,automatic]
openssh/stable,now 9.9p1-5 aarch64 [installed]
openssl/stable,now 1:3.3.2 aarch64 [installed]
openssl-1.1 ???
opusfile/stable,now 0.12-3 aarch64 [installed,automatic]
pango/stable,now 1.56.1 aarch64 [installed,automatic]
patch/stable,now 2.7.6-4 aarch64 [installed]
pcre2/stable,now 10.44 aarch64 [installed,automatic]
pcre/stable,now 8.45-1 aarch64 [installed]
perl/stable,now 5.38.2-3 aarch64 [installed]
pinentry/stable,now 1.3.1-1 aarch64 [installed,automatic]
pipewire/stable,now 1.2.7 aarch64 [installed,automatic]
pkg-config/stable,now 0.29.2-2 aarch64 [installed]
poppler-data/stable,now 0.4.12 all [installed,automatic]
poppler/stable,now 24.05.0 aarch64 [installed,automatic]
portaudio/termux,now 20180920-1 aarch64 [installed,automatic]
portmidi/stable,now 2.0.4 aarch64 [installed,automatic]
postgresql ???
procps/stable,now 3.3.17-5 aarch64 [installed]
proot-distro/stable,now 4.21.0 all [installed]
proot/stable,now 5.1.107-65 aarch64 [installed]
protobuf/stable,now 2:25.1-3 aarch64 [installed]
psmisc/stable,now 23.7 aarch64 [installed]
pulseaudio/stable,now 17.0-1 aarch64 [installed]
python-ensurepip-wheels/stable,now 3.12.8 all [installed,automatic]
python-lxml/stable,now 5.3.0-2 aarch64 [installed,automatic]
python-pip/stable,now 24.3.1 all [installed,automatic]
python2/stable,now 2.7.18-14 aarch64 [installed]
python/stable,now 3.12.8 aarch64 [installed]
qemu-user-i386/stable,now 1:8.2.6-2 aarch64 [installed]
qt6-qtbase/x11,now 6.8.1 aarch64 [installed,automatic]
qt6-qtdeclarative/x11,now 6.8.1 aarch64 [installed,automatic]
qt6-qtlanguageserver/x11,now 6.8.1 aarch64 [installed,automatic]
qt6-qtsvg/x11,now 6.8.1 aarch64 [installed,automatic]
qt6-qtwayland/x11,now 6.8.1 aarch64 [installed,automatic]
readline/stable,now 8.2.13 aarch64 [installed]
resolv-conf/stable,now 1.3 aarch64 [installed,automatic]
rhash/stable,now 1.4.5 aarch64 [installed,automatic]
rubberband/stable,now 4.0.0 aarch64 [installed,automatic]
ruby/stable,now 3.3.6 aarch64 [installed,automatic]
rust-std-aarch64-linux-android/stable,now 1.84.0 all [installed,automatic]
rust/stable,now 1.84.0 aarch64 [installed]
sdl2/x11,now 2.30.11 aarch64 [installed,automatic]
sed/stable,now 4.9-1 aarch64 [installed]
serd/stable,now 0.32.4 aarch64 [installed,automatic]
setup-scripts/termux,now 2.8.0 all [installed]
shared-mime-info/x11,now 2.4 aarch64 [installed,automatic]
socat/stable,now 1.8.0.2 aarch64 [installed]
sord/stable,now 0.16.18 aarch64 [installed,automatic]
speexdsp/stable,now 1.2.1 aarch64 [installed,automatic]
sratom/stable,now 0.6.18 aarch64 [installed,automatic]
startup-notification/x11,now 0.12-28 aarch64 [installed,automatic]
svt-av1/stable,now 2.3.0 aarch64 [installed,automatic]
tar/stable,now 1.35 aarch64 [installed]
termux-am-socket/stable,now 1.5.0 aarch64 [installed,automatic]
termux-am/stable,now 0.8.0-1 all [installed]
termux-api/stable,now 0.58.0-1 aarch64 [installed]
termux-auth/stable,now 1.5.0 aarch64 [installed,automatic]
termux-exec/stable,now 1:1.0 aarch64 [installed]
termux-keyring/stable,now 3.12-1 all [installed]
termux-licenses/stable,now 2.0-3 all [installed]
termux-tools/stable,now 1.44.6 aarch64 [installed]
termux-x11-nightly/x11,now 1.03.01-3 all [installed]
texinfo/stable,now 7.2 aarch64 [installed]
thunderbird/x11,now 128.5.2 aarch64 [installed]
ttf-dejavu/stable,now 2.37-8 all [installed,automatic]
unzip/stable,now 6.0-9 aarch64 [installed]
update-info-dir/stable,now 7.2 all [installed,automatic]
util-linux/stable,now 2.40.2-2 aarch64 [installed]
valac/stable,now 0.56.17 aarch64 [installed]
vulkan-loader-android/stable,now 27c aarch64 [installed,automatic]
vulkan-loader/stable,now 0.0.3 all [installed,automatic]
webkit2gtk-4.1/x11,now 2.42.4-3 aarch64 [installed,automatic]
wget/stable,now 1.25.0 aarch64 [installed]
which/stable,now 2.21 aarch64 [installed,automatic]
woff2/stable,now 1.0.2-3 aarch64 [installed,automatic]
wxwidgets/x11,now 3.2.2.1-4 aarch64 [installed,automatic]
x11-repo/stable,now 8.4-1 all [installed]
x11vnc/x11,now 0.9.16-11 aarch64 [installed]
xcb-util-cursor/x11,now 0.1.5-1 aarch64 [installed,automatic]
xcb-util-image/x11,now 0.4.1-1 aarch64 [installed,automatic]
xcb-util-keysyms/x11,now 0.4.1 aarch64 [installed,automatic]
xcb-util-renderutil/x11,now 0.3.10 aarch64 [installed,automatic]
xcb-util-wm/x11,now 0.4.2 aarch64 [installed,automatic]
xcb-util/x11,now 0.4.1 aarch64 [installed,automatic]
xkeyboard-config/x11,now 2.43-1 all [installed,automatic]
xorg-font-util/x11,now 1.4.1-1 aarch64 [installed,automatic]
xorg-fonts-75dpi/x11,now 1.0.4 all [installed,automatic]
xorg-fonts-alias/x11,now 1.0.5 all [installed,automatic]
xorg-fonts-encodings/x11,now 1.1.0 all [installed,automatic]
xorg-mkfontscale/x11,now 1.2.3 aarch64 [installed,automatic]
xorg-protocol-txt/x11,now 21.1.8-2 all [installed,automatic]
xorg-setxkbmap/x11,now 1.3.4 aarch64 [installed]
xorg-util-macros/stable,now 1.20.2 all [installed,automatic]
xorg-xauth/x11,now 1.1.3-1 aarch64 [installed,automatic]
xorg-xdpyinfo/x11,now 1.3.4 aarch64 [installed,automatic]
xorg-xkbcomp/x11,now 1.4.7 aarch64 [installed,automatic]
xorg-xlsfonts/x11,now 1.0.8 aarch64 [installed]
xorg-xmessage/x11,now 1.0.7-1 aarch64 [installed,automatic]
xorgproto/stable,now 2024.1 all [installed]
xsltproc/stable,now 1.1.42-1 aarch64 [installed,automatic]
xvidcore/stable,now 1.3.7 aarch64 [installed,automatic]
xwayland/x11,now 24.1.4 aarch64 [installed]
xxhash/stable,now 0.8.3 aarch64 [installed]
xz-utils/stable,now 5.6.4 aarch64 [installed]
zip/stable,now 3.0-5 aarch64 [installed]
zlib/stable,now 1.3.1 aarch64 [installed]
zstd/stable,now 1.5.6-2 aarch64 [installed,automatic]

The comparison here makes more sense if you sort by name and only look at your additions: diff ud ur |grep \> >d (99) and not mine (\< 175). I replaced the package lists above.

extentions of Robert
> -Robert
> angle-android                 19520
> appstream                     2356
> arj                           376
> assimp                        10860
> bsdtar                        1476
> ca-certificates               272
> cpio                          240
> dconf                         424
> exo                           480
> file-roller                   700
> file-roller-help              1980
> firefox                       220508
> fontconfig                    704
> freeglut                      480
> garcon                        712
> gcr4                          2164
> gdb                           15600
> glm                           24228
> glmark2                       11248
> gsettings-desktop-schemas     352
> gst-plugins-base              12168
> gstreamer                     8884
> gtk-layer-shell               344
> gtk3                          32324
> gtk4                          38160
> gtkmm4                        12700
> guile                         59132
> gvfs                          1500
> iproute2                      2784
> iso-codes                     3056
> libadwaita                    4396
> libbsd                        1324
> libcairomm-1.16               612
> libcanberra                   348
> libdav1d                      888
> libdisplay-info               388
> libgc                         880
> libglibmm-2.68                7792
> libgtop                       696
> libllvm                       146524
> libluajit                     592
> libpangomm-2.48               888
> libpng                        532
> libsecret                     1204
> libsigc++-3.0                 468
> libsqlite                     1864
> libstemmer                    812
> libthread-db                  56
> libvte                        2688
> libwavpack                    648
> libwnck                       852
> libxcb-errors                 104
> libxfce4ui                    876
> libxfce4util                  424
> libxfce4windowing             652
> libxklavier                   220
> libxmlb                       696
> luanti                        8536
> luanti-common                 10880
> lxde-icon-theme               8520
> lz4                           296
> lzop                          276
> mesa-demos                    51936
> mesa-vulkan-icd-freedreno     8744
> netcat-openbsd                92
> openssh                       5980
> p11-kit                       3488
> p7zip                         8652
> pango                         2480
> pavucontrol                   540
> portaudio                     332
> pulseaudio-glib               84
> thunar                        1940
> thunar-archive-plugin         116
> tumbler                       524
> tur-repo                      60
> unrar                         468
> vim-gtk                       33284
> virglrenderer-android         4816
> vkmark                        1676
> vulkan-loader-generic         628
> vulkan-tools                  2164
> webkitgtk-6.0                 91696
> wxwidgets                     25316
> xdg-utils                     328
> xfce4                         4
> xfce4-notifyd                 748
> xfce4-panel                   2548
> xfce4-session                 840
> xfce4-settings                2748
> xfce4-terminal                540
> xfconf                        544
> xfdesktop                     3368
> xfwm4                         3932
> xorg-iceauth                  88
> xorg-xprop                    100
> xorg-xrdb                     96
> zenity                        11360
The first thing I noticed were the packages `pulseaudio-glib` and `pavucontrol`, which I installed afterwards. Unfortunately, without success.

The words android or SLES from your host settings do not appear in the packages. Do you have any idea which of your packages could have something to do with this?

@robertkirkman

robertkirkman commented Feb 3, 2025

Copy link
Copy Markdown
Member Author

I get portaudio from pkg install portaudio, the same as you, but I don't know why your pkg is not downloading the current version.

You can see here that this is the real current portaudio .deb file, from packages.termux.dev , the same as what your mirror shows, but your log shows it is not being freshly downloaded, so you are not getting the version currently stored on packages.termux.dev.

https://packages.termux.dev/apt/termux-main/pool/main/p/portaudio/portaudio_19.07.00-2_aarch64.deb

Could you try this command, to check whether version 19.07.00-2 shows up for you at all, or if you can still only see an entry for version 20180920-1 ?

apt-cache policy portaudio

Maybe you somehow have an old version cached persistently in a cache folder, or maybe if you use the command apt clean and try again, you could get a different result.

If everything is not working still, you could try this:

apt remove portaudio
wget  https://packages.termux.dev/apt/termux-main/pool/main/p/portaudio/portaudio_19.07.00-2_aarch64.deb
apt install ./portaudio_19.07.00-2_aarch64.deb

@robertkirkman

robertkirkman commented Feb 3, 2025

Copy link
Copy Markdown
Member Author

Additionally, your portaudio, libgfortran5, setup-scripts and gcc-9 packages are the only packages here that are shown with "/termux" next to them in apt list --installed, instead of "/stable", that is not a normal configuration and I am not sure whether I have ever seen that before. Maybe there is some way you obtained those packages from a very old repository or from a nonstandard repository.

@RalfWerner

RalfWerner commented Feb 3, 2025

Copy link
Copy Markdown

If everything is not working still, you could try this

Thanks. I was successful, but only with your second suggestion is the audio setup correct. I then made a first stereo recording and tried to export it as *.mp3, which failed because of a lib*. With *.wav it was no problem and I opened and played the file with my Windows version.

audacity needs to install again portaudio with both versions
...
[~]$ audacity&
[1] 19832
[~]$ The program audacity is not installed. Install it by executing:
 pkg install audacity
pkg in audacity
Checking availability of current mirror:
[*] https://packages.termux.dev/apt/termux-main: ok
Reading package lists... Done
...
[~]$ audacity&
[1] 21012
[~]$ apt-cache policy portaudio
portaudio:
  Installed: 19.07.00-2
  Candidate: 20180920-1
  Version table:
     20180920-1 500
        500 https://its-pointless.github.io/files/24 termux/extras aarch64 Packages
 *** 19.07.00-2 500
        500 https://packages.termux.dev/apt/termux-main stable/main aarch64 Packages
        100 /data/data/com.termux/files/usr/var/lib/dpkg/status

The last part of the recording should be edited with effects. Are you also working with the tool or just on the installation? If so, pkg in audacity should be revised so that others do not have to repeat my experience here.

those packages from a very old repository or from a nonstandard repository.

I'm very old too. When I retired in 2018 I started to get into Termux. For the 30 years before that I did X11 development at Airbus, but didn't find the time to port it to my phone. Most of the code is written in fortran, which dates back to the 1960s. This is typical in techno-scientific fields. So I looked for compilers that support it and found its-pointless. There were also developments in the standard repository, but they couldn't handle the code and I'm too old to recode hundreds of thousands of LoCs.

If you have experience with such compilers, I would check it out (off topic here)

@robertkirkman

robertkirkman commented Feb 3, 2025

Copy link
Copy Markdown
Member Author

According to truboxl on the development chat, the its-pointless repository is the cause of your problem and pkg in audacity cannot be revised because the its-pointless repository is not under the control of the termux-packages developers. For all users who are using the default Termux repositories, pkg in audacity should be working correctly because they are not exposed to the its-pointless repository.

If there are any specific packages in the its-pointless repository, or softwares that require those packages, that you would like to keep using without having to keep the its-pointless repository in your configuration, like maybe the libgfortran5 package, maybe you could send me any information or code you have about that package and what you need to do with it, and it might be possible to transfer it into this termux-packages repository, so that you could get the same functionality without it having package conflicts with audacity.

I see that libgfortran5 probably has a strong dependency on the GCC toolchain. Unfortunately, the GCC toolchain does not work well directly in Termux repositories because GCC is not frequently maintained directly on Android.

If you are interested, there is one other potential way to install libgfortran5 in Termux. This other way receives more frequent updates than the way you currently have installed. It works like this:
You could install the Debian repository version of libgfortran5 by using the technology proot-distro, which mostly works on all Android devices but has some limitations. proot-distro comes from the commands pkg install proot-distro, proot-distro install debian and proot-distro enter debian --shared-tmp . It is possible to connect GUI applications from Proots to Termux:X11 by following the Proot section of the Termux:X11 documentation.

A detail I would like to mention that is not clearly stated in many places is that you can run GUI applications from Proots and from normal Termux packages on the same screen at the same time by making sure that your Window Manger is started from the normal Termux environment first, and that any Proot environment applications are then started by applying the same DISPLAY environment variable inside the Proot shell that the Window Manager and the normal Termux applications are running on.

Compared to your current situation, that way would primarily have the benefit of not conflicting with audacity in any way.

@RalfWerner

Copy link
Copy Markdown

can we continue here?

ImL1s pushed a commit to ImL1s/termux-packages that referenced this pull request May 1, 2026
…7.1 (termux#22614)

following the directions given here: termux#22502 (comment)
(paraphrased) "if audacity works with ffmpeg 7 we should recompile it and upgrade the ffmpeg subpackage"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants