1
0
mirror of https://git.openwrt.org/feed/packages.git synced 2024-06-16 20:33:58 +02:00
Commit Graph

9072 Commits

Author SHA1 Message Date
Hirokazu MORIKAWA
f3ab4db2c8 node-homebridge: add new package / Node.js HomeKit Server
Homebridge is a lightweight Node.js server you can run on your home network that emulates the iOS HomeKit API

Signed-off-by: Hirokazu MORIKAWA <morikw2@gmail.com>
2019-02-06 15:42:40 +09:00
Ted Hess
1b8d8770ff
Merge pull request #5138 from lynxis/rb_horst
horst: remove build time to fix reproducible builds
2017-11-20 12:08:24 -05:00
Ted Hess
228218689b
Merge pull request #5153 from neheb/patch-4
hdparm: Update to 9,52
2017-11-20 08:39:20 -05:00
Nikos Mavrogiannopoulos
4a65fe7d74
Merge pull request #5076 from non7top/juniper
openconnect: add options to support juniper
2017-11-20 13:11:06 +01:00
Vladimir Berezhnoy
d710c629e8
openconnect: add options to support juniper
Signed-off-by: Vladimir Berezhnoy <non7top@gmail.com>
2017-11-20 14:03:28 +03:00
Rosen Penev
5323f139c1
hdparm: Update to 9,52
Tested on ramips (mt7621)

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2017-11-19 18:10:11 -08:00
Michael Heimpold
f569495832
Merge pull request #5150 from val-kulkov/php7-package
php7-mod-gd: add Freetype 2 support
2017-11-19 21:55:09 +01:00
Val Kulkov
e5d785ca3b php7-mod-gd: add Freetype 2 support
Add Freetype 2 support to php7-mod-gd. Introduce a configuration
parameter to disable Freetype 2 support if the increased package
size is a concern.

Signed-off-by: Val Kulkov <val.kulkov@gmail.com>
2017-11-19 10:30:31 -05:00
champtar
5e42ef5178
Merge pull request #5077 from TDT-GmbH/20171030-keepalived-update-version
net/keepalived: update version and add hotplug.d notify handling
2017-11-18 17:55:30 -08:00
Michael Heimpold
1c4f928f92 libiio: add patch to fix build on buildbots
On buildbots, the building directory seems to be not a subdir of
a git repo, so a variable expands into an empty string which in turn
results in a syntax error:

--snip--
  -- Looking for in6addr_any - found
  -- Found Git: /data/bowl-builder/arm_cortex-a5/build/sdk/staging_dir/host/bin/git (found version "2.1.4")
  fatal: Not a git repository (or any parent up to mount point /data)
  Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
  CMake Error at CMakeLists.txt:114 (if):
    if given arguments:

      "STREQUAL" "/data/bowl-builder/arm_cortex-a5/build/sdk/build_dir/target-arm_cortex-a5_musl_eabi/libiio-0.11"

    Unknown arguments specified

  -- Configuring incomplete, errors occurred!
--snap--

The patch quotes the if arguments and thus fixes the build.

Signed-off-by: Michael Heimpold <mhei@heimpold.de>
2017-11-18 22:06:19 +01:00
Mirko Vogt
acef284695 libs/libudev-fbsd: add patch to surround symbols with extern C
Signed-off-by: Mirko Vogt <mirko-openwrt@nanl.de>
2017-11-18 17:08:25 +01:00
Ted Hess
aa4440ff4c
Merge pull request #5135 from nxhack/change_installdev
avahi: Changed the condition of InstallDev
2017-11-18 07:48:35 -05:00
Ted Hess
8c5b99e178
Merge pull request #5143 from lynxis/rb_sox
sox: remove build timestamp
2017-11-17 11:07:27 -05:00
Ted Hess
3eec5e7b9d
Merge pull request #5142 from lynxis/rb_socat
socat: set BUILD_DATE to SOURCE_DATE_EPOCH
2017-11-17 10:46:50 -05:00
Alexander Couzens
b556ca8192
sox: remove build timestamp
Build timestamp prevents reproducible builds [0].

[0] https://reproducible-builds.org/docs/timestamps/

Signed-off-by: Alexander Couzens <lynxis@fe80.eu>
2017-11-17 13:18:21 +01:00
Alexander Couzens
379afb45ef
socat: set BUILD_DATE to SOURCE_DATE_EPOCH
Build timestamp prevents reproducible builds [0].
SOURCE_DATE_EPOCH allows to use a timestamp which depends
on deterministic behaviour [1].
Fixes reproducible builds.

[0] https://reproducible-builds.org/docs/timestamps/
[1] https://reproducible-builds.org/specs/source-date-epoch/

Signed-off-by: Alexander Couzens <lynxis@fe80.eu>
2017-11-17 13:15:48 +01:00
Ted Hess
8170176bc0
Merge pull request #5136 from lynxis/rb_avrdude
avrdude: add no timestamp patch to make it reproducible
2017-11-17 06:48:38 -05:00
Alexander Couzens
a6d437c40e horst: remove build time to fix reproducible builds
Build timestamp are not reproducible [0].

[0] https://reproducible-builds.org/docs/timestamps/

Signed-off-by: Alexander Couzens <lynxis@fe80.eu>
2017-11-17 12:20:42 +01:00
Alexander Couzens
35bf4d15d4 avrdude: add no timestamp patch to make it reproducible
The no-cpp-timestamp patch taken from debian and is
already accepted upstream.

Signed-off-by: Alexander Couzens <lynxis@fe80.eu>
2017-11-17 11:52:23 +01:00
John Crispin
a2de0d04b4
Merge pull request #4972 from blogic/master
uledd: add a tiny ubus frontend for PWM/RGB leds
2017-11-17 11:01:46 +01:00
Hirokazu MORIKAWA
367cd73bf0 avahi: Changed the condition of InstallDev
Signed-off-by: Hirokazu MORIKAWA <morikw2@gmail.com>
2017-11-17 16:02:33 +09:00
Michael Heimpold
84e5012e88 php7: re-enable system timezone data usage
This part of the Makefile was commented out during update from
PHP 5.x to 7.x and not re-enabled in the meanswhile, so fix this finally.

Reported-by: Val Kulkov <val.kulkov@gmail.com>
Signed-off-by: Michael Heimpold <mhei@heimpold.de>
2017-11-15 21:01:30 +01:00
Rafał Miłecki
c27a20ab75 shadow: add packages for newgidmap and newuidmap applets
They are needed by LXC for unprivileged containers.

Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
2017-11-15 19:08:42 +01:00
Rafał Miłecki
f7c0dcb4c4 shadow: use proper fix for checking subordinate IDs support
During 4.2.1 version update support for subordinate IDs has been
disabled. It was handled by:

1) Adding --disable-subordinate-ids to avoid:
configure: error: cannot run test program while cross compiling

2) Adding patch 003-fix-disabling-subids.patch to avoid:
usermod.c: In function 'process_flags':
usermod.c:1364:10: error: 'vflg' undeclared (first use in this function)
  if (   (vflg || Vflg)
          ^

This commit adds a patch with a proper configure.in fix. We don't need
to disable subordinate IDs anymore.

Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
2017-11-15 19:08:42 +01:00
champtar
62249d0a5d
Merge pull request #5123 from commodo/crconf
crconf: new package (kernel crypto configuration tool)
2017-11-15 09:19:59 -08:00
champtar
32b5d95d9e
Merge pull request #5122 from commodo/python-bluetooth
python,python3: build bluetooth support if bluez-libs selected
2017-11-15 09:18:06 -08:00
champtar
28d8978920
Merge pull request #4939 from val-kulkov/postfix-package
postfix: fix uid/gid conflicts, general cleanup
2017-11-15 09:01:02 -08:00
Hannu Nyman
014f85d85d
Merge pull request #5126 from val-kulkov/libfreetype-package
libfreetype: update to 2.8.1, fix host install issue
2017-11-15 17:34:54 +02:00
Val Kulkov
ed3d8020bc postfix: fix uid/gid conflicts, general cleanup
Fix uid/gid conflict with package icecast (uid=87, gid=87) and
package pianod (uid=88, gid=88) by claiming uid/gid 25 for postfix
instead of 87 and uid/gid 26 for postconf instead of 88.

Remove main.cf.default that is not used by any Postfix module.
The default configuration parameters are hardcoded into postconf
and they are available via "postconf -d <parameter>".
main.cf.default is therefore unnecessary.

"mydomain" parameter should be deduced from the domain configuration
setting in /e/c/dhcp rather than from "hostname" in /e/c/system
which is often just a hostname without the domain name component.

"mynetworks" parameter is unnecessary where "mynetworks_style" is
defined.

The change of the location of data_directory, queue_directory and
mail_spool_directory from /var/lib/postfix, /var/spool/postfix and
/var/mail to /data/postfix/lib, /data/postfix/spool and
/data/postfix/mail has been postponed until the author of this
commit and the maintainer of this package has had a meaningful
opportunity to consult with LEDE/OpenWrt developers on the preferred
mount point for the persistent data storage device.

Change the criteria for executing the post-installation script.
Invoke postinst() where the value of "myhostname" parameter in main.cf
is not defined rather than where "$config_directory"/opkg_postinst is
present with the value of "$config_directory" hardcoded to
"$IPKG_INSTROOT"/etc/postfix in /etc/init.d/postfix.

Enable PCRE support by default.

Remove the code making entries in /etc/sysupgrade.conf and instead
define configuration files to be saved during a sysupgrade in
Makefile's Package/postfix/conffiles section.

Move the creation of mail_spool_directory from host to target in
order to enable change of directory ownership to 'postfix' when
postinit() is executed on the target.

Avoid postfix restart in postinst script that results in an
error message during opkg install process.

Enable Postfix autostart by creating a link in /etc/rc.d/ on
installation.

Make the code less verbose.

Signed-off-by: Val Kulkov <val.kulkov@gmail.com>
2017-11-15 10:17:08 -05:00
Val Kulkov
b2b31e7ef3 libfreetype: update to 2.8.1, fix host install issue
This commit updates Freetype 2 to the latest upstream version and fixes
the issue where freetype-config was incorrectly installed into the
host, rather than the target, staging directory, therefore causing
compilation issues with other packages that depend on libfreetype.

Signed-off-by: Val Kulkov <val.kulkov@gmail.com>
2017-11-14 16:19:13 -05:00
Alexandru Ardelean
c3436c2c41 crconf: new package (kernel crypto configuration tool)
Linux crypto layer configuraton tool.
https://sourceforge.net/projects/crconf/

Use this to manipulate kernel Crypto API/framework stuff,
like drivers, templates, etc.
Example: https://wiki.strongswan.org/projects/strongswan/wiki/Pcrypt
Most interesting stuff you can find on https://wiki.strongswan.org

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
2017-11-14 13:57:45 +02:00
Alexandru Ardelean
c2b3496977 python,python3: build bluetooth support if bluez-libs selected
This should hopefully fix the Python3 build on buildbot.

For a while I assumed it may be a build-bot issue, but
then looking through the packages repo [and finding
the bluez package] it looks like, if you try
to build all packages, Python3 detects the bluetooth
headers installed by bluez.

It looks like Python's bluetooth support was somewhat
broken ; it was not detecting the <bluetooth/bluetooth.h>
header, so a backport from Python3 to Python fixed that.

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
2017-11-14 13:50:14 +02:00
Daniel Golle
68ae65f3bc auc: be a bit more verbose
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2017-11-13 01:49:04 +01:00
Daniel Golle
3afbfa90e5 rpcd-mod-packagelist: remove package
The functionality provided by this package is now provided by the
rpcd-mod-rpcsys package.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2017-11-13 01:49:04 +01:00
Daniel Golle
a4d6143514 attendedsysupgrade-common: deprecate rpcd-mod-packagelist
rpcd-mod-packageslist is now integrated in rpcd-mod-rpcsys since
commit 49fde37@lede-project/source.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2017-11-13 01:49:04 +01:00
Daniel Golle
123ddf66ae auc: small improvements
Detect if calling rpc-sys packagelist fails due to the method not
being provided by rpcd.
Mark package as experimental.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2017-11-13 00:39:46 +01:00
Daniel Golle
95d96a360f auc: add new package
The Attended sysUpgrade CLI is a full-featured client for the
attended-sysupgrade service which works directly on the target device.
It requires libustream-ssl as well as at least the CA certificate
needed to contact the sysupgrade server.

It has only been tested briefly and is by no means ready for
production!

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2017-11-12 23:33:15 +01:00
Philip Prindeville
2feef328ed
Merge pull request #5113 from pprindeville/perl-text-csv_xs-update-1.34
perl-text-csv_xs: update to 1.34
2017-11-12 14:24:18 -07:00
Philip Prindeville
babba99c69 perl-text-csv_xs: update to 1.34
Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
2017-11-12 13:50:59 -07:00
Michael Heimpold
1bceb95ff4
Merge pull request #5105 from val-kulkov/php7-package
php7-fpm: add configuration files to conffiles
2017-11-12 14:38:14 +01:00
Etienne Champetier
eb127abc0f build,travis: accept commits with '_'
Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
2017-11-11 21:52:49 -08:00
Daniel Golle
f21992af9a
Merge pull request #5104 from aparcar/attendedsysupgrade-common
attendedsysupgrade-common: rename package
2017-11-12 02:52:24 +01:00
Paul Spooren
861e5eda86 attendedsysupgrade-common: add package
due to various clients and the existence of rpcd-mod-rpcsys the package
rpcd-mod-attendedsysupgrade is superflous.

From now on the attendedsysupgrade-common package should be dependencie
of all kinds of clients.

Currently active or planned:
- luci-app-attendedsysupgrade
- attendedsysupgrade cli in shell
- attendedsysupgrade cli in c

Signed-off-by: Paul Spooren <paul@spooren.de>
2017-11-12 01:10:09 +01:00
Hannu Nyman
8d18da0d4e
Merge pull request #5091 from Nokius/adblock-reg_de
adblock: add German list
2017-11-11 11:08:48 +02:00
Val Kulkov
50308e4fd7 php7: add configuration files to conffiles
Two important configuration files, /etc/php7-fpm.conf and
/etc/php7-fpm.d/www.conf are silently overwritten on each php7-fpm
upgrade or lost on a sysupgrade.

This commit adds the conffiles section for php7-fpm and revises
the conffiles section for php7.

Signed-off-by: Val Kulkov <val.kulkov@gmail.com>
2017-11-10 19:50:34 -05:00
Karl Palsson
dbec5d9f69 lua-mosquitto: bump to 0.3 release
Minor additions of bindings.

Signed-off-by: Karl Palsson <karlp@etactica.com>
2017-11-10 09:20:40 +00:00
Karl Palsson
92f9377610 lua-mosquitto: update maintainer email
Signed-off-by: Karl Palsson <karlp@remake.is>
Signed-off-by: Karl Palsson <karlp@etactica.com>
2017-11-10 09:20:40 +00:00
Julius-Paul Jann
e49b2e2c08 adblock: add German list
Signed-off-by: Julius-Paul Jann <foss@nokius.net>
2017-11-09 20:41:53 +01:00
Peter Wagner
c6c1213b09 tor: update to 0.3.1.8
Signed-off-by: Peter Wagner <tripolar@gmx.at>
2017-11-09 20:40:40 +01:00
Daniel Golle
4be3935a6f gnunet: update to recent git snapshot
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2017-11-09 17:25:05 +01:00