Github messages for voidlinux
 help / color / mirror / Atom feed
From: voidlinux-github@inbox.vuxu.org
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] libnotify: update to 0.7.8
Date: Tue, 03 Sep 2019 11:36:07 +0200	[thread overview]
Message-ID: <20190903093607.cm_nnCYMAtF7qRAUq_K-ytuhJoBFPkFXHML39gUciVQ@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-13708@inbox.vuxu.org>

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

There is an updated pull request by biopsin against master on the void-packages repository

https://github.com/biopsin/void-packages patch-1
https://github.com/void-linux/void-packages/pull/13708

libnotify: update to 0.7.8
switch to meson, added build options for docs..

noticed this warning while build:
/usr/include/features.h:382:4: warning: #warning _FORTIFY_SOURCE requires compiling with optimization (-O) [-Wcpp]


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

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

From 66cbe34a1cd4c226829d228283436b70b6f0a3ac Mon Sep 17 00:00:00 2001
From: biopsin <biopsin@yahoo.no>
Date: Fri, 16 Aug 2019 09:12:49 +0200
Subject: [PATCH 1/4] libnotify: update to 0.7.8

switch to meson, added build options for docs..

noticed this warning while build:
/usr/include/features.h:382:4: warning: #warning _FORTIFY_SOURCE requires compiling with optimization (-O) [-Wcpp]
---
 srcpkgs/libnotify/template | 17 ++++++++++-------
 1 file changed, 10 insertions(+), 7 deletions(-)

diff --git a/srcpkgs/libnotify/template b/srcpkgs/libnotify/template
index ca699bda40a..bda47d17c18 100644
--- a/srcpkgs/libnotify/template
+++ b/srcpkgs/libnotify/template
@@ -1,21 +1,24 @@
 # Template file for 'libnotify'
 pkgname=libnotify
-version=0.7.7
-revision=3
-build_style=gnu-configure
+version=0.7.8
+revision=1
+build_style=meson
 build_helper="gir"
-configure_args="--disable-static $(vopt_enable gir introspection)"
+configure_args="-Dintrospection=$(vopt_if gir enabled disabled)
+ -Dgtk_doc=$(vopt_if gtk_doc true false)
+ -Ddocbook_docs=$(vopt_if docbook enabled disabled)"
 hostmakedepends="pkg-config glib-devel"
-makedepends="libglib-devel libpng-devel gdk-pixbuf-devel gtk+3-devel"
+makedepends="libglib-devel libpng-devel gdk-pixbuf-devel gtk+3-devel
+ $(vopt_if gtk_doc gtk-doc) $(vopt_if docbook 'xmlto docbook-xsl')"
 short_desc="Desktop notification library"
 maintainer="Juan RP <xtraeme@voidlinux.org>"
 license="LGPL-2.1-or-later"
 homepage="http://library.gnome.org/devel/notification-spec/"
 distfiles="${GNOME_SITE}/${pkgname}/0.7/${pkgname}-${version}.tar.xz"
-checksum=9cb4ce315b2655860c524d46b56010874214ec27e854086c1a1d0260137efc04
+checksum=69209e0b663776a00c7b6c0e560302a8dbf66b2551d55616304f240bba66e18c
 
 # Package build options
-build_options="gir"
+build_options="gir gtk_doc docbook"
 build_options_default="gir"
 
 libnotify-devel_package() {

From bf76a08bd3c448da1e67e1a54640d31bcdc65fd8 Mon Sep 17 00:00:00 2001
From: biopsin <biopsin@yahoo.no>
Date: Mon, 19 Aug 2019 08:55:11 +0200
Subject: [PATCH 2/4] Update template

---
 srcpkgs/libnotify/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libnotify/template b/srcpkgs/libnotify/template
index bda47d17c18..2243a2eef72 100644
--- a/srcpkgs/libnotify/template
+++ b/srcpkgs/libnotify/template
@@ -11,7 +11,7 @@ hostmakedepends="pkg-config glib-devel"
 makedepends="libglib-devel libpng-devel gdk-pixbuf-devel gtk+3-devel
  $(vopt_if gtk_doc gtk-doc) $(vopt_if docbook 'xmlto docbook-xsl')"
 short_desc="Desktop notification library"
-maintainer="Juan RP <xtraeme@voidlinux.org>"
+maintainer="biopsin <biopsin@yahoo.no>"
 license="LGPL-2.1-or-later"
 homepage="http://library.gnome.org/devel/notification-spec/"
 distfiles="${GNOME_SITE}/${pkgname}/0.7/${pkgname}-${version}.tar.xz"

From 05ca14c65ca07f012b37597aa4ff7e5592b11e94 Mon Sep 17 00:00:00 2001
From: biopsin <biopsin@yahoo.no>
Date: Wed, 21 Aug 2019 09:28:17 +0200
Subject: [PATCH 3/4] Update template

---
 srcpkgs/libnotify/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libnotify/template b/srcpkgs/libnotify/template
index 2243a2eef72..5390f45af82 100644
--- a/srcpkgs/libnotify/template
+++ b/srcpkgs/libnotify/template
@@ -4,7 +4,7 @@ version=0.7.8
 revision=1
 build_style=meson
 build_helper="gir"
-configure_args="-Dintrospection=$(vopt_if gir enabled disabled)
+configure_args="-Dc_args=-O2 -Dintrospection=$(vopt_if gir enabled disabled)
  -Dgtk_doc=$(vopt_if gtk_doc true false)
  -Ddocbook_docs=$(vopt_if docbook enabled disabled)"
 hostmakedepends="pkg-config glib-devel"

From 9d660c090b19caedf4c5bbf39dbbed940bd66619 Mon Sep 17 00:00:00 2001
From: biopsin <biopsin@yahoo.no>
Date: Tue, 3 Sep 2019 11:36:05 +0200
Subject: [PATCH 4/4] libnotify: update to 0.7.8

trying to resolve my stupidity
---
 srcpkgs/libnotify/template | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/libnotify/template b/srcpkgs/libnotify/template
index 5390f45af82..99ba36df8a0 100644
--- a/srcpkgs/libnotify/template
+++ b/srcpkgs/libnotify/template
@@ -5,8 +5,7 @@ revision=1
 build_style=meson
 build_helper="gir"
 configure_args="-Dc_args=-O2 -Dintrospection=$(vopt_if gir enabled disabled)
- -Dgtk_doc=$(vopt_if gtk_doc true false)
- -Ddocbook_docs=$(vopt_if docbook enabled disabled)"
+ -Dgtk_doc=false -Ddocbook_docs=$(vopt_if docbook enabled disabled)"
 hostmakedepends="pkg-config glib-devel"
 makedepends="libglib-devel libpng-devel gdk-pixbuf-devel gtk+3-devel
  $(vopt_if gtk_doc gtk-doc) $(vopt_if docbook 'xmlto docbook-xsl')"
@@ -18,7 +17,7 @@ distfiles="${GNOME_SITE}/${pkgname}/0.7/${pkgname}-${version}.tar.xz"
 checksum=69209e0b663776a00c7b6c0e560302a8dbf66b2551d55616304f240bba66e18c
 
 # Package build options
-build_options="gir gtk_doc docbook"
+build_options="gir docbook"
 build_options_default="gir"
 
 libnotify-devel_package() {

       reply	other threads:[~2019-09-03  9:36 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-13708@inbox.vuxu.org>
2019-09-03  9:36 ` voidlinux-github [this message]
2019-09-03  9:36 ` voidlinux-github
2019-10-19 10:22 ` voidlinux-github
2019-10-19 10:22 ` voidlinux-github

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20190903093607.cm_nnCYMAtF7qRAUq_K-ytuhJoBFPkFXHML39gUciVQ@z \
    --to=voidlinux-github@inbox.vuxu.org \
    --cc=ml@inbox.vuxu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).