summaryrefslogtreecommitdiff
path: root/multimedia/openshot/files/patch-setup.py
diff options
context:
space:
mode:
authorTatsuki Makino <tatsuki_makino@hotmail.com>2023-04-13 12:03:18 +0200
committerFernando ApesteguĂ­a <fernape@FreeBSD.org>2023-04-15 18:56:58 +0200
commit4876c612ca5d182752e5244fb0c45a10027582c0 (patch)
treecefda08f722196b25547afdb7350f4e13d85c7ab /multimedia/openshot/files/patch-setup.py
parentmultimedia/libopenshot: Update to 0.3.1 (diff)
multimedia/openshot: Update to 3.1.0
ChangeLog: https://www.openshot.org/blog/2023/04/06/new_openshot_release_310/ * Improved Profiles (400+ Export Profiles, New Profile UI, and more) * Huge Time Remapping update (improved audio resampling, support for backwards audio, bezier curve support) * Improved Undo / Redo system, includes grouping actions (i.e. single undo for split-clips and similar multi-step edits) * Improved Preview & Split Clip dialog (correct aspect ratio, correct sample rate) * Improved Caption Effect (high DPI support, improved VTT support) * Memory leak fixes (clip caching, memory leak fixes, prevent zombie threads) * Improved Performance (FrameMapper & Clip objects now include extra caching and optimizations) * Improved Keyboard Bindings (arrow keys) * Bug fix for Blender Animated Titles using high FPS (incorrect duration) * Bug fix for Mac Chroma Key effect (babl color methods) * Bug fix for video preview widget resizing, to correctly clear cache * Bug fix for Automatic Transition Direction logic (i.e. correctly fade in/out based on where the transition is dropped) * Fixed issue with AppImage to support newer distros (related to glibc compatibility) * Improved About dialog (release notes link, remove "candidate" for official releases) * Expanded default Emojis (adding in Arrows, Shapes, and Brands) * Improved File Properties Dialog, to handle replacing files and thumbnails, and better support for changing FPS * Updated language translations * Updated supporters and donors * Updated docs / user-guide PR: 270763 Reported by: tatsuki_makino@hotmail.com
Diffstat (limited to 'multimedia/openshot/files/patch-setup.py')
-rw-r--r--multimedia/openshot/files/patch-setup.py48
1 files changed, 28 insertions, 20 deletions
diff --git a/multimedia/openshot/files/patch-setup.py b/multimedia/openshot/files/patch-setup.py
index 66bea9fadd7d..3c42686cf9cf 100644
--- a/multimedia/openshot/files/patch-setup.py
+++ b/multimedia/openshot/files/patch-setup.py
@@ -1,4 +1,4 @@
---- setup.py.orig 2020-06-15 23:50:00 UTC
+--- setup.py.orig 2023-04-01 07:04:04 UTC
+++ setup.py
@@ -68,7 +68,7 @@ os_files = [
# AppStream metadata
@@ -18,30 +18,38 @@
]
# Find files matching patterns
-@@ -120,26 +120,6 @@ if os.path.exists(os.path.join(PATH, "src")):
- FAILED = 'Failed to update.\n'
-
+@@ -122,22 +122,28 @@ FAILED = 'Failed to update.\n'
if ROOT and dist != None:
-- # update the XDG Shared MIME-Info database cache
-- try:
+ # update the XDG Shared MIME-Info database cache
+ try:
- sys.stdout.write('Updating the Shared MIME-Info database cache.\n')
- subprocess.call(["update-mime-database", os.path.join(sys.prefix, "share/mime/")])
-- except:
-- sys.stderr.write(FAILED)
--
-- # update the mime.types database
-- try:
++ # It would be executed with a pkg trigger of USES=shared-mime-info
++ #sys.stdout.write('Updating the Shared MIME-Info database cache.\n')
++ #subprocess.call(["update-mime-database", os.path.join(sys.prefix, "share/mime/")])
++ pass
+ except:
+ sys.stderr.write(FAILED)
+
+ # update the mime.types database
+ try:
- sys.stdout.write('Updating the mime.types database\n')
- subprocess.call("update-mime")
-- except:
-- sys.stderr.write(FAILED)
--
-- # update the XDG .desktop file database
-- try:
++ # It is provided by mime-support:misc/mime-support but not installed
++ #sys.stdout.write('Updating the mime.types database\n')
++ #subprocess.call("update-mime")
++ pass
+ except:
+ sys.stderr.write(FAILED)
+
+ # update the XDG .desktop file database
+ try:
- sys.stdout.write('Updating the .desktop file database.\n')
- subprocess.call(["update-desktop-database"])
-- except:
-- sys.stderr.write(FAILED)
++ # It would be executed with a pkg trigger of USES=desktop-file-utils
++ #sys.stdout.write('Updating the .desktop file database.\n')
++ #subprocess.call(["update-desktop-database"])
++ pass
+ except:
+ sys.stderr.write(FAILED)
sys.stdout.write("\n-----------------------------------------------")
- sys.stdout.write("\nInstallation Finished!")
- sys.stdout.write("\nRun OpenShot by typing 'openshot-qt' or through the Applications menu.")