Commit graph

1835 commits

Author SHA1 Message Date
Hannu Nyman
6980c438cf
Merge pull request #7707 from neheb/patch-12
prometheus: Update to 2.6.0
2018-12-21 17:39:14 +02:00
Philip Prindeville
6d7832e10a acpica-unix: update to 20181213
Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
2018-12-20 16:35:30 -07:00
Rosen Penev
e8b7209830 prometheus: Update to 2.6.0
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2018-12-19 12:38:23 -08:00
Rosen Penev
d3175470a2
logrotate: Update to 3.15.0
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2018-12-17 15:13:59 -08:00
Hannu Nyman
dee8e9e745
Merge pull request #7690 from neheb/soft
gammu: Fix build under 64-bit targets.
2018-12-17 17:07:38 +02:00
Yousong Zhou
36f2832f9d qemu: bump to version 3.1.0
Changelog can be found at https://wiki.qemu.org/ChangeLog/3.1

Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
2018-12-17 04:11:10 +00:00
Rosen Penev
bf42426e4a gammu: Fix build under 64-bit targets.
There's a faulty suffix variable that points to the wrong place.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2018-12-16 10:31:02 -08:00
Rene Treffer
c751af8616 prometheus-node-exporter-lua: add lantiq dsl modem collector
a.heider: Address PR comments and clean up.

Signed-off-by: Rene Treffer <treffer+github@measite.de>
Signed-off-by: Andre Heider <a.heider@gmail.com>
2018-12-16 19:17:00 +01:00
Sebastian Kemper
2de1c6c05f mariadb: update init script to use uci
Does away with /etc/default/mysqld, introduces uci configuration
instead. The init script receives some further brushing up, like a
function (copied from Debian) to get mysqld configuration parameters
easily and quickly.

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2018-12-15 17:17:24 +01:00
Sebastian Kemper
556ebfec48 mariadb: small miscellaneous enhancements
- correct spelling in comments ("mariadb" to "MariaDB")
- remove mysqld_safe and mysqld_safe_helper (not used)
- add some extra cmake configuration defines
- remove cmake configuration defines that don't exist in the source
- don't disable address sanitizer (ASAN) support

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2018-12-15 17:11:28 +01:00
Sebastian Kemper
6152c9a018 mariadb: add galera support
Add galera support by installing the configuration and including the
wsrep scripts in mariadb-server-extra.

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2018-12-15 16:02:13 +01:00
Sebastian Kemper
9b8a68cc7b mariadb: add extra charsets to server base
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>
2018-12-15 15:57:01 +01:00
Sebastian Kemper
cc0a40231d mariadb: improve packaging and configuration
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>
2018-12-15 15:55:56 +01:00
Sebastian Kemper
cacd86009b mariadb: rename share and plugin directories
Rename them from mysql to mariadb. Use variables where possible (also
for /etc/mysql).

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2018-12-15 15:53:38 +01:00
Sebastian Kemper
c0dba8cfa6 mariadb: refresh plugins
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>
2018-12-15 15:50:18 +01:00
Sebastian Kemper
a117d027bc mariadb: use system libedit for mysql
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>
2018-12-15 15:48:24 +01:00
Jianhui Zhao
30e912c598 rtty: update to 6.4.0
Signed-off-by: Jianhui Zhao <jianhuizhao329@gmail.com>
2018-12-14 17:00:40 +08:00
Andre Heider
b57f6b1f5e prometheus-statsd-exporter: add new package
statsd_exporter receives StatsD-style metrics and exports them as Prometheus
metrics.

Signed-off-by: Andre Heider <a.heider@gmail.com>
2018-12-12 07:10:38 +01:00
Hannu Nyman
ed7676d40c
Merge pull request #7358 from neheb/yara
yara: Fix compile without deprecated OpenSSL APIs
2018-12-10 21:09:54 +02:00
Luiz Angelo Daros de Luca
0bb89bfe38 hplip: update to 3.18.12
Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
2018-12-09 22:59:29 -02:00
Ted Hess
37ca20a06c
Merge pull request #7623 from jefferyto/slide-switch-0.9.3
slide-switch: update to latest version
2018-12-09 16:39:10 -05:00
Rosen Penev
17eda29ea6 btrfs-progs: Update to 4.19.1
Removed upstreamed patch.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2018-12-09 13:14:33 -08:00
Jeffery To
00d67b05c4 slide-switch: update to latest version
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
2018-12-10 04:02:31 +08:00
Michael Heimpold
84100190cf mmc-utils: update to latest git revision
This also includes a fix for the trimming function and thus fixes #7306.

Signed-off-by: Michael Heimpold <mhei@heimpold.de>
2018-12-09 16:26:52 +01:00
Thorsten Glaser
fe2e874ddc jupp: new package
Signed-off-by: Thorsten Glaser <tg@mirbsd.org>
2018-12-03 16:16:44 +00:00
John Crispin
b931383257 cryptodev: moved to trunk
Signed-off-by: John Crispin <john@phrozen.org>
2018-12-03 07:50:57 +01:00
Hannu Nyman
62b0c876bd
Merge pull request #6621 from neheb/coreu
coreutils: Update to 8.30
2018-12-02 12:43:33 +02:00
Hannu Nyman
03a9f922dd
Merge pull request #7529 from ignisf/collectd-ethstat
collectd: Introduce collectd-mod-ethstat
2018-11-28 22:30:20 +02:00
Petko Bordjukov
dbdd7ead23 collectd: Introduce collectd-mod-ethstat
The ethstat plugin for collectd provides a convenient way to track a large list
of variables associated with network interfaces such as channel busy time and
many others.

A list of the available variables for a given interface may be acquired by
running ethtool -S <interface>

Signed-off-by: Petko Bordjukov <bordjukov@gmail.com>
2018-11-28 12:34:33 +02:00
TimelessNL
fc723123c1
digitemp: bump to version 3.7.2
Signed-off-by: Jasper Scholte <NightNL@outlook.com>
2018-11-27 11:34:36 +01:00
Rosen Penev
ba4df0f1c6 yara: Fix compile without deprecated OpenSSL APIs
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2018-11-25 17:46:32 -08:00
champtar
eae9f8cb9e
Merge pull request #7510 from darkk/fix-prometheus-zombies
prometheus-node-exporter-lua: close io.popen files to reap zombies
2018-11-25 16:54:56 -05:00
Hannu Nyman
dfd423bf96
Merge pull request #7478 from neheb/sdr
rtl-sdr: Update to 0.6.0
2018-11-25 18:18:06 +02:00
Leonid Evdokimov
1288bd6473 prometheus-node-exporter-lua: close io.popen files to reap zombies
Signed-off-by: Leonid Evdokimov <leon@darkk.net.ru>
2018-11-25 17:06:24 +03:00
Hannu Nyman
88e9a53a96
Merge pull request #7201 from neheb/i2c
i2c-tools: Update to 4.0
2018-11-24 08:33:30 +02:00
Hannu Nyman
3c5860e80e
Merge pull request #7405 from neheb/lcd
lcd4linux: Update to 1204
2018-11-23 17:01:55 +02:00
Rosen Penev
f97bbcf561 opensc: Update to 0.19.0
Pass --disable-notify to avoid libgio dependency.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2018-11-22 20:10:28 -08:00
Hannu Nyman
9d4a067599
Merge pull request #7465 from neheb/patch-12
tree: Update to 1.8.0
2018-11-20 17:32:58 +02:00
Rosen Penev
8712a0e2c1 rtl-sdr: Update to 0.6.0
Patch was upstreamed.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2018-11-19 14:14:35 -08:00
Rosen Penev
9b77576c29 i2c-tools: Update to 4.0
Added a libi2c package as that is now needed.

Fixed the home URL to fix uscan.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2018-11-18 13:26:17 -08:00
Rosen Penev
dbe1c48c53 tree: Update to 1.8.0
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2018-11-18 13:18:24 -08:00
Rosen Penev
8e555b77f4
sispmctl: Update to 4.1
Replace maintainer as previously agreed.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2018-11-18 12:13:17 -08:00
Hannu Nyman
8baa3571e9
Merge pull request #7331 from neheb/lvm2
lvm2: Update to 2.03.01
2018-11-18 21:27:57 +02:00
Rosen Penev
de6c4d6d74 coreutils: Update to 8.30
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2018-11-17 11:29:02 -08:00
Sebastian Kemper
470ee2d94b mariadb: fix build issue
The build breaks when Kerberos is available in staging dir. mariadb
build system exits with error:

CMake Error at libmariadb/cmake/plugins.cmake:43 (message):
  Invalid plugin type NO.  Allowed plugin types are DYNAMIC;STATIC;OFF

It doesn't like the definition "PLUGIN_AUTH_GSSAPI_CLIENT=NO" anymore.
We need to set it to "OFF" to make it happy.

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2018-11-14 21:00:12 +01:00
Hannu Nyman
083a5cb8b9
Merge pull request #6684 from neheb/pps
pps-tools: Update to 1.0.2 and switch to codeload
2018-11-14 20:44:56 +02:00
Rosen Penev
7c93e4d000 lcd4linux: Update to 1204
Very minor bugfix.

Also adjusted standard to gnu89 to fix compilation issues (lot of missing
prototypes).

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2018-11-13 13:38:59 -08:00
Sebastian Kemper
3c8c320b3f mariadb: security bump to 10.2.19
Many, many bug fixes, see release notes for details:
https://mariadb.com/kb/en/library/mariadb-10219-release-notes/

Fixed CVEs:

  CVE-2018-3282
  CVE-2016-9843
  CVE-2018-3174
  CVE-2018-3143
  CVE-2018-3156
  CVE-2018-3251
  CVE-2018-3185
  CVE-2018-3277
  CVE-2018-3162
  CVE-2018-3173
  CVE-2018-3200
  CVE-2018-3284

OpenWrt package changes:

  - include sha256_password in libmariadb package
  - upstream provided new pkgconfig file libmariadb.pc
  - refreshed one patch, dropped two others (included in upstream source
    now)

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2018-11-13 21:43:35 +01:00
Hannu Nyman
ea656e25a2 nano: update to 3.2
Update nano to version 3.2

Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2018-11-12 22:46:51 +02:00
Samuel Progin
d02ad59302 temperusb: new package definition
Signed-off-by: Samuel Progin <samuel.progin@gmail.com>
2018-11-12 10:24:17 +00:00