diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2024-02-17 15:35:27 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2024-02-17 15:35:27 +0100 |
commit | e8946710c41cbf28f6aada8e3432db36276e6dd0 (patch) | |
tree | 52e4db65bb2d6e6ded5fbe2263f61abf9c121492 /www-apps | |
parent | sys-fs/e2fsprogs: remove unused patch (diff) | |
download | gentoo-e8946710c41cbf28f6aada8e3432db36276e6dd0.tar.gz gentoo-e8946710c41cbf28f6aada8e3432db36276e6dd0.tar.bz2 gentoo-e8946710c41cbf28f6aada8e3432db36276e6dd0.zip |
www-apps/hugo: remove unused patch
Closes: https://github.com/gentoo/gentoo/pull/35164
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'www-apps')
-rw-r--r-- | www-apps/hugo/files/hugo-0.96.0-unbundle-libwebp-and-libsass.patch | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/www-apps/hugo/files/hugo-0.96.0-unbundle-libwebp-and-libsass.patch b/www-apps/hugo/files/hugo-0.96.0-unbundle-libwebp-and-libsass.patch deleted file mode 100644 index f9efee48cc48..000000000000 --- a/www-apps/hugo/files/hugo-0.96.0-unbundle-libwebp-and-libsass.patch +++ /dev/null @@ -1,44 +0,0 @@ -From 0a44245bf6cfe103bb163f51f230eeccd69ab8c7 Mon Sep 17 00:00:00 2001 -From: tastytea <tastytea@tastytea.de> -Date: Tue, 29 Mar 2022 21:03:15 +0200 -Subject: [PATCH] Unbundle libwebp and libsass - -Use libwebp and libsass from the system instead of the bundled ones. ---- - .../github.com/bep/golibsass/internal/libsass/a__cgo.go | 8 ++++---- - vendor/github.com/bep/gowebp/internal/libwebp/a__cgo.go | 3 ++- - 2 files changed, 6 insertions(+), 5 deletions(-) - -diff --git a/vendor/github.com/bep/golibsass/internal/libsass/a__cgo.go b/vendor/github.com/bep/golibsass/internal/libsass/a__cgo.go -index af51b92..6b5e78b 100644 ---- a/vendor/github.com/bep/golibsass/internal/libsass/a__cgo.go -+++ b/vendor/github.com/bep/golibsass/internal/libsass/a__cgo.go -@@ -5,9 +5,9 @@ - // - package libsass - --// #cgo CFLAGS: -O2 -fPIC --// #cgo CPPFLAGS: -I../../libsass_src/include --// #cgo CXXFLAGS: -g -std=c++0x -O2 -fPIC --// #cgo LDFLAGS: -lstdc++ -lm -+// #cgo CFLAGS: -fPIC -+// #cgo CPPFLAGS: -DUSE_LIBSASS_SRC -+// #cgo CXXFLAGS: -std=c++0x -fPIC -+// #cgo LDFLAGS: -lstdc++ -lm -lsass - // #cgo darwin linux LDFLAGS: -ldl - import "C" -diff --git a/vendor/github.com/bep/gowebp/internal/libwebp/a__cgo.go b/vendor/github.com/bep/gowebp/internal/libwebp/a__cgo.go -index 4b105ab..33f429e 100644 ---- a/vendor/github.com/bep/gowebp/internal/libwebp/a__cgo.go -+++ b/vendor/github.com/bep/gowebp/internal/libwebp/a__cgo.go -@@ -2,5 +2,6 @@ - - package libwebp - --// #cgo linux LDFLAGS: -lm -+// #cgo linux LDFLAGS: -lm -lwebp -+// #cgo CFLAGS: -DLIBWEBP_NO_SRC - import "C" --- -2.35.1 - |