1
0
mirror of https://git.openwrt.org/feed/routing.git synced 2024-06-14 19:23:55 +02:00
Commit Graph

13 Commits

Author SHA1 Message Date
Sven Eckelmann
076a2750dd treewide: remove AUTORELEASE
Automatically compute and substitute current values for all
$(AUTORELEASE) instances as this feature is deprecated and shouldn't be
used. Since commit 2584b0cecae ("CI: deprecate $(AUTORELEASE) via
comments"), this is even announced by the CI

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:

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

Signed-off-by: Sven Eckelmann <sven@narfation.org>
2024-02-03 08:56:13 +01:00
Josef Schlehofer
8ec1cd2f67 minimalist-pcproxy: fix post install script
Fixes:
Configuring minimalist-pcproxy.
sh: 1: unknown operand

Reported-by: Daniel Golle <daniel@makrotopia.org>
Suggested-by: Daniel Golle <daniel@makrotopia.org>

Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
2022-03-04 12:46:18 +01:00
Josef Schlehofer
c9a7659f2f minimalist-pcproxy: Makefile cleanup
- Fixed LICENSE
Software is licensed under MIT
- Added PKG_LICENSE_FILES

- The was wrong date in PKG_VERSION
The latest commit is 2014-12-12.

- Changed package versioning
Before: minimalist-pcproxy_2015-01-12-2d6d1b0b0a3b79a9b4a9b0a7606a84600a967bcb-2_arm_cortex-a9_vfpv3-d16.ipk
After: minimalist-pcproxy_2014-12-12-2d6d1b0b-1_arm_cortex-a9_vfpv3-d16.ipk

Also the downloaded tarball is smaller by 0,4 kB

Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
2022-03-04 09:49:08 +01:00
Eneas U de Queiroz
e9d5f990a3 minimalist-pcproxy: include PKG_MIRROR_HASH
This avoids unnecessary downloads and rebuilds.

Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
2021-11-19 07:04:33 +01:00
Daniel Engberg
43449bcbbd treewide: Basic cleanup and alignment to package guidelines (#383)
This is a very basic cleanup, several packages needs more work
but this at least drops git for https and removes the use of
PKG_MD5SUM and some minor fixes.

Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
2018-07-12 16:50:47 +02:00
Alexander Couzens
9b610a90c6 replace DEPENDS=+@IPV6 with DEPENDS=@IPV6
The symbol IPV6 is a global config symbol, don't select it because it
will override the user decision of IPV6 as all other package in base do
it. A select (+) will also create a recursive dependency error.

Signed-off-by: Alexander Couzens <lynxis@fe80.eu>
2016-06-05 03:07:20 +02:00
Steven Barth
6c78c2ac2c minimalist-pcpproxy: fix uci call in default-script
Signed-off-by: Steven Barth <steven@midlink.org>
2015-07-10 08:27:29 +02:00
Markus Stenberg
a5f73bbaf8 minimalist-pcproxy: Update to github HEAD. 2015-01-12 11:40:21 +02:00
Steven Barth
69f203d5c3 Add SPDX license tags
Signed-off-by: Steven Barth <steven@midlink.org>
2014-11-03 13:17:00 +01:00
Markus Stenberg
2b73beb313 minimalist-pcproxy: ANNOUNCE opcode support and better error handling. 2014-09-02 13:16:03 +03:00
Markus Stenberg
6dca756c06 minimalist-pcproxy/miniupnpd: added+using upnp.config.external_zone. 2014-06-26 23:19:32 +03:00
sbyx
52cf3b08e5 minimalist-pcproxy: Fix typo in postinst 2014-06-15 19:52:53 +02:00
Markus Stenberg
9d6f368724 minimalist-pcproxy: Added.
hnetd: Added use of minimalist-pcproxy(/miniupnpd) for PCP, if present.
2014-06-03 00:48:28 +03:00