diff --git a/aur/owlry-meta-essentials/PKGBUILD b/aur/owlry-meta-essentials/PKGBUILD index 1b2c7f6..966ec08 100644 --- a/aur/owlry-meta-essentials/PKGBUILD +++ b/aur/owlry-meta-essentials/PKGBUILD @@ -8,6 +8,7 @@ url="https://somegit.dev/Owlibou/owlry" license=('GPL-3.0-or-later') depends=( 'owlry' + 'owlry-core' 'owlry-plugin-bookmarks' 'owlry-plugin-calculator' 'owlry-plugin-scripts' diff --git a/aur/owlry-meta-full/PKGBUILD b/aur/owlry-meta-full/PKGBUILD index 74383f5..47cada2 100644 --- a/aur/owlry-meta-full/PKGBUILD +++ b/aur/owlry-meta-full/PKGBUILD @@ -8,6 +8,7 @@ url="https://somegit.dev/Owlibou/owlry" license=('GPL-3.0-or-later') depends=( 'owlry' + 'owlry-core' # Essential plugins 'owlry-plugin-bookmarks' 'owlry-plugin-calculator' diff --git a/aur/owlry-meta-tools/PKGBUILD b/aur/owlry-meta-tools/PKGBUILD index 37b1c6f..50b511e 100644 --- a/aur/owlry-meta-tools/PKGBUILD +++ b/aur/owlry-meta-tools/PKGBUILD @@ -8,6 +8,7 @@ url="https://somegit.dev/Owlibou/owlry" license=('GPL-3.0-or-later') depends=( 'owlry' + 'owlry-core' 'owlry-plugin-clipboard' 'owlry-plugin-emoji' 'owlry-plugin-filesearch' diff --git a/aur/owlry-meta-widgets/PKGBUILD b/aur/owlry-meta-widgets/PKGBUILD index 52860cd..c6efddc 100644 --- a/aur/owlry-meta-widgets/PKGBUILD +++ b/aur/owlry-meta-widgets/PKGBUILD @@ -8,6 +8,7 @@ url="https://somegit.dev/Owlibou/owlry" license=('GPL-3.0-or-later') depends=( 'owlry' + 'owlry-core' 'owlry-plugin-media' 'owlry-plugin-pomodoro' 'owlry-plugin-weather' diff --git a/aur/owlry-plugin-bookmarks/PKGBUILD b/aur/owlry-plugin-bookmarks/PKGBUILD index 4d42447..124920d 100644 --- a/aur/owlry-plugin-bookmarks/PKGBUILD +++ b/aur/owlry-plugin-bookmarks/PKGBUILD @@ -1,12 +1,12 @@ # Maintainer: vikingowl pkgname=owlry-plugin-bookmarks -pkgver=0.4.10 +pkgver=1.0.0 pkgrel=1 pkgdesc="Browser bookmarks plugin for Owlry (Firefox, Chrome, Chromium)" arch=('x86_64') -url="https://somegit.dev/Owlibou/owlry" +url="https://somegit.dev/Owlibou/owlry-plugins" license=('GPL-3.0-or-later') -depends=('owlry') +depends=('owlry-core') makedepends=('cargo') install=owlry-plugin-bookmarks.install optdepends=( @@ -14,33 +14,33 @@ optdepends=( 'chromium: Chromium bookmarks support' 'google-chrome: Chrome bookmarks support' ) -source=("owlry-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz") -b2sums=('2d3761ee892d7f283a65fa58ca6206735b1b3b6e7f764f839e8a2cbd2fee2ce446c4b992e664790439393e6cb2f21fb21abacdeaf8de9eca4514da86c608216d') +source=("$pkgname-$pkgver.tar.gz::https://somegit.dev/Owlibou/owlry-plugins/archive/$pkgname-v$pkgver.tar.gz") +b2sums=('SKIP') _cratename=owlry-plugin-bookmarks prepare() { - cd "owlry" + cd "owlry-plugins" export RUSTUP_TOOLCHAIN=stable cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')" } build() { - cd "owlry" + cd "owlry-plugins" export RUSTUP_TOOLCHAIN=stable export CARGO_TARGET_DIR=target cargo build -p $_cratename --frozen --release } check() { - cd "owlry" + cd "owlry-plugins" export RUSTUP_TOOLCHAIN=stable export CARGO_TARGET_DIR=target cargo test -p $_cratename --frozen } package() { - cd "owlry" + cd "owlry-plugins" install -Dm755 "target/release/lib${_cratename//-/_}.so" \ "$pkgdir/usr/lib/owlry/plugins/lib${_cratename//-/_}.so" } diff --git a/aur/owlry-plugin-calculator/PKGBUILD b/aur/owlry-plugin-calculator/PKGBUILD index 3a942f4..fba1a0c 100644 --- a/aur/owlry-plugin-calculator/PKGBUILD +++ b/aur/owlry-plugin-calculator/PKGBUILD @@ -1,41 +1,41 @@ # Maintainer: vikingowl pkgname=owlry-plugin-calculator -pkgver=0.4.10 +pkgver=1.0.0 pkgrel=1 pkgdesc="Calculator plugin for Owlry - evaluate math expressions" arch=('x86_64') -url="https://somegit.dev/Owlibou/owlry" +url="https://somegit.dev/Owlibou/owlry-plugins" license=('GPL-3.0-or-later') -depends=('owlry') +depends=('owlry-core') makedepends=('cargo') install=owlry-plugin-calculator.install -source=("owlry-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz") -b2sums=('2d3761ee892d7f283a65fa58ca6206735b1b3b6e7f764f839e8a2cbd2fee2ce446c4b992e664790439393e6cb2f21fb21abacdeaf8de9eca4514da86c608216d') +source=("$pkgname-$pkgver.tar.gz::https://somegit.dev/Owlibou/owlry-plugins/archive/$pkgname-v$pkgver.tar.gz") +b2sums=('SKIP') _cratename=owlry-plugin-calculator prepare() { - cd "owlry" + cd "owlry-plugins" export RUSTUP_TOOLCHAIN=stable cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')" } build() { - cd "owlry" + cd "owlry-plugins" export RUSTUP_TOOLCHAIN=stable export CARGO_TARGET_DIR=target cargo build -p $_cratename --frozen --release } check() { - cd "owlry" + cd "owlry-plugins" export RUSTUP_TOOLCHAIN=stable export CARGO_TARGET_DIR=target cargo test -p $_cratename --frozen } package() { - cd "owlry" + cd "owlry-plugins" install -Dm755 "target/release/lib${_cratename//-/_}.so" \ "$pkgdir/usr/lib/owlry/plugins/lib${_cratename//-/_}.so" } diff --git a/aur/owlry-plugin-clipboard/PKGBUILD b/aur/owlry-plugin-clipboard/PKGBUILD index f1144e1..22d69ba 100644 --- a/aur/owlry-plugin-clipboard/PKGBUILD +++ b/aur/owlry-plugin-clipboard/PKGBUILD @@ -1,41 +1,41 @@ # Maintainer: vikingowl pkgname=owlry-plugin-clipboard -pkgver=0.4.10 +pkgver=1.0.0 pkgrel=1 pkgdesc="Clipboard history plugin for Owlry" arch=('x86_64') -url="https://somegit.dev/Owlibou/owlry" +url="https://somegit.dev/Owlibou/owlry-plugins" license=('GPL-3.0-or-later') -depends=('owlry' 'cliphist' 'wl-clipboard') +depends=('owlry-core' 'cliphist' 'wl-clipboard') makedepends=('cargo') install=owlry-plugin-clipboard.install -source=("owlry-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz") -b2sums=('2d3761ee892d7f283a65fa58ca6206735b1b3b6e7f764f839e8a2cbd2fee2ce446c4b992e664790439393e6cb2f21fb21abacdeaf8de9eca4514da86c608216d') +source=("$pkgname-$pkgver.tar.gz::https://somegit.dev/Owlibou/owlry-plugins/archive/$pkgname-v$pkgver.tar.gz") +b2sums=('SKIP') _cratename=owlry-plugin-clipboard prepare() { - cd "owlry" + cd "owlry-plugins" export RUSTUP_TOOLCHAIN=stable cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')" } build() { - cd "owlry" + cd "owlry-plugins" export RUSTUP_TOOLCHAIN=stable export CARGO_TARGET_DIR=target cargo build -p $_cratename --frozen --release } check() { - cd "owlry" + cd "owlry-plugins" export RUSTUP_TOOLCHAIN=stable export CARGO_TARGET_DIR=target cargo test -p $_cratename --frozen } package() { - cd "owlry" + cd "owlry-plugins" install -Dm755 "target/release/lib${_cratename//-/_}.so" \ "$pkgdir/usr/lib/owlry/plugins/lib${_cratename//-/_}.so" } diff --git a/aur/owlry-plugin-emoji/PKGBUILD b/aur/owlry-plugin-emoji/PKGBUILD index 852ec8b..f3d9581 100644 --- a/aur/owlry-plugin-emoji/PKGBUILD +++ b/aur/owlry-plugin-emoji/PKGBUILD @@ -1,41 +1,41 @@ # Maintainer: vikingowl pkgname=owlry-plugin-emoji -pkgver=0.4.10 +pkgver=1.0.0 pkgrel=1 pkgdesc="Emoji picker plugin for Owlry" arch=('x86_64') -url="https://somegit.dev/Owlibou/owlry" +url="https://somegit.dev/Owlibou/owlry-plugins" license=('GPL-3.0-or-later') -depends=('owlry' 'wl-clipboard' 'noto-fonts-emoji') +depends=('owlry-core' 'wl-clipboard' 'noto-fonts-emoji') makedepends=('cargo') install=owlry-plugin-emoji.install -source=("owlry-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz") -b2sums=('2d3761ee892d7f283a65fa58ca6206735b1b3b6e7f764f839e8a2cbd2fee2ce446c4b992e664790439393e6cb2f21fb21abacdeaf8de9eca4514da86c608216d') +source=("$pkgname-$pkgver.tar.gz::https://somegit.dev/Owlibou/owlry-plugins/archive/$pkgname-v$pkgver.tar.gz") +b2sums=('SKIP') _cratename=owlry-plugin-emoji prepare() { - cd "owlry" + cd "owlry-plugins" export RUSTUP_TOOLCHAIN=stable cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')" } build() { - cd "owlry" + cd "owlry-plugins" export RUSTUP_TOOLCHAIN=stable export CARGO_TARGET_DIR=target cargo build -p $_cratename --frozen --release } check() { - cd "owlry" + cd "owlry-plugins" export RUSTUP_TOOLCHAIN=stable export CARGO_TARGET_DIR=target cargo test -p $_cratename --frozen } package() { - cd "owlry" + cd "owlry-plugins" install -Dm755 "target/release/lib${_cratename//-/_}.so" \ "$pkgdir/usr/lib/owlry/plugins/lib${_cratename//-/_}.so" } diff --git a/aur/owlry-plugin-filesearch/PKGBUILD b/aur/owlry-plugin-filesearch/PKGBUILD index ee09aef..0bd1550 100644 --- a/aur/owlry-plugin-filesearch/PKGBUILD +++ b/aur/owlry-plugin-filesearch/PKGBUILD @@ -1,45 +1,45 @@ # Maintainer: vikingowl pkgname=owlry-plugin-filesearch -pkgver=0.4.10 +pkgver=1.0.0 pkgrel=1 pkgdesc="File search plugin for Owlry" arch=('x86_64') -url="https://somegit.dev/Owlibou/owlry" +url="https://somegit.dev/Owlibou/owlry-plugins" license=('GPL-3.0-or-later') -depends=('owlry') +depends=('owlry-core') makedepends=('cargo') install=owlry-plugin-filesearch.install optdepends=( 'fd: fast file finding (recommended)' 'mlocate: locate-based file search' ) -source=("owlry-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz") -b2sums=('2d3761ee892d7f283a65fa58ca6206735b1b3b6e7f764f839e8a2cbd2fee2ce446c4b992e664790439393e6cb2f21fb21abacdeaf8de9eca4514da86c608216d') +source=("$pkgname-$pkgver.tar.gz::https://somegit.dev/Owlibou/owlry-plugins/archive/$pkgname-v$pkgver.tar.gz") +b2sums=('SKIP') _cratename=owlry-plugin-filesearch prepare() { - cd "owlry" + cd "owlry-plugins" export RUSTUP_TOOLCHAIN=stable cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')" } build() { - cd "owlry" + cd "owlry-plugins" export RUSTUP_TOOLCHAIN=stable export CARGO_TARGET_DIR=target cargo build -p $_cratename --frozen --release } check() { - cd "owlry" + cd "owlry-plugins" export RUSTUP_TOOLCHAIN=stable export CARGO_TARGET_DIR=target cargo test -p $_cratename --frozen } package() { - cd "owlry" + cd "owlry-plugins" install -Dm755 "target/release/lib${_cratename//-/_}.so" \ "$pkgdir/usr/lib/owlry/plugins/lib${_cratename//-/_}.so" } diff --git a/aur/owlry-plugin-media/PKGBUILD b/aur/owlry-plugin-media/PKGBUILD index 06e8527..f822b4b 100644 --- a/aur/owlry-plugin-media/PKGBUILD +++ b/aur/owlry-plugin-media/PKGBUILD @@ -1,41 +1,41 @@ # Maintainer: vikingowl pkgname=owlry-plugin-media -pkgver=0.4.10 +pkgver=1.0.0 pkgrel=1 pkgdesc="Media player controls plugin for Owlry (MPRIS)" arch=('x86_64') -url="https://somegit.dev/Owlibou/owlry" +url="https://somegit.dev/Owlibou/owlry-plugins" license=('GPL-3.0-or-later') -depends=('owlry' 'playerctl') +depends=('owlry-core' 'playerctl') makedepends=('cargo') install=owlry-plugin-media.install -source=("owlry-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz") -b2sums=('2d3761ee892d7f283a65fa58ca6206735b1b3b6e7f764f839e8a2cbd2fee2ce446c4b992e664790439393e6cb2f21fb21abacdeaf8de9eca4514da86c608216d') +source=("$pkgname-$pkgver.tar.gz::https://somegit.dev/Owlibou/owlry-plugins/archive/$pkgname-v$pkgver.tar.gz") +b2sums=('SKIP') _cratename=owlry-plugin-media prepare() { - cd "owlry" + cd "owlry-plugins" export RUSTUP_TOOLCHAIN=stable cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')" } build() { - cd "owlry" + cd "owlry-plugins" export RUSTUP_TOOLCHAIN=stable export CARGO_TARGET_DIR=target cargo build -p $_cratename --frozen --release } check() { - cd "owlry" + cd "owlry-plugins" export RUSTUP_TOOLCHAIN=stable export CARGO_TARGET_DIR=target cargo test -p $_cratename --frozen } package() { - cd "owlry" + cd "owlry-plugins" install -Dm755 "target/release/lib${_cratename//-/_}.so" \ "$pkgdir/usr/lib/owlry/plugins/lib${_cratename//-/_}.so" } diff --git a/aur/owlry-plugin-pomodoro/PKGBUILD b/aur/owlry-plugin-pomodoro/PKGBUILD index ee2209e..685b4f3 100644 --- a/aur/owlry-plugin-pomodoro/PKGBUILD +++ b/aur/owlry-plugin-pomodoro/PKGBUILD @@ -1,41 +1,41 @@ # Maintainer: vikingowl pkgname=owlry-plugin-pomodoro -pkgver=0.4.10 +pkgver=1.0.0 pkgrel=1 pkgdesc="Pomodoro timer widget plugin for Owlry" arch=('x86_64') -url="https://somegit.dev/Owlibou/owlry" +url="https://somegit.dev/Owlibou/owlry-plugins" license=('GPL-3.0-or-later') -depends=('owlry') +depends=('owlry-core') makedepends=('cargo') install=owlry-plugin-pomodoro.install -source=("owlry-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz") -b2sums=('2d3761ee892d7f283a65fa58ca6206735b1b3b6e7f764f839e8a2cbd2fee2ce446c4b992e664790439393e6cb2f21fb21abacdeaf8de9eca4514da86c608216d') +source=("$pkgname-$pkgver.tar.gz::https://somegit.dev/Owlibou/owlry-plugins/archive/$pkgname-v$pkgver.tar.gz") +b2sums=('SKIP') _cratename=owlry-plugin-pomodoro prepare() { - cd "owlry" + cd "owlry-plugins" export RUSTUP_TOOLCHAIN=stable cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')" } build() { - cd "owlry" + cd "owlry-plugins" export RUSTUP_TOOLCHAIN=stable export CARGO_TARGET_DIR=target cargo build -p $_cratename --frozen --release } check() { - cd "owlry" + cd "owlry-plugins" export RUSTUP_TOOLCHAIN=stable export CARGO_TARGET_DIR=target cargo test -p $_cratename --frozen } package() { - cd "owlry" + cd "owlry-plugins" install -Dm755 "target/release/lib${_cratename//-/_}.so" \ "$pkgdir/usr/lib/owlry/plugins/lib${_cratename//-/_}.so" } diff --git a/aur/owlry-plugin-scripts/PKGBUILD b/aur/owlry-plugin-scripts/PKGBUILD index abd9cd4..c40bf1e 100644 --- a/aur/owlry-plugin-scripts/PKGBUILD +++ b/aur/owlry-plugin-scripts/PKGBUILD @@ -1,41 +1,41 @@ # Maintainer: vikingowl pkgname=owlry-plugin-scripts -pkgver=0.4.10 +pkgver=1.0.0 pkgrel=1 pkgdesc="Custom scripts provider plugin for Owlry" arch=('x86_64') -url="https://somegit.dev/Owlibou/owlry" +url="https://somegit.dev/Owlibou/owlry-plugins" license=('GPL-3.0-or-later') -depends=('owlry') +depends=('owlry-core') makedepends=('cargo') install=owlry-plugin-scripts.install -source=("owlry-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz") -b2sums=('2d3761ee892d7f283a65fa58ca6206735b1b3b6e7f764f839e8a2cbd2fee2ce446c4b992e664790439393e6cb2f21fb21abacdeaf8de9eca4514da86c608216d') +source=("$pkgname-$pkgver.tar.gz::https://somegit.dev/Owlibou/owlry-plugins/archive/$pkgname-v$pkgver.tar.gz") +b2sums=('SKIP') _cratename=owlry-plugin-scripts prepare() { - cd "owlry" + cd "owlry-plugins" export RUSTUP_TOOLCHAIN=stable cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')" } build() { - cd "owlry" + cd "owlry-plugins" export RUSTUP_TOOLCHAIN=stable export CARGO_TARGET_DIR=target cargo build -p $_cratename --frozen --release } check() { - cd "owlry" + cd "owlry-plugins" export RUSTUP_TOOLCHAIN=stable export CARGO_TARGET_DIR=target cargo test -p $_cratename --frozen } package() { - cd "owlry" + cd "owlry-plugins" install -Dm755 "target/release/lib${_cratename//-/_}.so" \ "$pkgdir/usr/lib/owlry/plugins/lib${_cratename//-/_}.so" } diff --git a/aur/owlry-plugin-ssh/PKGBUILD b/aur/owlry-plugin-ssh/PKGBUILD index efef994..90b91da 100644 --- a/aur/owlry-plugin-ssh/PKGBUILD +++ b/aur/owlry-plugin-ssh/PKGBUILD @@ -1,41 +1,41 @@ # Maintainer: vikingowl pkgname=owlry-plugin-ssh -pkgver=0.4.10 +pkgver=1.0.0 pkgrel=1 pkgdesc="SSH host launcher plugin for Owlry" arch=('x86_64') -url="https://somegit.dev/Owlibou/owlry" +url="https://somegit.dev/Owlibou/owlry-plugins" license=('GPL-3.0-or-later') -depends=('owlry' 'openssh') +depends=('owlry-core' 'openssh') makedepends=('cargo') install=owlry-plugin-ssh.install -source=("owlry-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz") -b2sums=('2d3761ee892d7f283a65fa58ca6206735b1b3b6e7f764f839e8a2cbd2fee2ce446c4b992e664790439393e6cb2f21fb21abacdeaf8de9eca4514da86c608216d') +source=("$pkgname-$pkgver.tar.gz::https://somegit.dev/Owlibou/owlry-plugins/archive/$pkgname-v$pkgver.tar.gz") +b2sums=('SKIP') _cratename=owlry-plugin-ssh prepare() { - cd "owlry" + cd "owlry-plugins" export RUSTUP_TOOLCHAIN=stable cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')" } build() { - cd "owlry" + cd "owlry-plugins" export RUSTUP_TOOLCHAIN=stable export CARGO_TARGET_DIR=target cargo build -p $_cratename --frozen --release } check() { - cd "owlry" + cd "owlry-plugins" export RUSTUP_TOOLCHAIN=stable export CARGO_TARGET_DIR=target cargo test -p $_cratename --frozen } package() { - cd "owlry" + cd "owlry-plugins" install -Dm755 "target/release/lib${_cratename//-/_}.so" \ "$pkgdir/usr/lib/owlry/plugins/lib${_cratename//-/_}.so" } diff --git a/aur/owlry-plugin-system/PKGBUILD b/aur/owlry-plugin-system/PKGBUILD index ecc1cb7..41c723f 100644 --- a/aur/owlry-plugin-system/PKGBUILD +++ b/aur/owlry-plugin-system/PKGBUILD @@ -1,41 +1,41 @@ # Maintainer: vikingowl pkgname=owlry-plugin-system -pkgver=0.4.10 +pkgver=1.0.0 pkgrel=1 pkgdesc="System actions plugin for Owlry (shutdown, reboot, logout, etc.)" arch=('x86_64') -url="https://somegit.dev/Owlibou/owlry" +url="https://somegit.dev/Owlibou/owlry-plugins" license=('GPL-3.0-or-later') -depends=('owlry' 'systemd') +depends=('owlry-core' 'systemd') makedepends=('cargo') install=owlry-plugin-system.install -source=("owlry-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz") -b2sums=('2d3761ee892d7f283a65fa58ca6206735b1b3b6e7f764f839e8a2cbd2fee2ce446c4b992e664790439393e6cb2f21fb21abacdeaf8de9eca4514da86c608216d') +source=("$pkgname-$pkgver.tar.gz::https://somegit.dev/Owlibou/owlry-plugins/archive/$pkgname-v$pkgver.tar.gz") +b2sums=('SKIP') _cratename=owlry-plugin-system prepare() { - cd "owlry" + cd "owlry-plugins" export RUSTUP_TOOLCHAIN=stable cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')" } build() { - cd "owlry" + cd "owlry-plugins" export RUSTUP_TOOLCHAIN=stable export CARGO_TARGET_DIR=target cargo build -p $_cratename --frozen --release } check() { - cd "owlry" + cd "owlry-plugins" export RUSTUP_TOOLCHAIN=stable export CARGO_TARGET_DIR=target cargo test -p $_cratename --frozen } package() { - cd "owlry" + cd "owlry-plugins" install -Dm755 "target/release/lib${_cratename//-/_}.so" \ "$pkgdir/usr/lib/owlry/plugins/lib${_cratename//-/_}.so" } diff --git a/aur/owlry-plugin-systemd/PKGBUILD b/aur/owlry-plugin-systemd/PKGBUILD index 3f78c6b..b530546 100644 --- a/aur/owlry-plugin-systemd/PKGBUILD +++ b/aur/owlry-plugin-systemd/PKGBUILD @@ -1,41 +1,41 @@ # Maintainer: vikingowl pkgname=owlry-plugin-systemd -pkgver=0.4.10 +pkgver=1.0.0 pkgrel=1 pkgdesc="Systemd service management plugin for Owlry" arch=('x86_64') -url="https://somegit.dev/Owlibou/owlry" +url="https://somegit.dev/Owlibou/owlry-plugins" license=('GPL-3.0-or-later') -depends=('owlry' 'systemd') +depends=('owlry-core' 'systemd') makedepends=('cargo') install=owlry-plugin-systemd.install -source=("owlry-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz") -b2sums=('2d3761ee892d7f283a65fa58ca6206735b1b3b6e7f764f839e8a2cbd2fee2ce446c4b992e664790439393e6cb2f21fb21abacdeaf8de9eca4514da86c608216d') +source=("$pkgname-$pkgver.tar.gz::https://somegit.dev/Owlibou/owlry-plugins/archive/$pkgname-v$pkgver.tar.gz") +b2sums=('SKIP') _cratename=owlry-plugin-systemd prepare() { - cd "owlry" + cd "owlry-plugins" export RUSTUP_TOOLCHAIN=stable cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')" } build() { - cd "owlry" + cd "owlry-plugins" export RUSTUP_TOOLCHAIN=stable export CARGO_TARGET_DIR=target cargo build -p $_cratename --frozen --release } check() { - cd "owlry" + cd "owlry-plugins" export RUSTUP_TOOLCHAIN=stable export CARGO_TARGET_DIR=target cargo test -p $_cratename --frozen } package() { - cd "owlry" + cd "owlry-plugins" install -Dm755 "target/release/lib${_cratename//-/_}.so" \ "$pkgdir/usr/lib/owlry/plugins/lib${_cratename//-/_}.so" } diff --git a/aur/owlry-plugin-weather/PKGBUILD b/aur/owlry-plugin-weather/PKGBUILD index ce79724..7e663a0 100644 --- a/aur/owlry-plugin-weather/PKGBUILD +++ b/aur/owlry-plugin-weather/PKGBUILD @@ -1,41 +1,41 @@ # Maintainer: vikingowl pkgname=owlry-plugin-weather -pkgver=0.4.10 +pkgver=1.0.0 pkgrel=1 pkgdesc="Weather widget plugin for Owlry" arch=('x86_64') -url="https://somegit.dev/Owlibou/owlry" +url="https://somegit.dev/Owlibou/owlry-plugins" license=('GPL-3.0-or-later') -depends=('owlry') +depends=('owlry-core') makedepends=('cargo') install=owlry-plugin-weather.install -source=("owlry-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz") -b2sums=('2d3761ee892d7f283a65fa58ca6206735b1b3b6e7f764f839e8a2cbd2fee2ce446c4b992e664790439393e6cb2f21fb21abacdeaf8de9eca4514da86c608216d') +source=("$pkgname-$pkgver.tar.gz::https://somegit.dev/Owlibou/owlry-plugins/archive/$pkgname-v$pkgver.tar.gz") +b2sums=('SKIP') _cratename=owlry-plugin-weather prepare() { - cd "owlry" + cd "owlry-plugins" export RUSTUP_TOOLCHAIN=stable cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')" } build() { - cd "owlry" + cd "owlry-plugins" export RUSTUP_TOOLCHAIN=stable export CARGO_TARGET_DIR=target cargo build -p $_cratename --frozen --release } check() { - cd "owlry" + cd "owlry-plugins" export RUSTUP_TOOLCHAIN=stable export CARGO_TARGET_DIR=target cargo test -p $_cratename --frozen } package() { - cd "owlry" + cd "owlry-plugins" install -Dm755 "target/release/lib${_cratename//-/_}.so" \ "$pkgdir/usr/lib/owlry/plugins/lib${_cratename//-/_}.so" } diff --git a/aur/owlry-plugin-websearch/PKGBUILD b/aur/owlry-plugin-websearch/PKGBUILD index 6cb675e..4d791d5 100644 --- a/aur/owlry-plugin-websearch/PKGBUILD +++ b/aur/owlry-plugin-websearch/PKGBUILD @@ -1,41 +1,41 @@ # Maintainer: vikingowl pkgname=owlry-plugin-websearch -pkgver=0.4.10 +pkgver=1.0.0 pkgrel=1 pkgdesc="Web search plugin for Owlry (DuckDuckGo, Google, etc.)" arch=('x86_64') -url="https://somegit.dev/Owlibou/owlry" +url="https://somegit.dev/Owlibou/owlry-plugins" license=('GPL-3.0-or-later') -depends=('owlry') +depends=('owlry-core') makedepends=('cargo') install=owlry-plugin-websearch.install -source=("owlry-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz") -b2sums=('2d3761ee892d7f283a65fa58ca6206735b1b3b6e7f764f839e8a2cbd2fee2ce446c4b992e664790439393e6cb2f21fb21abacdeaf8de9eca4514da86c608216d') +source=("$pkgname-$pkgver.tar.gz::https://somegit.dev/Owlibou/owlry-plugins/archive/$pkgname-v$pkgver.tar.gz") +b2sums=('SKIP') _cratename=owlry-plugin-websearch prepare() { - cd "owlry" + cd "owlry-plugins" export RUSTUP_TOOLCHAIN=stable cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')" } build() { - cd "owlry" + cd "owlry-plugins" export RUSTUP_TOOLCHAIN=stable export CARGO_TARGET_DIR=target cargo build -p $_cratename --frozen --release } check() { - cd "owlry" + cd "owlry-plugins" export RUSTUP_TOOLCHAIN=stable export CARGO_TARGET_DIR=target cargo test -p $_cratename --frozen } package() { - cd "owlry" + cd "owlry-plugins" install -Dm755 "target/release/lib${_cratename//-/_}.so" \ "$pkgdir/usr/lib/owlry/plugins/lib${_cratename//-/_}.so" }