Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 31 Jan 2021 22:55:36 +0000 (UTC)
From:      "Jason E. Hale" <jhale@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r563539 - in head/graphics/rapid-photo-downloader: . files
Message-ID:  <202101312255.10VMta0E066605@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jhale
Date: Sun Jan 31 22:55:36 2021
New Revision: 563539
URL: https://svnweb.freebsd.org/changeset/ports/563539

Log:
  graphics/rapid-photo-downloader: Update to 0.9.26
  
  PR:		252238
  Submitted by:	Martin Neubauer <m.ne@gmx.net> (maintainer)

Modified:
  head/graphics/rapid-photo-downloader/Makefile
  head/graphics/rapid-photo-downloader/distinfo
  head/graphics/rapid-photo-downloader/files/patch-raphodo_storage.py

Modified: head/graphics/rapid-photo-downloader/Makefile
==============================================================================
--- head/graphics/rapid-photo-downloader/Makefile	Sun Jan 31 22:21:54 2021	(r563538)
+++ head/graphics/rapid-photo-downloader/Makefile	Sun Jan 31 22:55:36 2021	(r563539)
@@ -1,8 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	rapid-photo-downloader
-DISTVERSION=	0.9.24
-PORTREVISION=	2
+DISTVERSION=	0.9.26
 CATEGORIES=	graphics
 MASTER_SITES=	https://launchpad.net/rapid/pyqt/${PORTVERSION}/+download/
 
@@ -35,7 +34,7 @@ RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}arrow>0:devel/py-a
 		${PYTHON_PKGNAMEPREFIX}xdg>0:devel/py-xdg@${PY_FLAVOR} \
 		exiftool:graphics/p5-Image-ExifTool
 
-USES=		desktop-file-utils gettext pyqt:5 python:3.4+ qt:5
+USES=		desktop-file-utils gettext pyqt:5 python:3.6+ qt:5
 USE_PYTHON=	autoplist distutils noflavors
 USE_QT=		imageformats_run
 USE_PYQT=	core gui network sip widgets

Modified: head/graphics/rapid-photo-downloader/distinfo
==============================================================================
--- head/graphics/rapid-photo-downloader/distinfo	Sun Jan 31 22:21:54 2021	(r563538)
+++ head/graphics/rapid-photo-downloader/distinfo	Sun Jan 31 22:55:36 2021	(r563539)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1588794721
-SHA256 (rapid-photo-downloader-0.9.24.tar.gz) = 66b9482c9212043b519416982dacd734f8d05c285eb8d7e3ee3f0d7a29068590
-SIZE (rapid-photo-downloader-0.9.24.tar.gz) = 8150727
+TIMESTAMP = 1609176016
+SHA256 (rapid-photo-downloader-0.9.26.tar.gz) = 6dc87531581b2090e3836fb3d77f43f35e06bb5c029d1ec19f0e917fb6acff94
+SIZE (rapid-photo-downloader-0.9.26.tar.gz) = 8213203

Modified: head/graphics/rapid-photo-downloader/files/patch-raphodo_storage.py
==============================================================================
--- head/graphics/rapid-photo-downloader/files/patch-raphodo_storage.py	Sun Jan 31 22:21:54 2021	(r563538)
+++ head/graphics/rapid-photo-downloader/files/patch-raphodo_storage.py	Sun Jan 31 22:55:36 2021	(r563539)
@@ -1,4 +1,4 @@
---- raphodo/storage.py.orig	2020-05-03 17:31:45 UTC
+--- raphodo/storage.py.orig	2020-12-24 23:41:26 UTC
 +++ raphodo/storage.py
 @@ -69,10 +69,9 @@ import xdg
  import gi
@@ -39,7 +39,7 @@
      cmd = shlex.split('xdg-mime query default inode/directory')
      try:
          desktop_file = subprocess.check_output(cmd, universal_newlines=True)  # type: str
-@@ -1064,259 +1063,6 @@ class CameraHotplug(QObject):
+@@ -1075,264 +1074,6 @@ class CameraHotplug(QObject):
              if emit_remove:
                  logging.info("Hotplug: %s has been removed", name)
                  self.cameraRemoved.emit()
@@ -219,11 +219,16 @@
 -        """
 -
 -        object_path = '/org/freedesktop/UDisks2/block_devices/{}'.format(
--            os.path.split(device_path)[1])
+-            os.path.split(device_path)[1]
+-        )
 -        obj = self.udisks.get_object(object_path)
--        icon_names = self.get_icon_names(obj)
--        can_eject = self.get_can_eject(obj)
--        return (icon_names, can_eject)
+-        if obj is None:
+-            icon_names = []
+-            can_eject = False
+-        else:
+-            icon_names = self.get_icon_names(obj)
+-            can_eject = self.get_can_eject(obj)
+-        return icon_names, can_eject
 -
 -    @pyqtSlot(str)
 -    def unmount_volume(self, mount_point: str) -> None:



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