Update to 0.3
PR: 213852 Submitted by: Gleb Popov <6yearold@gmail.com> (maintainer)
This commit is contained in:
parent
a8538725d2
commit
a726d08e0c
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=424845
4 changed files with 4 additions and 45 deletions
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= bsdisks
|
||||
PORTVERSION= 0.2
|
||||
PORTVERSION= 0.3
|
||||
CATEGORIES= sysutils
|
||||
MASTER_SITES= https://bitbucket.org/arrowd/bsdisks/downloads/
|
||||
|
||||
|
|
|
@ -1,2 +1,3 @@
|
|||
SHA256 (bsdisks-0.2.tar.gz) = 794d8d12d3d4feeba36363eb932cbd2ee8eef1a58cbc1d54fd5db68c6ea76217
|
||||
SIZE (bsdisks-0.2.tar.gz) = 91353
|
||||
TIMESTAMP = 1477656542
|
||||
SHA256 (bsdisks-0.3.tar.gz) = 9692376c10a6598914e106ee24188c7289fad2f8d75136dc8e923e588fe01683
|
||||
SIZE (bsdisks-0.3.tar.gz) = 92385
|
||||
|
|
|
@ -1,31 +0,0 @@
|
|||
# HG changeset patch
|
||||
# User Gleb Popov <6yearold@gmail.com>
|
||||
# Date 1466501926 -10800
|
||||
# Tue Jun 21 12:38:46 2016 +0300
|
||||
# Node ID 920139e9b9d6a2f03b1d24458cb7228a68c44e30
|
||||
# Parent 58acee356be5291cca539d2617b9afca82038ddf
|
||||
Fix build on 11-CURRENT.
|
||||
|
||||
diff -r 58acee356be5 -r 920139e9b9d6 devdthread.cpp
|
||||
--- devdthread.cpp Wed Jun 01 19:27:58 2016 +0300
|
||||
+++ devdthread.cpp Tue Jun 21 12:38:46 2016 +0300
|
||||
@@ -28,6 +28,7 @@
|
||||
|
||||
#include <QHash>
|
||||
|
||||
+#include <errno.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/event.h>
|
||||
#include <sys/socket.h>
|
||||
diff -r 58acee356be5 -r 920139e9b9d6 geomprober.h
|
||||
--- geomprober.h Wed Jun 01 19:27:58 2016 +0300
|
||||
+++ geomprober.h Tue Jun 21 12:38:46 2016 +0300
|
||||
@@ -26,6 +26,8 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
+#include <sys/types.h>
|
||||
+
|
||||
#include <QObject>
|
||||
#include <QSharedData>
|
||||
#include <QRunnable>
|
|
@ -1,11 +0,0 @@
|
|||
--- filesystemprober.cpp.orig 2016-06-23 10:09:01 UTC
|
||||
+++ filesystemprober.cpp
|
||||
@@ -32,7 +32,7 @@
|
||||
void FilesystemProber::run()
|
||||
{
|
||||
QProcess p;
|
||||
- QStringList args = {m_dev};
|
||||
+ QStringList args; args << m_dev;
|
||||
|
||||
p.start(QStringLiteral("/usr/sbin/fstyp"), args);
|
||||
|
Loading…
Reference in a new issue