Package Details: gstreamer0.10 0.10.36-20

Git Clone URL: https://aur.archlinux.org/gstreamer0.10.git (read-only, click to copy)
Package Base: gstreamer0.10
Description: GStreamer Multimedia Framework
Upstream URL: https://gstreamer.freedesktop.org
Licenses: LGPL
Submitter: yurikoles
Maintainer: pfeifferj
Last Packager: pfeifferj
Votes: 124
Popularity: 0.021158
First Submitted: 2017-01-26 13:42 (UTC)
Last Updated: 2025-03-03 21:12 (UTC)

Latest Comments

1 2 3 4 5 6 .. 9 Next › Last »

pfeifferj commented on 2025-04-02 06:51 (UTC) (edited on 2025-04-04 11:16 (UTC) by pfeifferj)

gstreamer.freedesktop.org is currently down, which will inevitably lead to build failures like:


  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
curl: (7) Failed to connect to gstreamer.freedesktop.org port 443 after 164 ms: Could not connect to server
==> ERROR: Failure while downloading https://gstreamer.freedesktop.org/src/gstreamer/gstreamer-0.10.36.tar.xz
    Aborting...
error: failed to download sources for 'gstreamer0.10-0.10.36-20': 
error: packages failed to build: gstreamer0.10-0.10.36-20

This is due to their ongoing migration, and the service should be restored shortly [1].

[1] https://gitlab.freedesktop.org/freedesktop/freedesktop/-/issues/2076#note_2831847

Edit: gstreamer.freedesktop.org is available again

ava1ar commented on 2025-01-25 19:37 (UTC)

Anyone wants to adopt the package? Don't have time to maintain it nowadays...

abisokm commented on 2025-01-25 19:25 (UTC)

Looks like macports hit and fixed the same issue: https://trac.macports.org/ticket/62524

Their patch didn't apply cleanly for me, but the gist of it is to add the function declaration to every --add-init-section line in the Makefiles. This patch worked for me: https://pastebin.com/LuXmyTBQ

carlosnewmusic commented on 2024-11-15 15:56 (UTC)

build error https://pastebin.com/9JDFDG2w

mi_pl commented on 2024-11-12 15:23 (UTC) (edited on 2024-11-12 15:28 (UTC) by mi_pl)

Had to install flex. Then, had to install glib2-devel. Then, I got the same errors as NeWolf and marroq. Following nicki419's advice is underway… (thanks!)

nicki419 commented on 2024-09-07 19:58 (UTC)

@marroq @NeWolf I managed to install by editing the PKGBUILD file such that the make and make install commands have the -i option, to ignore errors. Is that a good idea? Probably not. Did I manage to install gstreamer0.10 and *-base and resolve the dependencies of the app I originally wanted to install? yes.

marroq commented on 2024-08-29 05:05 (UTC)

i have the same issues as NeWolf i need to install glib2-devel but i also get error: implicit declaration of function ‘gst_init’; did you mean ‘g_test_init’? [-Wimplicit-function-declaration]

NeWolf commented on 2024-06-24 15:35 (UTC)

I get an error when trying to build


gstelement.h:545:3: warning: 'GStaticRecMutex' is deprecated: Use 'GRecMutex' instead [-Wdeprecated-declarations]
  545 |   GStaticRecMutex      *state_lock;
      |   ^~~~~~~~~~~~~~~
/usr/include/glib-2.0/glib/deprecated/gthread.h:161:8: note: declared here
  161 | struct _GStaticRecMutex
      |        ^~~~~~~~~~~~~~~~
  CCLD     libgstreamer-0.10.la
  GEN      Gst-0.10.gir
/home/newolf/lib32-gstreamer0.10/gstreamer0.10/src/gstreamer-0.10.36/gst/tmp-introspectd10tr20g/Gst-0.10.c: In function ‘main’:
/home/newolf/lib32-gstreamer0.10/gstreamer0.10/src/gstreamer-0.10.36/gst/tmp-introspectd10tr20g/Gst-0.10.c:789:3: error: implicit declaration of function ‘gst_init’; did you mean ‘g_test_init’? [-Wimplicit-function-declaration]
  789 |   gst_init(NULL, NULL);
      |   ^~~~~~~~
      |   g_test_init
Traceback (most recent call last):
  File "/usr/lib/python3.12/site-packages/setuptools/_distutils/unixccompiler.py", line 185, in _compile
    self.spawn(compiler_so + cc_args + [src, '-o', obj] + extra_postargs)
  File "/usr/lib/python3.12/site-packages/setuptools/_distutils/ccompiler.py", line 1041, in spawn
    spawn(cmd, dry_run=self.dry_run, **kwargs)
  File "/usr/lib/python3.12/site-packages/setuptools/_distutils/spawn.py", line 70, in spawn
    raise DistutilsExecError(
distutils.errors.DistutilsExecError: command '/usr/bin/gcc' failed with exit code 1

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/usr/bin/g-ir-scanner", line 104, in <module>
    sys.exit(scanner_main(sys.argv))
             ^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/lib/gobject-introspection/giscanner/scannermain.py", line 606, in scanner_main
    shlibs = create_binary(transformer, options, args)
             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/lib/gobject-introspection/giscanner/scannermain.py", line 430, in create_binary
    binary = compile_introspection_binary(options,
             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/lib/gobject-introspection/giscanner/dumper.py", line 294, in compile_introspection_binary
    return dc.run()
           ^^^^^^^^
  File "/usr/lib/gobject-introspection/giscanner/dumper.py", line 163, in run
    introspection_obj = self._compile(c_path)
                        ^^^^^^^^^^^^^^^^^^^^^
  File "/usr/lib/gobject-introspection/giscanner/dumper.py", line 189, in _compile
    return self._compiler.compile(cflags,
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/lib/gobject-introspection/giscanner/ccompiler.py", line 354, in compile
    return self.compiler.compile(sources=source,
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/lib/python3.12/site-packages/setuptools/_distutils/ccompiler.py", line 600, in compile
    self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
  File "/usr/lib/python3.12/site-packages/setuptools/_distutils/unixccompiler.py", line 187, in _compile
    raise CompileError(msg)
distutils.errors.CompileError: command '/usr/bin/gcc' failed with exit code 1
make[4]: *** [Makefile:2035: Gst-0.10.gir] Error 1
make[4]: Leaving directory '/home/newolf/lib32-gstreamer0.10/gstreamer0.10/src/gstreamer-0.10.36/gst'
make[3]: *** [Makefile:1573: all-recursive] Error 1
make[3]: Leaving directory '/home/newolf/lib32-gstreamer0.10/gstreamer0.10/src/gstreamer-0.10.36/gst'
make[2]: *** [Makefile:910: all] Error 2
make[2]: Leaving directory '/home/newolf/lib32-gstreamer0.10/gstreamer0.10/src/gstreamer-0.10.36/gst'
make[1]: *** [Makefile:753: all-recursive] Error 1
make[1]: Leaving directory '/home/newolf/lib32-gstreamer0.10/gstreamer0.10/src/gstreamer-0.10.36'
make: *** [Makefile:657: all] Error 2
==> ERROR: A failure occurred in build().
    Aborting...

plg commented on 2024-06-21 10:31 (UTC)

This needs glib2-devel as makedep (for the two missing commands glib-mkenums and glib-genmarshal).

Then there's still a compiler error: implicit declaration of gst_init (-Wimplicit-function-declaration) which I'm not experienced enough to fix.

txtsd commented on 2024-06-16 13:08 (UTC)

Fails to build in chroot with pkgctl build

/bin/sh: line 1: glib-genmarshal: command not found
/bin/sh: line 2: glib-mkenums: command not found
/bin/sh: line 4: glib-genmarshal: command not found