| Commit message (Collapse) | Author | Age |
|\
| |
| | |
fossil: fix source URL
|
| |
| |
| |
| | |
Signed-off-by: Alexander Ryzhov <openwrt@ryzhov-al.ru>
|
|\ \
| | |
| | | |
i2c-tools: Added python3-smbus package
|
| | |
| | |
| | |
| | |
| | |
| | | |
This only replicates the existing python-smbus package into Python 3
Signed-off-by: Paulo Costa <me@paulo.costa.nom.br>
|
|\ \ \
| | | |
| | | | |
tiff-utils: move to Image Manipulation submenu
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Part of a wider housekeeping effort on the packages repository.
Signed-off-by: Alberto Bursi <alberto.bursi@outlook.it>
|
|\ \ \ \
| | | | |
| | | | | |
jpeg-tools: move to Image Manipulation submenu
|
| |/ / /
| | | |
| | | |
| | | |
| | | | |
Part of a wider housekeeping effort on the packages repository.
Signed-off-by: Alberto Bursi <alberto.bursi@outlook.it>
|
|\ \ \ \
| | | | |
| | | | | |
strongswan: Include musl.h after _GNU_SOURCE define
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
musl.h was included before _GNU_SOURCE in 101-musl-fixes patch
leading to compilation issue on gcc (RTLD_DEFAULT not being
defined in dlfcn.h due to __USE_GNU not being set).
As described in the feature test macro man page feature macro
can be defined in the source code but need to be defined before
including any headers.
Signed-off-by: Hans Dedecker <dedeckeh@gmail.com>
|
|\ \ \ \ \
| |_|/ / /
|/| | | | |
debootstrap: add xz dependency
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
required to extract some packages as stated in issue https://github.com/openwrt/packages/issues/3365
Signed-off-by: Alberto Bursi <alberto.bursi@outlook.it>
|
|\ \ \ \ \
| | | | | |
| | | | | | |
zoneinfo: capitalize submenu name (zoneinfo -> Zoneinfo)
|
|/ / / / /
| | | | |
| | | | |
| | | | |
| | | | | |
Part of a wider housekeeping effort on the packages repository.
Signed-off-by: Alberto Bursi <alberto.bursi@outlook.it>
|
|\ \ \ \ \
| | | | | |
| | | | | | |
llvm2: capitalized submenu name (disc -> Disc)
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Part of a wider housekeeping effort on the packages repository.
Signed-off-by: Alberto Bursi <alberto.bursi@outlook.it>
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
hdparm: capitalized submenu name (disc -> Disc)
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Part of a wider housekeeping effort on the packages repository.
Signed-off-by: Alberto Bursi <alberto.bursi@outlook.it>
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
hd-idle: capitalized submenu name (disc -> Disc)
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Part of a wider housekeeping effort on the packages repository.
Signed-off-by: Alberto Bursi <alberto.bursi@outlook.it>
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
gdisk/sgdisk/cgdisk: capitalized submenu name (disc -> Disc)
|
|/ / / / /
| | | | |
| | | | |
| | | | |
| | | | | |
Part of a wider housekeeping effort on the packages repository.
Signed-off-by: Alberto Bursi <alberto.bursi@outlook.it>
|
| | | | |
| | | | |
| | | | |
| | | | | |
Signed-off-by: Noah Meyerhans <frodo@morgul.net>
|
|\ \ \ \ \
| | | | | |
| | | | | | |
python, python3: use STAGING_DIR_HOSTPKG
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Currently, the python3-package.mk framework relies on HOST_BUILD_PREFIX to
refer to the $(STAGING_DIR)/host directory but using the HOST_BUILD_PREFIX
variable requires the use of include/host-build.mk which in turn includes
python3-package.mk, leading to target redefinition errors.
In order to provide a global, uniform way to refer to the host staging
directory, LEDE introduced a new variable STAGING_DIR_HOSTPKG which points
to $(STAGING_DIR)/host for now with the purpose of eventually being able to
relocate that directory in the future.
This commit changes python3-package.mk to ...
- stop including include/host-build.mk (revert of #3423)
- replace usages of $(HOST_BUILD_PREFIX) with $(STAGING_DIR_HOSTPKG)
- warn and fallback to $(STAGING_DIR)/host if STAGING_DIR_HOSTPKG is
unavailable
The fallback code will ensure that the python host build infrastructure
continues to work properly on older OpenWrt and LEDE versions until the
STAGING_DIR_HOSTPKG is fully settled in and can be removed some time
in the future.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
|
|/ / / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Currently, the python-host.mk framework relies on HOST_BUILD_PREFIX to
refer to the $(STAGING_DIR)/host directory but using the HOST_BUILD_PREFIX
variable requires the use of include/host-build.mk which in turn includes
python-host.mk, leading to target redefinition errors.
In order to provide a global, uniform way to refer to the host staging
directory, LEDE introduced a new variable STAGING_DIR_HOSTPKG which points
to $(STAGING_DIR)/host for now with the purpose of eventually being able to
relocate that directory in the future.
This commit changes python-host.mk to ...
- stop including include/host-build.mk (revert of #3423)
- replace usages of $(HOST_BUILD_PREFIX) with $(STAGING_DIR_HOSTPKG)
- warn and fallback to $(STAGING_DIR)/host if STAGING_DIR_HOSTPKG is
unavailable
The fallback code will ensure that the python host build infrastructure
continues to work properly on older OpenWrt and LEDE versions until the
STAGING_DIR_HOSTPKG is fully settled in and can be removed some time
in the future.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
|
|\ \ \ \ \
| | | | | |
| | | | | | |
ssmtp: Increase PKG_RELEASE > BB value
|
|/ / / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
It's a generally good packaging principle that the packages in a distro release n+1 have a release value that is at least the same if not greater than the value in release n.
BB has a PKG_RELEASE of 4 so upping to 5 is a good measure.
Signed-off-by: Brian J. Murrell <brian@interlinx.bc.ca>
|
|\ \ \ \ \
| |_|_|_|/
|/| | | | |
rng-tools: uci-fy, default to doing nothing
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Enabling the default configuration will pipe /dev/urandom back into
/dev/random ala the current package behavior. Because this amounts to
disabling the in-kernel entropy estimation, default disabled.
While here, uci-paramaterize the high watermark.
While here, add a pre-command hook for real RNGs that need 'stty raw'
or other such hooks. (e.g. the TrueRNG devices)
As offered in github openwrt/packages#3422, take over maintainership.
See github openwrt/packages#3142.
Signed-off-by: Nathaniel Wesley Filardo <nwfilardo@gmail.com>
|
|\ \ \ \ \
| | | | | |
| | | | | | |
strongswan: update to 5.5.1, preserve /etc/strongswan.d, take over maintainership
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
|
|/ / / / /
| | | | |
| | | | |
| | | | | |
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
|
|\ \ \ \ \
| | | | | |
| | | | | | |
python,python3: include host-build.mk in python-host.mk & python3-package.mk
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
luci-app-lxc: Minor polishing
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Add more dependencies needed by download template and replace all, not just
first occurence of : or _ in template name with space in webui.
Signed-off-by: Michal Hrušecký <Michal.Hrusecky@nic.cz>
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
python-urllib3: update to version 1.18.1
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | | |
Signed-off-by: Gergely Kiss <mail.gery@gmail.com>
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
simplejson: update to version 3.10.0
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | | |
Signed-off-by: Gergely Kiss <mail.gery@gmail.com>
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
vala: update to version 0.34.2
|
|/ / / / /
| | | | |
| | | | |
| | | | | |
Signed-off-by: Gergely Kiss <mail.gery@gmail.com>
|
|\ \ \ \ \
| | | | | |
| | | | | | |
lua-openssl: Fix makefile
|
|/ / / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
stoken: move to Encryption submenu
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Part of a wider housekeeping effort on the packages repository.
Signed-off-by: Alberto Bursi <alberto.bursi@outlook.it>
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
cryptsetup: move to Encryption submenu
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Part of a wider housekeeping effort on the packages repository.
Signed-off-by: Alberto Bursi <alberto.bursi@outlook.it>
|