summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorKrzysztof Małysa2023-07-17 15:52:33 +0200
committerKrzysztof Małysa2023-07-17 15:52:33 +0200
commit228b682b741625db0c14f06f97493f25c8f8c172 (patch)
treee6385d15473560905b2ab6734f7f6661b61957c7
parent6e8ddbe575952addab6afa09fe9768b23bf636ce (diff)
downloadaur-228b682b741625db0c14f06f97493f25c8f8c172.tar.gz
fix: stop tracking simlib git repository for updates
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD8
2 files changed, 3 insertions, 9 deletions
diff --git a/.SRCINFO b/.SRCINFO
index c03bca5c03de..8babbbce332e 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = sim-sip-git
pkgdesc = A tool for preparing and managing Sim problem packages
pkgver = r173.858d221
- pkgrel = 2
+ pkgrel = 3
url = https://github.com/varqox/sip
arch = x86_64
arch = i686
@@ -23,8 +23,6 @@ pkgbase = sim-sip-git
conflicts = sim-sip
conflicts = libsimlib.so
source = git+https://github.com/varqox/sip.git
- source = git+https://github.com/varqox/simlib.git
- b2sums = SKIP
b2sums = SKIP
pkgname = sim-sip-git
diff --git a/PKGBUILD b/PKGBUILD
index b5d90ea36ead..df4844e5fe28 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Krzysztof Małysa <varqox at gmail dot com>
pkgname=sim-sip-git
pkgver=r173.858d221
-pkgrel=2
+pkgrel=3
pkgdesc="A tool for preparing and managing Sim problem packages"
arch=('x86_64' 'i686')
url="https://github.com/varqox/sip"
@@ -28,11 +28,9 @@ provides=("${pkgname%-git}" 'libsimlib.so')
conflicts=("${pkgname%-git}" 'libsimlib.so')
source=(
'git+https://github.com/varqox/sip.git'
- 'git+https://github.com/varqox/simlib.git'
)
b2sums=(
'SKIP'
- 'SKIP'
)
pkgver() {
@@ -42,9 +40,7 @@ pkgver() {
prepare() {
cd "$srcdir/sip"
- git submodule init
- git config submodule.simlib.url "$srcdir/simlib"
- git submodule update
+ git submodule update --init --recursive
}
build() {