feed/packages.git
9 years agolinknx: streamline makefile 1049/head
Othmar Truniger [Tue, 17 Mar 2015 19:41:51 +0000 (20:41 +0100)]
linknx: streamline makefile

Signed-off-by: Othmar Truniger <github@truniger.ch>
9 years agoMerge pull request #1043 from sairon/python-package-extra-configure-args
Steven Barth [Mon, 16 Mar 2015 16:53:51 +0000 (17:53 +0100)]
Merge pull request #1043 from sairon/python-package-extra-configure-args

python: added configure args for distutils path detection

9 years agolua-penlight: Bump to version 1.3.2
Karl Palsson [Mon, 16 Mar 2015 11:09:34 +0000 (11:09 +0000)]
lua-penlight: Bump to version 1.3.2

And include the pkg md5sum finally.

Signed-off-by: Karl Palsson <karlp@remake.is>
9 years agopython: added configure args for distutils path detection 1043/head
Jan Čermák [Mon, 16 Mar 2015 09:41:33 +0000 (10:41 +0100)]
python: added configure args for distutils path detection

python-package.mk now defines (extends) CONFIGURE_ARGS that are
adjusting PREFIX and EXEC_PREFIX in distutils.sysconfig during
compilation. These variables are sometimes used by autotools to detect
path to Python header files. Adding these variables to python-package.mk
fixes compilation of legacy autotools-configured packages that already
include python-package.mk and do not overwrite CONFIGURE_ARGS.

Signed-off-by: Jan Čermák <jan.cermak@nic.cz>
Cc: Alexandru Ardelean <ardeleanalex@gmail.com>
9 years agogit: update to 2.3.3
Peter Wagner [Mon, 16 Mar 2015 01:34:13 +0000 (02:34 +0100)]
git: update to 2.3.3

Signed-off-by: Peter Wagner <tripolar@gmx.at>
9 years agommc-utils: don't set -D_FORTIFY_SOURCE in Makefile
Daniel Golle [Sun, 15 Mar 2015 11:21:36 +0000 (12:21 +0100)]
mmc-utils: don't set -D_FORTIFY_SOURCE in Makefile

Now that security features are set globally, having the
FORTIFY_SOURCE option set in Makefile breaks the build when
CONFIG_PKG_FORTIFY_SOURCE_{1,2} is enabled as well.

arm-openwrt-linux-uclibcgnueabi-gcc  -Wall -Werror -Wuninitialized -Wundef -D_FILE_OFFSET_BITS=64 -D_FORTIFY_SOURCE=2 -Os -pipe -march=armv6k -mtune=mpcore -fno-caller-saves -fhonour-copts -Wno-error=unused-but-set-variable -mfloat-abi=soft -Wformat -Werror=format-security -fstack-protector -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -Wp,-MMD,./.mmc.o.d,-MT,mmc.o -c mmc.c -o mmc.o
<command-line>:0:0: error: "_FORTIFY_SOURCE" redefined [-Werror]
<command-line>:0:0: note: this is the location of the previous definition
cc1: all warnings being treated as errors
Makefile:35: recipe for target 'mmc.o' failed

Fix this by removing -D_FORTIFY_SOURCE=2 from Makefile.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
Signed-off-by: Michael Heimpold <mhei@heimpold.de>
9 years agosslh: update to 1.17
Jonathan McCrohan [Sun, 15 Mar 2015 18:15:18 +0000 (18:15 +0000)]
sslh: update to 1.17

Signed-off-by: Jonathan McCrohan <jmccrohan@gmail.com>
9 years agoMerge pull request #1000 from luizluca/git_http
tripolar [Sun, 15 Mar 2015 15:55:39 +0000 (16:55 +0100)]
Merge pull request #1000 from luizluca/git_http

Add git HTTP(s) support (and FTP)

9 years agoMerge pull request #1038 from dangowrt/fix-avahi-autoipd-ssp-dependency
Ted Hess [Sun, 15 Mar 2015 12:52:56 +0000 (08:52 -0400)]
Merge pull request #1038 from dangowrt/fix-avahi-autoipd-ssp-dependency

avahi: avahi-autoipd uses libssp if SSP_SUPPORT is enabled

9 years agoavahi: avahi-autoipd uses libssp if SSP_SUPPORT is enabled 1038/head
Daniel Golle [Sun, 15 Mar 2015 11:09:05 +0000 (12:09 +0100)]
avahi: avahi-autoipd uses libssp if SSP_SUPPORT is enabled

Found on an all-y build with SSP enabled:
Package avahi-autoipd is missing dependencies for the following libraries:
libssp.so.0

Adding the missing dependency to address that.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
9 years agoMerge pull request #1037 from commodo/python3-updates
Steven Barth [Sun, 15 Mar 2015 09:22:29 +0000 (10:22 +0100)]
Merge pull request #1037 from commodo/python3-updates

python3 updates

9 years agopython3: revert puting the encodings folder into a python3-codecs 1037/head
Alexandru Ardelean [Sat, 14 Mar 2015 14:13:51 +0000 (16:13 +0200)]
python3: revert puting the encodings folder into a python3-codecs

Some notes about the 'encodings' module, which is about 1.7 MB.
Unfortunately that one cannot be moved into the 'python3-codecs'
package, because Python tries to load up all available encodings
at startup.
Some efforts to add a dummy folder/python file have failed so far,
since there's a C code (Python/codecs.c) that tries to evaluate that
all encodings (in the encodings folder/module) are valid.

Basically the encodings module is a repository of encodings,
and it seemst there are quite a few of them.

Maybe a request to upstream Python would work for this, to
make encodings a bit more decoupled from the interpreter.

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
9 years agopython3: port some patches from python
Alexandru Ardelean [Fri, 13 Mar 2015 20:46:47 +0000 (22:46 +0200)]
python3: port some patches from python

Based on the idea that 'what-works-on-python-should-work-on-python3'
because they share the same trunk, these patches have been copied over
from the python package.

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
9 years agopython3: replicate packaging work done in python package
Alexandru Ardelean [Thu, 12 Mar 2015 18:01:20 +0000 (20:01 +0200)]
python3: replicate packaging work done in python package

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
9 years agopython3: upgrade to version 3.4.3
Alexandru Ardelean [Thu, 12 Mar 2015 18:02:42 +0000 (20:02 +0200)]
python3: upgrade to version 3.4.3

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
9 years agopython3: re-number patches
Alexandru Ardelean [Fri, 13 Mar 2015 20:19:13 +0000 (22:19 +0200)]
python3: re-number patches

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
9 years agogit: add subpackage for http(s)/ftp(s) commands 1000/head
Luiz Angelo Daros de Luca [Sun, 8 Mar 2015 08:46:46 +0000 (05:46 -0300)]
git: add subpackage for http(s)/ftp(s) commands

This patch add a new package, git-http, that contains all
http related commands (and ftp as extra). All http/ftp
depends on libcurl. Even without SSL suport in libcurl,
git compiles and it returns an informative error only
at runtime.

The use of symlinks now are trigged using NO_INSTALL_HARDLINKS env
and not based only on Makefile patch.

imap-send was kept builtin and idependent of curl (just as it was
before)

Template files, which are not necessary, where removed.

Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
9 years agogit: configure as cross compiling
Luiz Angelo Daros de Luca [Sun, 8 Mar 2015 05:32:02 +0000 (02:32 -0300)]
git: configure as cross compiling

Previously, ./configure was running checking local system and not
OpenWRT target. This would avoid any configure test about OpenWRT
libraries.

With a patch in configure, non cross-compiling-friend test are
ignored and Makefile can use default configure.

As side effect, git commands are now at /usr/lib/git-core and not
/usr/libexec/git-core.

Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
9 years agolibtasn1: updated to 4.3
Nikos Mavrogiannopoulos [Sat, 14 Mar 2015 13:14:19 +0000 (14:14 +0100)]
libtasn1: updated to 4.3

Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
9 years agoopenconnect: upgraded to 7.05
Nikos Mavrogiannopoulos [Sat, 14 Mar 2015 13:11:57 +0000 (14:11 +0100)]
openconnect: upgraded to 7.05

Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
9 years agoMerge pull request #1035 from mhei/collectd
Jo-Philipp Wich [Sat, 14 Mar 2015 11:14:09 +0000 (12:14 +0100)]
Merge pull request #1035 from mhei/collectd

collectd: unbreak collectd-mod-modbus

9 years agocollectd: unbreak collectd-mod-modbus 1035/head
Michael Heimpold [Fri, 13 Mar 2015 20:48:39 +0000 (21:48 +0100)]
collectd: unbreak collectd-mod-modbus

I tested it successfully on a Asus WL-500gP V2, querying
a Modbus TCP server.

Signed-off-by: Michael Heimpold <mhei@heimpold.de>
9 years agolibmodbus: update to 3.1.2
Michael Heimpold [Fri, 13 Mar 2015 20:47:51 +0000 (21:47 +0100)]
libmodbus: update to 3.1.2

Although this version is marked 'unstable' by upstream, it's very
robust and stable. So give it a broader audience for testing.

Signed-off-by: Michael Heimpold <mhei@heimpold.de>
9 years agoMerge pull request #1034 from commodo/python-updates
Steven Barth [Fri, 13 Mar 2015 17:02:43 +0000 (18:02 +0100)]
Merge pull request #1034 from commodo/python-updates

python: refine packaging and split more modules into packages

9 years agopython: refine packaging and split more modules into packages 1034/head
Alexandru Ardelean [Fri, 13 Mar 2015 16:12:46 +0000 (18:12 +0200)]
python: refine packaging and split more modules into packages

Rule of thumb is: any Python file that is greater than 100kb
(or adds a dependency with which it adds more than 100 kb)
should be a pretty useful/commonly used lib to stay in `python-light`.
An example, is the Python IO lib, which summarized (Python source +
binary module) is over 200kb.

Also moved some files that should have been put into previously
existing packages before, and re-organized the packages a bit.

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
9 years agocshark: update to latest git HEAD
Luka Perkov [Fri, 13 Mar 2015 08:15:42 +0000 (09:15 +0100)]
cshark: update to latest git HEAD

Signed-off-by: Luka Perkov <luka@openwrt.org>
9 years agovim: fix acl detection bug
Marko Ratkaj [Thu, 12 Mar 2015 17:52:33 +0000 (18:52 +0100)]
vim: fix acl detection bug

Signed-off-by: Marko Ratkaj <marko.ratkaj@sartura.hr>
9 years agoMerge pull request #1032 from commodo/python-updates
Steven Barth [Thu, 12 Mar 2015 20:19:52 +0000 (21:19 +0100)]
Merge pull request #1032 from commodo/python-updates

python: fix conflicts between python-light & python-base

9 years agoglobal: change all instances of USE_EGLIBC to USE_GLIBC
John Crispin [Thu, 12 Mar 2015 17:23:49 +0000 (18:23 +0100)]
global: change all instances of USE_EGLIBC to USE_GLIBC

Signed-off-by: John Crispin <blogic@openwrt.org>
9 years agopython: fix conflicts between python-light & python-base 1032/head
Alexandru Ardelean [Thu, 12 Mar 2015 17:45:30 +0000 (19:45 +0200)]
python: fix conflicts between python-light & python-base

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
9 years agoremoved Build/Configure part
Nikos Mavrogiannopoulos [Thu, 12 Mar 2015 17:50:19 +0000 (18:50 +0100)]
removed Build/Configure part

Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
9 years agoseccomp: depends on CONFIG_KERNEL_SECCOMP
Nikos Mavrogiannopoulos [Thu, 12 Mar 2015 17:29:52 +0000 (18:29 +0100)]
seccomp: depends on CONFIG_KERNEL_SECCOMP

Resolves #935

Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
9 years agoMerge pull request #1030 from giner/patch-2
Jo-Philipp Wich [Thu, 12 Mar 2015 14:45:35 +0000 (15:45 +0100)]
Merge pull request #1030 from giner/patch-2

wshaper: start wshaper on ifup

9 years agoMerge pull request #1021 from mantas-p/fix-mjpg-streamer
Ted Hess [Thu, 12 Mar 2015 13:19:09 +0000 (09:19 -0400)]
Merge pull request #1021 from mantas-p/fix-mjpg-streamer

mjpg-streamer: fix compatibility with new kernels (>=3.16)

9 years agoMerge pull request #1027 from tru7/pthsem
Steven Barth [Thu, 12 Mar 2015 06:21:25 +0000 (07:21 +0100)]
Merge pull request #1027 from tru7/pthsem

pthsem: streamline makefile

9 years agoMerge pull request #1029 from tru7/libesmtp
Steven Barth [Thu, 12 Mar 2015 06:21:11 +0000 (07:21 +0100)]
Merge pull request #1029 from tru7/libesmtp

libesmtp: streamline makefile

9 years agowshaper: start wshaper on ifup 1030/head
Stanislav German-Evtushenko [Wed, 11 Mar 2015 21:38:14 +0000 (00:38 +0300)]
wshaper: start wshaper on ifup

9 years agotaskwarrior: update to 2.4.1.
Dora Budic [Wed, 11 Mar 2015 19:00:03 +0000 (20:00 +0100)]
taskwarrior: update to 2.4.1.

Signed-off-by: Dora Budic <dora2411@gmail.com>
9 years agolibesmtp: streamline makefile 1029/head
Othmar Truniger [Wed, 11 Mar 2015 22:33:42 +0000 (23:33 +0100)]
libesmtp: streamline makefile

Signed-off-by: Othmar Truniger <github@truniger.ch>
9 years agopthsem: streamline makefile 1027/head
Othmar Truniger [Wed, 11 Mar 2015 22:10:10 +0000 (23:10 +0100)]
pthsem: streamline makefile

Signed-off-by: Othmar Truniger <github@truniger.ch>
9 years agomjpg-streamer: fix YUV capture mode 1021/head
Mantas Pucka [Wed, 11 Mar 2015 12:23:35 +0000 (14:23 +0200)]
mjpg-streamer: fix YUV capture mode

Update to r182-experimental (071481e626b2ceef94) broke YUV
capture mode in input_uvc. This patch fixes it.

Tested on ar71xx with Logitech C170

Signed-off-by: Mantas Pucka <mantas@8devices.com>
9 years agomjpg-streamer: fix compatibility with new kernels (>=3.16)
Mantas Pucka [Wed, 11 Mar 2015 11:50:54 +0000 (13:50 +0200)]
mjpg-streamer: fix compatibility with new kernels (>=3.16)

input_uvc was broken with new kernel update

patch source: https://github.com/oliv3r/mjpg-streamer

Tested on ar71xx with Logitech C170

Signed-off-by: Mantas Pucka <mantas@8devices.com>
9 years agoMerge pull request #1020 from commodo/python-updates
Steven Barth [Wed, 11 Mar 2015 09:35:45 +0000 (10:35 +0100)]
Merge pull request #1020 from commodo/python-updates

python: revert previous patch and add a filespec

9 years agopython: revert previous patch and add a filespec 1020/head
Alexandru Ardelean [Wed, 11 Mar 2015 09:22:12 +0000 (11:22 +0200)]
python: revert previous patch and add a filespec

Seems removing the PyPackage rule and/or adding dummy install rule
causes some issues inside the build-system, where the libpython2.7.so.1.0
is not seen by packages that depend on python.
Even though that libpython2.7.so.1.0 file is installed properly by `python-base`.

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
9 years agokmod: fixup automadness
Steven Barth [Wed, 11 Mar 2015 07:56:44 +0000 (08:56 +0100)]
kmod: fixup automadness

Signed-off-by: Steven Barth <steven@midlink.org>
9 years agoMerge pull request #975 from hnyman/collectd542
Jo-Philipp Wich [Tue, 10 Mar 2015 23:18:19 +0000 (00:18 +0100)]
Merge pull request #975 from hnyman/collectd542

collectd: update to 5.4.2

9 years agotar: add libacl and libattr dependencies
Álvaro Fernández Rojas [Tue, 10 Mar 2015 22:46:24 +0000 (23:46 +0100)]
tar: add libacl and libattr dependencies

Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
9 years agozabbix: update to 2.4.4
Etienne CHAMPETIER [Tue, 10 Mar 2015 21:27:14 +0000 (22:27 +0100)]
zabbix: update to 2.4.4

run tested on ar71xx

Signed-off-by: Etienne CHAMPETIER <champetier.etienne@gmail.com>
9 years agomonit: update to 5.12.1
Etienne CHAMPETIER [Tue, 10 Mar 2015 21:24:56 +0000 (22:24 +0100)]
monit: update to 5.12.1

refresh patches
run tested on ar71xx

Signed-off-by: Etienne CHAMPETIER <champetier.etienne@gmail.com>
9 years agosqlite3: update to 3.8.8.3
Etienne CHAMPETIER [Tue, 10 Mar 2015 21:22:26 +0000 (22:22 +0100)]
sqlite3: update to 3.8.8.3

run tested on ar71xx

Signed-off-by: Etienne CHAMPETIER <champetier.etienne@gmail.com>
9 years agoMerge pull request #998 from mhei/knxd
Steven Barth [Tue, 10 Mar 2015 21:21:45 +0000 (22:21 +0100)]
Merge pull request #998 from mhei/knxd

knxd: streamline makefile

9 years agoMerge pull request #1016 from jdub/kmod
Steven Barth [Tue, 10 Mar 2015 15:19:33 +0000 (16:19 +0100)]
Merge pull request #1016 from jdub/kmod

kmod: Update to kmod 20, enable parallel build

9 years agoMerge pull request #1013 from commodo/python-updates
Steven Barth [Tue, 10 Mar 2015 08:22:26 +0000 (09:22 +0100)]
Merge pull request #1013 from commodo/python-updates

python: remove PyPackage rules for python package

9 years agotar: import from oldpackages and upgrade to 1.28
Álvaro Fernández Rojas [Mon, 9 Mar 2015 18:57:57 +0000 (19:57 +0100)]
tar: import from oldpackages and upgrade to 1.28

Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
9 years agopython: remove PyPackage rules for python package 1013/head
Alexandru Ardelean [Mon, 9 Mar 2015 12:20:37 +0000 (14:20 +0200)]
python: remove PyPackage rules for python package

Calling `PyPackage` will install some default install rules for
python packages that are not required for the `python` package specifically
are not required.
That will lead to some conflicts with `python-light` because the
`/usr/lib/python2.7/site-packages` folder (+contents) will be
available in both packages.

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
9 years agostrongswan: fix IKEv1 support
Steven Barth [Mon, 9 Mar 2015 12:40:29 +0000 (13:40 +0100)]
strongswan: fix IKEv1 support

Signed-off-by: Steven Barth <steven@midlink.org>
9 years agoMerge pull request #994 from kissg1988/seafile
Steven Barth [Mon, 9 Mar 2015 05:57:47 +0000 (06:57 +0100)]
Merge pull request #994 from kissg1988/seafile

seafile: fix download issue with python dependencies

9 years agoMerge pull request #1006 from commodo/python-rt-lib-dirs
Steven Barth [Mon, 9 Mar 2015 05:55:38 +0000 (06:55 +0100)]
Merge pull request #1006 from commodo/python-rt-lib-dirs

python: add patches to disable runtime lib dirs

9 years agoMerge pull request #995 from plntyk/gammu_fixes
Steven Barth [Mon, 9 Mar 2015 05:54:25 +0000 (06:54 +0100)]
Merge pull request #995 from plntyk/gammu_fixes

Gammu fixes

9 years agoMerge pull request #1007 from commodo/ovs-fix2
Steven Barth [Mon, 9 Mar 2015 05:52:38 +0000 (06:52 +0100)]
Merge pull request #1007 from commodo/ovs-fix2

openvswitch: limit kernel package to supported kernel versions

9 years agokmod: fix pkgconfig file
Nicolas Thill [Mon, 9 Mar 2015 02:38:58 +0000 (03:38 +0100)]
kmod: fix pkgconfig file

The pkgconfig file is generated at make-time, leading to absolute /usr/include & /usr/lib search paths.
The patch lets autoconf handle pkgconfig file subst, like other packages do.

Signed-off-by: Nicolas Thill <nico@openwrt.org>
9 years agoflashrom: add config options
Álvaro Fernández Rojas [Mon, 9 Mar 2015 02:39:57 +0000 (03:39 +0100)]
flashrom: add config options

Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
9 years agoMerge pull request #1005 from kissg1988/vala
Ted Hess [Sun, 8 Mar 2015 20:42:16 +0000 (16:42 -0400)]
Merge pull request #1005 from kissg1988/vala

vala: update to version 0.27.1 + fix build issue

9 years agoflashrom: update to v0.9.8
Álvaro Fernández Rojas [Sun, 8 Mar 2015 18:58:39 +0000 (19:58 +0100)]
flashrom: update to v0.9.8

Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
9 years agopciutils: fix libkmod depedency
Álvaro Fernández Rojas [Sun, 8 Mar 2015 18:58:03 +0000 (19:58 +0100)]
pciutils: fix libkmod depedency

Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
9 years agopen: update to 0.27.2
Nicolas Thill [Sun, 8 Mar 2015 16:40:03 +0000 (17:40 +0100)]
pen: update to 0.27.2

Signed-off-by: Nicolas Thill <nico@openwrt.org>
9 years agolttng-tools: fix build failure with libkmod (closes: #1004)
Nicolas Thill [Sun, 8 Mar 2015 16:38:31 +0000 (17:38 +0100)]
lttng-tools: fix build failure with libkmod (closes: #1004)

Signed-off-by: Nicolas Thill <nico@openwrt.org>
9 years agolvm2: bump version
Daniel Golle [Sun, 8 Mar 2015 16:34:15 +0000 (17:34 +0100)]
lvm2: bump version

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
9 years agoopenvswitch: limit kernel package to supported kernel versions 1007/head
Alexandru Ardelean [Sun, 8 Mar 2015 16:10:11 +0000 (18:10 +0200)]
openvswitch: limit kernel package to supported kernel versions

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
9 years agopython: add patches to disable runtime lib dirs 1006/head
Alexandru Ardelean [Sun, 8 Mar 2015 15:55:13 +0000 (17:55 +0200)]
python: add patches to disable runtime lib dirs

When cross-compiling, we do not need to add runtime lib dirs.
Also, the cross compilers that are used on OpenWRT do not support
the '-R' option, which causes build failures.

These build failures existed before, but were not noticed,
because it fails only on some setups.
This is because Python's `setup.py` does a lot of voo-doo
automagic that needs handling for some cross-compilation cases.

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
9 years agopciutils: add libkmod dependency
Álvaro Fernández Rojas [Sun, 8 Mar 2015 14:32:10 +0000 (15:32 +0100)]
pciutils: add libkmod dependency

Fixes https://github.com/openwrt/packages/issues/1003

Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
9 years agounrar: update to v5.2.6
Álvaro Fernández Rojas [Sun, 8 Mar 2015 14:26:34 +0000 (15:26 +0100)]
unrar: update to v5.2.6

Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
9 years agovala: update to 0.27.1 1005/head
Gergely Kiss [Sun, 8 Mar 2015 14:14:30 +0000 (15:14 +0100)]
vala: update to 0.27.1

Signed-off-by: Gergely Kiss <mail.gery@gmail.com>
9 years agoudpxy: bump PKG_VERSION in order to fix build issues and refresh patches
Álvaro Fernández Rojas [Sun, 8 Mar 2015 13:59:03 +0000 (14:59 +0100)]
udpxy: bump PKG_VERSION in order to fix build issues and refresh patches

Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
9 years agovala: add glib2 as a build dependency, fixes #702
Gergely Kiss [Sun, 8 Mar 2015 13:51:28 +0000 (14:51 +0100)]
vala: add glib2 as a build dependency, fixes #702

Signed-off-by: Gergely Kiss <mail.gery@gmail.com>
9 years agoMerge pull request #1001 from probonopd/patch-1
Ted Hess [Sun, 8 Mar 2015 12:06:13 +0000 (08:06 -0400)]
Merge pull request #1001 from probonopd/patch-1

announce: Update Makefile to 1.0.1

9 years agoannounce: Update Makefile to 1.0.1 1001/head
probonopd [Sun, 8 Mar 2015 10:12:52 +0000 (10:12 +0000)]
announce: Update Makefile to 1.0.1

Signed-off-by: Simon Peter <probono@puredarwin.org>
9 years agoMerge pull request #989 from plntyk/fix_libcrypt_prefix
Nikos Mavrogiannopoulos [Sun, 8 Mar 2015 09:05:21 +0000 (10:05 +0100)]
Merge pull request #989 from plntyk/fix_libcrypt_prefix

ocserv: fix libcrypt location

9 years agognupg: update to 1.4.19
Nicolas Thill [Sat, 7 Mar 2015 22:20:21 +0000 (23:20 +0100)]
gnupg: update to 1.4.19

Signed-off-by: Nicolas Thill <nico@openwrt.org>
9 years agomsmtp: prevent use of IDN support on uClibc
Nicolas Thill [Sat, 7 Mar 2015 22:16:37 +0000 (23:16 +0100)]
msmtp: prevent use of IDN support on uClibc

Signed-off-by: Nicolas Thill <nico@openwrt.org>
9 years agomsmtp: use proper configure options
Nicolas Thill [Sat, 7 Mar 2015 21:57:04 +0000 (22:57 +0100)]
msmtp: use proper configure options

Some configure options were renamed during last upstream update: use them!

Signed-off-by: Nicolas Thill <nico@openwrt.org>
9 years agoknxd: streamline makefile 998/head
Michael Heimpold [Sat, 7 Mar 2015 21:38:37 +0000 (22:38 +0100)]
knxd: streamline makefile

- use https URL for fetching sources from GitHub, otherwise cloning
  sources could stall buildbots by asking to accept a/the SSH host key
- do not _depend_ on DEPENDS but _select_ them, so the package(s) always
  appear in menuconfig, not only when all dependencies are already
  selected --> dependencies are automatically pulled in when package
  is selected by user
- use PKG_INSTALL
- factor out the libeibclient library as own package
- use CONFIGURE_ARGS instead of dedicated Build/Configure
- same for TARGET_CFLAGS and Build/Compile
- do not include /etc/functions, already included by /etc/rc.common

Signed-off-by: Michael Heimpold <mhei@heimpold.de>
9 years agommc-utils: fix typo in Makefile
Michael Heimpold [Sat, 7 Mar 2015 21:47:51 +0000 (22:47 +0100)]
mmc-utils: fix typo in Makefile

Signed-off-by: Michael Heimpold <mhei@heimpold.de>
9 years agoMerge remote-tracking branch 'tru7/knxd'
Michael Heimpold [Sat, 7 Mar 2015 20:47:09 +0000 (21:47 +0100)]
Merge remote-tracking branch 'tru7/knxd'

Signed-off-by: Michael Heimpold <mhei@heimpold.de>
9 years agoknxd: follow new respository 997/head
Othmar Truniger [Sat, 7 Mar 2015 11:32:27 +0000 (12:32 +0100)]
knxd: follow new respository

Signed-off-by: Othmar Truniger <github@truniger.ch>
9 years agogammu: fix dependencies 995/head
Dirk Neukirchen [Thu, 5 Mar 2015 11:31:14 +0000 (12:31 +0100)]
gammu: fix dependencies

- disable libdbi via CMAKE
- fix libpq dependency
reported by buildbot.openwrt.org

Signed-off-by: Dirk Neukirchen <dirkneukirchen@web.de>
9 years agogammu: use cmake.mk
Dirk Neukirchen [Thu, 5 Mar 2015 09:19:24 +0000 (10:19 +0100)]
gammu: use cmake.mk

- remove not needed legacy stuff
- fix lib64 suffix when installing
fixes build error when target is x86_64

Signed-off-by: Dirk Neukirchen <dirkneukirchen@web.de>
9 years agoseafile: fix download issue with python dependencies 994/head
Gergely Kiss [Sat, 7 Mar 2015 00:17:18 +0000 (01:17 +0100)]
seafile: fix download issue with python dependencies

Signed-off-by: Gergely Kiss <mail.gery@gmail.com>
9 years agolibugpio: import from oldpackages and upgrade to 0.0.6
Michael Heimpold [Fri, 6 Mar 2015 23:10:20 +0000 (00:10 +0100)]
libugpio: import from oldpackages and upgrade to 0.0.6

Signed-off-by: Michael Heimpold <mhei@heimpold.de>
9 years agommc-utils: add new package
Michael Heimpold [Fri, 6 Mar 2015 22:31:10 +0000 (23:31 +0100)]
mmc-utils: add new package

Signed-off-by: Michael Heimpold <mhei@heimpold.de>
9 years agosquid: update to 3.5.2
Marko Ratkaj [Fri, 6 Mar 2015 15:52:50 +0000 (16:52 +0100)]
squid: update to 3.5.2

Signed-off-by: Marko Ratkaj <marko.ratkaj@sartura.hr>
9 years agoMerge pull request #991 from thess/gst-work
Ted Hess [Fri, 6 Mar 2015 16:39:31 +0000 (11:39 -0500)]
Merge pull request #991 from thess/gst-work

gstreamer: Update to 1.4.5

9 years agoMerge pull request #992 from commodo/python-patch-updates
Steven Barth [Fri, 6 Mar 2015 14:29:30 +0000 (15:29 +0100)]
Merge pull request #992 from commodo/python-patch-updates

python: patch updates

9 years agoMerge pull request #988 from commodo/python-modularization
Steven Barth [Fri, 6 Mar 2015 14:29:22 +0000 (15:29 +0100)]
Merge pull request #988 from commodo/python-modularization

python: packetize some python modules

9 years agolibidn: Update to 1.30
Marcel Denia [Fri, 6 Mar 2015 13:36:25 +0000 (14:36 +0100)]
libidn: Update to 1.30

Signed-off-by: Marcel Denia <naoir@gmx.net>
9 years agopython: packetize some python modules 988/head
Alexandru Ardelean [Mon, 2 Mar 2015 17:53:19 +0000 (19:53 +0200)]
python: packetize some python modules

Packetize some Python modules to reduce size of the overall Python package.
Basically, a new package is introduced, call `python-light`,
and everything that's extra (or big) is put in other packages.

The `python` package becomes a metapackage that installs `python-light`
along with the rest of the packages.

Base work started by Jan Čermák.

Signed-off-by: Jan Čermák <jan.cermak@nic.cz>
Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
9 years agopython: add '_python_*' env vars to host python 992/head
Alexandru Ardelean [Fri, 6 Mar 2015 09:29:23 +0000 (11:29 +0200)]
python: add '_python_*' env vars to host python

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
9 years agopython: add patch for distutils to add support for the '_python_sysroot' env var
Alexandru Ardelean [Fri, 6 Mar 2015 09:13:25 +0000 (11:13 +0200)]
python: add patch for distutils to add support for the '_python_sysroot' env var

Patch taken from buildroot:
  http://git.buildroot.net/buildroot/tree/package/python/python-008-distutils-use-python-sysroot.patch

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
9 years agopython: re-number patches
Alexandru Ardelean [Fri, 6 Mar 2015 09:11:18 +0000 (11:11 +0200)]
python: re-number patches

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
9 years agokmod: Update to kmod 20, enable parallel build 1016/head
Jeff Waugh [Thu, 5 Mar 2015 20:38:32 +0000 (07:38 +1100)]
kmod: Update to kmod 20, enable parallel build

Signed-off-by: Jeff Waugh <jdub@bethesignal.org>