pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/x11/xclip
Module Name: pkgsrc
Committed By: kim
Date: Sun Nov 8 15:25:58 UTC 2020
Modified Files:
pkgsrc/x11/xclip: Makefile distinfo
Added Files:
pkgsrc/x11/xclip/patches: patch-xclip-pastefile
Log Message:
xclip: Add "-f -" flags to tar in xclip-pastefile
BSD implementations of tar use tape device as default file, so "tar xv"
would extract files from tape device instead of standard input.
To generate a diff of this commit:
cvs rdiff -u -r1.20 -r1.21 pkgsrc/x11/xclip/Makefile
cvs rdiff -u -r1.8 -r1.9 pkgsrc/x11/xclip/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/x11/xclip/patches/patch-xclip-pastefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/x11/xclip/Makefile
diff -u pkgsrc/x11/xclip/Makefile:1.20 pkgsrc/x11/xclip/Makefile:1.21
--- pkgsrc/x11/xclip/Makefile:1.20 Wed Nov 23 23:41:30 2016
+++ pkgsrc/x11/xclip/Makefile Sun Nov 8 15:25:58 2020
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.20 2016/11/23 23:41:30 wiedi Exp $
+# $NetBSD: Makefile,v 1.21 2020/11/08 15:25:58 kim Exp $
DISTNAME= xclip-0.13
+PKGREVISION= 1
CATEGORIES= x11
MASTER_SITES= ${MASTER_SITE_GITHUB:=astrand/}
Index: pkgsrc/x11/xclip/distinfo
diff -u pkgsrc/x11/xclip/distinfo:1.8 pkgsrc/x11/xclip/distinfo:1.9
--- pkgsrc/x11/xclip/distinfo:1.8 Wed Nov 16 15:29:35 2016
+++ pkgsrc/x11/xclip/distinfo Sun Nov 8 15:25:58 2020
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.8 2016/11/16 15:29:35 leot Exp $
+$NetBSD: distinfo,v 1.9 2020/11/08 15:25:58 kim Exp $
SHA1 (xclip-0.13.tar.gz) = 0231194c2d244213f5b8d83e3e676aa3cb0ef8eb
RMD160 (xclip-0.13.tar.gz) = be74e3bf01e4444d2b6224cf75bbfec06eadb8c9
SHA512 (xclip-0.13.tar.gz) = 191a86194a1503a47c6641a55855dc4aaa8c2c99d2e6f1d46e727feec85a6639041f37ec2265c05c178c0c7d791d3e88bde89223f879effa878812f078485ed2
Size (xclip-0.13.tar.gz) = 30461 bytes
+SHA1 (patch-xclip-pastefile) = a7f465d2f1344855bfbe3badd4eb3b7337da629c
Added files:
Index: pkgsrc/x11/xclip/patches/patch-xclip-pastefile
diff -u /dev/null pkgsrc/x11/xclip/patches/patch-xclip-pastefile:1.1
--- /dev/null Sun Nov 8 15:25:58 2020
+++ pkgsrc/x11/xclip/patches/patch-xclip-pastefile Sun Nov 8 15:25:58 2020
@@ -0,0 +1,24 @@
+$NetBSD: patch-xclip-pastefile,v 1.1 2020/11/08 15:25:58 kim Exp $
+
+https://github.com/astrand/xclip/commit/db74a39e15f1a75bb1f828103ae7a8d2b4d8ccc3.patch
+
+From: "Dmitrij D. Czarkoff" <czarkoff%gmail.com@localhost>
+Date: Tue, 13 Sep 2016 17:57:12 +0200
+Subject: [PATCH] Add "-f -" flags to tar
+
+BSD implementations of tar use tape device as default file, so "tar xv" would
+extract files from tape device instead of standard input.
+---
+ xclip-pastefile | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/xclip-pastefile b/xclip-pastefile
+index bb3209f..4ac2eae 100755
+--- xclip-pastefile
++++ xclip-pastefile
+@@ -4,4 +4,4 @@ if [ "x$1" != "x" ]; then
+ echo "Usage: $0" >&2
+ exit 1
+ fi
+-xclip -selection secondary -o | gunzip -c | tar xv
++xclip -selection secondary -o | gunzip -c | tar xvf -
Home |
Main Index |
Thread Index |
Old Index