makedeb


castero-git 1813c2372022.04.02-2


Podcast client for the command line

Click here to go back to the commit logs for castero-git.

Commit:


Hash: 88bfc4cf3bc7e3489a0661eaa7706a0809cef417

Message: minor fix

Diff


diff --git a/.SRCINFO b/.SRCINFO
index 99f666b..87502a1 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,22 +1,25 @@
-generated-by = makedeb-makepkg
-
-pkgbase = castero-git
-	pkgdesc = Podcast client for the command line
-	pkgver = 5950.9.4.9.g766965f2021.10.14
-	pkgrel = 1
-	url = https://github.com/xgi/castero
-	arch = any
-	license = MIT
-	checkdepends = python3-coverage
-	checkdepends = python3-pytest
-	makedepends = git
-	depends = python3-lxml
-	depends = python3-mpv
-	depends = python3-requests
-	depends = python3-vlc
-	provides = castero
-	conflicts = castero
-	source = castero-git::git+https://github.com/xgi/castero.git
-	sha256sums = SKIP
-
+generated-by = makedeb
 pkgname = castero-git
+pkgbase = castero-git
+pkgdesc = Podcast client for the command line
+pkgrel = 2
+pkgver = 1813c2372022.04.02
+url = https://github.com/xgi/castero
+arch = any
+checkdepends = python3-coverage
+checkdepends = python3-pytest
+conflicts = castero
+depends = python3-lxml
+depends = python3-mpv
+depends = python3-requests
+depends = python3-vlc
+depends = python3-gevent
+depends = python3-bs4
+license = MIT
+makedepends = git
+provides = castero
+source = castero-git::git+https://github.com/xgi/castero.git
+sha256sums = SKIP
+checkdepends = python3-coverage
+checkdepends = python3-pytest
+makedepends = git
diff --git a/PKGBUILD b/PKGBUILD
index cf47f0a..53a6977 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,12 +1,12 @@
 # Maintainer: only_vip <onlyme_vip@protonmail.com>
 pkgname=castero-git
-pkgver=5950.9.4.9.g766965f2021.10.14
-pkgrel=1
+pkgver=1813c2372022.04.02
+pkgrel=2
 pkgdesc="Podcast client for the command line"
 arch=('any')
 url="https://github.com/xgi/castero"
 license=('MIT')
-depends=('python3-lxml' 'python3-mpv' 'python3-requests' 'python3-vlc')
+depends=('python3-lxml' 'python3-mpv' 'python3-requests' 'python3-vlc' 'python3-gevent' 'python3-bs4')
 checkdepends=('python3-coverage' 'python3-pytest')
 #'python3-beautifulsoup4' 'python3-cjkwrap' 'python3-grequests' 'python3-codacy-coverage' 
 makedepends=('git')
@@ -17,10 +17,10 @@ sha256sums=('SKIP')
 
 pkgver() {
   cd ${pkgname}
-    _tag=$(git describe --tags | sed -e 's:-:.:g' -e 's:v::') # tag is mobile, and switches between numbers and letters, can't use it for versioning
+    _always=$(git describe --always | sed -e 's:-:.:g' -e 's:v::') # always is mobile, and switches between numbers and letters, can't use it for versioning
     _commits=$(git rev-list --count HEAD | sed 's:-:.:g') # total commits is the most sane way of getting incremental pkgver
     _date=$(git log -1 --date=short --pretty=format:%cd)
-    printf "%s%s%s\n" "${_commits}" "${_tag}" "${_date}" | sed -e 's:-:.:g'  -e 's:_:.:g'
+    printf "%s%s%s\n" "${_commits}" "${_always}" "${_date}" | sed -e 's:-:.:g'  -e 's:_:.:g'
 }
 
 #build() {