aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
| * | | | | | | mariadb: add extra charsets to server baseSebastian Kemper2018-12-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There is little sense in keeping these charsets in an extra package. The included sets are of the single byte character set variety. They only amount to a few kbytes. Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
| * | | | | | | mariadb: improve packaging and configurationSebastian Kemper2018-12-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | At present there are some flaws related to configuration, also related to the packaging of mariadb. For starters there are complaints that the configuration is too static. To address this a new configuration layout is introduced. The primary configuration file (my.cnf) is changed so that it now only includes further configuration files in the directory /etc/mysql/conf.d. More default configuration files are added for the server and the client. This is the new default configuration. With these changes it's possible for the user to select if they want to change the default configuration (in conf.d/*.cnf) or if they want to drop their own files into conf.d instead. If the user .cnf files are read after the default .cnf files (files are included in alphabetical order), they will overwrite the settings from the default configuration. The other flaw is that the my.cnf file is included in mariadb-server. But that doesn't really fit the requirements, as the client also uses the configuration file(s). To accomodate this a new package mariadb-common is added. It installs the shared my.cnf file. The remaining changes add base packages, both for the server and the client. These are meant as foundation for the packages containing the respective binaries. In summary they will install the configuration, small miscellaneous files (SQL scripts etc.) and the user "mariadb". That means that everything is ready for the binaries, like mysql and mysqld. If there is not enough space left on flash memory, the user can just drop the binaries on a pendrive, link them to /usr/bin and get started. The ideas and configuration files were copied from Debian. Some amendments were made. Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
| * | | | | | | mariadb: rename share and plugin directoriesSebastian Kemper2018-12-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Rename them from mysql to mariadb. Use variables where possible (also for /etc/mysql). Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
| * | | | | | | mariadb: refresh pluginsSebastian Kemper2018-12-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit deals with changes related to plugins and how they're built or disabled. Currently a lot of plugins are packaged which are merely for tests or plain examples. Other distros do not bundle these, hence this commit does away with them. A few new plugins are added related to PAM and Kerberos (auth_gssapi, auth_gssapi_client and auth_pam). The BuildPlugin template is refactored to also allow building of library plugins (needed for auth_gssapi_client). The template is also cleaned up - some extraneous dollar signs are removed and the install function is now defined outside the template. Unwanted plugins/engines are now turned off efficiently (without using cmake variables) by blanking CMakeLists.txt files in the associated folders. The idea was lifted from Gentoo. ha_sequence is now built into the server. This is an upstream preference. The plugin is about 30 kbytes in size, so there is no harm adding it into the server, which weighs in at about 15 Mbytes anyway. Last but not least the auth_socket plugin is now also built into the server. This allows the local root user to login to the database without a password being set. This makes maintenance easier without being detrimental to security. The idea was lifted from Debian. Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
| * | | | | | | mariadb: use system libedit for mysqlSebastian Kemper2018-12-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | libedit changed its interface a while back. mariadb currently does not recognize this interface and instead uses a static old readline version. It does not link in the system readline due to licence incompatibility. This commit adds a patch that enables mariadb to detect and use the system libedit. The patch was sent upstream already ([1]). [1] https://github.com/MariaDB/server/pull/1001 Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
* | | | | | | | CircleCI: Update SDK / gcc version bumpTed Hess2018-12-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Ted Hess <thess@kitschensync.net>
* | | | | | | | CircleCI: Fix Debian grep compatibilityTed Hess2018-12-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Ted Hess <thess@kitschensync.net>
* | | | | | | | CircleCI: Allow '+' in package name subject checkTed Hess2018-12-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Ted Hess <thess@kitschensync.net>
* | | | | | | | Merge pull request #7665 from sotux/master-aria2Hannu Nyman2018-12-15
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | aria2: fix some typo and init script mistakes
| * | | | | | | | aria2: fix some typoJames Qian2018-12-15
| | |_|_|_|/ / / | |/| | | | | | | | | | | | | | | | | | | | | | Signed-off-by: James Qian <sotux82@gmail.com>
* | | | | | | | Merge pull request #7672 from cotequeiroz/gstreamer1_no-dwTed Hess2018-12-15
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | gstreamer1: build without libdw
| * | | | | | | | gstreamer1: build without libdwEneas U de Queiroz2018-12-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Avoids dependencies with libdw and libelf. Signed-off-by: Eneas U de Queiroz <cote2004-github@yahoo.com>
* | | | | | | | | Merge pull request #7671 from neheb/sigHannu Nyman2018-12-15
|\ \ \ \ \ \ \ \ \ | |/ / / / / / / / |/| | | | | | | | libsigc++: Update to 2.10.1
| * | | | | | | | libsigcxx: Update to 2.10.1Rosen Penev2018-12-14
| | |/ / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Size goes from 15613 to 8427 bytes. 2.10.1 is the latest version. Version 2.99.x is the unstable series. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* / | | | | | | libv4l: Force build without libudevTed Hess2018-12-14
|/ / / / / / / | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Ted Hess <thess@kitschensync.net>
* | | | | | | Merge pull request #7564 from neheb/nailHannu Nyman2018-12-14
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | nail: Fix compilation without deprecated OpenSSL APIs
| * | | | | | | nail: Fix compilation without deprecated OpenSSL APIsRosen Penev2018-12-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | | Merge pull request #7612 from cotequeiroz/snort_includesHannu Nyman2018-12-14
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | snort: fix pcap include directory
| * | | | | | | | snort: fix pcap include directoryEneas U de Queiroz2018-12-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Build was overriding openwrt pcap include directory. Signed-off-by: Eneas U de Queiroz <cote2004-github@yahoo.com>
* | | | | | | | | Merge pull request #7617 from neheb/sipHannu Nyman2018-12-14
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | golang-github-dchest-siphash: Switch to versioned releases
| * | | | | | | | | golang-github-dchest-siphash: Switch to versioned releasesRosen Penev2018-12-08
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | | | | Merge pull request #7666 from zhaojh329/rttyHannu Nyman2018-12-14
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | rtty: update to 6.4.0
| * | | | | | | | | | rtty: update to 6.4.0Jianhui Zhao2018-12-14
| | |_|_|/ / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Jianhui Zhao <jianhuizhao329@gmail.com>
* / | | | | | | | | libuwsc: update to 3.1.2Jianhui Zhao2018-12-14
|/ / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Jianhui Zhao <jianhuizhao329@gmail.com>
* | | | | | | | | Merge pull request #7629 from cotequeiroz/lcdgrilo_no-checkTed Hess2018-12-13
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | lcdgrilo: remove check dependency
| * | | | | | | | | grilo: copy vapi files to versioned vala dirEneas U de Queiroz2018-12-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The version is obtained via `valac --api-version` Signed-off-by: Eneas U de Queiroz <cote2004-github@yahoo.com>
| * | | | | | | | | libgee: copy vapi files to versioned vala dirEneas U de Queiroz2018-12-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The version is obtained via `valac --api-version` Signed-off-by: Eneas U de Queiroz <cote2004-github@yahoo.com>
| * | | | | | | | | lcdgrilo: remove check dependencyEneas U de Queiroz2018-12-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Eneas U de Queiroz <cote2004-github@yahoo.com>
* | | | | | | | | | Merge pull request #7589 from cotequeiroz/opencv_no-gtkHannu Nyman2018-12-13
|\ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / |/| | | | | | | | | opencv: remove gtk dependency
| * | | | | | | | | opencv: remove gtk dependencyEneas U de Queiroz2018-12-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Eneas U de Queiroz <cote2004-github@yahoo.com>
* | | | | | | | | | Merge pull request #7531 from neheb/loudHannu Nyman2018-12-13
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | loudmouth: Disable debug and fix no deprecated API compilation
| * | | | | | | | | | loudmouth: Disable debug and fix no deprecated API compilationRosen Penev2018-11-27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | | | | | Merge pull request #7651 from gladiac1337/feature-haproxy-v1.8.15Hannu Nyman2018-12-13
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | haproxy: Update HAProxy to v1.8.15
| * | | | | | | | | | | haproxy: Update HAProxy to v1.8.15Christian Lachner2018-12-13
| | |_|_|_|_|_|/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Update haproxy download URL and hash - Removed all obsolete patches Signed-off-by: Christian Lachner <gladiac@gmail.com>
* | | | | | | | | | | Merge pull request #7648 from EricLuehrsen/unbound_183Hannu Nyman2018-12-13
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | unbound: update to 1.8.3
| * | | | | | | | | | | unbound: update to 1.8.3Eric Luehrsen2018-12-12
| |/ / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Eric Luehrsen <ericluehrsen@gmail.com>
* | | | | | | | | | | Merge pull request #7635 from dhewg/pull/prometheus-statsd-exporterTed Hess2018-12-13
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | prometheus-statsd-exporter: add new package
| * | | | | | | | | | | prometheus-statsd-exporter: add new packageAndre Heider2018-12-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | statsd_exporter receives StatsD-style metrics and exports them as Prometheus metrics. Signed-off-by: Andre Heider <a.heider@gmail.com>
* | | | | | | | | | | | Merge pull request #7642 from cotequeiroz/grilo-plugins_no-xml-parserTed Hess2018-12-13
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | grilo-plugins: remove XML::Parser build dependency
| * | | | | | | | | | | | grilo-plugins: remove XML::Parser build dependencyEneas U de Queiroz2018-12-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | gnome-common.m4 and gnome-compiler-flags.m4 were taken from version 3.18.0, and match current master branch. Disable building help and test directories. Signed-off-by: Eneas U de Queiroz <cote2004-github@yahoo.com>
* | | | | | | | | | | | | Merge pull request #7627 from cotequeiroz/libgee_valacTed Hess2018-12-13
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | grilo: update vapi files to 0.34
| * | | | | | | | | | | | | grilo: update vapi files, copy to unversioned dirEneas U de Queiroz2018-12-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updates vapigen-generated vapi files to vala-0.34. Files are now copied to $(STAGING_DIR_HOSTPKG)/share/vala/vapi, without the vala version being hardcoded. Removed copyright line, and redundant PKG_BUILD_DEPENDS and TARGET_LDFLAGS. Signed-off-by: Eneas U de Queiroz <cote2004-github@yahoo.com>
* | | | | | | | | | | | | | Merge pull request #7626 from cotequeiroz/grilo_valacTed Hess2018-12-13
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|/ / / / / / / / / / |/| | | | | | | | | | | | | libgee: copy vapi files to unversioned vala dir
| * | | | | | | | | | | | | libgee: use unversioned vala dir, misc fixesEneas U de Queiroz2018-12-12
| |/ / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Copy vapi files to unversioned vala dir. Added vala/host to PKG_BUILD_DEPENDS. Removed TARGET_LDFLAGS Removed copyright lines Signed-off-by: Eneas U de Queiroz <cote2004-github@yahoo.com>
* | | | | | | | | | | | | intltool: Add patch to fix regular expressions and avoid warnings in perl ↵Ted Hess2018-12-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 5.22 and later. Signed-off-by: Ted Hess <thess@kitschensync.net>
* | | | | | | | | | | | | Merge pull request #7645 from WeekendSoftware/safe-searchHannu Nyman2018-12-12
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | net/safe-search: Fix double installation bug
| * | | | | | | | | | | | | net/safe-search: Fix double installation bugGregory L. Dietsche2018-12-12
|/ / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If safe search is built directly into an image, the /etc/config/dhcp file will have multiple entries added to it after using sysupgrade for the nth time (2 or more sysupgrade cycles). In /etc/config/dhcp, this bug creates duplicate entries like this: config dnsmasq list addnhosts '/etc/safe-search/enabled' list addnhosts '/etc/safe-search/enabled' This patch ensures that safe search only registers itself one time. Signed-off-by: Gregory L. Dietsche <gregory.dietsche@cuw.edu>
* | | | | | | | | | | | | Merge pull request #7644 from cotequeiroz/unixodbc_save-in-tmpHannu Nyman2018-12-12
|\ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / / / / / |/| | | | | | | | | | | | unixodbc: save unixodbc_conf.h for host build
| * | | | | | | | | | | | unixodbc: save unixodbc_conf.h for host buildEneas U de Queiroz2018-12-12
| | |/ / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Save a copy of unixodbc_conf.h in STAGING_DIR to be used by host build. Use STAGING_DIR/tmp/unixodbc instead of include. Signed-off-by: Eneas U de Queiroz <cote2004-github@yahoo.com>
* | | | | | | | | | | | Merge pull request #7482 from sotux/masterTed Hess2018-12-11
|\ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / |/| | | | | | | | | | | nginx: unified indentation character and add additional configure directory