summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorGene C2024-04-30 16:03:42 -0400
committerGene C2024-04-30 16:03:42 -0400
commit78143cb605d02d522c224b6015fefd4653fea0b6 (patch)
tree2be219ef523a932c7adcca8e72b777eb41c62898
parentf6581b7d49f68afc7ae9bb0d8f6c2fc70685727f (diff)
downloadaur-78143cb605d02d522c224b6015fefd4653fea0b6.tar.gz
update project to 2.0.6
-rw-r--r--.SRCINFO5
-rw-r--r--Changelog.rst34
-rw-r--r--PKGBUILD9
3 files changed, 3 insertions, 45 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 385c6943c6fd..dc52cd633aef 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,10 +1,9 @@
pkgbase = iwinfo
pkgdesc = Provide wifi information about capabilities and network(s)
- pkgver = 2.0.5
+ pkgver = 2.0.6
pkgrel = 1
url = https://github.com/gene-git/iwinfo
install = iwinfo.install
- changelog = Changelog.rst
arch = x86_64
license = MIT
makedepends = git
@@ -19,7 +18,7 @@ pkgbase = iwinfo
depends = python>3.10
depends = libcap-ng
depends = python-prctl
- source = git+https://github.com/gene-git/iwinfo#tag=2.0.5
+ source = git+https://github.com/gene-git/iwinfo#tag=2.0.6
sha512sums = SKIP
pkgname = iwinfo
diff --git a/Changelog.rst b/Changelog.rst
deleted file mode 100644
index 7cb213a81c0a..000000000000
--- a/Changelog.rst
+++ /dev/null
@@ -1,34 +0,0 @@
-Changelog
-=========
-
-**[2.0.5] ----- 2024-04-29** ::
-
- Improve pulling Changelog for pacman -Qc
- update Docs/Changelog.rst Docs/iwinfo.pdf
-
-
-**[2.0.4] ----- 2024-04-13** ::
-
- improve readme
- tweak readme
-
-
-**[2.0.3] ----- 2024-04-13** ::
-
- update Docs/Changelog.rst Docs/iwinfo.pdf
- Add changelog to package so pacman -Qc shows it
- update Docs/Changelog.rst Docs/iwinfo.pdf
-
-
-**[2.0.2] ----- 2024-04-13** ::
-
- Change gitname in PKGBUILD
- update Docs/Changelog.rst Docs/iwinfo.pdf
-
-
-**[2.0.1] ----- 2024-04-13** ::
-
- Improve package description
- Initial public release
-
-
diff --git a/PKGBUILD b/PKGBUILD
index 0055cb6ecacd..e419e93534a5 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -10,7 +10,7 @@ pkgname='iwinfo'
pkgdesc='Provide wifi information about capabilities and network(s)'
_gitname='iwinfo'
-pkgver=2.0.5
+pkgver=2.0.6
pkgrel=1
url="https://github.com/gene-git/iwinfo"
@@ -29,9 +29,6 @@ _mkpkg_depends=('python>minor' 'libcap-ng>minor')
source=("git+https://github.com/gene-git/${_gitname}#tag=${pkgver}")
sha512sums=('SKIP')
-touch "Changelog.rst"
-changelog="Changelog.rst"
-
build() {
cd "${_gitname}"
echo 'Building python'
@@ -53,10 +50,6 @@ build() {
package() {
cd "${_gitname}"
- git fetch --all
- git checkout origin/master -- Docs/Changelog.rst
- cp Docs/Changelog.rst ${startdir}
-
./scripts/do-install ${pkgdir}
}
# vim:set ts=4 sts=4 sw=4 et: