git subrepo pull neovim-remote

subrepo:
  subdir:   "neovim-remote"
  merged:   "e0eb03b"
upstream:
  origin:   "https://aur.archlinux.org/neovim-remote"
  branch:   "master"
  commit:   "e0eb03b"
git-subrepo:
  version:  "0.4.3"
  origin:   "???"
  commit:   "???"
This commit is contained in:
Gabriel Ebner 2022-09-18 13:04:42 +02:00
parent b03a70339c
commit 49c4b00234
3 changed files with 11 additions and 10 deletions

View File

@ -1,7 +1,7 @@
pkgbase = neovim-remote
pkgdesc = Support --remote and friends for Neovim
pkgver = 2.4.0
pkgrel = 3
pkgver = 2.5.0
pkgrel = 1
url = https://github.com/mhinz/neovim-remote
arch = any
license = MIT
@ -9,8 +9,7 @@ pkgbase = neovim-remote
makedepends = python-setuptools
depends = python-pynvim
depends = python-psutil
source = neovim-remote-2.4.0.tar.gz::https://github.com/mhinz/neovim-remote/archive/v2.4.0.tar.gz
sha256sums = 4213b6eaad638aa20d8687362764843beb626e6e1a03bc3c8b3399bbfc11fbf7
source = neovim-remote-2.5.0.tar.gz::https://github.com/mhinz/neovim-remote/archive/v2.5.0.tar.gz
sha256sums = 3ad1c060688e102b2580d01c0360918113021788b0fcc3ac08bb7fc71b4f7658
pkgname = neovim-remote

View File

@ -6,7 +6,7 @@
[subrepo]
remote = https://aur.archlinux.org/neovim-remote
branch = master
commit = 8577b3a497622e90efa4ea4da3b5bf12aae922f4
parent = 69a6dfebdef8740cebf4d938b104e049b0bf806c
commit = e0eb03bd691823ea204128492a521f02c9108cc0
parent = b03a70339cf04a7c7ebf481073cb00cfc1b2c6e2
method = merge
cmdver = 0.4.3

View File

@ -1,7 +1,7 @@
# Maintainer: Hexchain Tong <i at hexchain dot org>
pkgname=neovim-remote
pkgver=2.4.0
pkgrel=3
pkgver=2.5.0
pkgrel=1
pkgdesc="Support --remote and friends for Neovim"
arch=(any)
url="https://github.com/mhinz/neovim-remote"
@ -9,7 +9,7 @@ license=('MIT')
depends=('python-pynvim' 'python-psutil')
makedepends=('git' 'python-setuptools')
source=("$pkgname-$pkgver.tar.gz::https://github.com/mhinz/neovim-remote/archive/v$pkgver.tar.gz")
sha256sums=('4213b6eaad638aa20d8687362764843beb626e6e1a03bc3c8b3399bbfc11fbf7')
sha256sums=('3ad1c060688e102b2580d01c0360918113021788b0fcc3ac08bb7fc71b4f7658')
build() {
cd "$srcdir/$pkgname-$pkgver"
@ -20,6 +20,8 @@ package() {
cd "$srcdir/$pkgname-$pkgver"
python setup.py install --optimize=1 --root="$pkgdir/" --prefix=/usr --skip-build
install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
install -Dm644 contrib/completion.bash "$pkgdir/usr/share/bash-completion/completions/neovim-remote"
install -Dm644 README.md -t "$pkgdir/usr/share/doc/$pkgname/"
}
# vim:set ts=2 sw=2 et: