Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

openshot-qt: 2.4.1 -> 2.4.2 #42970

Merged
merged 2 commits into from Jul 7, 2018
Merged

Conversation

r-ryantm
Copy link
Contributor

@r-ryantm r-ryantm commented Jul 4, 2018

Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/openshot-qt/versions.

Version release notes (from GitHub):
Highlights

  • 7 New Effects (Crop, Hue, Color Shift, Pixelate, Bars, Wave, Shift)
  • Auto Audio Mixing
  • Auto Rotate
  • Improved Audio Playback
  • Improved Stability
  • Improved Export Dialog
  • New Codec Support (including experimental)
  • Growing Team of Developers
  • Dramatically Improved Build System

libopenshot-audio 0.1.6 so:6

  • Fix under-linking (pthread and dl), fixes 3
  • Integration of GitLab build pipelines

libopenshot 0.2.0 so:15

  • Auto audio mixing strategy per clip (average, reduce, or none)
  • Adding new crop effect, which can also be animated for some very cool effects.
  • Adding new Color Shift effect, which can shift any color (RGBA) with infinite wrapping (and full supports animation).
  • Adding new Pixelate video effect, which pixelates a portion (or all) of a frame's image, and is fully animatable.
  • Adding new video effect: Bars, which allow for animating colored bars around your video, such as a letterbox effect.
  • Adding new wave video effect, which can be animated in a ton of ways to create lots of cool wave distortion effects.
  • Adding Hue video effect, to adjust the hue of a frame's image, which can also be animated with a keyframe
  • Adding new effect: Shift, an infinite pixel shifting effect which can be animated and wrap images in any direction.
  • Auto-Rotates any Clip with Reader metadata 'rotate' attribute.
  • Experimental codecs now supported in FFmpeg/LibAV
  • Audio popping during preview (due to resampling)
  • Fixing brightness and Mask effects to calculate factor with a float type, giving more fine control
  • Fix Blur.cpp by copying blur_ values back to so horizontal and vertical blurs can be applied in one effect and blur accumulates with increased iterations
  • Update and apply frame mapper on any clip changes, to keep timeline offsets in sync (i.e. avoid audio popping due to slight misalignments of clips on the timeline).
  • Removing old frames from WorkingCache (when no longer needed). This helps prevent freezing looking for old frame data on certain videos.
  • Adding metadata from format, audio stream, and video streams to ReaderBase.info, which in some cases includes the 'rotate' metadata added by certain cameras, and audio metadata like title, album, artist, copyright, dates, etc...
  • Added in metadata encoding capabilities (writer.info.metadata["title"] = "My Title"). Only certain tag names are accepted (see FFmpeg for more on which tags are supported by which codecs).
  • Optimize and improve speed of Mask effect (used by transitions). This is way faster than before!
  • Fixing assignement and copy operators on Frame class (to prevent crashes for unintiailized image and audio pointers), and ensuring both copy and assignment operators work as expected.
  • Fixing the color property of Frames, which was being lost on some constructors.
  • Increase valid frame rates to 240 fps since many cameras now support this higher frame rate
  • Fixing regression on Clip constructor, and simplifying pointer initialization
  • Fixing a bug with Frame::AddImage (convertToFormat) not actually doing anything. It returns a new image, and does not convert the format in-place.
  • Preventing crash if Seek invoked before QtPlayer are initialized properly
  • FFMPEG 3.2 support for FFmpegWriter
  • FFMPEG 3.2 support for FFmpegReader
  • Fixing FFmpeg version breakage in FFmpegWriter
  • Increasing the default amount of cache in FFmpeg, based on the # of processors, to better support high framerate videos.
  • Changing some Seek values to be more accurate, and fixes a race condition with Timeline_Tests.cpp.
  • Changing some sleep() calls to usleep(), for more accuracy. This is a bit experimental, and hopefully will work on all OSes.
  • Do not clobber gainFactor when determining volume adjustments and add a TODO note about current_max_volume always being 0
  • Removing anchor from clip properties (since it is unused)
  • Adding "dbghelp" dependency for Windows builds (for crash handling support), and improved Windows build instructions using MSYS2.
  • Properly set test media files path, fixes 36
  • Fixing black frames at end of video clips, if audio stream longer than video stream, and end-of-stream is reached.
  • Integration of GitLab build pipelines
  • Faster Windows builds
  • Fixing audio unit tests
  • Avoid mixing audio for clips with no volume or disabled audio.
  • Updating cmake file for libopenshot-audio to search $ENV first, and then static folders
  • Add missing type cast
  • Spelling and typo fixes

openshot-qt 2.4.2

  • More detailed export dialog progress, including estimate time remaining, FPS, and more accurate percentage. Thanks Peter!
  • Defaulting to AAC audio codec
  • Improving zoom scale calculation, to use a custom bezier curve (zoom gets faster and faster the more you zoom out). 30 levels of precision between 1 second and 7200 seconds.
  • Auto-rotate for Readers with 'rotate' metadata. This requires a slightly newer version of FFmpeg, otherwise the 'rotate' tag is never found.
  • Adding new Crop video effect
  • Adding new Color Shift video effect (with temp icon)
  • Adding Pixelate video effect, which can animate a pixelated version of part (of all) of a video clip.
  • Adding new Bars video effect, which allow for animating colored bars around your video, such as a letterbox effect.
  • Adding new Wave video effect
  • Adding Hue video effect
  • Adding new Shift effect (which allows for shifting the image in any direction and allows for animation, with infinite wrapping)
  • Support for 32-bit and 64-bit Windows builds, and an update to the Windows dependencies (and installer size reduction).
  • 32-bit version of Windows is now large address aware, and can make use of more memory, but users might need to run this command first: 'bcdedit /set IncreaseUserVa 3072' in order to utilize this
  • No longer crash app if user settings cannot be read. Now we show a message box and reset the user settings.
  • Adding save indicator in window title
  • Retain track parameters during add/remove track
  • Update titles to be compatible with newer versions of Inkscape
  • Always apply mapper when opening a project, to ensure no audio starts popping for different framerate projects
  • Split Clip dialog now sends focus back to slider after clicking 'Start' or 'End' or 'Play' (to make it easier for frame-by-frame arrow keys)
  • Make clip and transition menus trigger on mouse-down, and not move the timeline item when the menu is activate
  • Removing max constrains from export length, so user can export blackness at the end of his project if so desired.
  • Disabling/Enabling save icon based on if the project needs saving
  • Add preset xml file for chromebook target
  • Removing unneeded 64-bit/32-bit clean-up code from Windows installer (which breaks on a 32-bit system)
  • Fix initial save indicator on a new (blank) project
  • Also use import_path for missing-file recovery
  • Add import_path tracking to project data
  • Updating mac build scripts to use Python 3.6 (with a newer version of OpenSSL)
  • Preview controls use media-skip icons
  • New razor-tool cursor
  • Adding new developer page to documentation, with step by step instructions on getting a Ubuntu development environment setup for libopenshot, libopenshot-audio, and openshot-qt.
  • Position is always (frame - 1) / fps
  • Utility functions for unit conversion
  • Be more explicit about logfile paths
  • Adding back in /usr/lib/x86_64-linux-gnu/libfontconfig.so.1 to the AppImage
  • Rename dv_pal_wide_animorphic to correct spelling
  • Remove duplicate profiles
  • Protect slack upload better during build server
  • Updating sponsors, donors, and contributors
  • Updating translations
  • Change the if statement for default language to use system default
  • Copy log file for each successful build (for debugging reasons)
  • Use QUrl.toLocalFile() to convert dropped URIs
  • Add Contributing section
  • Update Tutorial, Code tags and contrib link
  • Update GitHub info in tutorial
  • Use images/ path for images, not _static/ in documentation
  • Fix wrapping in Tutorial documentation
  • Replace ASCII arrows with Unicode arrow character in documentation
  • Also update transition layer on track add/remove
  • Small refactor of build server file uploads, and added extra check for 'already uploaded' assets to GitHub
  • Improve error message for failed uploads during build server
  • Remove torrents if already existing
  • Integration of GitLab build pipelines
  • Updating font family on built-in titles
  • Remove some unneeded copies of libopenshot and libopenshot-audio in the AppImage, reducing size of AppImage
  • Fixing issue with Linux AppImage creation on build server
  • Migrating from Bzr to Git (on Launchpad)
  • Delete old ISSUE_TEMPLATE
  • Correct a cut-and-paste wrong comment
  • Fixing copyright to use translation-friendly formatting, and hiding hardware decode preference (for now)
  • Update websites section and removal of too many caps
  • Change readme to be markdown
  • Log length of metrics response, not content
  • Updated copyrights to 2018 (from 2016). Also edited about.py so the year is automatically updated.
  • Adding a few missing dependencies into the developer doc page
  • .gitignore: ignore docs/_build & all pycache

Git Changes

  • Implementing GitFlow for project (develop, release, and master branches)
  • Protected branches (on all repos), preventing direct pushes
  • Must pass unit tests and status checks before merges allowed
  • Must go through the Pull/Merge Request flow to be merged into a protected branch
  • Automated git repo syncing between GitHub->GitLab->Launchpad
  • Automated GitLab CI build pipelines (all builds, tests, installers, daily installers, are run through GitLab CI now)
  • Builds and installers also support any branch, making feature branches and test branches much more useful, since we can share installers for them

Credits

  • Peter M
  • DylanC
  • Rich A
  • FeRD
  • Louis S
  • Beau N
  • peanutbutterandcrackers
  • Dr. Tobias

These checks were done:

  • built on NixOS
  • Warning: no invocation of /nix/store/knyiv36a47fri28b440n4z5fdxf1mn38-openshot-qt-2.4.2/bin/openshot-qt had a zero exit code or showed the expected version
  • Warning: no invocation of /nix/store/knyiv36a47fri28b440n4z5fdxf1mn38-openshot-qt-2.4.2/bin/..openshot-qt-wrapped-wrapped had a zero exit code or showed the expected version
  • Warning: no invocation of /nix/store/knyiv36a47fri28b440n4z5fdxf1mn38-openshot-qt-2.4.2/bin/.openshot-qt-wrapped had a zero exit code or showed the expected version
  • 0 of 3 passed binary check by having a zero exit code.
  • 0 of 3 passed binary check by having the new version present in output.
  • found 2.4.2 with grep in /nix/store/knyiv36a47fri28b440n4z5fdxf1mn38-openshot-qt-2.4.2
  • directory tree listing: https://gist.github.com/b5da2c2f9b03d20a447994a55a803e7e
  • du listing: https://gist.github.com/2ae1642544817e3e40b9456552762659

meta.description for openshot-qt is: '"Free, open-source video editor"'.

cc @AndersonTorres for testing.

This build is cached with Cachix. To use the cache follow these instructions:

One time setup in nixpkgs Git checkout:

cachix use r-ryantm
git remote add r-ryantm https://github.com/r-ryantm/nixpkgs.git

Test this build:

git fetch r-ryantm && git checkout e1b24b2fb5e6eb37e03c7d1aa2e4ca85896f8022 && nix-shell --pure -I nixpkgs=. -p openshot-qt

Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/openshot-qt/versions.

Version release notes (from GitHub):
**Highlights**
------------------------
 - 7 New Effects (Crop, Hue, Color Shift, Pixelate, Bars, Wave, Shift)
 - Auto Audio Mixing
 - Auto Rotate
 - Improved Audio Playback
 - Improved Stability
 - Improved Export Dialog
 - New Codec Support (including experimental)
 - Growing Team of Developers
 - Dramatically Improved Build System

**libopenshot-audio 0.1.6  so:6**
-----------------------
* Fix under-linking (pthread and dl), fixes 3
* Integration of GitLab build pipelines

**libopenshot 0.2.0  so:15**
-----------------------
* Auto audio mixing strategy per clip (average, reduce, or none)
* Adding new crop effect, which can also be animated for some very cool effects.
* Adding new Color Shift effect, which can shift any color (RGBA) with infinite wrapping (and full supports animation).
* Adding new Pixelate video effect, which pixelates a portion (or all) of a frame's image, and is fully animatable.
* Adding new video effect: Bars, which allow for animating colored bars around your video, such as a letterbox effect.
* Adding new wave video effect, which can be animated in a ton of ways to create lots of cool wave distortion effects.
* Adding Hue video effect, to adjust the hue of a frame's image, which can also be animated with a keyframe
* Adding new effect: Shift, an infinite pixel shifting effect which can be animated and wrap images in any direction.
* Auto-Rotates any Clip with Reader metadata 'rotate' attribute.
* Experimental codecs now supported in FFmpeg/LibAV
* Audio popping during preview (due to resampling)
* Fixing brightness and Mask effects to calculate factor with a float type, giving more fine control
* Fix Blur.cpp by copying blur_<chan> values back to <chan> so horizontal *and* vertical blurs can be applied in one effect and blur accumulates with increased iterations
* Update and apply frame mapper on any clip changes, to keep timeline offsets in sync (i.e. avoid audio popping due to slight misalignments of clips on the timeline).
* Removing old frames from WorkingCache (when no longer needed). This helps prevent freezing looking for old frame data on certain videos.
* Adding metadata from format, audio stream, and video streams to ReaderBase.info, which in some cases includes the 'rotate' metadata added by certain cameras, and audio metadata like title, album, artist, copyright, dates, etc...
* Added in metadata encoding capabilities (writer.info.metadata["title"] = "My Title"). Only certain tag names are accepted (see FFmpeg for more on which tags are supported by which codecs).
* Optimize and improve speed of Mask effect (used by transitions). This is way faster than before!
* Fixing assignement and copy operators on Frame class (to prevent crashes for unintiailized image and audio pointers), and ensuring both copy and assignment operators work as expected.
* Fixing the color property of Frames, which was being lost on some constructors.
* Increase valid frame rates to 240 fps since many cameras now support this higher frame rate
* Fixing regression on Clip constructor, and simplifying pointer initialization
* Fixing a bug with Frame::AddImage (convertToFormat) not actually doing anything. It returns a new image, and does not convert the format in-place.
* Preventing crash if Seek invoked before QtPlayer are initialized properly
* FFMPEG 3.2 support for FFmpegWriter
* FFMPEG 3.2 support for FFmpegReader
* Fixing FFmpeg version breakage in FFmpegWriter
* Increasing the default amount of cache in FFmpeg, based on the # of processors, to better support high framerate videos.
* Changing some Seek values to be more accurate, and fixes a race condition with Timeline_Tests.cpp.
* Changing some sleep() calls to usleep(), for more accuracy. This is a bit experimental, and hopefully will work on all OSes.
* Do not clobber gainFactor when determining volume adjustments and add a TODO note about current_max_volume always being 0
* Removing anchor from clip properties (since it is unused)
* Adding "dbghelp" dependency for Windows builds (for crash handling support), and improved Windows build instructions using MSYS2.
* Properly set test media files path, fixes 36
* Fixing black frames at end of video clips, if audio stream longer than video stream, and end-of-stream is reached.
* Integration of GitLab build pipelines
* Faster Windows builds
* Fixing audio unit tests
* Avoid mixing audio for clips with no volume or disabled audio.
* Updating cmake file for libopenshot-audio to search $ENV first, and then static folders
* Add missing type cast
* Spelling and typo fixes

**openshot-qt 2.4.2**
-----------------------
* More detailed export dialog progress, including estimate time remaining, FPS, and more accurate percentage. Thanks Peter!
* Defaulting to AAC audio codec
* Improving zoom scale calculation, to use a custom bezier curve (zoom gets faster and faster the more you zoom out). 30 levels of precision between 1 second and 7200 seconds.
* Auto-rotate for Readers with 'rotate' metadata. This requires a slightly newer version of FFmpeg, otherwise the 'rotate' tag is never found.
* Adding new Crop video effect
* Adding new Color Shift video effect (with temp icon)
* Adding Pixelate video effect, which can animate a pixelated version of part (of all) of a video clip.
* Adding new Bars video effect, which allow for animating colored bars around your video, such as a letterbox effect.
* Adding new Wave video effect
* Adding Hue video effect
* Adding new Shift effect (which allows for shifting the image in any direction and allows for animation, with infinite wrapping)
* Support for 32-bit and 64-bit Windows builds, and an update to the Windows dependencies (and installer size reduction).
* 32-bit version of Windows is now large address aware, and can make use of more memory, but users might need to run this command first: 'bcdedit /set IncreaseUserVa 3072' in order to utilize this
* No longer crash app if user settings cannot be read. Now we show a message box and reset the user settings.
* Adding save indicator in window title
* Retain track parameters during add/remove track
* Update titles to be compatible with newer versions of Inkscape
* Always apply mapper when opening a project, to ensure no audio starts popping for different framerate projects
* Split Clip dialog now sends focus back to slider after clicking 'Start' or 'End'  or 'Play' (to make it easier for frame-by-frame arrow keys)
* Make clip and transition menus trigger on mouse-down, and not move the timeline item when the menu is activate
* Removing max constrains from export length, so user can export blackness at the end of his project if so desired.
* Disabling/Enabling save icon based on if the project needs saving
* Add preset xml file for chromebook target
* Removing unneeded 64-bit/32-bit clean-up code from Windows installer (which breaks on a 32-bit system)
* Fix initial save indicator on a new (blank) project
* Also use import_path for missing-file recovery
* Add import_path tracking to project data
* Updating mac build scripts to use Python 3.6 (with a newer version of OpenSSL)
* Preview controls use media-skip icons
* New razor-tool cursor
* Adding new developer page to documentation, with step by step instructions on getting a Ubuntu development environment setup for libopenshot, libopenshot-audio, and openshot-qt.
* Position is always (frame - 1) / fps
* Utility functions for unit conversion
* Be more explicit about logfile paths
* Adding back in /usr/lib/x86_64-linux-gnu/libfontconfig.so.1 to the AppImage
* Rename dv_pal_wide_animorphic to correct spelling
* Remove duplicate profiles
* Protect slack upload better during build server
* Updating sponsors, donors, and contributors
* Updating translations
* Change the if statement for default language to use system default
* Copy log file for each successful build (for debugging reasons)
* Use QUrl.toLocalFile() to convert dropped URIs
* Add Contributing section
* Update Tutorial, Code tags and contrib link
* Update GitHub info in tutorial
* Use images/ path for images, not _static/ in documentation
* Fix wrapping in Tutorial documentation
* Replace ASCII arrows with Unicode arrow character in documentation
* Also update transition layer on track add/remove
* Small refactor of build server file uploads, and added extra check for 'already uploaded' assets to GitHub
* Improve error message for failed uploads during build server
* Remove torrents if already existing
* Integration of GitLab build pipelines
* Updating font family on built-in titles
* Remove some unneeded copies of libopenshot and libopenshot-audio in the AppImage, reducing size of AppImage
* Fixing issue with Linux AppImage creation on build server
* Migrating from Bzr to Git (on Launchpad)
* Delete old ISSUE_TEMPLATE
* Correct a cut-and-paste wrong comment
* Fixing copyright to use translation-friendly formatting, and hiding hardware decode preference (for now)
* Update websites section and removal of too many caps
* Change readme to be markdown
* Log length of metrics response, not content
* Updated copyrights to 2018 (from 2016). Also edited `about.py` so the year is automatically updated.
* Adding a few missing dependencies into the developer doc page
* .gitignore: ignore docs/_build & all pycache

**Git Changes**
-----------------------
* Implementing GitFlow for project (develop, release, and master branches)
* Protected branches (on all repos), preventing direct pushes
* Must pass unit tests and status checks before merges allowed
* Must go through the Pull/Merge Request flow to be merged into a protected branch
* Automated git repo syncing between GitHub->GitLab->Launchpad
* Automated GitLab CI build pipelines (all builds, tests, installers, daily installers, are run through GitLab CI now)
* Builds and installers also support any branch, making feature branches and test branches much more useful, since we can share installers for them

**Credits**
-----------------------
* Peter M
* DylanC
* Rich A
* FeRD
* Louis S
* Beau N
* peanutbutterandcrackers
* Dr. Tobias

These checks were done:

- built on NixOS
- Warning: no invocation of /nix/store/knyiv36a47fri28b440n4z5fdxf1mn38-openshot-qt-2.4.2/bin/openshot-qt had a zero exit code or showed the expected version
- Warning: no invocation of /nix/store/knyiv36a47fri28b440n4z5fdxf1mn38-openshot-qt-2.4.2/bin/..openshot-qt-wrapped-wrapped had a zero exit code or showed the expected version
- Warning: no invocation of /nix/store/knyiv36a47fri28b440n4z5fdxf1mn38-openshot-qt-2.4.2/bin/.openshot-qt-wrapped had a zero exit code or showed the expected version
- 0 of 3 passed binary check by having a zero exit code.
- 0 of 3 passed binary check by having the new version present in output.
- found 2.4.2 with grep in /nix/store/knyiv36a47fri28b440n4z5fdxf1mn38-openshot-qt-2.4.2
- directory tree listing: https://gist.github.com/b5da2c2f9b03d20a447994a55a803e7e
- du listing: https://gist.github.com/2ae1642544817e3e40b9456552762659
@ryantm
Copy link
Member

ryantm commented Jul 4, 2018

Okay, I need some better way to display the release notes...

@GrahamcOfBorg
Copy link

No attempt on x86_64-darwin (full log)

The following builds were skipped because they don't evaluate on x86_64-darwin: openshot-qt

Partial log (click to expand)


a) For `nixos-rebuild` you can set
  { nixpkgs.config.allowUnsupportedSystem = true; }
in configuration.nix to override this.

b) For `nix-env`, `nix-build`, `nix-shell` or any other Nix command you can add
  { allowUnsupportedSystem = true; }
to ~/.config/nixpkgs/config.nix.


@GrahamcOfBorg
Copy link

Success on x86_64-linux (full log)

Attempted: openshot-qt

Partial log (click to expand)

glibPreFixupPhase
post-installation fixup
Wrapping program /nix/store/lspy5cisini1y5hyf4im05z43677rw31-openshot-qt-2.4.2/bin/openshot-qt
shrinking RPATHs of ELF executables and libraries in /nix/store/lspy5cisini1y5hyf4im05z43677rw31-openshot-qt-2.4.2
strip is /nix/store/4qvrxzxa535y8304mk195x50b6p9607d-binutils-2.30/bin/strip
stripping (with command strip and flags -S) in /nix/store/lspy5cisini1y5hyf4im05z43677rw31-openshot-qt-2.4.2/lib  /nix/store/lspy5cisini1y5hyf4im05z43677rw31-openshot-qt-2.4.2/bin
patching script interpreter paths in /nix/store/lspy5cisini1y5hyf4im05z43677rw31-openshot-qt-2.4.2
checking for references to /build in /nix/store/lspy5cisini1y5hyf4im05z43677rw31-openshot-qt-2.4.2...
wrapping `/nix/store/lspy5cisini1y5hyf4im05z43677rw31-openshot-qt-2.4.2/bin/.openshot-qt-wrapped'...
postPatchMkspecs

@GrahamcOfBorg
Copy link

Failure on aarch64-linux (full log)

Attempted: openshot-qt

Partial log (click to expand)

[6841/16620] CXX obj/third_party/webrtc/pc/peerconnection/rtpreceiver.o
[6842/16620] CXX obj/third_party/webrtc/rtc_base/rtc_base_approved_generic/flags.o
[6843/16620] CXX obj/third_party/webrtc/rtc_base/rtc_base_approved_generic/bytebuffer.o
[6844/16620] CXX obj/third_party/webrtc/pc/rtc_pc_base/srtptransport.o
[6845/16620] CXX obj/third_party/webrtc/modules/rtp_rtcp/rtp_rtcp_format/fir.o
[6846/16620] AR obj/third_party/pdfium/libfpdfapi.a
building of '/nix/store/5fjrmjmnaj6x0gavajnx2z7avhmhzy18-qtwebengine-5.11.0.drv' timed out after 3600 seconds
cannot build derivation '/nix/store/f6lagk82p02dmcyzk2lan6yf713wp4lz-python3.6-PyQt-5.10.1.drv': 1 dependencies couldn't be built
cannot build derivation '/nix/store/y9fn0jc031iwagnkdgf3h854nd2g4k9v-openshot-qt-2.4.2.drv': 1 dependencies couldn't be built
error: build of '/nix/store/y9fn0jc031iwagnkdgf3h854nd2g4k9v-openshot-qt-2.4.2.drv' failed

@xeji
Copy link
Contributor

xeji commented Jul 5, 2018

Okay, I need some better way to display the release notes...

@ryantm just link them ?

@infinisil
Copy link
Member

Needed a libopenshot update to work at runtime, tested it.

@infinisil infinisil merged commit 5345e05 into NixOS:master Jul 7, 2018
@GrahamcOfBorg
Copy link

No attempt on x86_64-darwin (full log)

The following builds were skipped because they don't evaluate on x86_64-darwin: openshot-qt

Partial log (click to expand)


a) For `nixos-rebuild` you can set
  { nixpkgs.config.allowUnsupportedSystem = true; }
in configuration.nix to override this.

b) For `nix-env`, `nix-build`, `nix-shell` or any other Nix command you can add
  { allowUnsupportedSystem = true; }
to ~/.config/nixpkgs/config.nix.


@GrahamcOfBorg
Copy link

Success on x86_64-linux (full log)

Attempted: openshot-qt

Partial log (click to expand)

glibPreFixupPhase
post-installation fixup
Wrapping program /nix/store/rk5dsbqysk8ynwg6ap5xys0fxcji5d5g-openshot-qt-2.4.2/bin/openshot-qt
shrinking RPATHs of ELF executables and libraries in /nix/store/rk5dsbqysk8ynwg6ap5xys0fxcji5d5g-openshot-qt-2.4.2
strip is /nix/store/4qvrxzxa535y8304mk195x50b6p9607d-binutils-2.30/bin/strip
stripping (with command strip and flags -S) in /nix/store/rk5dsbqysk8ynwg6ap5xys0fxcji5d5g-openshot-qt-2.4.2/lib  /nix/store/rk5dsbqysk8ynwg6ap5xys0fxcji5d5g-openshot-qt-2.4.2/bin
patching script interpreter paths in /nix/store/rk5dsbqysk8ynwg6ap5xys0fxcji5d5g-openshot-qt-2.4.2
checking for references to /build in /nix/store/rk5dsbqysk8ynwg6ap5xys0fxcji5d5g-openshot-qt-2.4.2...
wrapping `/nix/store/rk5dsbqysk8ynwg6ap5xys0fxcji5d5g-openshot-qt-2.4.2/bin/.openshot-qt-wrapped'...
postPatchMkspecs

@GrahamcOfBorg
Copy link

Failure on aarch64-linux (full log)

Attempted: openshot-qt

Partial log (click to expand)

/build/source/src/Timeline.cpp:1433:1: fatal error: error writing to /build/ccd0UqNO.s: No space left on device
 }
 ^
compilation terminated.
make[2]: *** [src/CMakeFiles/openshot.dir/build.make:676: src/CMakeFiles/openshot.dir/Timeline.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:230: src/CMakeFiles/openshot.dir/all] Error 2
make: *** [Makefile:152: all] Error 2
builder for '/nix/store/kc8jvvrp0sq4ly5cg2csc1y3k8mds7dh-libopenshot-0.2.0.drv' failed with exit code 2
cannot build derivation '/nix/store/b4hscf2q8a0nrmnxpzkp7k2pygq6djp3-openshot-qt-2.4.2.drv': 2 dependencies couldn't be built
error: build of '/nix/store/b4hscf2q8a0nrmnxpzkp7k2pygq6djp3-openshot-qt-2.4.2.drv' failed

@r-ryantm r-ryantm deleted the auto-update/openshot-qt branch July 8, 2018 00:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants