[arch-commits] Commit in shotcut/repos/community-x86_64 (4 files)

Filipe Laíns ffy00 at gemini.archlinux.org
Sat Jul 10 21:57:01 UTC 2021


    Date: Saturday, July 10, 2021 @ 21:57:01
  Author: ffy00
Revision: 976497

archrelease: copy trunk to community-x86_64

Added:
  shotcut/repos/community-x86_64/PKGBUILD
    (from rev 976496, shotcut/trunk/PKGBUILD)
  shotcut/repos/community-x86_64/melt.patch
    (from rev 976496, shotcut/trunk/melt.patch)
Deleted:
  shotcut/repos/community-x86_64/PKGBUILD
  shotcut/repos/community-x86_64/melt.patch

------------+
 PKGBUILD   |   80 +++++++++++++++++++++++++++++------------------------------
 melt.patch |   26 +++++++++----------
 2 files changed, 53 insertions(+), 53 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2021-07-10 21:56:57 UTC (rev 976496)
+++ PKGBUILD	2021-07-10 21:57:01 UTC (rev 976497)
@@ -1,40 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) <lains at archlinux.org>
-# Contributor: nfnty <arch at nfnty.se>
-
-pkgname=shotcut
-pkgdesc='Cross-platform Qt based Video Editor'
-pkgver=21.05.18
-pkgrel=2
-arch=('x86_64')
-url='https://www.shotcut.org'
-license=('GPL3')
-depends=('qt5-base' 'qt5-declarative' 'qt5-graphicaleffects' 'qt5-multimedia'
-         'qt5-quickcontrols' 'qt5-quickcontrols2' 'qt5-websockets' 'qt5-x11extras'
-         'mlt' 'movit' 'ffmpeg' 'libx264' 'libvpx' 'lame' 'frei0r-plugins' 'ladspa')
-optdepends=('swh-plugins: Several audio filters')
-makedepends=('qt5-tools')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/mltframework/shotcut/archive/v$pkgver.tar.gz")
-sha512sums=('5f8ea42b8970e82e9222643a0da9ae7d3399b61e003b0d69158e5a7ec258ad53d937bf8264123f95cbfcb40e31f52c8c0f0e81bf32f159b0c501e3d1660a7bfb')
-
-build() {
-  mkdir $pkgname-$pkgver/build
-  cd $pkgname-$pkgver/build
-
-  qmake .. \
-    PREFIX='/usr' \
-    QMAKE_CFLAGS_RELEASE="$CFLAGS" \
-    QMAKE_CXXFLAGS_RELEASE="$CXXFLAGS" \
-    SHOTCUT_VERSION=ARCH-$pkgver \
-    DEFINES+=SHOTCUT_NOUPGRADE
-
-  make
-
-  lrelease ../translations/*.ts
-}
-
-package() {
-    cd $pkgname-$pkgver/build
-
-    make INSTALL_ROOT="$pkgdir" install
-}
-

Copied: shotcut/repos/community-x86_64/PKGBUILD (from rev 976496, shotcut/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2021-07-10 21:57:01 UTC (rev 976497)
@@ -0,0 +1,40 @@
+# Maintainer: Filipe Laíns (FFY00) <lains at archlinux.org>
+# Contributor: nfnty <arch at nfnty.se>
+
+pkgname=shotcut
+pkgdesc='Cross-platform Qt based Video Editor'
+pkgver=21.06.29
+pkgrel=1
+arch=('x86_64')
+url='https://www.shotcut.org'
+license=('GPL3')
+depends=('qt5-base' 'qt5-declarative' 'qt5-graphicaleffects' 'qt5-multimedia'
+         'qt5-quickcontrols' 'qt5-quickcontrols2' 'qt5-websockets' 'qt5-x11extras'
+         'mlt' 'movit' 'ffmpeg' 'libx264' 'libvpx' 'lame' 'frei0r-plugins' 'ladspa')
+optdepends=('swh-plugins: Several audio filters')
+makedepends=('qt5-tools')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/mltframework/shotcut/archive/v$pkgver.tar.gz")
+sha512sums=('b6256b2d6b6f5040321a227e60c447455b9026fc5315ddc0d16fcf76930162552fd883029536de201cb2b58e2544dd58203a4dbc9e27144c4ef399fb53fdb996')
+
+build() {
+  mkdir $pkgname-$pkgver/build
+  cd $pkgname-$pkgver/build
+
+  qmake .. \
+    PREFIX='/usr' \
+    QMAKE_CFLAGS_RELEASE="$CFLAGS" \
+    QMAKE_CXXFLAGS_RELEASE="$CXXFLAGS" \
+    SHOTCUT_VERSION=ARCH-$pkgver \
+    DEFINES+=SHOTCUT_NOUPGRADE
+
+  make
+
+  lrelease ../translations/*.ts
+}
+
+package() {
+    cd $pkgname-$pkgver/build
+
+    make INSTALL_ROOT="$pkgdir" install
+}
+

Deleted: melt.patch
===================================================================
--- melt.patch	2021-07-10 21:56:57 UTC (rev 976496)
+++ melt.patch	2021-07-10 21:57:01 UTC (rev 976497)
@@ -1,13 +0,0 @@
-diff --git a/src/jobs/meltjob.cpp b/src/jobs/meltjob.cpp
-index f5390e4..693a089 100644
---- a/src/jobs/meltjob.cpp
-+++ b/src/jobs/meltjob.cpp
-@@ -50,7 +50,7 @@ void MeltJob::start()
- #ifdef Q_OS_WIN
-     QFileInfo meltPath(shotcutPath, "qmelt.exe");
- #else
--    QFileInfo meltPath(shotcutPath, "qmelt");
-+    QFileInfo meltPath(shotcutPath, "melt");
- #endif
-     setReadChannel(QProcess::StandardError);
-     QStringList args;

Copied: shotcut/repos/community-x86_64/melt.patch (from rev 976496, shotcut/trunk/melt.patch)
===================================================================
--- melt.patch	                        (rev 0)
+++ melt.patch	2021-07-10 21:57:01 UTC (rev 976497)
@@ -0,0 +1,13 @@
+diff --git a/src/jobs/meltjob.cpp b/src/jobs/meltjob.cpp
+index f5390e4..693a089 100644
+--- a/src/jobs/meltjob.cpp
++++ b/src/jobs/meltjob.cpp
+@@ -50,7 +50,7 @@ void MeltJob::start()
+ #ifdef Q_OS_WIN
+     QFileInfo meltPath(shotcutPath, "qmelt.exe");
+ #else
+-    QFileInfo meltPath(shotcutPath, "qmelt");
++    QFileInfo meltPath(shotcutPath, "melt");
+ #endif
+     setReadChannel(QProcess::StandardError);
+     QStringList args;




More information about the arch-commits mailing list