summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorTrent Palmer2022-03-19 18:59:04 -0700
committerTrent Palmer2022-03-19 18:59:04 -0700
commit8312b71d34848a87f6ae5a87018dce977d9edc41 (patch)
treebf05c3b9ea7adef3a42417af4ae95fd5662a7980
parent8e23c2155f1876900cb265974650b4b6edad0abb (diff)
downloadaur-8312b71d34848a87f6ae5a87018dce977d9edc41.tar.gz
fix source variable in PKGBUILD
-rw-r--r--.SRCINFO5
-rw-r--r--PKGBUILD4
2 files changed, 4 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index c7664a195471..82e7526a84d5 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = nvim-yarp-git
pkgdesc = (an) attempt (at) writing a remote plugin framework without :UpdateRemotePlugins.
pkgver = r51.b710bf4
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/roxma/nvim-yarp
install = nvim-yarp.install
arch = any
@@ -11,8 +11,7 @@ pkgbase = nvim-yarp-git
depends = python-neovim
provides = nvim-yarp
replaces =
- source = nvim-yarp::git://github.com/roxma/nvim-yarp
+ source = nvim-yarp::git+https://github.com/roxma/nvim-yarp
md5sums = SKIP
pkgname = nvim-yarp-git
-
diff --git a/PKGBUILD b/PKGBUILD
index 7563e75cfc4f..229704f8b1da 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
_name='nvim-yarp'
pkgname="${_name}-git"
pkgver=r51.b710bf4
-pkgrel=1
+pkgrel=2
pkgdesc="(an) attempt (at) writing a remote plugin framework without :UpdateRemotePlugins."
arch=('any')
url="https://github.com/roxma/nvim-yarp"
@@ -17,7 +17,7 @@ backup=()
options=()
# maybe at some point there will be helptags to update
install="${_name}.install"
-source=("${_name}::${url//https/git}")
+source=("${_name}::git+${url}")
noextract=()
md5sums=('SKIP')