Github messages for voidlinux
 help / color / mirror / Atom feed
* Re: [PR PATCH] [Updated] python-dogpile.cache: add python-decorator as dep
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-11988@inbox.vuxu.org>
@ 2019-06-02  9:34 ` voidlinux-github
  2019-06-03 15:32 ` voidlinux-github
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 4+ messages in thread
From: voidlinux-github @ 2019-06-02  9:34 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Bridouz/void-packages patch-3
https://github.com/void-linux/void-packages/pull/11988

python-dogpile.cache: add python-decorator as dep
Noticed that `python-dogpile.cache` did not have `python-decorator` as dep.

Thus, Usage of `subliminal` exits with error about not finding `python-decorator` which is needed by `python-dogpile.cache`.

Fixed and working.

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

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

From 06ad208c8e1403ab78a39ce3f2a87e2521df9e5d Mon Sep 17 00:00:00 2001
From: Bridouz <justin.berthault@zaclys.net>
Date: Mon, 27 May 2019 15:10:18 +0200
Subject: [PATCH 1/3] python-dogpile.cache: add python-decorator as dep

---
 srcpkgs/python-dogpile.cache/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/python-dogpile.cache/template b/srcpkgs/python-dogpile.cache/template
index 202117a9695..0e4b230c55d 100644
--- a/srcpkgs/python-dogpile.cache/template
+++ b/srcpkgs/python-dogpile.cache/template
@@ -7,7 +7,7 @@ wrksrc="dogpile.cache-${version}"
 build_style=python-module
 pycompile_module="dogpile"
 hostmakedepends="python-setuptools python3-setuptools"
-depends="python"
+depends="python python3-decorator"
 short_desc="A caching front-end based on the Dogpile lock (Python2)"
 maintainer="Daniel Santana <daniel@santana.tech>"
 license="BSD-3-Clause"
@@ -22,7 +22,7 @@ post_install() {
 python3-dogpile.cache_package() {
 	archs=noarch
 	pycompile_module="dogpile"
-	depends="python3"
+	depends="python3 python3-decorator"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="guessit:guessit:/usr/bin/guessit3"
 	pkg_install() {

From 41c248c172e3f58058590221c3ed0df3b12c97ec Mon Sep 17 00:00:00 2001
From: Bridouz <justin.berthault@gmail.com>
Date: Mon, 27 May 2019 16:23:30 +0200
Subject: [PATCH 2/3] python-dogpile.cache: fix py3 deps on py2

---
 srcpkgs/python-dogpile.cache/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dogpile.cache/template b/srcpkgs/python-dogpile.cache/template
index 0e4b230c55d..13845807a23 100644
--- a/srcpkgs/python-dogpile.cache/template
+++ b/srcpkgs/python-dogpile.cache/template
@@ -7,7 +7,7 @@ wrksrc="dogpile.cache-${version}"
 build_style=python-module
 pycompile_module="dogpile"
 hostmakedepends="python-setuptools python3-setuptools"
-depends="python python3-decorator"
+depends="python python-decorator"
 short_desc="A caching front-end based on the Dogpile lock (Python2)"
 maintainer="Daniel Santana <daniel@santana.tech>"
 license="BSD-3-Clause"

From 1d02778d4dc45cf9480c47f3be64c209905e0d1d Mon Sep 17 00:00:00 2001
From: Bridouz <justin.berthault@gmail.com>
Date: Sun, 2 Jun 2019 11:34:47 +0200
Subject: [PATCH 3/3] python-dogpile.cache: revbump

---
 srcpkgs/python-dogpile.cache/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/python-dogpile.cache/template b/srcpkgs/python-dogpile.cache/template
index 13845807a23..a2e4a436f2f 100644
--- a/srcpkgs/python-dogpile.cache/template
+++ b/srcpkgs/python-dogpile.cache/template
@@ -1,7 +1,7 @@
 # Template file for 'python-dogpile.cache'
 pkgname=python-dogpile.cache
 version=0.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="dogpile.cache-${version}"
 build_style=python-module

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

* Re: [PR PATCH] [Updated] python-dogpile.cache: add python-decorator as dep
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-11988@inbox.vuxu.org>
  2019-06-02  9:34 ` [PR PATCH] [Updated] python-dogpile.cache: add python-decorator as dep voidlinux-github
  2019-06-03 15:32 ` voidlinux-github
@ 2019-06-03 15:32 ` voidlinux-github
  2019-06-04 14:54 ` [PR PATCH] [Merged]: " voidlinux-github
  3 siblings, 0 replies; 4+ messages in thread
From: voidlinux-github @ 2019-06-03 15:32 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Bridouz/void-packages patch-3
https://github.com/void-linux/void-packages/pull/11988

python-dogpile.cache: add python-decorator as dep
Noticed that `python-dogpile.cache` did not have `python-decorator` as dep.

Thus, Usage of `subliminal` exits with error about not finding `python-decorator` which is needed by `python-dogpile.cache`.

Fixed and working.

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

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

From ecf8e7b08f46e1daf41e912e19764411ab909007 Mon Sep 17 00:00:00 2001
From: Justin Berthault <justin.berthault@zaclys.net>
Date: Mon, 3 Jun 2019 17:32:04 +0200
Subject: [PATCH] python-dogpile.cach: add python-decorator as dep

---
 srcpkgs/python-dogpile.cache/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/python-dogpile.cache/template b/srcpkgs/python-dogpile.cache/template
index 202117a9695..a2e4a436f2f 100644
--- a/srcpkgs/python-dogpile.cache/template
+++ b/srcpkgs/python-dogpile.cache/template
@@ -1,13 +1,13 @@
 # Template file for 'python-dogpile.cache'
 pkgname=python-dogpile.cache
 version=0.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="dogpile.cache-${version}"
 build_style=python-module
 pycompile_module="dogpile"
 hostmakedepends="python-setuptools python3-setuptools"
-depends="python"
+depends="python python-decorator"
 short_desc="A caching front-end based on the Dogpile lock (Python2)"
 maintainer="Daniel Santana <daniel@santana.tech>"
 license="BSD-3-Clause"
@@ -22,7 +22,7 @@ post_install() {
 python3-dogpile.cache_package() {
 	archs=noarch
 	pycompile_module="dogpile"
-	depends="python3"
+	depends="python3 python3-decorator"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="guessit:guessit:/usr/bin/guessit3"
 	pkg_install() {

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

* Re: [PR PATCH] [Updated] python-dogpile.cache: add python-decorator as dep
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-11988@inbox.vuxu.org>
  2019-06-02  9:34 ` [PR PATCH] [Updated] python-dogpile.cache: add python-decorator as dep voidlinux-github
@ 2019-06-03 15:32 ` voidlinux-github
  2019-06-03 15:32 ` voidlinux-github
  2019-06-04 14:54 ` [PR PATCH] [Merged]: " voidlinux-github
  3 siblings, 0 replies; 4+ messages in thread
From: voidlinux-github @ 2019-06-03 15:32 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Bridouz/void-packages patch-3
https://github.com/void-linux/void-packages/pull/11988

python-dogpile.cache: add python-decorator as dep
Noticed that `python-dogpile.cache` did not have `python-decorator` as dep.

Thus, Usage of `subliminal` exits with error about not finding `python-decorator` which is needed by `python-dogpile.cache`.

Fixed and working.

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

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

From ecf8e7b08f46e1daf41e912e19764411ab909007 Mon Sep 17 00:00:00 2001
From: Justin Berthault <justin.berthault@zaclys.net>
Date: Mon, 3 Jun 2019 17:32:04 +0200
Subject: [PATCH] python-dogpile.cach: add python-decorator as dep

---
 srcpkgs/python-dogpile.cache/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/python-dogpile.cache/template b/srcpkgs/python-dogpile.cache/template
index 202117a9695..a2e4a436f2f 100644
--- a/srcpkgs/python-dogpile.cache/template
+++ b/srcpkgs/python-dogpile.cache/template
@@ -1,13 +1,13 @@
 # Template file for 'python-dogpile.cache'
 pkgname=python-dogpile.cache
 version=0.7.1
-revision=1
+revision=2
 archs=noarch
 wrksrc="dogpile.cache-${version}"
 build_style=python-module
 pycompile_module="dogpile"
 hostmakedepends="python-setuptools python3-setuptools"
-depends="python"
+depends="python python-decorator"
 short_desc="A caching front-end based on the Dogpile lock (Python2)"
 maintainer="Daniel Santana <daniel@santana.tech>"
 license="BSD-3-Clause"
@@ -22,7 +22,7 @@ post_install() {
 python3-dogpile.cache_package() {
 	archs=noarch
 	pycompile_module="dogpile"
-	depends="python3"
+	depends="python3 python3-decorator"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="guessit:guessit:/usr/bin/guessit3"
 	pkg_install() {

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

* Re: [PR PATCH] [Merged]: python-dogpile.cache: add python-decorator as dep
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-11988@inbox.vuxu.org>
                   ` (2 preceding siblings ...)
  2019-06-03 15:32 ` voidlinux-github
@ 2019-06-04 14:54 ` voidlinux-github
  3 siblings, 0 replies; 4+ messages in thread
From: voidlinux-github @ 2019-06-04 14:54 UTC (permalink / raw)
  To: ml

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

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

python-dogpile.cache: add python-decorator as dep
https://github.com/void-linux/void-packages/pull/11988
Description: Noticed that `python-dogpile.cache` did not have `python-decorator` as dep.

Thus, Usage of `subliminal` exits with error about not finding `python-decorator` which is needed by `python-dogpile.cache`.

Fixed and working.

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

end of thread, other threads:[~2019-06-04 14:54 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-11988@inbox.vuxu.org>
2019-06-02  9:34 ` [PR PATCH] [Updated] python-dogpile.cache: add python-decorator as dep voidlinux-github
2019-06-03 15:32 ` voidlinux-github
2019-06-03 15:32 ` voidlinux-github
2019-06-04 14:54 ` [PR PATCH] [Merged]: " 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).