| Commit message (Collapse) | Author | Age |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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>
|
|
|
|
|
|
| |
This check is for host, not cross compilation.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
|
|
|
|
|
|
|
| |
needed after libyang update
also drop python3-sysrepo as now is standalone
Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>
|
|
|
|
|
|
| |
Ninja was merged to base and therefore we can now use normal cmake.mk
Signed-off-by: Rosen Penev <rosenp@gmail.com>
|
|
|
|
|
|
|
|
| |
Switch to AUTORELEASE for simplicity.
Use Ninja for faster compilation.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
|
|\
| |
| | |
sysrepo: fix plugind option for verbosity
|
| |
| |
| |
| |
| |
| | |
sysrepo-plugind -d -v 0 : -v is the correction option for verbosity
Signed-off-by: Srinivasan Raju <srinir@outlook.com>
|
|/
|
|
|
|
|
|
|
| |
The crude loop I wrote to come up with this changeset:
find -L package/feeds/packages/ -name patches | \
sed 's/patches$/refresh/' | sort | xargs make
Signed-off-by: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com>
|
|
|
|
| |
Signed-off-by: Jakov Smolic <jakov.smolic@sartura.hr>
|
|
|
|
| |
Signed-off-by: Jakov Smolic <jakov.smolic@sartura.hr>
|
|
|
|
|
|
|
|
| |
libnetconf2 to 1.1.24
libyang to 1.0.167
sysrepo to 1.4.58
Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>
|
|
|
|
| |
Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
| |
This removes Python-related build variants, and adds
PYTHON3_PKG_BUILD:=0 and minor build adjustments (where appropriate),
for non-Python packages. There should be no changes to build output.
This also updates some include paths for python3-package.mk and/or
python3-host.mk to be relative to the package Makefile.
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This change:
* Removes building of Lua bindings. These bindings were already removed
upstream[1].
* Fixes building of Python bindings:
* Fix SWIG_DIR path (note that SWIG_VERSION will need to be updated
whenever the swig package is upgraded)
* Fix Python module paths and filenames
* Packages the Python bindings in a new package (python3-sysrepo) and
builds it by default, instead of depending on a config option.
[1]: https://github.com/sysrepo/sysrepo/pull/1429
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
|
|
|
|
|
|
|
| |
Python 2 will be EOL by the end of the year. Switch to Python 3 as there
is already support for it.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
|
| |
Makefile cleanups for consistency between packages.
Placed libsysrepo in Libraries instead of Utilities.
Removed InstallDev as it is implied by CMAKE_INSTALL.
Added .patch at the end of patch files.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
|
|
|
|
|
|
|
|
| |
- Add PKG_LICENSE_FILES
- Refresh patches
- Use better URL
Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
|
|
|
|
|
|
|
|
|
|
| |
By default the buildbot does not build the bindings and thus misses this.
The BUILD_DEPENDS is totally broken. Removing the + sign should fix it.
The SWIG directories are wrong. Fix them.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
|
|
|
|
| |
Signed-off-by: Mislav Novakovic <mislav.novakovic@sartura.hr>
|
|
|
|
| |
Signed-off-by: Mislav Novakovic <mislav.novakovic@sartura.hr>
|
|
|
|
| |
Signed-off-by: Mislav Novakovic <mislav.novakovic@sartura.hr>
|
|
|
|
|
|
| |
Simpler and faster to bump version.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
|
|
|
|
| |
Signed-off-by: Matija Amidzic <matija.amidzic@sartura.hr>
|
|
|
|
|
|
|
|
|
| |
Some of them forgot to update MIRROR_HASH on version change, others
updated with wrong hash value. The new values were generated from
tarballs prepared by the newly introduced github-tarball download
methoded and confirmed consistent with those from sources.openwrt.org
Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
|
|
|
|
| |
Signed-off-by: Matija Amidzic <matija.amidzic@sartura.hr>
|
|
|
|
|
|
|
|
| |
Sysrepo version 0.7.3 features following improvements:
* possibility to uninstall more modules in one command with sysrepoctl
* several bugfixes
Signed-off-by: Mislav Novakovic <mislav.novakovic@sartura.hr>
|
|
|
|
|
|
|
| |
This patche renames the yang files so sysrepoctl does not create
duplicates.
Signed-off-by: Mislav Novakovic <mislav.novakovic@sartura.hr>
|
|
|
|
| |
Signed-off-by: Mislav Novakovic <mislav.novakovic@sartura.hr>
|
|
|
|
|
|
|
|
|
|
| |
Patch includes updates to packages:
netopeer2: update to version 0.4.0
sysrepo: update to 0.7.0
libnetconf2: update to 0.9.15
libyang: update to 0.13.46
Signed-off-by: Mislav Novakovic <mislav.novakovic@sartura.hr>
|
|\
| |
| | |
packages: cleanup Makefile variables
|
| |
| |
| |
| |
| |
| | |
Standard assignment is immediate expansion without any extraneous spacing, RFC822 compliant email addresses and consistent section assignments
Signed-off-by: Stephen Walker <stephendwalker+github@gmail.com>
|
| |
| |
| |
| |
| |
| |
| | |
Script priority adjusted.
Custom memory management turned off to save some memory on low-end device.
Signed-off-by: Antonio Paunovic <antonio.paunovic@sartura.hr>
|
|/
|
|
| |
Signed-off-by: Antonio Paunovic <antonio.paunovic@sartura.hr>
|
|\
| |
| | |
sysrepo: modify copy of .so files
|
| |
| |
| |
| | |
Signed-off-by: Antonio Paunovic <antonio.paunovic@sartura.hr>
|
| |
| |
| |
| | |
Signed-off-by: Antonio Paunovic <antonio.paunovic@sartura.hr>
|
|/
|
|
| |
Signed-off-by: Antonio Paunovic <antonio.paunovic@sartura.hr>
|
|
|
|
| |
Signed-off-by: Mislav Novakovic <mislav.novakovic@sartura.hr>
|
|
|
|
| |
Signed-off-by: Mislav Novakovic <mislav.novakovic@sartura.hr>
|
|
|
|
| |
Signed-off-by: Mislav Novakovic <mislav.novakovic@sartura.hr>
|
|
Signed-off-by: Mislav Novakovic <mislav.novakovic@sartura.hr>
|