Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] kupfer: update to 320, xlint fixes.
@ 2020-11-19 22:00 mobinmob
  2020-11-21 17:12 ` mobinmob
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: mobinmob @ 2020-11-19 22:00 UTC (permalink / raw)
  To: ml

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

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

https://github.com/mobinmob/void-packages kupfer
https://github.com/void-linux/void-packages/pull/26510

kupfer: update to 320, xlint fixes.


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

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

From 36f8b1b80a89fac1a20b8d88056503ce5ea7b87d Mon Sep 17 00:00:00 2001
From: mobinmob <mobinmob@disroot.org>
Date: Thu, 19 Nov 2020 23:57:05 +0200
Subject: [PATCH] kupfer: update to 320, xlint fixes.

---
 srcpkgs/kupfer/patches/py38.patch | 18 ------------------
 srcpkgs/kupfer/template           | 14 +++++++-------
 2 files changed, 7 insertions(+), 25 deletions(-)
 delete mode 100644 srcpkgs/kupfer/patches/py38.patch

diff --git a/srcpkgs/kupfer/patches/py38.patch b/srcpkgs/kupfer/patches/py38.patch
deleted file mode 100644
index b4fd5b51f25..00000000000
--- a/srcpkgs/kupfer/patches/py38.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-commit 167c895b28df8f9be619dd5a7ed1e2e3f31dd4d8
-Author: q66 <daniel@octaforge.org>
-Date:   Sun Jan 5 22:23:53 2020 +0100
-
-    Fix waflib on python 3.8
-
-diff --git waflib/Node.py waflib/Node.py
-index c86c4c1..a81779a 100644
---- waflib/Node.py
-+++ waflib/Node.py
-@@ -487,7 +487,6 @@ class Node(object):
- 					if maxdepth:
- 						for k in node.ant_iter(accept=accept, maxdepth=maxdepth - 1, pats=npats, dir=dir, src=src, remove=remove):
- 							yield k
--		raise StopIteration
- 
- 	def ant_glob(self, *k, **kw):
- 		"""
diff --git a/srcpkgs/kupfer/template b/srcpkgs/kupfer/template
index 03e80e9fdc9..47ed773cbf1 100644
--- a/srcpkgs/kupfer/template
+++ b/srcpkgs/kupfer/template
@@ -1,11 +1,9 @@
 # Template file for 'kupfer'
 pkgname=kupfer
-version=319
-revision=2
-archs=noarch
+version=320
+revision=1
+create_wrksrc=yes
 build_style=waf3
-wrksrc="${pkgname}-v${version}"
-python_version=3
 pycompile_dirs="usr/share/kupfer/kupfer"
 configure_args="--no-update-mime --no-update-icon-cache"
 hostmakedepends="intltool python3-docutils"
@@ -15,5 +13,7 @@ short_desc="Interface for quick and convenient access to applications"
 maintainer="Enno Boland <gottox@voidlinux.org>"
 license="GPL-3.0-or-later"
 homepage="https://kupferlauncher.github.io/"
-distfiles="https://github.com/kupferlauncher/kupfer/releases/download/v${version}/kupfer-v${version}.tar.xz"
-checksum=22357233984a6588a9f9743002363af38ea63b5c2684af487693a13c42973d31
+changelog="https://raw.githubusercontent.com/kupferlauncher/kupfer/master/Documentation/VersionHistory.rst"
+distfiles="https://github.com/kupferlauncher/kupfer/releases/download/v${version}/kupfer-v${version}.tar.gz"
+checksum=3f686092897862483e28440fafb5e323482fac47c4101abee1e2839b45af7da3
+python_version=3

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

* Re: kupfer: update to 320, xlint fixes.
  2020-11-19 22:00 [PR PATCH] kupfer: update to 320, xlint fixes mobinmob
@ 2020-11-21 17:12 ` mobinmob
  2020-11-23  3:38 ` ericonr
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: mobinmob @ 2020-11-21 17:12 UTC (permalink / raw)
  To: ml

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

New comment by mobinmob on void-packages repository

https://github.com/void-linux/void-packages/pull/26510#issuecomment-731606920

Comment:
cross-building fails with:
```
Checking for python module 'gi.repository.Gtk' : not found 
Could not find the python module 'gi.repository.Gtk'
```
`build_helper=gir ` does not help. Package works fine on x86_64.


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

* Re: kupfer: update to 320, xlint fixes.
  2020-11-19 22:00 [PR PATCH] kupfer: update to 320, xlint fixes mobinmob
  2020-11-21 17:12 ` mobinmob
@ 2020-11-23  3:38 ` ericonr
  2020-12-20  5:44 ` ericonr
  2021-01-16 16:53 ` [PR PATCH] [Closed]: " mobinmob
  3 siblings, 0 replies; 5+ messages in thread
From: ericonr @ 2020-11-23  3:38 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/26510#issuecomment-731910368

Comment:
I'd try adding `gtk+3` to some of the depends and see what happens...

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

* Re: kupfer: update to 320, xlint fixes.
  2020-11-19 22:00 [PR PATCH] kupfer: update to 320, xlint fixes mobinmob
  2020-11-21 17:12 ` mobinmob
  2020-11-23  3:38 ` ericonr
@ 2020-12-20  5:44 ` ericonr
  2021-01-16 16:53 ` [PR PATCH] [Closed]: " mobinmob
  3 siblings, 0 replies; 5+ messages in thread
From: ericonr @ 2020-12-20  5:44 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/26510#issuecomment-748567114

Comment:
Ping

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

* Re: [PR PATCH] [Closed]: kupfer: update to 320, xlint fixes.
  2020-11-19 22:00 [PR PATCH] kupfer: update to 320, xlint fixes mobinmob
                   ` (2 preceding siblings ...)
  2020-12-20  5:44 ` ericonr
@ 2021-01-16 16:53 ` mobinmob
  3 siblings, 0 replies; 5+ messages in thread
From: mobinmob @ 2021-01-16 16:53 UTC (permalink / raw)
  To: ml

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

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

kupfer: update to 320, xlint fixes.
https://github.com/void-linux/void-packages/pull/26510

Description:


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

end of thread, other threads:[~2021-01-16 16:53 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-19 22:00 [PR PATCH] kupfer: update to 320, xlint fixes mobinmob
2020-11-21 17:12 ` mobinmob
2020-11-23  3:38 ` ericonr
2020-12-20  5:44 ` ericonr
2021-01-16 16:53 ` [PR PATCH] [Closed]: " mobinmob

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).