Commit Graph

22 Commits

Author SHA1 Message Date
Rosen Penev 440a86ee7d libupnp: update to 1.14.18
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2024-02-14 17:23:11 -08:00
Paul Fertser 0c10c224be treewide: remove AUTORELEASE
Automatically compute and substitute current values for all
$(AUTORELEASE) instances as this feature is deprecated and shouldn't be
used.

The following temporary change was made to the core:

diff --git a/rules.mk b/rules.mk
index 57d7995d4fa8..f16367de87a8 100644
--- a/rules.mk
+++ b/rules.mk
@@ -429,7 +429,7 @@ endef
 abi_version_str = $(subst -,,$(subst _,,$(subst .,,$(1))))

 COMMITCOUNT = $(if $(DUMP),0,$(call commitcount))
-AUTORELEASE = $(if $(DUMP),0,$(call commitcount,1))
+AUTORELEASE = $(if $(DUMP),0,$(shell sed -i "s/\$$(AUTORELEASE)/$(call commitcount,1)/" $(CURDIR)/Makefile))

 all:
 FORCE: ;

And this command used to fix affected packages:

for i in $(cd feeds/packages; git grep -l PKG_RELEASE:=.*AUTORELEASE | \
                              sed 's^.*/\([^/]*\)/Makefile^\1^';);
do
  make package/$i/download
done

Signed-off-by: Paul Fertser <fercerpav@gmail.com>
2023-04-21 22:46:58 +02:00
Rosen Penev dc225b3b05 libupnp: update to 1.14.12
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-12-16 17:58:58 -08:00
Rosen Penev 2e654b19f3 treewide: back to cmake.mk
Ninja was merged to base and therefore we can now use normal cmake.mk

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-06-12 21:05:01 -07:00
Rosen Penev d41d71e630 libupnp: update to 1.14.7
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-06-01 22:56:31 -07:00
Alexander Egorenkov c1a70b84d4 libupnp: restore building tools
This enables tools again which has been disabled in commit
498506af9 ("libupnp: update to 1.14.5"). Disabling tools leads to the
header upnptools.h not being installed into /usr/include. But e.g. mpd-full
depends on this header.

Fixes: 498506af9 ("libupnp: update to 1.14.5")
Signed-off-by: Alexander Egorenkov <egorenar-dev@posteo.net>
2021-04-14 16:40:36 -07:00
Rosen Penev 498506af9b libupnp: update to 1.14.5
Switch to compiling with CMake. Faster.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-04-13 23:54:01 -07:00
Rosen Penev f1e3b436c1
libupnp: add back autoreconf
Fixes compilation under Arch Linux as it tries to link to host
libraries.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-12-22 19:02:29 -08:00
Rosen Penev 3cb496ecaf libupnp: update to 1.14.0
Remove flto as it breaks under GCC10 for some reason.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-07-28 01:12:12 -07:00
Rosen Penev 8ec1a8e153
libupnp: update to 1.12.1
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-05-02 17:23:06 -07:00
Rosen Penev 7ad02ef9e0
libupnp: update to 1.8.7
remove upstreamed patch.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-04-13 19:39:52 -07:00
Rosen Penev f6cbfecfb8
libupnp: do not use usleep
Deprecated and optionally unavailable under uClibc-ng.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-04-06 19:29:34 -07:00
Rosen Penev 8e065c147f
libupnp: enable reuseaddr
Helps applications restart safely.

Disabled optssdp. Not used by anything.

Disabled scriptsupport. Not used by anything.

Made all configure options explicit.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-03-23 16:40:48 -07:00
Rosen Penev 77e209990e
libupnp: downgrade to 1.8.6
The newer libupnp is causing problems with libupnpp. While the latter has
migraded to using a different library, it still has support for older
libupnp. Keep using it.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-02-17 19:24:19 -08:00
Rosen Penev a06584aaa5
libupnp: update to 1.12.0
Remove outdated build options.

Fix CPE ID.

Add PKG_BUILD_PARALLEL for faster compilation.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-02-14 17:22:35 -08:00
Jan Pavlinec 299e5b0a9b
treewide: add PKG_CPE_ID for better cvescanner coverage
Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
2019-09-17 12:40:26 +02:00
Michael Heimpold ee6f540ca4 libupnp: add large file defines to CFLAGS
This fixes compilation with glibc and uClibc for the included
sample programs as reported by builtbots for e.g. arc target:

-snip-
In file included from ../../upnp/inc/upnp.h:402:0,
                 from common/sample_util.h:49,
                 from common/sample_util.c:42:
../../upnp/inc/FileInfo.h:22:2: error: #error libupnp uses large file support, so users must do that, too
 #error libupnp uses large file support, so users must do that, too
  ^~~~~
Makefile:577: recipe for target 'common/tv_ctrlpt-sample_util.o' failed
-snap-

Signed-off-by: Michael Heimpold <mhei@heimpold.de>
2019-02-16 22:19:05 +01:00
Daniel Engberg b90f0032e2 libs/libupnp: Update to 1.8.4
Update libupnp to 1.8.4
Add PR #104 to fix musl compatibility
https://github.com/mrjimenez/pupnp/pull/104

Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
2019-01-28 13:56:59 +01:00
Rosen Penev 1b93344924 libupnp: Update to 1.6.25
Added PKG_BUILD_PARALLEL for faster compilation.

Removed copyright line.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2018-09-01 08:31:20 -07:00
Etienne Champetier 4006865ae8 treewide: run "make check FIXUP=1"
fix Makefile chmod (644)
replace MD5SUM with HASH
add PKG_MIRROR_HASH when PKG_SOURCE_PROTO:=git

(PKG_SOURCE_PROTO:=svn tarballs are not reproducible for now)

Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
2017-08-29 21:41:14 -07:00
thess 3c73a2ade1 libupnp: Update version to 1.6.19, update copyright, add myself as pkg maintainer
Signed-off-by: Ted Hess <thess@kitschensync.net>
2014-07-16 15:31:42 -04:00
Ted Hess 64933e5278 Import libupnp from oldpackages 2014-07-16 12:31:58 -04:00