Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] dtc: remove git from hostmakedepends
@ 2021-07-22 19:50 paper42
  2021-07-23  8:52 ` paper42
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: paper42 @ 2021-07-22 19:50 UTC (permalink / raw)
  To: ml

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

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

https://github.com/paper42/void-packages dtc-no-git
https://github.com/void-linux/void-packages/pull/32149

dtc: remove git from hostmakedepends
Removes a huge dependency chain from cross toolchains. The git dependency is used for getting the version, but then the variable in the Makefile is never used. Maybe the package doesn't have to be revbumped?

#### 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?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [x] 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/32149.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-dtc-no-git-32149.patch --]
[-- Type: text/x-diff, Size: 832 bytes --]

From 9baafd65d2874b23093fd7a304a05ccc8f8d6254 Mon Sep 17 00:00:00 2001
From: Michal Vasilek <michal@vasilek.cz>
Date: Thu, 22 Jul 2021 12:10:02 +0200
Subject: [PATCH] dtc: remove git from hostmakedepends

---
 srcpkgs/dtc/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/dtc/template b/srcpkgs/dtc/template
index e44aa5180f65..d61a4d671008 100644
--- a/srcpkgs/dtc/template
+++ b/srcpkgs/dtc/template
@@ -1,11 +1,11 @@
 # Template file for 'dtc'
 pkgname=dtc
 version=1.6.0
-revision=1
+revision=2
 build_style=gnu-makefile
 make_build_args="NO_PYTHON=1"
 make_install_args="$make_build_args"
-hostmakedepends="git flex bison pkg-config"
+hostmakedepends="flex bison pkg-config"
 makedepends="libyaml-devel"
 short_desc="Device Tree Compiler"
 maintainer="Andrea Brancaleoni <abc@pompel.me>"

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

* Re: dtc: remove git from hostmakedepends
  2021-07-22 19:50 [PR PATCH] dtc: remove git from hostmakedepends paper42
@ 2021-07-23  8:52 ` paper42
  2021-07-23 10:13 ` [PR PATCH] [Updated] " paper42
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: paper42 @ 2021-07-23  8:52 UTC (permalink / raw)
  To: ml

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

New comment by paper42 on void-packages repository

https://github.com/void-linux/void-packages/pull/32149#issuecomment-885496115

Comment:
> I think we don't need to bump revision. However, 1.6.1 is released.

I saw the update, but decided not to do it, because I don't see a way I could easily test it.

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

* Re: [PR PATCH] [Updated] dtc: remove git from hostmakedepends
  2021-07-22 19:50 [PR PATCH] dtc: remove git from hostmakedepends paper42
  2021-07-23  8:52 ` paper42
@ 2021-07-23 10:13 ` paper42
  2021-07-25 19:55 ` ericonr
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: paper42 @ 2021-07-23 10:13 UTC (permalink / raw)
  To: ml

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

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

https://github.com/paper42/void-packages dtc-no-git
https://github.com/void-linux/void-packages/pull/32149

dtc: remove git from hostmakedepends
Removes a huge dependency chain from cross toolchains. The git dependency is used for getting the version, but then the variable in the Makefile is never used. Maybe the package doesn't have to be revbumped?

#### 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?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [x] 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/32149.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-dtc-no-git-32149.patch --]
[-- Type: text/x-diff, Size: 758 bytes --]

From 80d76bd78ff7903fa968a7889a26ebca1b97ee4b Mon Sep 17 00:00:00 2001
From: Michal Vasilek <michal@vasilek.cz>
Date: Thu, 22 Jul 2021 12:10:02 +0200
Subject: [PATCH] dtc: remove git from hostmakedepends

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

diff --git a/srcpkgs/dtc/template b/srcpkgs/dtc/template
index e44aa5180f65..f62ae03f7198 100644
--- a/srcpkgs/dtc/template
+++ b/srcpkgs/dtc/template
@@ -5,7 +5,7 @@ revision=1
 build_style=gnu-makefile
 make_build_args="NO_PYTHON=1"
 make_install_args="$make_build_args"
-hostmakedepends="git flex bison pkg-config"
+hostmakedepends="flex bison pkg-config"
 makedepends="libyaml-devel"
 short_desc="Device Tree Compiler"
 maintainer="Andrea Brancaleoni <abc@pompel.me>"

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

* Re: dtc: remove git from hostmakedepends
  2021-07-22 19:50 [PR PATCH] dtc: remove git from hostmakedepends paper42
  2021-07-23  8:52 ` paper42
  2021-07-23 10:13 ` [PR PATCH] [Updated] " paper42
@ 2021-07-25 19:55 ` ericonr
  2021-07-26 20:54 ` [PR PATCH] [Updated] " paper42
  2021-07-28  4:26 ` [PR PATCH] [Merged]: " ericonr
  4 siblings, 0 replies; 6+ messages in thread
From: ericonr @ 2021-07-25 19:55 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/32149#issuecomment-886249914

Comment:
@paper42 apparently the `pinephone-uboot` package uses `dtc` during the build.

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

* Re: [PR PATCH] [Updated] dtc: remove git from hostmakedepends
  2021-07-22 19:50 [PR PATCH] dtc: remove git from hostmakedepends paper42
                   ` (2 preceding siblings ...)
  2021-07-25 19:55 ` ericonr
@ 2021-07-26 20:54 ` paper42
  2021-07-28  4:26 ` [PR PATCH] [Merged]: " ericonr
  4 siblings, 0 replies; 6+ messages in thread
From: paper42 @ 2021-07-26 20:54 UTC (permalink / raw)
  To: ml

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

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

https://github.com/paper42/void-packages dtc-no-git
https://github.com/void-linux/void-packages/pull/32149

dtc: remove git from hostmakedepends
Removes a huge dependency chain from cross toolchains. The git dependency is used for getting the version, but then the variable in the Makefile is never used. Maybe the package doesn't have to be revbumped?

#### 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?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [x] 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/32149.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-dtc-no-git-32149.patch --]
[-- Type: text/x-diff, Size: 1192 bytes --]

From ff967547692c66553ae6338004e4108e2b7f232d Mon Sep 17 00:00:00 2001
From: Michal Vasilek <michal@vasilek.cz>
Date: Thu, 22 Jul 2021 12:10:02 +0200
Subject: [PATCH] dtc: update to 1.6.1.

* remove git from hostmakedepends
---
 srcpkgs/dtc/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/dtc/template b/srcpkgs/dtc/template
index e44aa5180f65..38c07b708c12 100644
--- a/srcpkgs/dtc/template
+++ b/srcpkgs/dtc/template
@@ -1,18 +1,18 @@
 # Template file for 'dtc'
 pkgname=dtc
-version=1.6.0
+version=1.6.1
 revision=1
 build_style=gnu-makefile
 make_build_args="NO_PYTHON=1"
 make_install_args="$make_build_args"
-hostmakedepends="git flex bison pkg-config"
+hostmakedepends="flex bison pkg-config"
 makedepends="libyaml-devel"
 short_desc="Device Tree Compiler"
 maintainer="Andrea Brancaleoni <abc@pompel.me>"
 license="GPL-2.0-only"
 homepage="https://git.kernel.org/pub/scm/utils/dtc/dtc.git"
 distfiles="https://www.kernel.org/pub/software/utils/dtc/dtc-${version}.tar.xz"
-checksum=10503b0217e1b07933e29e8d347a00015b2431bea5f59afe0bed3af30340c82d
+checksum=65cec529893659a49a89740bb362f507a3b94fc8cd791e76a8d6a2b6f3203473
 
 CFLAGS="-fPIC"
 

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

* Re: [PR PATCH] [Merged]: dtc: remove git from hostmakedepends
  2021-07-22 19:50 [PR PATCH] dtc: remove git from hostmakedepends paper42
                   ` (3 preceding siblings ...)
  2021-07-26 20:54 ` [PR PATCH] [Updated] " paper42
@ 2021-07-28  4:26 ` ericonr
  4 siblings, 0 replies; 6+ messages in thread
From: ericonr @ 2021-07-28  4:26 UTC (permalink / raw)
  To: ml

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

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

dtc: remove git from hostmakedepends
https://github.com/void-linux/void-packages/pull/32149

Description:
Removes a huge dependency chain from cross toolchains. The git dependency is used for getting the version, but then the variable in the Makefile is never used. Maybe the package doesn't have to be revbumped?

#### 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?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [x] I generally don't use the affected packages but briefly tested this PR

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

end of thread, other threads:[~2021-07-28  4:26 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-22 19:50 [PR PATCH] dtc: remove git from hostmakedepends paper42
2021-07-23  8:52 ` paper42
2021-07-23 10:13 ` [PR PATCH] [Updated] " paper42
2021-07-25 19:55 ` ericonr
2021-07-26 20:54 ` [PR PATCH] [Updated] " paper42
2021-07-28  4:26 ` [PR PATCH] [Merged]: " ericonr

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