From 6e3e73c63d8ec4a1b13f5a5ce4f3bf7ce76d7cb1 Mon Sep 17 00:00:00 2001 From: nyyu Date: Thu, 3 Jun 2021 16:34:31 +0200 Subject: [PATCH 1/6] pamac-aur not compatible pacman 6 --- aur.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/aur.txt b/aur.txt index 0892871..e440113 100644 --- a/aur.txt +++ b/aur.txt @@ -15,7 +15,6 @@ megatools nordvpn-bin oh-my-zsh-git ookla-speedtest-bin -pamac-aur pandoc-bin portainer-bin pyload-git From bd8b7a1b564ccbaaee677d77b9daf82f431f2e6a Mon Sep 17 00:00:00 2001 From: nyyu Date: Fri, 4 Jun 2021 07:44:48 +0200 Subject: [PATCH 2/6] gitlab image not updated --- .drone.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 7d3fb05..d7054bf 100644 --- a/.drone.yml +++ b/.drone.yml @@ -4,7 +4,7 @@ name: default steps: - name: build - image: gitlab.archlinux.org:5050/archlinux/archlinux-docker:base-devel-master + image: archlinux:base-devel volumes: - name: repo path: /repo From fd940407806d5e3029fb901fd39edf296a10acd0 Mon Sep 17 00:00:00 2001 From: nyyu Date: Fri, 4 Jun 2021 07:53:26 +0200 Subject: [PATCH 3/6] Remove old package on upgrade --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index e02cf6c..315bd7b 100755 --- a/build.sh +++ b/build.sh @@ -17,7 +17,7 @@ build() { if makepkg -s --skippgpcheck --noconfirm --sign || makepkg -s --skippgpcheck --nocheck --noconfirm --sign ; then for pkg in *.pkg.tar.zst ; do cp "$pkg"{,.sig} /repo/ - repo-add -s /repo/nyyu.db.tar.zst /repo/"$pkg" + repo-add -R -s /repo/nyyu.db.tar.zst /repo/"$pkg" done fi fi From ee2ece0e5220d422ace9fa2b7ad1e08289f759bc Mon Sep 17 00:00:00 2001 From: nyyu Date: Fri, 4 Jun 2021 08:00:54 +0200 Subject: [PATCH 4/6] add jellyfin --- aur.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/aur.txt b/aur.txt index e440113..a312e9f 100644 --- a/aur.txt +++ b/aur.txt @@ -11,6 +11,7 @@ gnome-shell-extension-dash-to-dock gnome-shell-extension-topicons-plus inxi iprange +jellyfin megatools nordvpn-bin oh-my-zsh-git From 7d65de6784c39e42d952611c9c884109032e8f2d Mon Sep 17 00:00:00 2001 From: nyyu Date: Fri, 4 Jun 2021 08:27:57 +0200 Subject: [PATCH 5/6] drone: update 2.0.1 --- drone/PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drone/PKGBUILD b/drone/PKGBUILD index c85029a..9e6c8a8 100644 --- a/drone/PKGBUILD +++ b/drone/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: Sl@ny pkgname=drone -pkgver=2.0.0 +pkgver=2.0.1 pkgrel=1 pkgdesc="Drone is a Continuous Delivery platform built on Docker, written in Go - Free enterprise variant" arch=('x86_64') From 9202ab58967e04eccd96061f87a06babf67f8b91 Mon Sep 17 00:00:00 2001 From: nyyu Date: Fri, 4 Jun 2021 08:35:25 +0200 Subject: [PATCH 6/6] Fix multiple package PKGBUILD --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 315bd7b..dd4b55e 100755 --- a/build.sh +++ b/build.sh @@ -5,7 +5,7 @@ build() { makepkg --nodeps --nobuild --skippgpcheck --noconfirm fi makepkg --printsrcinfo > .SRCINFO - name=$(grep 'pkgname' .SRCINFO | cut -d'=' -f2 | tr -d ' ') + name=$(grep -m1 'pkgname' .SRCINFO | cut -d'=' -f2 | tr -d ' ') ver=$(grep 'pkgver' .SRCINFO | cut -d'=' -f2 | tr -d ' ') rel=$(grep 'pkgrel' .SRCINFO | cut -d'=' -f2 | tr -d ' ') epoch=$(grep 'epoch' .SRCINFO | cut -d'=' -f2 | tr -d ' ')