mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-12 18:59:50 +03:00
main/dtach: take over maintainership
This commit is contained in:
parent
38568e5314
commit
1a1c7d597e
2 changed files with 35 additions and 4 deletions
|
@ -1,13 +1,17 @@
|
|||
# Maintainer: Carlo Landmeter <clandmeter@alpinelinux.org>
|
||||
# Contributor: Carlo Landmeter <clandmeter@alpinelinux.org>
|
||||
# Maintainer: Celeste <cielesti@protonmail.com>
|
||||
maintainer="Celeste <cielesti@protonmail.com>"
|
||||
pkgname=dtach
|
||||
pkgver=0.9
|
||||
pkgrel=5
|
||||
pkgrel=6
|
||||
pkgdesc="A program that emulates the detach feature of screen"
|
||||
url="https://dtach.sourceforge.net/"
|
||||
arch="all"
|
||||
license="GPL-2.0-or-later"
|
||||
source="https://downloads.sourceforge.net/project/dtach/dtach/$pkgver/dtach-$pkgver.tar.gz"
|
||||
subpackages="$pkgname-doc"
|
||||
source="https://downloads.sourceforge.net/project/dtach/dtach/$pkgver/dtach-$pkgver.tar.gz
|
||||
gcc15.patch
|
||||
"
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
|
@ -27,4 +31,7 @@ package() {
|
|||
install -Dm644 README "$pkgdir"/usr/share/doc/dtach/README
|
||||
}
|
||||
|
||||
sha512sums="28c13dc8c96c16b9c6153a3a11fdeb4a4bc72e84e1f2575043b047cd8e600a47232f29544ffd87d82e2575623ec2e999a26e23e9eac25ec81c7722bdf98cfb18 dtach-0.9.tar.gz"
|
||||
sha512sums="
|
||||
28c13dc8c96c16b9c6153a3a11fdeb4a4bc72e84e1f2575043b047cd8e600a47232f29544ffd87d82e2575623ec2e999a26e23e9eac25ec81c7722bdf98cfb18 dtach-0.9.tar.gz
|
||||
b93cc4d27abfd37d41f17550ce0742375053b9f892ca2f85ffd2d489aaf120cd3d13030ab17f1fd36798b78098db26fa852070886fbfe8540d297501dafc4e27 gcc15.patch
|
||||
"
|
||||
|
|
24
main/dtach/gcc15.patch
Normal file
24
main/dtach/gcc15.patch
Normal file
|
@ -0,0 +1,24 @@
|
|||
Adapted from https://github.com/crigler/dtach/commit/6d80909a8c0fd19717010a3c76fec560f988ca48
|
||||
--
|
||||
From 6d80909a8c0fd19717010a3c76fec560f988ca48 Mon Sep 17 00:00:00 2001
|
||||
From: Rudi Heitbaum <rudi@heitbaum.com>
|
||||
Date: Mon, 9 Dec 2024 12:35:09 +0000
|
||||
Subject: [PATCH] fix gcc-15 build
|
||||
|
||||
---
|
||||
attach.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/attach.c b/attach.c
|
||||
index 41a696c..e4a46bd 100644
|
||||
--- a/attach.c
|
||||
+++ b/attach.c
|
||||
@@ -97,7 +97,7 @@ die(int sig)
|
||||
|
||||
/* Window size change. */
|
||||
static RETSIGTYPE
|
||||
-win_change()
|
||||
+win_change(int)
|
||||
{
|
||||
signal(SIGWINCH, win_change);
|
||||
win_changed = 1;
|
Loading…
Add table
Add a link
Reference in a new issue