[arch-projects] [dbscripts] [PATCH 1/2 v2] readme: switch to travis-ci.com build status badge

2018-09-03 Thread Levente Polyak via arch-projects
From: anthraxx 

The old travis-ci.org is deprecated and this project was migrated.
---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index c672998..bdd958b 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# Arch Linux repository management scripts [![Build 
Status](https://travis-ci.org/archlinux/dbscripts.svg?branch=master)](https://travis-ci.org/archlinux/dbscripts)
+# Arch Linux repository management scripts [![Build 
Status](https://travis-ci.com/archlinux/dbscripts.svg?branch=master)](https://travis-ci.com/archlinux/dbscripts)
 ## Configuration
 * The default configuration can be found in `config`.
 * An optional `config.local` may override the default configuration.
-- 
2.18.0


[arch-projects] [dbscripts] [PATCH 1/2] readme: switch to travis-ci.com build status badge

2018-09-03 Thread Levente Polyak via arch-projects
From: anthraxx 

The old travis-ci.org is deprecated and this project was migrated.
---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index c672998..bdd958b 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# Arch Linux repository management scripts [![Build 
Status](https://travis-ci.org/archlinux/dbscripts.svg?branch=master)](https://travis-ci.org/archlinux/dbscripts)
+# Arch Linux repository management scripts [![Build 
Status](https://travis-ci.com/archlinux/dbscripts.svg?branch=master)](https://travis-ci.org/archlinux/dbscripts)
 ## Configuration
 * The default configuration can be found in `config`.
 * An optional `config.local` may override the default configuration.
-- 
2.18.0


[arch-projects] [dbscripts] [PATCH 2/2] fixup: fix potential bsdtar stream close error by grep

2018-09-03 Thread Levente Polyak via arch-projects
From: anthraxx 

bsdtar doesn't like it when the stream gets closed before it finishes
which may be the case when grep found its match on potentially huge
archives. Instead of suppressing the whole strerr , we just pipe
the output through cat which ensures the stream remains open for bsdtar
but we may still catch and see useful messages on stderr.
---
 db-functions | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/db-functions b/db-functions
index 0491c22..f0a6453 100644
--- a/db-functions
+++ b/db-functions
@@ -174,7 +174,7 @@ repo_unlock () { #repo_unlock  
 _grep_pkginfo() {
local _ret
 
-   _ret="$(/usr/bin/bsdtar -xOqf "$1" .PKGINFO | grep -m 1 "^${2} = ")"
+   _ret="$(/usr/bin/bsdtar -xOqf "$1" .PKGINFO | cat | grep -m 1 "^${2} = 
")"
echo "${_ret#${2} = }"
 }
 
@@ -182,7 +182,7 @@ _grep_pkginfo() {
 _grep_buildinfo() {
local _ret
 
-   _ret="$(/usr/bin/bsdtar -xOqf "$1" .BUILDINFO | grep -m 1 "^${2} = ")"
+   _ret="$(/usr/bin/bsdtar -xOqf "$1" .BUILDINFO | cat | grep -m 1 "^${2} 
= ")"
echo "${_ret#${2} = }"
 }
 
-- 
2.18.0