Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 11 Feb 2023 17:20:37 GMT
From:      =?utf-8?Q?Fernando=20Apestegu=C3=ADa?= <fernape@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: d0a830c77925 - main - net/onedrive: remove now unneeded patch
Message-ID:  <202302111720.31BHKb2O026110@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by fernape:

URL: https://cgit.FreeBSD.org/ports/commit/?id=d0a830c77925dd27257eb09383751c7aa0210aa2

commit d0a830c77925dd27257eb09383751c7aa0210aa2
Author:     Hiroo Ono <hiroo.ono+freebsd@gmail.com>
AuthorDate: 2023-02-10 15:25:52 +0000
Commit:     Fernando ApesteguĂ­a <fernape@FreeBSD.org>
CommitDate: 2023-02-11 17:16:23 +0000

    net/onedrive: remove now unneeded patch
    
    PR:             269451
    Reported by:    hiroo.ono+freebsd@gmail.com (maintainer)
---
 net/onedrive/Makefile                   |  1 +
 net/onedrive/files/patch-src_progress.d | 23 -----------------------
 2 files changed, 1 insertion(+), 23 deletions(-)

diff --git a/net/onedrive/Makefile b/net/onedrive/Makefile
index 38e9a01fe6b0..bb65e1eb4452 100644
--- a/net/onedrive/Makefile
+++ b/net/onedrive/Makefile
@@ -1,6 +1,7 @@
 PORTNAME=	onedrive
 DISTVERSIONPREFIX=	v
 DISTVERSION=	2.4.23
+PORTREVISION=	1
 CATEGORIES=	net
 
 MAINTAINER=	hiroo.ono+freebsd@gmail.com
diff --git a/net/onedrive/files/patch-src_progress.d b/net/onedrive/files/patch-src_progress.d
deleted file mode 100644
index 4a435573cf6a..000000000000
--- a/net/onedrive/files/patch-src_progress.d
+++ /dev/null
@@ -1,23 +0,0 @@
---- src/progress.d.orig	2019-04-16 02:18:26 UTC
-+++ src/progress.d
-@@ -7,6 +7,20 @@ import std.datetime;
- import core.sys.posix.unistd;
- import core.sys.posix.sys.ioctl;
- 
-+// core.sys.posix.sys.ioccom;
-+enum uint IOCPARM_MASK = 0x1fff; // parameter length, at most 13 bits
-+enum uint IOC_OUT = 0x40000000; // copy parameters back
-+
-+uint _IOC(T=typeof(null))(uint inorout, uint group, uint num, size_t len)
-+{
-+    return (inorout | ((len & IOCPARM_MASK) << 16) | (group << 8) | num);
-+}
-+uint _IOR(T)(char g, int n)
-+{
-+    return _IOC!(T)(IOC_OUT, cast(uint)g, cast(uint)n, T.sizeof);
-+}
-+enum uint TIOCGWINSZ = _IOR!(winsize)('t', 104);
-+
- class Progress
- {
-   private:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202302111720.31BHKb2O026110>