Date: Friday, January 20, 2023 @ 19:51:21
Author: grawlinson
Revision: 1387158
archrelease: copy trunk to community-x86_64
Added:
reapack/repos/community-x86_64/PKGBUILD
(from rev 1387157, reapack/trunk/PKGBUILD)
reapack/repos/community-x86_64/reapack.install
(from rev 1387157, reapack/trunk/reapack.install)
Deleted:
reapack/repos/community-x86_64/PKGBUILD
reapack/repos/community-x86_64/reapack.install
-----------------+
PKGBUILD | 161 +++++++++++++++++++++++++++---------------------------
reapack.install | 18 +++---
2 files changed, 91 insertions(+), 88 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2023-01-20 19:50:12 UTC (rev 1387157)
+++ PKGBUILD 2023-01-20 19:51:21 UTC (rev 1387158)
@@ -1,79 +0,0 @@
-# Maintainer: George Rawlinson <[email protected]>
-
-pkgname=reapack
-pkgver=1.2.4.2
-pkgrel=2
-pkgdesc='Package manager for the Reaper DAW'
-arch=('x86_64')
-url='https://reapack.com'
-license=('GPL3' 'LGPL3')
-depends=(
- 'reaper'
- 'libxml2'
- 'curl'
- 'sqlite'
-)
-makedepends=(
- 'git'
- 'cmake'
- 'boost'
- 'openssl'
- 'zlib'
- 'ruby'
- 'php'
- 'catch2'
-)
-install='reapack.install'
-_commit='daa3346cee146d5eeca806452d26b70e623d5aa7'
-source=(
- "$pkgname::git+https://github.com/cfillion/reapack#commit=$_commit"
- 'github.com-justinfrankel-wdl::git+https://github.com/justinfrankel/WDL'
-
'github.com-justinfrankel-reaper-sdk::git+https://github.com/justinfrankel/reaper-sdk'
-)
-b2sums=('SKIP'
- 'SKIP'
- 'SKIP')
-
-pkgver() {
- cd "$pkgname"
-
- git describe --tags | sed 's/^v//'
-}
-
-prepare() {
- cd "$pkgname"
-
- # prepare git submodule(s)
- git submodule init
- git config submodule.vendor/WDL.url "$srcdir/github.com-justinfrankel-wdl"
- git config submodule.vendor/reaper-sdk.url
"$srcdir/github.com-justinfrankel-reaper-sdk"
- git -c protocol.file.allow=always submodule update
-
- # FTBFS due to catch2 v3 not being in the repos yet
- # so we have to use an older version
- git revert --no-commit d551e255fe79ea1e463fe757554a55bf5adf5058
-}
-
-build() {
- cd "$pkgname"
-
- cmake \
- -B build \
- -DCMAKE_BUILD_TYPE=Release
-
- cmake --build build
-}
-
-check() {
- make -C "$pkgname/build" test
-}
-
-package() {
- cd "$pkgname"
-
- # plugin
- install -vDm755 -t "$pkgdir/usr/lib/$pkgname"
"build/reaper_reapack-$CARCH.so"
-
- # documentation
- install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
-}
Copied: reapack/repos/community-x86_64/PKGBUILD (from rev 1387157,
reapack/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2023-01-20 19:51:21 UTC (rev 1387158)
@@ -0,0 +1,82 @@
+# Maintainer: George Rawlinson <[email protected]>
+
+pkgname=reapack
+pkgver=1.2.4.2
+pkgrel=3
+pkgdesc='Package manager for the Reaper DAW'
+arch=('x86_64')
+url='https://reapack.com'
+license=('GPL3' 'LGPL3')
+depends=(
+ 'reaper'
+ 'libxml2'
+ 'curl'
+ 'sqlite'
+)
+makedepends=(
+ 'git'
+ 'cmake'
+ 'boost'
+ 'openssl'
+ 'zlib'
+ 'ruby'
+ 'php'
+ 'catch2'
+)
+install='reapack.install'
+_commit='daa3346cee146d5eeca806452d26b70e623d5aa7'
+source=(
+ "$pkgname::git+https://github.com/cfillion/reapack#commit=$_commit"
+ 'github.com-justinfrankel-wdl::git+https://github.com/justinfrankel/WDL'
+
'github.com-justinfrankel-reaper-sdk::git+https://github.com/justinfrankel/reaper-sdk'
+)
+b2sums=('SKIP'
+ 'SKIP'
+ 'SKIP')
+
+pkgver() {
+ cd "$pkgname"
+
+ git describe --tags | sed 's/^v//'
+}
+
+prepare() {
+ cd "$pkgname"
+
+ # prepare git submodule(s)
+ git submodule init
+ git config submodule.vendor/WDL.url "$srcdir/github.com-justinfrankel-wdl"
+ git config submodule.vendor/reaper-sdk.url
"$srcdir/github.com-justinfrankel-reaper-sdk"
+ git -c protocol.file.allow=always submodule update
+
+ # FTBFS due to catch2 v3 not being in the repos yet
+ # so we have to use an older version
+ git revert --no-commit d551e255fe79ea1e463fe757554a55bf5adf5058
+
+ # FTBFS: FS#77178
+ git cherry-pick --no-commit f2806c95ba16549e969581429d1fc51616c68796
+}
+
+build() {
+ cd "$pkgname"
+
+ cmake \
+ -B build \
+ -DCMAKE_BUILD_TYPE=Release
+
+ cmake --build build
+}
+
+check() {
+ make -C "$pkgname/build" test
+}
+
+package() {
+ cd "$pkgname"
+
+ # plugin
+ install -vDm755 -t "$pkgdir/usr/lib/$pkgname"
"build/reaper_reapack-$CARCH.so"
+
+ # documentation
+ install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
+}
Deleted: reapack.install
===================================================================
--- reapack.install 2023-01-20 19:50:12 UTC (rev 1387157)
+++ reapack.install 2023-01-20 19:51:21 UTC (rev 1387158)
@@ -1,9 +0,0 @@
-post_install(){
- cat <<- EOF
-
-For REAPER to pick up the plugin, it must be symlinked into REAPER's user
directory.
-
-ln -s /usr/lib/reapack/reaper_reapack-x86_64.so ~/.config/REAPER/UserPlugins/
-
-EOF
-}
Copied: reapack/repos/community-x86_64/reapack.install (from rev 1387157,
reapack/trunk/reapack.install)
===================================================================
--- reapack.install (rev 0)
+++ reapack.install 2023-01-20 19:51:21 UTC (rev 1387158)
@@ -0,0 +1,9 @@
+post_install(){
+ cat <<- EOF
+
+For REAPER to pick up the plugin, it must be symlinked into REAPER's user
directory.
+
+ln -s /usr/lib/reapack/reaper_reapack-x86_64.so ~/.config/REAPER/UserPlugins/
+
+EOF
+}