Lukas Fleischer pushed to branch main at Arch Linux / Packaging / Packages / slop
Commits: 59e56ca9 by Lukas Fleischer at 2025-08-06T18:45:13-04:00 upgpkg: 7.7-1: upstream update - - - - - 3 changed files: - .SRCINFO - PKGBUILD - − bugfix-add-missed-header.patch Changes: ===================================== .SRCINFO ===================================== @@ -1,7 +1,7 @@ pkgbase = slop pkgdesc = Utility to query the user for a selection and print the region to stdout - pkgver = 7.6 - pkgrel = 6 + pkgver = 7.7 + pkgrel = 1 url = https://github.com/naelstrof/slop arch = x86_64 license = GPL3 @@ -12,9 +12,7 @@ pkgbase = slop depends = mesa depends = glew depends = libxrender - source = slop-7.6.tar.gz::https://github.com/naelstrof/slop/archive/v7.6.tar.gz - source = bugfix-add-missed-header.patch - sha256sums = ec45f9a69d7a24df621f5c634d202451ddca987d550cf588c5c427b99106fb6b - sha256sums = 2e48f2cee54cfe2f08ad821d02b548ad9a4911e091418c859e8db78c39824cbd + source = slop-7.7.tar.gz::https://github.com/naelstrof/slop/archive/v7.7.tar.gz + sha256sums = a69a6e5c41d7fff1c6aa35b367a5c5a6dc98e621fa9a1908808d6308c2b40f4e pkgname = slop ===================================== PKGBUILD ===================================== @@ -3,22 +3,19 @@ # Contributor: naelstrof <naelst...@gmail.com> pkgname=slop -pkgver=7.6 -pkgrel=6 +pkgver=7.7 +pkgrel=1 pkgdesc='Utility to query the user for a selection and print the region to stdout' arch=('x86_64') url='https://github.com/naelstrof/slop' license=('GPL3') depends=('libxext' 'libx11' 'mesa' 'glew' 'libxrender') makedepends=('cmake' 'glm') -source=("${pkgname}-${pkgver}.tar.gz::$url/archive/v${pkgver}.tar.gz" - bugfix-add-missed-header.patch) -sha256sums=('ec45f9a69d7a24df621f5c634d202451ddca987d550cf588c5c427b99106fb6b' - '2e48f2cee54cfe2f08ad821d02b548ad9a4911e091418c859e8db78c39824cbd') +source=("${pkgname}-${pkgver}.tar.gz::$url/archive/v${pkgver}.tar.gz") +sha256sums=('a69a6e5c41d7fff1c6aa35b367a5c5a6dc98e621fa9a1908808d6308c2b40f4e') prepare() { cd "$pkgname-$pkgver" - patch -Np1 -i ../bugfix-add-missed-header.patch sed -e 's|CXX_STANDARD 11|CXX_STANDARD 17|g' -i CMakeLists.txt # Fix build with ICU 74 } ===================================== bugfix-add-missed-header.patch deleted ===================================== @@ -1,22 +0,0 @@ -From 5cbcb9e389a02d6288f90a790c6b547d9f9dcac7 Mon Sep 17 00:00:00 2001 -From: Drunkard Zhang <gongfan...@gmail.com> -Date: Tue, 28 Sep 2021 12:20:25 +0800 -Subject: [PATCH] bugfix: add missed header - -XDestroyImage is included in <X11/Xutil.h> which belongs to libX11. -Build fails without include this header on Gentoo. - -Signed-off-by: Drunkard Zhang <gongfan...@gmail.com> ---- - src/framebuffer.cpp | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/src/framebuffer.cpp b/src/framebuffer.cpp -index 20909b3..da85a25 100644 ---- a/src/framebuffer.cpp -+++ b/src/framebuffer.cpp -@@ -1,3 +1,4 @@ -+#include <X11/Xutil.h> - #include "framebuffer.hpp" - - slop::Framebuffer::Framebuffer( int w, int h ) { View it on GitLab: https://gitlab.archlinux.org/archlinux/packaging/packages/slop/-/commit/59e56ca90b0fa17d98f5c7303d879d737492ff14 -- View it on GitLab: https://gitlab.archlinux.org/archlinux/packaging/packages/slop/-/commit/59e56ca90b0fa17d98f5c7303d879d737492ff14 You're receiving this email because of your account on gitlab.archlinux.org.