Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] pkgconf: update upstream URL in Config.in
@ 2017-09-19 11:05 Peter Korsgaard
  2017-09-19 11:05 ` [Buildroot] [PATCH 2/2] pkgconf: expose the host variant in menuconfig Peter Korsgaard
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Peter Korsgaard @ 2017-09-19 11:05 UTC (permalink / raw)
  To: buildroot

The download location got changed two years ago when the version was bumped
to 0.9.12, but the upstream URL in Config.in wasn't updated.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 package/pkgconf/Config.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/pkgconf/Config.in b/package/pkgconf/Config.in
index f95847fa3c..9d5d9ab194 100644
--- a/package/pkgconf/Config.in
+++ b/package/pkgconf/Config.in
@@ -6,4 +6,4 @@ config BR2_PACKAGE_PKGCONF
 	  but was written from scratch in the summer of 2011 to replace
 	  pkg-config, which now needs itself to build itself
 
-	  https://github.com/nenolod/pkgconf
+	  https://github.com/pkgconf/pkgconf
-- 
2.11.0

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

* [Buildroot] [PATCH 2/2] pkgconf: expose the host variant in menuconfig
  2017-09-19 11:05 [Buildroot] [PATCH 1/2] pkgconf: update upstream URL in Config.in Peter Korsgaard
@ 2017-09-19 11:05 ` Peter Korsgaard
  2017-09-19 20:02 ` [Buildroot] [PATCH 1/2] pkgconf: update upstream URL in Config.in Arnout Vandecappelle
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2017-09-19 11:05 UTC (permalink / raw)
  To: buildroot

With the addition of the sdk support it may be interesting to build
host-pkgconf even though no packages need it, so expose it in menuconfig.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 package/Config.in.host         | 1 +
 package/pkgconf/Config.in.host | 9 +++++++++
 2 files changed, 10 insertions(+)
 create mode 100644 package/pkgconf/Config.in.host

diff --git a/package/Config.in.host b/package/Config.in.host
index c5a852b858..df3893aa9c 100644
--- a/package/Config.in.host
+++ b/package/Config.in.host
@@ -33,6 +33,7 @@ menu "Host utilities"
 	source "package/opkg-utils/Config.in.host"
 	source "package/parted/Config.in.host"
 	source "package/patchelf/Config.in.host"
+	source "package/pkgconf/Config.in.host"
 	source "package/pru-software-support/Config.in.host"
 	source "package/pwgen/Config.in.host"
 	source "package/python-lxml/Config.in.host"
diff --git a/package/pkgconf/Config.in.host b/package/pkgconf/Config.in.host
new file mode 100644
index 0000000000..437a7bf6f9
--- /dev/null
+++ b/package/pkgconf/Config.in.host
@@ -0,0 +1,9 @@
+config BR2_PACKAGE_HOST_PKGCONF
+	bool "host pkgconf"
+	help
+	  pkgconf is a program which helps to configure compiler and linker
+	  flags for development frameworks. It is similar to pkg-config,
+	  but was written from scratch in the summer of 2011 to replace
+	  pkg-config, which now needs itself to build itself
+
+	  https://github.com/pkgconf/pkgconf
-- 
2.11.0

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

* [Buildroot] [PATCH 1/2] pkgconf: update upstream URL in Config.in
  2017-09-19 11:05 [Buildroot] [PATCH 1/2] pkgconf: update upstream URL in Config.in Peter Korsgaard
  2017-09-19 11:05 ` [Buildroot] [PATCH 2/2] pkgconf: expose the host variant in menuconfig Peter Korsgaard
@ 2017-09-19 20:02 ` Arnout Vandecappelle
  2017-09-21 15:03 ` Peter Korsgaard
  2017-10-16 21:57 ` Peter Korsgaard
  3 siblings, 0 replies; 5+ messages in thread
From: Arnout Vandecappelle @ 2017-09-19 20:02 UTC (permalink / raw)
  To: buildroot



On 19-09-17 13:05, Peter Korsgaard wrote:
> The download location got changed two years ago when the version was bumped
> to 0.9.12, but the upstream URL in Config.in wasn't updated.
> 
> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>

 Applied both to master, thanks.

 Regards,
 Arnout

> ---
>  package/pkgconf/Config.in | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/package/pkgconf/Config.in b/package/pkgconf/Config.in
> index f95847fa3c..9d5d9ab194 100644
> --- a/package/pkgconf/Config.in
> +++ b/package/pkgconf/Config.in
> @@ -6,4 +6,4 @@ config BR2_PACKAGE_PKGCONF
>  	  but was written from scratch in the summer of 2011 to replace
>  	  pkg-config, which now needs itself to build itself
>  
> -	  https://github.com/nenolod/pkgconf
> +	  https://github.com/pkgconf/pkgconf
> 

-- 
Arnout Vandecappelle                          arnout at mind be
Senior Embedded Software Architect            +32-16-286500
Essensium/Mind                                http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium           BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7493 020B C7E3 8618 8DEC 222C 82EB F404 F9AC 0DDF

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

* [Buildroot] [PATCH 1/2] pkgconf: update upstream URL in Config.in
  2017-09-19 11:05 [Buildroot] [PATCH 1/2] pkgconf: update upstream URL in Config.in Peter Korsgaard
  2017-09-19 11:05 ` [Buildroot] [PATCH 2/2] pkgconf: expose the host variant in menuconfig Peter Korsgaard
  2017-09-19 20:02 ` [Buildroot] [PATCH 1/2] pkgconf: update upstream URL in Config.in Arnout Vandecappelle
@ 2017-09-21 15:03 ` Peter Korsgaard
  2017-10-16 21:57 ` Peter Korsgaard
  3 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2017-09-21 15:03 UTC (permalink / raw)
  To: buildroot

>>>>> "Peter" == Peter Korsgaard <peter@korsgaard.com> writes:

 > The download location got changed two years ago when the version was bumped
 > to 0.9.12, but the upstream URL in Config.in wasn't updated.

 > Signed-off-by: Peter Korsgaard <peter@korsgaard.com>

Committed to 2017.02.x, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 1/2] pkgconf: update upstream URL in Config.in
  2017-09-19 11:05 [Buildroot] [PATCH 1/2] pkgconf: update upstream URL in Config.in Peter Korsgaard
                   ` (2 preceding siblings ...)
  2017-09-21 15:03 ` Peter Korsgaard
@ 2017-10-16 21:57 ` Peter Korsgaard
  3 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2017-10-16 21:57 UTC (permalink / raw)
  To: buildroot

>>>>> "Peter" == Peter Korsgaard <peter@korsgaard.com> writes:

 > The download location got changed two years ago when the version was bumped
 > to 0.9.12, but the upstream URL in Config.in wasn't updated.

 > Signed-off-by: Peter Korsgaard <peter@korsgaard.com>

Committed to 2017.08.x, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2017-10-16 21:57 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-09-19 11:05 [Buildroot] [PATCH 1/2] pkgconf: update upstream URL in Config.in Peter Korsgaard
2017-09-19 11:05 ` [Buildroot] [PATCH 2/2] pkgconf: expose the host variant in menuconfig Peter Korsgaard
2017-09-19 20:02 ` [Buildroot] [PATCH 1/2] pkgconf: update upstream URL in Config.in Arnout Vandecappelle
2017-09-21 15:03 ` Peter Korsgaard
2017-10-16 21:57 ` Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox