All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] package/libupnpp: bump to version 0.14.1
@ 2016-02-19  8:01 Jörg Krause
  2016-02-19  8:01 ` [Buildroot] [PATCH 2/2] package/upmpdcli: bump to version 1.1.0 Jörg Krause
  2016-02-19 15:33 ` [Buildroot] [PATCH 1/2] package/libupnpp: bump to version 0.14.1 Peter Korsgaard
  0 siblings, 2 replies; 4+ messages in thread
From: Jörg Krause @ 2016-02-19  8:01 UTC (permalink / raw)
  To: buildroot

Signed-off-by: J?rg Krause <joerg.krause@embedded.rocks>
---
 package/libupnpp/libupnpp.hash | 4 ++--
 package/libupnpp/libupnpp.mk   | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package/libupnpp/libupnpp.hash b/package/libupnpp/libupnpp.hash
index a301fb3..685ccf4 100644
--- a/package/libupnpp/libupnpp.hash
+++ b/package/libupnpp/libupnpp.hash
@@ -1,2 +1,2 @@
-# Hashes from: http://www.lesbonscomptes.com/upmpdcli/downloads/libupnpp-0.13.1.tar.gz.sha256
-sha256 d4604e3e4875e99d0446a436f857a849d1e3dda59096861dcd6a0e6c16474cb7  libupnpp-0.13.1.tar.gz
+# Hashes from: http://www.lesbonscomptes.com/upmpdcli/downloads/libupnpp-0.14.1.tar.gz.sha256
+sha256  ffb33379f3734419de683b0adca5228e802c64d3960681c15f3a8de7d7e315d1  libupnpp-0.14.1.tar.gz
diff --git a/package/libupnpp/libupnpp.mk b/package/libupnpp/libupnpp.mk
index 71ba311..1525f81 100644
--- a/package/libupnpp/libupnpp.mk
+++ b/package/libupnpp/libupnpp.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-LIBUPNPP_VERSION = 0.13.1
+LIBUPNPP_VERSION = 0.14.1
 LIBUPNPP_SITE = http://www.lesbonscomptes.com/upmpdcli/downloads
 LIBUPNPP_LICENSE = GPLv2+
 LIBUPNPP_LICENSE_FILES = COPYING
-- 
2.7.1

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

* [Buildroot] [PATCH 2/2] package/upmpdcli: bump to version 1.1.0
  2016-02-19  8:01 [Buildroot] [PATCH 1/2] package/libupnpp: bump to version 0.14.1 Jörg Krause
@ 2016-02-19  8:01 ` Jörg Krause
  2016-02-19 15:33   ` Peter Korsgaard
  2016-02-19 15:33 ` [Buildroot] [PATCH 1/2] package/libupnpp: bump to version 0.14.1 Peter Korsgaard
  1 sibling, 1 reply; 4+ messages in thread
From: Jörg Krause @ 2016-02-19  8:01 UTC (permalink / raw)
  To: buildroot

upmpdcli version 1.1.0 requires libupnpp version 0.14.1.

Also adjust the installation of the config file. It is renamed to upmpdcli.conf-dist
in the sources, but we install it as upmpdcli.conf as usual.

Signed-off-by: J?rg Krause <joerg.krause@embedded.rocks>
---
 package/upmpdcli/upmpdcli.hash | 4 ++--
 package/upmpdcli/upmpdcli.mk   | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/package/upmpdcli/upmpdcli.hash b/package/upmpdcli/upmpdcli.hash
index 5a6c47a..07324a7 100644
--- a/package/upmpdcli/upmpdcli.hash
+++ b/package/upmpdcli/upmpdcli.hash
@@ -1,2 +1,2 @@
-# Hashes from: http://www.lesbonscomptes.com/upmpdcli/downloads/upmpdcli-0.13.1.tar.gz.sha256
-sha256 86f964e49b0288a4d660aa4ad83576d83aad7c354df67d3aa8e324e8912876e0  upmpdcli-0.13.1.tar.gz
+# Hashes from: http://www.lesbonscomptes.com/upmpdcli/downloads/upmpdcli-1.1.0.tar.gz.sha256
+sha256  7193488091a204ed691d1f3ce3354e183c8245428a4a7ca8bd032e1a6c48520f  upmpdcli-1.1.0.tar.gz
diff --git a/package/upmpdcli/upmpdcli.mk b/package/upmpdcli/upmpdcli.mk
index ba5bbb2..6168595 100644
--- a/package/upmpdcli/upmpdcli.mk
+++ b/package/upmpdcli/upmpdcli.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-UPMPDCLI_VERSION = 0.13.1
+UPMPDCLI_VERSION = 1.1.0
 UPMPDCLI_SITE = http://www.lesbonscomptes.com/upmpdcli/downloads
 UPMPDCLI_LICENSE = GPLv2+
 UPMPDCLI_LICENSE_FILES = COPYING
@@ -40,7 +40,7 @@ define UPMPDCLI_INSTALL_INIT_SYSTEMD
 endef
 
 define UPMPDCLI_INSTALL_CONF_FILE
-	$(INSTALL) -D -m 0755 $(@D)/src/upmpdcli.conf $(TARGET_DIR)/etc/upmpdcli.conf
+	$(INSTALL) -D -m 0755 $(@D)/src/upmpdcli.conf-dist $(TARGET_DIR)/etc/upmpdcli.conf
 endef
 
 UPMPDCLI_POST_INSTALL_TARGET_HOOKS += UPMPDCLI_INSTALL_CONF_FILE
-- 
2.7.1

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

* [Buildroot] [PATCH 1/2] package/libupnpp: bump to version 0.14.1
  2016-02-19  8:01 [Buildroot] [PATCH 1/2] package/libupnpp: bump to version 0.14.1 Jörg Krause
  2016-02-19  8:01 ` [Buildroot] [PATCH 2/2] package/upmpdcli: bump to version 1.1.0 Jörg Krause
@ 2016-02-19 15:33 ` Peter Korsgaard
  1 sibling, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2016-02-19 15:33 UTC (permalink / raw)
  To: buildroot

>>>>> "J?rg" == J?rg Krause <joerg.krause@embedded.rocks> writes:

 > Signed-off-by: J?rg Krause <joerg.krause@embedded.rocks>

Committed to next, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 2/2] package/upmpdcli: bump to version 1.1.0
  2016-02-19  8:01 ` [Buildroot] [PATCH 2/2] package/upmpdcli: bump to version 1.1.0 Jörg Krause
@ 2016-02-19 15:33   ` Peter Korsgaard
  0 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2016-02-19 15:33 UTC (permalink / raw)
  To: buildroot

>>>>> "J?rg" == J?rg Krause <joerg.krause@embedded.rocks> writes:

 > upmpdcli version 1.1.0 requires libupnpp version 0.14.1.
 > Also adjust the installation of the config file. It is renamed to upmpdcli.conf-dist
 > in the sources, but we install it as upmpdcli.conf as usual.

 > Signed-off-by: J?rg Krause <joerg.krause@embedded.rocks>

Committed to next, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2016-02-19 15:33 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-02-19  8:01 [Buildroot] [PATCH 1/2] package/libupnpp: bump to version 0.14.1 Jörg Krause
2016-02-19  8:01 ` [Buildroot] [PATCH 2/2] package/upmpdcli: bump to version 1.1.0 Jörg Krause
2016-02-19 15:33   ` Peter Korsgaard
2016-02-19 15:33 ` [Buildroot] [PATCH 1/2] package/libupnpp: bump to version 0.14.1 Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.