mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-05 04:16:46 +02:00
community/vvmd: upgrade to 0.18
This commit is contained in:
parent
5aa9415da7
commit
7bd4ba5cc3
@ -1,7 +1,7 @@
|
||||
# Contributor: Clayton Craft <clayton@craftyguy.net>
|
||||
# Maintainer: Clayton Craft <clayton@craftyguy.net>
|
||||
pkgname=vvmd
|
||||
pkgver=0.17
|
||||
pkgver=0.18
|
||||
pkgrel=0
|
||||
pkgdesc="lower level daemon that retrieves Visual Voicemail"
|
||||
url="https://gitlab.com/kop316/vvmd"
|
||||
@ -17,7 +17,9 @@ makedepends="
|
||||
modemmanager-dev
|
||||
"
|
||||
source="https://gitlab.com/kop316/vvmd/-/archive/$pkgver/vvmd-$pkgver.tar.gz
|
||||
vvmd.desktop"
|
||||
vvmd.desktop
|
||||
remove-debug-lines.patch
|
||||
"
|
||||
|
||||
case "$CARCH" in
|
||||
x86)
|
||||
@ -42,6 +44,7 @@ package() {
|
||||
}
|
||||
|
||||
sha512sums="
|
||||
216b5048c18ddb6d3951c83f0907d641420e02afc08e1c47b99a4fac36e8fe3122c4299ba2e4865190ebb3fc3926f665770dd52f93c6bb96bc8ad62296539ac4 vvmd-0.17.tar.gz
|
||||
8aae22625aabc402631d1526819cf9e120f1a8e5db402b282dd6db59ba18274fda23fe1a8d7da9d6a77f76ed296a810de21e2dc568d023ca93507c95017d9d02 vvmd-0.18.tar.gz
|
||||
211400663af11dd0c0eab9b6f40c0ccee349bf64cf232749bcd74d0cbf52d3d68197c0ab2ec5ef7dd718537de4d7cdc0af3e4ee038d569ba1a5bfac7c3d68cae vvmd.desktop
|
||||
d764aeb3b9da9beab04c83241d915d043ea830474a40e9c5c50a89eb3012a181cd1790294c99e416ea0605456e43fe489c62a827b1195932ec7abaf385905e02 remove-debug-lines.patch
|
||||
"
|
||||
|
||||
57
community/vvmd/remove-debug-lines.patch
Normal file
57
community/vvmd/remove-debug-lines.patch
Normal file
@ -0,0 +1,57 @@
|
||||
Patch-Source: https://gitlab.com/kop316/vvmd/-/commit/235f096b.patch
|
||||
Patch-Source: https://gitlab.com/kop316/vvmd/-/commit/d34732ce.patch
|
||||
--
|
||||
From 235f096b757ee7a9b8a0b06a1b7d1b7728a7822f Mon Sep 17 00:00:00 2001
|
||||
From: Chris Talbot <chris@talbothome.com>
|
||||
Date: Fri, 16 Feb 2024 14:21:51 -0700
|
||||
Subject: [PATCH] service: remove debug lines
|
||||
|
||||
This causes it to not compile in i386
|
||||
---
|
||||
src/service.c | 2 --
|
||||
1 file changed, 2 deletions(-)
|
||||
|
||||
diff --git a/src/service.c b/src/service.c
|
||||
index a2a02e0..2dbdbe9 100644
|
||||
--- a/src/service.c
|
||||
+++ b/src/service.c
|
||||
@@ -792,10 +792,8 @@ curl_string_cb (void *data,
|
||||
{
|
||||
size_t realsize = size * nmemb;
|
||||
struct struct_string *mem = (struct struct_string *)userdata;
|
||||
- DBG ("received %lu", realsize);
|
||||
|
||||
mem->response = g_string_append_len (mem->response, (char *)data, realsize);
|
||||
- //DBG("String so far: %s", mem->response->str);
|
||||
return realsize;
|
||||
}
|
||||
|
||||
--
|
||||
GitLab
|
||||
|
||||
From d34732ce7e9f2089a4b5f50d518700f145816486 Mon Sep 17 00:00:00 2001
|
||||
From: Chris Talbot <chris@talbothome.com>
|
||||
Date: Fri, 16 Feb 2024 14:31:20 -0700
|
||||
Subject: [PATCH] vvmutil: remove debug line
|
||||
|
||||
This doesnt allow compilation on i386
|
||||
---
|
||||
src/vvmutil.c | 2 --
|
||||
1 file changed, 2 deletions(-)
|
||||
|
||||
diff --git a/src/vvmutil.c b/src/vvmutil.c
|
||||
index 1a7dfa1..bf94f13 100644
|
||||
--- a/src/vvmutil.c
|
||||
+++ b/src/vvmutil.c
|
||||
@@ -859,8 +859,6 @@ vvm_util_decode_vvm_single_email_attachment (const char *attachment,
|
||||
else if (found_attachment == FALSE)
|
||||
{
|
||||
attachment_line = i;
|
||||
- DBG ("Attachment contents on line: %d, length %lu",
|
||||
- attachment_line, strlen (lines[i]));
|
||||
found_attachment = TRUE;
|
||||
}
|
||||
}
|
||||
--
|
||||
GitLab
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user