Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] astroid: update to 0.15
@ 2021-08-06 14:54 bitmeise
  2021-08-06 16:09 ` paper42
                   ` (11 more replies)
  0 siblings, 12 replies; 14+ messages in thread
From: bitmeise @ 2021-08-06 14:54 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 739 bytes --]

There is a new pull request by bitmeise against master on the void-packages repository

https://github.com/bitmeise/void-packages astroid016
https://github.com/void-linux/void-packages/pull/32364

astroid: update to 0.15
#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

A patch file from https://github.com/void-linux/void-packages/pull/32364.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-astroid016-32364.patch --]
[-- Type: text/x-diff, Size: 1173 bytes --]

From 5410bf0d3293b51408b67f38d40cd749ff2f617a Mon Sep 17 00:00:00 2001
From: Bitmeise <ameise@bitparlament.de>
Date: Fri, 6 Aug 2021 16:49:26 +0200
Subject: [PATCH] astroid: update to 0.15

---
 srcpkgs/astroid/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/astroid/template b/srcpkgs/astroid/template
index e37e50c628fe..dbffb7031797 100644
--- a/srcpkgs/astroid/template
+++ b/srcpkgs/astroid/template
@@ -1,7 +1,7 @@
 # Template file for 'astroid'
 pkgname=astroid
-version=0.15
-revision=8
+version=0.16
+revision=1
 build_style=cmake
 hostmakedepends="pkg-config scdoc protobuf gobject-introspection"
 makedepends="libnotmuch-devel gtkmm-devel webkit2gtk-devel libsass-devel
@@ -12,7 +12,7 @@ maintainer="Ameise <ameise@bitparlament.de>"
 license="GPL-3.0-or-later"
 homepage="http://astroidmail.github.io/"
 distfiles="https://github.com/astroidmail/astroid/archive/v${version}.tar.gz"
-checksum=8581bbdbc71bd00d4cdd473cfad8bc604628bb15616fe5eab5c623461f686c65
+checksum=32ecb8c2fafe67f70c7d5f2bc60bda1796d98a56a75f7868c7c1ca50cd7baf5e
 
 if [ -n "$CROSS_BUILD" ]; then
 	hostmakedepends+=" qemu-user-static prelink-cross"

^ permalink raw reply	[flat|nested] 14+ messages in thread
* [PR PATCH] astroid: update to 0.15
@ 2019-10-22 13:40 voidlinux-github
  2019-10-30 21:12 ` voidlinux-github
  0 siblings, 1 reply; 14+ messages in thread
From: voidlinux-github @ 2019-10-22 13:40 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 313 bytes --]

There is a new pull request by bitmeise against master on the void-packages repository

https://github.com/bitmeise/void-packages astroid015
https://github.com/void-linux/void-packages/pull/15696

astroid: update to 0.15


A patch file from https://github.com/void-linux/void-packages/pull/15696.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-astroid015-15696.patch --]
[-- Type: text/x-diff, Size: 3403 bytes --]

From cfacf380bf9832e0243b5aae56ce0da5fc9e6260 Mon Sep 17 00:00:00 2001
From: Ameise <ameise@bitparlament.de>
Date: Tue, 22 Oct 2019 17:33:33 +0200
Subject: [PATCH] astroid: update to 0.15

---
 ...5bbdae9939cf4716ca2ff47dee75f1f3f57e.patch | 53 -------------------
 srcpkgs/astroid/template                      |  7 ++-
 2 files changed, 3 insertions(+), 57 deletions(-)
 delete mode 100644 srcpkgs/astroid/patches/03e05bbdae9939cf4716ca2ff47dee75f1f3f57e.patch

diff --git a/srcpkgs/astroid/patches/03e05bbdae9939cf4716ca2ff47dee75f1f3f57e.patch b/srcpkgs/astroid/patches/03e05bbdae9939cf4716ca2ff47dee75f1f3f57e.patch
deleted file mode 100644
index 6368c7e9631..00000000000
--- a/srcpkgs/astroid/patches/03e05bbdae9939cf4716ca2ff47dee75f1f3f57e.patch
+++ /dev/null
@@ -1,53 +0,0 @@
-From 03e05bbdae9939cf4716ca2ff47dee75f1f3f57e Mon Sep 17 00:00:00 2001
-From: Gaute Hope <eg@gaute.vetsj.com>
-Date: Sat, 20 Oct 2018 19:38:01 +0200
-Subject: [PATCH] ae: correctly allocate buffer array (-pedantic)
-
-char[n] is technically not allowed in C++, and seems to cause trouble in
-this case.
----
- .../thread_view/webextension/ae_protocol.cc     | 17 ++++++++++++++---
- 1 file changed, 14 insertions(+), 3 deletions(-)
-
-diff --git a/src/modes/thread_view/webextension/ae_protocol.cc b/src/modes/thread_view/webextension/ae_protocol.cc
-index 735b219b..6687b97b 100644
---- a/src/modes/thread_view/webextension/ae_protocol.cc
-+++ b/src/modes/thread_view/webextension/ae_protocol.cc
-@@ -59,7 +59,12 @@ namespace Astroid {
-     s &= ostream->write_all ((char*) &mt, sizeof (mt), written);
- 
-     /* send message */
--    s &= ostream->write_all (o, written);
-+    try {
-+      s &= ostream->write_all (o, written);
-+    } catch (Gio::Error &ex) {
-+      LOG (error) << "ae: error: " << ex.what ();
-+      throw;
-+    }
-     ostream->flush ();
- 
-     if (!s) {
-@@ -154,8 +159,13 @@ namespace Astroid {
-     }
- 
-     /* read message */
--    gchar buffer[msg_sz + 1]; buffer[msg_sz] = '\0';
--    s = istream->read_all (buffer, msg_sz, read, reader_cancel);
-+    gchar * buffer = new gchar[msg_sz];
-+    try {
-+      s = istream->read_all (buffer, msg_sz, read, reader_cancel);
-+    } catch (Gio::Error &ex) {
-+      LOG (error) << "ae: error (read): " << ex.code() << ", " <<  ex.what ();
-+      throw;
-+    }
- 
-     if (!s || read != msg_sz) {
-       LOG (error) << "reader: error while reading message (size: " << msg_sz << ")";
-@@ -163,6 +173,7 @@ namespace Astroid {
-     }
- 
-     msg_str = std::string (buffer, msg_sz);
-+    delete [] buffer;
-     return mt;
-   }
- 
diff --git a/srcpkgs/astroid/template b/srcpkgs/astroid/template
index 31bd1e6a4f6..34ffa93c83f 100644
--- a/srcpkgs/astroid/template
+++ b/srcpkgs/astroid/template
@@ -1,7 +1,7 @@
 # Template file for 'astroid'
 pkgname=astroid
-version=0.14
-revision=6
+version=0.15
+revision=1
 build_style=cmake
 hostmakedepends="pkg-config scdoc protobuf"
 makedepends="libnotmuch-devel gtkmm-devel webkit2gtk-devel libsass-devel
@@ -12,5 +12,4 @@ maintainer="Ameise <ameise@bitparlament.de>"
 license="GPL-3.0-or-later"
 homepage="http://astroidmail.github.io/"
 distfiles="https://github.com/astroidmail/astroid/archive/v${version}.tar.gz"
-checksum=f2642968919527008d383b4c32d4b038c7b6f785ea084dde1222a65162ebc5ca
-patch_args="-p1"
+checksum=8581bbdbc71bd00d4cdd473cfad8bc604628bb15616fe5eab5c623461f686c65

^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2021-08-23 17:20 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-06 14:54 [PR PATCH] astroid: update to 0.15 bitmeise
2021-08-06 16:09 ` paper42
2021-08-06 20:15 ` [PR PATCH] [Updated] " bitmeise
2021-08-06 20:19 ` bitmeise
2021-08-08 21:50 ` [PR PATCH] [Updated] " bitmeise
2021-08-10 11:43 ` bitmeise
2021-08-10 11:53 ` bitmeise
2021-08-10 12:00 ` [PR PATCH] [Updated] astroid: update to 0.16 bitmeise
2021-08-10 12:51 ` ericonr
2021-08-19 20:51 ` [PR PATCH] [Updated] " bitmeise
2021-08-23 13:50 ` bitmeise
2021-08-23 17:20 ` ericonr
2021-08-23 17:20 ` [PR PATCH] [Merged]: " ericonr
  -- strict thread matches above, loose matches on Subject: below --
2019-10-22 13:40 [PR PATCH] astroid: update to 0.15 voidlinux-github
2019-10-30 21:12 ` voidlinux-github

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).