stagit: update to 0.9.2.

This commit is contained in:
Karol Kosek 2019-10-03 16:28:58 +02:00 committed by Helmut Pozimski
parent 68a111797e
commit 8029cf1c03
2 changed files with 5 additions and 32 deletions

View file

@ -1,27 +0,0 @@
diff --git a/stagit-index.c b/stagit-index.c
index e019793..6b25969 100644
--- stagit-index.c
+++ stagit-index.c
@@ -174,7 +174,7 @@ main(int argc, char *argv[])
if (git_repository_open_ext(&repo, repodir,
GIT_REPOSITORY_OPEN_NO_SEARCH, NULL)) {
- e = giterr_last();
+ e = git_error_last();
fprintf(stderr, "%s: %s\n", argv[0], e->message);
ret = 1;
continue;
diff --git a/stagit.c b/stagit.c
index 093cdab..25be042 100644
--- stagit.c
+++ stagit.c
@@ -1101,7 +1101,7 @@ main(int argc, char *argv[])
if (git_repository_open_ext(&repo, repodir,
GIT_REPOSITORY_OPEN_NO_SEARCH, NULL) < 0) {
- e = giterr_last();
+ e = git_error_last();
fprintf(stderr, "%s: %s\n", argv[0], e->message);
return 1;
}

View file

@ -1,16 +1,16 @@
# Template file for 'stagit'
pkgname=stagit
version=0.9
revision=2
version=0.9.2
revision=1
build_style=gnu-makefile
make_install_args="MANPREFIX=/usr/share/man"
makedepends="libgit2-devel"
short_desc="Static git page generator"
maintainer="Steve Prybylski <sa.prybylx@gmail.com>"
license="MIT"
homepage="http://git.2f30.org/stagit"
distfiles="http://dl.2f30.org/releases/${pkgname}-${version}.tar.gz"
checksum=09e585c5908bee0208c9b2d457a716d2679d89ca7485da42ca8a06bd78bc2293
homepage="https://codemadness.org/git/stagit/log.html"
distfiles="https://codemadness.org/releases/stagit/${pkgname}-${version}.tar.gz"
checksum=721cd7cfac479008e803eff5afd0c95ff9dbc640450afa5b844be82d8dfe0cba
LDFLAGS="-lgit2"
post_install() {