Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] pass: add "x11" build option
@ 2019-10-20  0:56 voidlinux-github
  2019-10-20  1:03 ` [PR PATCH] [Updated] " voidlinux-github
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: voidlinux-github @ 2019-10-20  0:56 UTC (permalink / raw)
  To: ml

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

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

https://github.com/KAction/void-packages pass-x11
https://github.com/void-linux/void-packages/pull/15632

pass: add "x11" build option
When "x11" option is disabled (enabled by default), "xclip" and
transitive dependencies on X libraries are not pulled by package
installation.

"xclip" still can be installed separately, though, to regain full
functionality.

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

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

From 31b26dc2491b1d72524f138e64e98161e1438279 Mon Sep 17 00:00:00 2001
From: Dmitry Bogatov <KAction@disroot.org>
Date: Sun, 20 Oct 2019 00:51:50 +0000
Subject: [PATCH] pass: add "x11" build option

When "x11" option is disabled (enabled by default), "xclip" and
transitive dependencies on X libraries are not pulled by package
installation.

"xclip" still can be installed separately, though, to regain full
functionality.
---
 srcpkgs/pass/template | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/pass/template b/srcpkgs/pass/template
index fa2ee0f4a24..092825eb3e9 100644
--- a/srcpkgs/pass/template
+++ b/srcpkgs/pass/template
@@ -6,7 +6,7 @@ archs=noarch
 wrksrc="password-store-${version}"
 build_style=gnu-makefile
 make_install_args="WITH_BASHCOMP=yes WITH_ZSHCOMP=yes WITH_FISHCOMP=yes"
-depends="bash gnupg2 tree xclip"
+depends="bash gnupg2 tree $(vopt_if x11 xclip)"
 checkdepends="${depends} git"
 short_desc="Stores, retrieves, generates, and synchronizes passwords securely"
 maintainer="Eivind Uggedal <eivind@uggedal.com>"
@@ -14,6 +14,8 @@ license="GPL-2.0-or-later"
 homepage="http://www.passwordstore.org/"
 distfiles="http://git.zx2c4.com/password-store/snapshot/password-store-${version}.tar.xz"
 checksum=2b6c65846ebace9a15a118503dcd31b6440949a30d3b5291dfb5b1615b99a3f4
+build_options="x11"
+build_options_default="x11"
 make_check_target=test
 
 passmenu_package() {

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

* Re: [PR PATCH] [Updated] pass: add "x11" build option
  2019-10-20  0:56 [PR PATCH] pass: add "x11" build option voidlinux-github
  2019-10-20  1:03 ` [PR PATCH] [Updated] " voidlinux-github
@ 2019-10-20  1:03 ` voidlinux-github
  2019-10-20  1:14 ` voidlinux-github
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: voidlinux-github @ 2019-10-20  1:03 UTC (permalink / raw)
  To: ml

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

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

https://github.com/KAction/void-packages pass-x11
https://github.com/void-linux/void-packages/pull/15632

pass: add "x11" build option
When "x11" option is disabled (enabled by default), "xclip" and
transitive dependencies on X libraries are not pulled by package
installation.

"xclip" still can be installed separately, though, to regain full
functionality.

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

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

From 9dcf513ff5ae3382056a708698a0da625093eb45 Mon Sep 17 00:00:00 2001
From: Dmitry Bogatov <KAction@disroot.org>
Date: Sun, 20 Oct 2019 00:51:50 +0000
Subject: [PATCH] pass: add "x11" build option

When "x11" option is disabled (enabled by default), "xclip" and
transitive dependencies on X libraries are not pulled by package
installation.

"xclip" still can be installed separately, though, to regain full
functionality.
---
 srcpkgs/pass/template | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/pass/template b/srcpkgs/pass/template
index fa2ee0f4a24..15ec0034efc 100644
--- a/srcpkgs/pass/template
+++ b/srcpkgs/pass/template
@@ -6,7 +6,7 @@ archs=noarch
 wrksrc="password-store-${version}"
 build_style=gnu-makefile
 make_install_args="WITH_BASHCOMP=yes WITH_ZSHCOMP=yes WITH_FISHCOMP=yes"
-depends="bash gnupg2 tree xclip"
+depends="bash gnupg2 tree $(vopt_if x11 xclip)"
 checkdepends="${depends} git"
 short_desc="Stores, retrieves, generates, and synchronizes passwords securely"
 maintainer="Eivind Uggedal <eivind@uggedal.com>"
@@ -15,6 +15,8 @@ homepage="http://www.passwordstore.org/"
 distfiles="http://git.zx2c4.com/password-store/snapshot/password-store-${version}.tar.xz"
 checksum=2b6c65846ebace9a15a118503dcd31b6440949a30d3b5291dfb5b1615b99a3f4
 make_check_target=test
+build_options="x11"
+build_options_default="x11"
 
 passmenu_package() {
 	short_desc="A dmenu-based interface to pass"

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

* Re: [PR PATCH] [Updated] pass: add "x11" build option
  2019-10-20  0:56 [PR PATCH] pass: add "x11" build option voidlinux-github
@ 2019-10-20  1:03 ` voidlinux-github
  2019-10-20  1:03 ` voidlinux-github
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: voidlinux-github @ 2019-10-20  1:03 UTC (permalink / raw)
  To: ml

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

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

https://github.com/KAction/void-packages pass-x11
https://github.com/void-linux/void-packages/pull/15632

pass: add "x11" build option
When "x11" option is disabled (enabled by default), "xclip" and
transitive dependencies on X libraries are not pulled by package
installation.

"xclip" still can be installed separately, though, to regain full
functionality.

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

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

From 9dcf513ff5ae3382056a708698a0da625093eb45 Mon Sep 17 00:00:00 2001
From: Dmitry Bogatov <KAction@disroot.org>
Date: Sun, 20 Oct 2019 00:51:50 +0000
Subject: [PATCH] pass: add "x11" build option

When "x11" option is disabled (enabled by default), "xclip" and
transitive dependencies on X libraries are not pulled by package
installation.

"xclip" still can be installed separately, though, to regain full
functionality.
---
 srcpkgs/pass/template | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/pass/template b/srcpkgs/pass/template
index fa2ee0f4a24..15ec0034efc 100644
--- a/srcpkgs/pass/template
+++ b/srcpkgs/pass/template
@@ -6,7 +6,7 @@ archs=noarch
 wrksrc="password-store-${version}"
 build_style=gnu-makefile
 make_install_args="WITH_BASHCOMP=yes WITH_ZSHCOMP=yes WITH_FISHCOMP=yes"
-depends="bash gnupg2 tree xclip"
+depends="bash gnupg2 tree $(vopt_if x11 xclip)"
 checkdepends="${depends} git"
 short_desc="Stores, retrieves, generates, and synchronizes passwords securely"
 maintainer="Eivind Uggedal <eivind@uggedal.com>"
@@ -15,6 +15,8 @@ homepage="http://www.passwordstore.org/"
 distfiles="http://git.zx2c4.com/password-store/snapshot/password-store-${version}.tar.xz"
 checksum=2b6c65846ebace9a15a118503dcd31b6440949a30d3b5291dfb5b1615b99a3f4
 make_check_target=test
+build_options="x11"
+build_options_default="x11"
 
 passmenu_package() {
 	short_desc="A dmenu-based interface to pass"

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

* Re: pass: add "x11" build option
  2019-10-20  0:56 [PR PATCH] pass: add "x11" build option voidlinux-github
  2019-10-20  1:03 ` [PR PATCH] [Updated] " voidlinux-github
  2019-10-20  1:03 ` voidlinux-github
@ 2019-10-20  1:14 ` voidlinux-github
  2019-10-20  3:43 ` voidlinux-github
  2019-10-20  3:43 ` [PR PATCH] [Closed]: " voidlinux-github
  4 siblings, 0 replies; 6+ messages in thread
From: voidlinux-github @ 2019-10-20  1:14 UTC (permalink / raw)
  To: ml

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

New comment by Johnnynator on void-packages repository

https://github.com/void-linux/void-packages/pull/15632#issuecomment-544210730

Comment:
I don't think that this provides much value, you can just add `xclip` to `ignorepkg` and be done with it. See [xbpd.d(5)](https://man.voidlinux.org/xbps.d)

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

* Re: pass: add "x11" build option
  2019-10-20  0:56 [PR PATCH] pass: add "x11" build option voidlinux-github
                   ` (2 preceding siblings ...)
  2019-10-20  1:14 ` voidlinux-github
@ 2019-10-20  3:43 ` voidlinux-github
  2019-10-20  3:43 ` [PR PATCH] [Closed]: " voidlinux-github
  4 siblings, 0 replies; 6+ messages in thread
From: voidlinux-github @ 2019-10-20  3:43 UTC (permalink / raw)
  To: ml

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

New comment by KAction on void-packages repository

https://github.com/void-linux/void-packages/pull/15632#issuecomment-544217683

Comment:
Did not know. Then yes, closing.

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

* Re: [PR PATCH] [Closed]: pass: add "x11" build option
  2019-10-20  0:56 [PR PATCH] pass: add "x11" build option voidlinux-github
                   ` (3 preceding siblings ...)
  2019-10-20  3:43 ` voidlinux-github
@ 2019-10-20  3:43 ` voidlinux-github
  4 siblings, 0 replies; 6+ messages in thread
From: voidlinux-github @ 2019-10-20  3:43 UTC (permalink / raw)
  To: ml

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

There's a closed pull request on the void-packages repository

pass: add "x11" build option
https://github.com/void-linux/void-packages/pull/15632

Description:
When "x11" option is disabled (enabled by default), "xclip" and
transitive dependencies on X libraries are not pulled by package
installation.

"xclip" still can be installed separately, though, to regain full
functionality.

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

end of thread, other threads:[~2019-10-20  3:43 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-20  0:56 [PR PATCH] pass: add "x11" build option voidlinux-github
2019-10-20  1:03 ` [PR PATCH] [Updated] " voidlinux-github
2019-10-20  1:03 ` voidlinux-github
2019-10-20  1:14 ` voidlinux-github
2019-10-20  3:43 ` voidlinux-github
2019-10-20  3:43 ` [PR PATCH] [Closed]: " 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).