summaryrefslogtreecommitdiff
path: root/media-libs/libmatemixer
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2024-01-21 02:09:25 +0000
committerV3n3RiX <venerix@koprulu.sector>2024-01-21 02:09:25 +0000
commitafcb9236a72cf602364c28b9bde6648e4a7f1ca5 (patch)
tree9608aa2c881b2688207832334c938f0e38d5c71c /media-libs/libmatemixer
parentd3419aa304ff2564036398be5e8ed4bdeaeaa007 (diff)
gentoo auto-resync : 21:01:2024 - 02:09:25
Diffstat (limited to 'media-libs/libmatemixer')
-rw-r--r--media-libs/libmatemixer/Manifest1
-rw-r--r--media-libs/libmatemixer/files/libmatemixer-1.26.0-slibtool.patch71
2 files changed, 0 insertions, 72 deletions
diff --git a/media-libs/libmatemixer/Manifest b/media-libs/libmatemixer/Manifest
index ffcf34fd7a86..1e4b1b858f01 100644
--- a/media-libs/libmatemixer/Manifest
+++ b/media-libs/libmatemixer/Manifest
@@ -1,4 +1,3 @@
-AUX libmatemixer-1.26.0-slibtool.patch 2778 BLAKE2B fd62d368d5b292bdc0693c6a2d03e53c42d621f3f88475c0297358577c5fa8b2b62a3f4ebd434c9b619032528c25b23428edb75f434be5f136a152f89f047376 SHA512 daca074f6d353950693d7b551ef07d25337619db95d7027d0351bcdd1fe0be1fc188bf3c6b742c73e4d674bd6e2d4315dc81079b3a4c634f01ad3d5d9c85f855
DIST libmatemixer-1.26.1.tar.xz 497560 BLAKE2B a84922fa8743749e0120845a462de84d2057049957207357e4212a1e6201c60bd31b873282764ec2e2380e3a0c76dd498deaef32bdefb9f012b141d9adad280f SHA512 a67a63bbf76b69ba78a537f7690230f45c5875b4358991e73604aacf001baa40ee994101d486218be8000be43be6561b6f25f4f38ae00310c5a08affb6dafbdb
DIST libmatemixer-1.27.0.tar.xz 497392 BLAKE2B a08c8a04bfed76d41475dc3629b7e9a87755940c6e4a8d39d7b2c7ce3751cc5b4008d3f31ef1af43b2873761d34a9330fc331b132b779320ed19650d75f1562d SHA512 d64d136a013d18364f4f83451b26ea674d9eb611fad44349781aa1e9369e167fe892b9e1fe068f3243bee06babd3811958e301add8034cb6229473eaeb4841e1
EBUILD libmatemixer-1.26.1.ebuild 853 BLAKE2B 7289200b26508fa3426971551727461427a4f914605f5400a93a9cfd833928866dc983dbb15fcd74ed19a2cf0ecbe256d6bb967b46738618770cbb8d17010b34 SHA512 0a22b975dda91633541960f8403e1afdbecfb1fd09d2af919cfed1f8e12b505a122a487f91111decc52af79ee196564fb1c84568421653134c48a981a547330e
diff --git a/media-libs/libmatemixer/files/libmatemixer-1.26.0-slibtool.patch b/media-libs/libmatemixer/files/libmatemixer-1.26.0-slibtool.patch
deleted file mode 100644
index 05ad6a744fa8..000000000000
--- a/media-libs/libmatemixer/files/libmatemixer-1.26.0-slibtool.patch
+++ /dev/null
@@ -1,71 +0,0 @@
-Upstream-PR: https://github.com/mate-desktop/libmatemixer/pull/37
-
-From 903dfc62b1898efb630286228c2e797162f5816c Mon Sep 17 00:00:00 2001
-From: orbea <orbea@riseup.net>
-Date: Thu, 12 May 2022 18:34:52 -0700
-Subject: [PATCH] backends: Add missing dependencies
-
-When building the backends with slibtool they will fail with undefined
-references to libmatemixer.la. This is because they use -no-undefined
-which slibtool explicitly supports while GNU libtool will silently
-ignore it.
-
-Gentoo Bug: https://bugs.gentoo.org/785232
----
- backends/alsa/Makefile.am | 1 +
- backends/null/Makefile.am | 4 +++-
- backends/oss/Makefile.am | 1 +
- backends/pulse/Makefile.am | 1 +
- 4 files changed, 6 insertions(+), 1 deletion(-)
-
-diff --git a/backends/alsa/Makefile.am b/backends/alsa/Makefile.am
-index 798ce8b..44990b5 100644
---- a/backends/alsa/Makefile.am
-+++ b/backends/alsa/Makefile.am
-@@ -43,6 +43,7 @@ libmatemixer_alsa_la_SOURCES = \
- alsa-types.h
-
- libmatemixer_alsa_la_LIBADD = \
-+ $(top_builddir)/libmatemixer/libmatemixer.la \
- $(GLIB_LIBS) \
- $(UDEV_LIBS) \
- $(ALSA_LIBS)
-diff --git a/backends/null/Makefile.am b/backends/null/Makefile.am
-index f0371a7..11d4b7f 100644
---- a/backends/null/Makefile.am
-+++ b/backends/null/Makefile.am
-@@ -18,7 +18,9 @@ libmatemixer_null_la_SOURCES = \
- null-backend.c \
- null-backend.h
-
--libmatemixer_null_la_LIBADD = $(GLIB_LIBS)
-+libmatemixer_null_la_LIBADD = \
-+ $(top_builddir)/libmatemixer/libmatemixer.la \
-+ $(GLIB_LIBS)
-
- libmatemixer_null_la_LDFLAGS = \
- -avoid-version \
-diff --git a/backends/oss/Makefile.am b/backends/oss/Makefile.am
-index d9e1fa7..cc5735f 100644
---- a/backends/oss/Makefile.am
-+++ b/backends/oss/Makefile.am
-@@ -32,6 +32,7 @@ libmatemixer_oss_la_SOURCES = \
- oss-types.h
-
- libmatemixer_oss_la_LIBADD = \
-+ $(top_builddir)/libmatemixer/libmatemixer.la \
- $(GLIB_LIBS) \
- $(OSS_LIBS)
-
-diff --git a/backends/pulse/Makefile.am b/backends/pulse/Makefile.am
-index b07cc7e..a079af1 100644
---- a/backends/pulse/Makefile.am
-+++ b/backends/pulse/Makefile.am
-@@ -62,6 +62,7 @@ libmatemixer_pulse_la_SOURCES = \
- pulse-types.h
-
- libmatemixer_pulse_la_LIBADD = \
-+ $(top_builddir)/libmatemixer/libmatemixer.la \
- $(GLIB_LIBS) \
- $(PULSEAUDIO_LIBS)
-