View | Details | Raw Unified | Return to bug 213852
Collapse All | Expand All

(-)./distinfo (-2 / +3 lines)
Lines 1-2 Link Here
1
SHA256 (bsdisks-0.2.tar.gz) = 794d8d12d3d4feeba36363eb932cbd2ee8eef1a58cbc1d54fd5db68c6ea76217
1
TIMESTAMP = 1477656542
2
SIZE (bsdisks-0.2.tar.gz) = 91353
2
SHA256 (bsdisks-0.3.tar.gz) = 9692376c10a6598914e106ee24188c7289fad2f8d75136dc8e923e588fe01683
3
SIZE (bsdisks-0.3.tar.gz) = 92385
(-)./files/patch-11-current (-31 lines)
Lines 1-31 Link Here
1
# HG changeset patch
2
# User Gleb Popov <6yearold@gmail.com>
3
# Date 1466501926 -10800
4
#      Tue Jun 21 12:38:46 2016 +0300
5
# Node ID 920139e9b9d6a2f03b1d24458cb7228a68c44e30
6
# Parent  58acee356be5291cca539d2617b9afca82038ddf
7
Fix build on 11-CURRENT.
8
9
diff -r 58acee356be5 -r 920139e9b9d6 devdthread.cpp
10
--- devdthread.cpp	Wed Jun 01 19:27:58 2016 +0300
11
+++ devdthread.cpp	Tue Jun 21 12:38:46 2016 +0300
12
@@ -28,6 +28,7 @@
13
 
14
 #include <QHash>
15
 
16
+#include <errno.h>
17
 #include <sys/types.h>
18
 #include <sys/event.h>
19
 #include <sys/socket.h>
20
diff -r 58acee356be5 -r 920139e9b9d6 geomprober.h
21
--- geomprober.h	Wed Jun 01 19:27:58 2016 +0300
22
+++ geomprober.h	Tue Jun 21 12:38:46 2016 +0300
23
@@ -26,6 +26,8 @@
24
 
25
 #pragma once
26
 
27
+#include <sys/types.h>
28
+
29
 #include <QObject>
30
 #include <QSharedData>
31
 #include <QRunnable>
(-)./files/patch-93-release (-11 lines)
Lines 1-11 Link Here
1
--- filesystemprober.cpp.orig	2016-06-23 10:09:01 UTC
2
+++ filesystemprober.cpp
3
@@ -32,7 +32,7 @@
4
 void FilesystemProber::run()
5
 {
6
     QProcess p;
7
-    QStringList args = {m_dev};
8
+    QStringList args; args << m_dev;
9
 
10
     p.start(QStringLiteral("/usr/sbin/fstyp"), args);
11
 
(-)./Makefile (-1 / +1 lines)
Lines 1-7 Link Here
1
# $FreeBSD: head/sysutils/bsdisks/Makefile 417365 2016-06-23 11:45:40Z amdmi3 $
1
# $FreeBSD: head/sysutils/bsdisks/Makefile 417365 2016-06-23 11:45:40Z amdmi3 $
2
2
3
PORTNAME=	bsdisks
3
PORTNAME=	bsdisks
4
PORTVERSION=	0.2
4
PORTVERSION=	0.3
5
CATEGORIES=	sysutils
5
CATEGORIES=	sysutils
6
MASTER_SITES=	https://bitbucket.org/arrowd/bsdisks/downloads/
6
MASTER_SITES=	https://bitbucket.org/arrowd/bsdisks/downloads/
7
7

Return to bug 213852