pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/pkgtools/pkgin pkgin: Update to 0.11.7.
details: https://anonhg.NetBSD.org/pkgsrc/rev/706a0bc02e20
branches: trunk
changeset: 330895:706a0bc02e20
user: jperkin <jperkin%pkgsrc.org@localhost>
date: Thu Mar 07 11:08:38 2019 +0000
description:
pkgin: Update to 0.11.7.
## Version 0.11.7 (2019-03-07)
* Switch back to NetBSDfr/pkgin as the upstream repository.
* Improve database safety.
* Fix clang -Wmissing-noreturn and -Wformat-nonliteral warnings.
* Fix some typos in the manual page.
diffstat:
pkgtools/pkgin/Makefile | 7 +++----
pkgtools/pkgin/distinfo | 13 +++++--------
pkgtools/pkgin/patches/patch-main.c | 14 --------------
pkgtools/pkgin/patches/patch-pkgindb.c | 14 --------------
pkgtools/pkgin/patches/patch-tools.c | 14 --------------
5 files changed, 8 insertions(+), 54 deletions(-)
diffs (88 lines):
diff -r 1d5db446d3b0 -r 706a0bc02e20 pkgtools/pkgin/Makefile
--- a/pkgtools/pkgin/Makefile Thu Mar 07 10:46:40 2019 +0000
+++ b/pkgtools/pkgin/Makefile Thu Mar 07 11:08:38 2019 +0000
@@ -1,9 +1,8 @@
-# $NetBSD: Makefile,v 1.86 2018/12/09 18:52:43 adam Exp $
+# $NetBSD: Makefile,v 1.87 2019/03/07 11:08:38 jperkin Exp $
-DISTNAME= pkgin-0.11.6
-PKGREVISION= 1
+DISTNAME= pkgin-0.11.7
CATEGORIES= pkgtools
-MASTER_SITES= ${MASTER_SITE_GITHUB:=joyent/}
+MASTER_SITES= ${MASTER_SITE_GITHUB:=NetBSDfr/}
GITHUB_TAG= v${PKGVERSION_NOREV}
MAINTAINER= jperkin%joyent.com@localhost
diff -r 1d5db446d3b0 -r 706a0bc02e20 pkgtools/pkgin/distinfo
--- a/pkgtools/pkgin/distinfo Thu Mar 07 10:46:40 2019 +0000
+++ b/pkgtools/pkgin/distinfo Thu Mar 07 11:08:38 2019 +0000
@@ -1,9 +1,6 @@
-$NetBSD: distinfo,v 1.55 2019/01/15 09:49:40 wiz Exp $
+$NetBSD: distinfo,v 1.56 2019/03/07 11:08:38 jperkin Exp $
-SHA1 (pkgin-0.11.6.tar.gz) = 25be08de68d07bb7b0d7c18f606401824d32ca12
-RMD160 (pkgin-0.11.6.tar.gz) = 928e4379785affb66ebaee89dd13dbdff2fa8be3
-SHA512 (pkgin-0.11.6.tar.gz) = 54435c871ec6d5400b6e44f26b7013bceac7821ae67ed091f172e61c6bb1469bcd496b5a34fc98721f2afef0611cb99a606e8ce0efb5a83ce83121dba940b5ed
-Size (pkgin-0.11.6.tar.gz) = 197396 bytes
-SHA1 (patch-main.c) = a40a09c6563fd90791f2b5ed2f36dafdaa8b54a7
-SHA1 (patch-pkgindb.c) = 95c0b32407ecd721495246da9f52a49db4367980
-SHA1 (patch-tools.c) = ddc90e21012c95c2064434cd5129f27e87aa1594
+SHA1 (pkgin-0.11.7.tar.gz) = 7e272aab1e52e9641be5f7ead2264c73cafbebbb
+RMD160 (pkgin-0.11.7.tar.gz) = 757204113c4d9c6336651f6c491639069b8dd14b
+SHA512 (pkgin-0.11.7.tar.gz) = b09fb7598b0a0e0a22f62c326f523ef516421376a929e0b01fd68eebdea70d9144b33fd1ab97361f56a226f60c9062e98eac5f7cc4d08bb1ae84fd75d9f76af5
+Size (pkgin-0.11.7.tar.gz) = 197532 bytes
diff -r 1d5db446d3b0 -r 706a0bc02e20 pkgtools/pkgin/patches/patch-main.c
--- a/pkgtools/pkgin/patches/patch-main.c Thu Mar 07 10:46:40 2019 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,14 +0,0 @@
-$NetBSD: patch-main.c,v 1.4 2019/01/15 09:49:40 wiz Exp $
-
-main.c:340:1: error: function 'usage' could be declared with attribute 'noreturn' [-Werror,-Wmissing-noreturn]
-
---- main.c.orig 2018-09-20 12:31:51.000000000 +0000
-+++ main.c
-@@ -335,6 +335,7 @@ find_cmd(const char *arg)
- return -1;
- }
-
-+__attribute__((noreturn))
- static void
- usage(int status)
- {
diff -r 1d5db446d3b0 -r 706a0bc02e20 pkgtools/pkgin/patches/patch-pkgindb.c
--- a/pkgtools/pkgin/patches/patch-pkgindb.c Thu Mar 07 10:46:40 2019 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,14 +0,0 @@
-$NetBSD: patch-pkgindb.c,v 1.1 2019/01/15 09:49:40 wiz Exp $
-
-pkgindb.c:280:1: error: function 'pkgindb_sqlfail' could be declared with attribute 'noreturn' [-Werror,-Wmissing-noreturn]
-
---- pkgindb.c.orig 2018-09-20 12:31:51.000000000 +0000
-+++ pkgindb.c
-@@ -275,6 +275,7 @@ pkgindb_close(void)
- sqlite3_close(pdb);
- }
-
-+__attribute__((noreturn))
- static void
- pkgindb_sqlfail(void)
- {
diff -r 1d5db446d3b0 -r 706a0bc02e20 pkgtools/pkgin/patches/patch-tools.c
--- a/pkgtools/pkgin/patches/patch-tools.c Thu Mar 07 10:46:40 2019 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,14 +0,0 @@
-$NetBSD: patch-tools.c,v 1.1 2019/01/15 09:49:40 wiz Exp $
-
-tools.c:107:28: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
-
---- tools.c.orig 2018-09-20 12:31:51.000000000 +0000
-+++ tools.c
-@@ -96,6 +96,7 @@ trunc_str(char *str, char limit, int dir
- }
- }
-
-+__attribute__((__format__ (__printf__, 2, 3)))
- void
- do_log(const char *path, const char *fmt, ...)
- {
Home |
Main Index |
Thread Index |
Old Index