aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* python3: Minor edits for python3-package.mkJeffery To2020-04-19
| | | | | | | | * Remove PYTHON3_BIN_DIR, it isn't used anywhere in the repo * Rephrase *-src package description * Reduce Py3Package/$(1)/install indentation Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* python3: Add canned recipe to invoke filespec processingJeffery To2020-04-19
| | | | | | | | | | | | This extracts filespec export and processing into Py3Package/ProcessFilespec. This also allows the filespec variable to be explicitly set to an empty value, to bypass filespec processing. (The default filespec is also available as Py3Package/filespec/Default to be explicitly assigned to the filespec variable.) Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* python3: Move functionality into python3-package.mkJeffery To2020-04-19
| | | | | | | | This moves functionality from python-package-install.sh into python3-package.mk, so that they can be reused separate from filespec processing. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* python3: Reorder recipes in python3-package.mkJeffery To2020-04-19
| | | | | | | | | Group Python3/* recipes together, group Py3Package and Py3Build together. This also adds headings and whitespace to separate major sections. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* python3: Rename canned recipes in python3-package.mkJeffery To2020-04-19
| | | | | | | This renames "internal" recipes to use the Python3/ prefix and clarifies the names (RunTarget to Run, Mod to ModSetup, Shebang to FixShebang). Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* python3: Rename canned recipes in python3-host.mkJeffery To2020-04-19
| | | | | | | | This changes the recipe name prefix from Build/Compile/HostPy3 to HostPython3, and clarifies some of the names (RunHost to Run, Mod to ModSetup). Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* python3: Remove HostPython3 in python3-host.mkJeffery To2020-04-19
| | | | | | | | | | | | | | | HostPython3 only adds a few environment variables before running host Python. It has only two users, Build/Compile/HostPy3RunHost and Build/Compile/HostPy3RunTarget. HostPython3 also accesses $(PYTHON3PATH), even though python3-host.mk does not include python3-package.mk, where the variable is defined. This removes HostPython3 and has its two users run host Python directly. This also combines the environment variables of HostPython3 and the two users into HOST_PYTHON3_VARS and PYTHON3_VARS. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* python3: Remove include guard for python3-host.mkJeffery To2020-04-17
| | | | | | | Since it only defines variables and canned recipes, it is safe to include python3-host.mk more than once. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* dawn: feed hostapd with nr reports and improve 802.11k handlingNick Hainke2020-04-17
| | | | | | | | | | | If set_hostapd_nr config flag is set, dawn will insert the nr reports to allow the hostapd to answer to nr requests from clients. Improve the synchronization of rcpi and rsni in the network. Further, clients with bad 802.11k were sending beacon reports with bssid 00:00:00:00:00:00. Catch those corner cases. Signed-off-by: Nick Hainke <vincent@systemli.org>
* Merge pull request #11869 from br101/bluez-5.54Hannu Nyman2020-04-17
|\ | | | | bluez: Update to version 5.54
| * bluez: Update to version 5.54Bruno Randolf2020-04-17
| | | | | | | | Signed-off-by: Bruno Randolf <br1@einfach.org>
* | Merge pull request #11860 from commodo/squashfs-tools-4-4Hannu Nyman2020-04-17
|\ \ | | | | | | squashfs-tools: bump to version 4.4
| * | squashfs-tools: bump to version 4.4Alexandru Ardelean2020-04-17
| |/ | | | | | | | | | | | | | | | | | | | | | | | | All patches are not needed anymore. squashfs-tools has implemented them in one way or another. Converted to download release tarballs. This should work better to get notified of a newer release. Also adds support for ZSTD compression: https://facebook.github.io/zstd/ Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* | Merge pull request #11862 from br101/websocketpp-boostRosen Penev2020-04-17
|\ \ | |/ |/| websocketpp: Fix compile with Boost 1.70+
| * websocketpp: Fix compile with Boost 1.70+Bruno Randolf2020-04-17
| | | | | | | | | | | | | | Fix compilation for newer Boost versions, same as in the websocketpp 'develop' branch: https://github.com/zaphoyd/websocketpp/pull/814 Signed-off-by: Bruno Randolf <br1@einfach.org>
* | adblock: fix gawk incompatibilityDirk Brenken2020-04-17
| | | | | | | | | | * fix gawk incompatibility in reporting Signed-off-by: Dirk Brenken <dev@brenken.org>
* | Merge pull request #10578 from stintel/flashromRosen Penev2020-04-16
|\ \ | | | | | | flashrom: bump to 1.2
| * | flashrom: bump to 1.2Stijn Tintel2020-04-16
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add new PCI and USB drivers to flashrom.mk to disable them in other build variant.s Fix DefineConfig calls to use new config symbols, and have it only append NEED_FEATURE=yes to MAKE_FLAGS. Appending NEED_FEATURE=no would still enable the feature because upstream compares against an empty string instead of comparing to yes. Drop libusb-compat dependency as all drivers use libusb-1 now. Remove upstreamed patch 010-add-arc.patch. Rework 0001-fix_internal_bitbang.patch, give it a correct prefix and more descriptive name. Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
* | Merge pull request #11861 from PolynomialDivision/feature/add_v_kEtienne Champetier2020-04-16
|\ \ | |/ |/| dawn: add 802.11v, prepare 802.11k and debug fix
| * dawn: add 802.11v, prepare 802.11k and debug fixNick Hainke2020-04-16
| | | | | | | | | | | | | | | | | | | | | | Add 802.11v bss transition. Exchange nr-reports. Implement 802.1k hearing map. Future release will use hearing map for load balancing decisions. Remove debug output from stderr. Signed-off-by: Nick Hainke <vincent@systemli.org>
* | Merge pull request #11849 from neheb/re2Rosen Penev2020-04-15
|\ \ | | | | | | re2: update to 2020-04-01
| * | re2: update to 2020-04-01Rosen Penev2020-04-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Massive cleanup of Makefile. Remove inactive maintainer. Remove completely unused host build. Shorten title so that it shows under menuconfig. Remove pointless static/shared choice. Add C++17 patch as libcxx seems to need it with this package. Add ABI_VERSION. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | Merge pull request #11841 from PolynomialDivision/feature/daw_fix_rebootDirk Brenken2020-04-15
|\ \ \ | | |/ | |/| dawn: fix reboot
| * | dawn: fix rebootNick Hainke2020-04-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | DAWN has a race condition with umdns that prevents dawn from surviving a reboot. Increase procd start and stop of dawn to 81. Further, network is sometimes not ready. Add utimer to check if socket binds correctly. Signed-off-by: Nick Hainke <vincent@systemli.org>
* | | Merge pull request #11851 from luizluca/ruby-2.7.1Hannu Nyman2020-04-15
|\ \ \ | | | | | | | | ruby: update to 2.7.1
| * | | ruby: update to 2.7.1Luiz Angelo Daros de Luca2020-04-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | New subpackages (reflect of ongoing ruby gemification) - ruby-benchmark (from ruby-debuglib) - ruby-delegate (from ruby-misc) - ruby-getoptlong (from ruby-misc) - ruby-net-pop (from ruby-net) - ruby-net-imap (from ruby-net) - ruby-observer (from ruby-patterns, now gone) - ruby-open3 (from ruby-misc) - ruby-readline-ext (was ruby-readline, while ruby-readline now selects either ruby-readline-ext or ruby-reline) - ruby-reline (alternative to ruby-readline-ext as pure ruby) - ruby-singleton (from ruby-patterns, now gone) - ruby-timeout (from ruby-multithread) Dropped subpackages: - ruby-cmath (gone in 2.7.0) - ruby-e2mmap (gone in 2.7.0) - ruby-patterns (splitted into ruby-observer, ruby-singleton) - ruby-scanf (gone in 2.7.0) - ruby-shell (gone in 2.7.0) - ruby-sync (gone in 2.7.0) - ruby-thwait (gone in 2.7.0) Ruby 2.7.0 also dropped profile.rb and profiler.rb (they were in ruby-debuglib) Patches changes: - Dropped patch 001_fix_isnan_isinf_finite_with_uclibc.patch (now in release) - Added 100-musl.patch, fixing mainly coroutine implementation selection Helper scripts changes: - ruby_missingfiles: do not ignore ruby-dev files - ruby_find_pkgsdeps: better detect circular dependencies Ruby 2.7.1 fixes these security issues: * CVE-2020-10663: Unsafe Object Creation Vulnerability in JSON (Additional fix) * CVE-2020-10933: Heap exposure vulnerability in the socket library Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
* | | | mac-telnet: fix mirror hashJo-Philipp Wich2020-04-15
| | | | | | | | | | | | | | | | | | | | Fixes: 8399121e6 ("mac-telnet: install uci as config file") Signed-off-by: Jo-Philipp Wich <jo@mein.io>
* | | | mac-telnet: mark uci as conffileJo-Philipp Wich2020-04-15
| | | | | | | | | | | | | | | | | | | | Fixes: 8399121e6 ("mac-telnet: install uci as config file") Signed-off-by: Jo-Philipp Wich <jo@mein.io>
* | | | mac-telnet: install uci as config fileJo-Philipp Wich2020-04-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Also mark it as configuration file while being at it. Fixes: #11846 Signed-off-by: Jo-Philipp Wich <jo@mein.io>
* | | | Merge pull request #11848 from neheb/quoRosen Penev2020-04-14
|\ \ \ \ | |_|_|/ |/| | | quote: disable a bunch of options
| * | | quote: disable a bunch of optionsRosen Penev2020-04-14
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | libwrap is fairly useless. It's also legacy and should not be used/ dbus is a big dependency. It's fairly useless in the OpenWrt context. I don't know how useful netlink is. Disabling BSD behavior results in a slightly smaller size. Disable LDAP. No size difference but I have a feeling it pulls in another dependency... Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | Merge pull request #11838 from VolunteerComputingHelp/masterHannu Nyman2020-04-14
|\ \ \ | | | | | | | | boinc: new upstream version, adjustments
| * | | boinc: new upstream version, adjustmentsChristian Dreihsig2020-04-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * new upstream version 7.16.6 * fixing platform identifier for openwrt x86 (boinc issue https://github.com/BOINC/boinc/issues/3595) * protected configuration from update Signed-off-by: Christian Dreihsig <christian.dreihsig@t-online.de>
* | | | Merge pull request #11844 from ja-pa/python-pyparsing-updateHannu Nyman2020-04-14
|\ \ \ \ | |_|_|/ |/| | | python-pyparsing: update to version 2.4.7
| * | | python-pyparsing: update to version 2.4.7Jan Pavlinec2020-04-14
|/ / / | | | | | | | | | Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
* | | acme: depends on wget-sslYousong Zhou2020-04-14
| | | | | | | | | | | | Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
* | | wget: make the ssl variant provides wget-sslYousong Zhou2020-04-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is to address the need for specifying dependency on a wget implementation with ssl support. Now we have a game of names for opkg 1. uclient-fetch: minimal version by openwrt project 2. wget-nossl: gnu wget w/o ssl support 3. wget-ssl: for the moment since this commit, gnu wget w/ ssl support 4. wget: uclient-fetch, wget-nossl, or wget-ssl 5. gnu-wget: wget-nossl or wget-ssl By the time we provide some dummy package like uclient-fetch-ssl and make it also provide wget-ssl, I guess by then we will also need gnu-wget-ssl... Ref: https://github.com/openwrt/packages/issues/11534 Ref: https://github.com/openwrt/packages/pull/9941 Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
* | | libupnp: update to 1.8.7Rosen Penev2020-04-13
| | | | | | | | | | | | | | | | | | remove upstreamed patch. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | Merge pull request #11832 from neheb/v45lRosen Penev2020-04-13
|\ \ \ | | | | | | | | libv4l: update to 1.16.8
| * | | libv4l: update to 1.16.8Rosen Penev2020-04-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed license information. Update argp dependency to be for non glibc. Added PKG_BUILD_PARALLEL for faster compilation. Added --as-needed linker flag for slightly smaller size. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | Merge pull request #11837 from tru7/libfmtHannu Nyman2020-04-13
|\ \ \ \ | | | | | | | | | | libfmt: bump to version 6.2.0
| * | | | libfmt: bump to version 6.2.0Othmar Truniger2020-04-13
| | |_|/ | |/| | | | | | | | | | Signed-off-by: Othmar Truniger <github@truniger.ch>
* | | | adblock: fix another reporting bugDirk Brenken2020-04-13
| | | | | | | | | | | | | | | | | | | | | | | | * add a final sort step, this fixes dns reporting with multiple pcap files as input Signed-off-by: Dirk Brenken <dev@brenken.org>
* | | | Merge pull request #11817 from cotequeiroz/python-srcJosef Schlehofer2020-04-12
|\ \ \ \ | | | | | | | | | | python3: hide -src package until main pkg selected
| * | | | python3: hide -src package until main pkg selectedEneas U de Queiroz2020-04-10
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This adds a 'Package/<pkg>-src/config' definition with a 'depends on <pkg>' line, which will hide <pkg>-src unless <pkg> is selected. This makes the long list of python packages a bit shorter, and also indents the src package: <M> python3-base................................ Python 3.8 interpreter < > python3-base-src................. Python 3.8 interpreter (sources) Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
* | | | Merge pull request #11780 from WeekendSoftware/family-dnsRosen Penev2020-04-11
|\ \ \ \ | |_|/ / |/| | | family-dns: add new package
| * | | family-dns: add new packageGregory L. Dietsche2020-04-11
|/ / / | | | | | | | | | Signed-off-by: Gregory L. Dietsche <gregory.dietsche@cuw.edu>
* | | ntpclient: fixup time patchRosen Penev2020-04-11
| | | | | | | | | | | | | | | | | | Added missing header and added casts. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | nlbwmon: update to latest Git HEADJo-Philipp Wich2020-04-11
| | | | | | | | | | | | | | | | | | 34a1887 nfnetlink: disable sequence number checking Signed-off-by: Jo-Philipp Wich <jo@mein.io>
* | | adblock: update 4.0.4Dirk Brenken2020-04-11
| |/ |/| | | | | | | | | | | * add 'ca-bundle' dependency * fix a sort bug in report engine * fix potential bugs in the f_extconf function Signed-off-by: Dirk Brenken <dev@brenken.org>