summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorWallun2023-09-12 13:58:56 +0200
committerWilliam Smondack2023-09-26 16:42:55 +0200
commit5f53619ed1b2b97c4be83d7b3a6113198039b33c (patch)
treeb93dd004a036737a474fe2cad731514864a39655
parent974ea684b1794a6b715a9acbb7f3a2e6e1018773 (diff)
downloadaur-bashlint.tar.gz
feat: update to bashlint v0.1.1
add .gitignore
-rw-r--r--.SRCINFO9
-rw-r--r--.gitignore3
-rw-r--r--PKGBUILD9
3 files changed, 11 insertions, 10 deletions
diff --git a/.SRCINFO b/.SRCINFO
index dcc9126b1eb0..cc2310612263 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,16 +1,13 @@
-# Generated by mksrcinfo v8
-# Sun Mar 12 19:52:34 UTC 2017
pkgbase = bashlint
pkgdesc = Simple Bash linting tool written in Python
- pkgver = 0.1.0
+ pkgver = 0.1.1
pkgrel = 1
url = https://github.com/skudriashev/bashlint
arch = any
license = MIT
makedepends = python-setuptools
depends = python
- source = https://github.com/skudriashev/bashlint/archive/0.1.0.tar.gz
- sha256sums = e23df57b2297dd94b8f1f3718e3abd22adff382a37d53ce3565d1ef511f64132
+ source = https://github.com/skudriashev/bashlint/archive/v0.1.1.tar.gz
+ sha256sums = b213e703aea503ab279423bb2c419c4061fc821b36ff910129983136dc442f31
pkgname = bashlint
-
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..04e1136ce18b
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,3 @@
+pkg
+src
+bashlint-*
diff --git a/PKGBUILD b/PKGBUILD
index 4703f7e7d230..20cc84550fb3 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,8 @@
-# Maintainer: Maxim Andersson <thesilentboatman@gmail.com>
+# Maintainer: Wallun <wallun CAT disroot DOG org>
+# Contributor: Maxim Andersson <thesilentboatman@gmail.com>
pkgname=bashlint
-pkgver=0.1.0
+pkgver=0.1.1
pkgrel=1
pkgdesc="Simple Bash linting tool written in Python"
arch=('any')
@@ -9,8 +10,8 @@ url="https://github.com/skudriashev/bashlint"
license=('MIT')
depends=('python')
makedepends=('python-setuptools')
-source=("https://github.com/skudriashev/${pkgname}/archive/${pkgver}.tar.gz")
-sha256sums=('e23df57b2297dd94b8f1f3718e3abd22adff382a37d53ce3565d1ef511f64132')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/skudriashev/${pkgname}/archive/v${pkgver}.tar.gz")
+sha256sums=('b213e703aea503ab279423bb2c419c4061fc821b36ff910129983136dc442f31')
package() {
cd "${srcdir}/${pkgname}-${pkgver}"