aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Merge pull request #403 from jslachta/masterThomas Heil2014-10-07
|\ | | | | unixodbc: change PKG_SOURCE_URL to sourceforge
| * unixodbc: change PKG_SOURCE_URL to sourceforgeJiri Slachta2014-10-07
| | | | | | | | Signed-off-by: Jiri Slachta <slachta@cesnet.cz>
* | dovecot: disable LDAP by defaultPeter Wagner2014-10-07
| | | | | | | | Signed-off-by: Peter Wagner <tripolar@gmx.at>
* | Merge pull request #398 from luizluca/ruby_fixes-n-updateLuiz Angelo Daros de Luca2014-10-07
|\ \ | |/ |/| Ruby many fixes n update to 2.1.3
| * ruby: reorder subpackages (alphabetical order)Luiz Angelo Daros de Luca2014-10-07
| | | | | | | | Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
| * ruby: adds help text for pkgsLuiz Angelo Daros de Luca2014-10-07
| | | | | | | | Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
| * ruby: update to 2.1.3Luiz Angelo Daros de Luca2014-10-07
| | | | | | | | Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
| * ruby: explode ruby-core into subpkgsLuiz Angelo Daros de Luca2014-10-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ruby-core is problematic as it is too big. It is impossible to fix pkgs dependencies as ruby-core would generate multiple cycled dependencies between packages. Also, "core" in ruby context means "classes that does not need a 'require'". This is not the case of ruby-core classes. They are, actually, a subset of Ruby Standard Library. In every detected case where a portion of ruby-core could be isolated and save another pkgs from requiring all ruby-core where spin-off into a new subset. Also, big portions of ruby-core, not require by current ruby-* pkgs where spin-off in new pkgs. The remaining of ruby-core was put into a new ruby-misc. ruby-stdlib was created as a meta package that requires all ruby packages that are part of Ruby Standard Library. For a full Ruby Standard Library, just install ruby-stdlib and its deps. Created pkgs from ruby-stdlib: - ruby-misc - ruby-csv - ruby-datetime - ruby-dbm - ruby-debuglib - ruby-drb - ruby-fiddle - ruby-filelib - ruby-logger - ruby-math - ruby-multithread - ruby-mkmf - ruby-net - ruby-optparse - ruby-patterns - ruby-prettyprint - ruby-pstore - ruby-racc - ruby-rbconfig - ruby-rinda - ruby-ripper - ruby-sdbm - ruby-shell - ruby-socket - ruby-uri Some files from ruby-openssl where moved to new subpkgs (as ruby-net and ruby-drb). All dependencies where redefined based on auxiliar script ruby_find_pkgsdeps Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
| * ruby: move files to ruby-xmlrpc,ruby-dl left in ruby-coreLuiz Angelo Daros de Luca2014-10-07
| | | | | | | | | | | | | | Some files that belong to other subpkgs where still in ruby-core. Just moved them to the correct place. Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
| * ruby: create subpkgs ruby-enc-extra from ruby-encLuiz Angelo Daros de Luca2014-10-07
| | | | | | | | | | | | | | | | | | | | Ruby encoding library was too big and bring unecessary encodings for a simple ruby usage. All not directly required encodings from stdlib where moved to ruby-enc-extra. Created pkg from ruby-enc - ruby-enc-extra (from ruby-enc) Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
| * ruby: add auxiliar scripts in order to help testsLuiz Angelo Daros de Luca2014-10-07
| | | | | | | | | | | | | | | | | | | | | | | | | | ruby_find_pkgsdeps: look for file dependencies (checks require and Encoding references) and extrapolate it to pkgs deps. Also checks whether a dep is redundant or missing in pkgs. Must run inside an OpenWRT with all ruby* pkgs installed. ruby_missingfiles: list files in staging/target and from files comparing side by side its contents. It helps to easly visualize which file is not packaged in an ipk. Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
| * ruby: spin-off ruby-digest from ruby-opensslLuiz Angelo Daros de Luca2014-10-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Digest can use OpenSSL or ruby internal implementation of hash functions. The first uses less disk space but requires openssl, that is relatively big. As internal hash implementations are not too much bigger than openssl version, it is compiled by default. A new config option can change it to use OpenSSL instead. As digest is independent from openssl, ruby-digest was created as a new pkgs. Adds pkgs: - ruby-digest (from ruby-openssl) Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
| * ruby: remove refs from dropped syckLuiz Angelo Daros de Luca2014-10-07
| | | | | | | | | | | | | | | | | | syck was replaced by psych in yaml. (ref: https://bugs.ruby-lang.org/projects/ruby-trunk/repository/revisions/36786) Also add ruby-psych to ruby-yaml deps Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
| * ruby: move gems out of coreLuiz Angelo Daros de Luca2014-10-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Some ruby gems where still in ruby-core pkg. These files where moved outside ruby-core into ruby-gems or their own subpkg. ruby-unit renamed to ruby-testunit as its gem is named test-unit. ruby-rdoc left a file in ruby-core. Psych is a gem and deserves its own subpkg. It replaces syck (used by yaml) on recent ruby version (ref: https://bugs.ruby-lang.org/projects/ruby-trunk/repository/revisions/36786) Also, some psych files where packed incorrecly into ruby-json. The asterisk in */json was intend to match <arch>/json/ and not psych/json. Files where derived from ruby-core and a lost file in ruby-json. New subpkgs: - ruby-bigdecimal - ruby-io-console - ruby-minitest - ruby-psych Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
| * ruby: link ext/digest/* to openssl only when needed, fix rmd160 nameLuiz Angelo Daros de Luca2014-10-07
| | | | | | | | | | | | | | | | | | | | | | | | | | ext/digest/rmd160 was referencing a function that never existed in openssl. The name was simply mistyped. Now it can use openssl. openssl was always linked to ext/digest when library is avaiable, even when it was disable by configure option and not used by code. upstream refs: https://bugs.ruby-lang.org/issues/10252 upstream refs: https://bugs.ruby-lang.org/issues/10324 Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
| * ruby: remove minitest deps on gemsLuiz Angelo Daros de Luca2014-10-07
| | | | | | | | | | | | | | minitest can live without gems. Just a minor fix to solve a require that fails when gem is missing Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
| * ruby: rdoc can run without gems (with patch)Luiz Angelo Daros de Luca2014-10-07
| | | | | | | | | | | | | | | | | | | | rdoc seems to be written to run without gem. However, some internal code still does not check for gems presence. With a small patch, rdoc can run without gems. Ref: https://bugs.ruby-lang.org/issues/10196 Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
| * ruby: wrap script to disable gems if not installedLuiz Angelo Daros de Luca2014-10-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | ruby, by default, try to load gems on start. If not present, it fails. As gems brings many deps, this make ruby unsuitable for routers limited resources. ruby can avoid to load gems with the option "--disable-gems". So, a wrap script in the place of /usr/bin/ruby adds this option if gems are not found. Also add vendor/site directories Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
| * ruby: Disable doc generationLuiz Angelo Daros de Luca2014-10-07
| | | | | | | | | | | | | | | | | | Docs are not currently packaged. So, there is no need to install them. Also, doxygen have some problem with the usaged of git in build_dir as it takes ages running git commands on every file. Disabling the docs reduces the compilation time. Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
| * ruby: remove ruby-ncursesLuiz Angelo Daros de Luca2014-10-07
| | | | | | | | | | | | | | | | ruby-ncurses where removed from ruby upstream (ruby commit 9c5b2fd8aa0fd343ad094d47a638cfd3f6ae0a81) and become solely a gem now. OpenWRT subpackage removed. Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
* | Merge pull request #401 from Adze1502/masterchamptar2014-10-07
|\ \ | | | | | | mwan3: update to version 1.5-8
| * | mwan3: update to version 1.5-8Adze15022014-10-07
|/ / | | | | | | | | | | Fix bug introduced in version 1.5-7; args were not parsed to script. Signed-off-by: Jeroen Louwes <jeroen.louwes@gmail.com>
* | bash: Update to 4.3.30Marcel Denia2014-10-07
| | | | | | | | Signed-off-by: Marcel Denia <naoir@gmx.net>
* | Merge pull request #399 from roger-/micropythonTed Hess2014-10-06
|\ \ | | | | | | micropython: update to latest
| * | micropython: update to latestRoger2014-10-06
| | | | | | | | | Signed-off-by: Roger D <rogerdammit@gmail.com>
* | | Merge pull request #397 from chris5560/mastersbyx2014-10-06
|\ \ \ | | | | | | | | ddns-scripts: fix problem during startup
| * | | ddns-scripts: fix problem during startupChristian Schoenebeck2014-10-06
|/ / / | | | | | | | | | | | | | | | | | | fixes problem CRITICAL ERROR - custom update_script not found when extracting url and script from services / services_ipv6 file Signed-off-by: Christian Schoenebeck <christian.schoenebeck@gmail.com>
* | | haproxy: fixes from upstreamThomas Heil2014-10-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - [PATCH 15/20] BUG/MEDIUM: remove debugging code from systemd-wrapper - [PATCH 16/20] BUG/MEDIUM: http: adjust close mode when switching to - [PATCH 17/20] BUG/MINOR: config: don't propagate process binding on - [PATCH 18/20] BUG/MEDIUM: check: rule-less tcp-check must detect - [PATCH 19/20] BUG/MINOR: tcp-check: report the correct failed step in - [PATCH 20/20] BUG/MINOR: config: don't propagate process binding for Signed-off-by: Thomas Heil <heil@terminal-consulting.de>
* | | ddns-scripts: Added support for custom update scriptsSteven Barth2014-10-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Squashed commit of the following: commit 2701c8868e1ef4949db57e53b27958edba6abb59 Author: Christian Schoenebeck <christian.schoenebeck@gmail.com> Date: Sun Oct 5 11:01:57 2014 +0200 ddns-scripts: Added support for custom update scripts Sample script Signed-off-by: Christian Schoenebeck <christian.schoenebeck@gmail.com> commit e07ecb90fa2c7404a97cf64024e89bd9d88aacd4 Author: Christian Schoenebeck <christian.schoenebeck@gmail.com> Date: Sun Oct 5 11:00:11 2014 +0200 ddns-scripts: Added support for custom update scripts Added support for custom update scripts with new option update_script. function get_service_url() renamed to get_service_data() and extended to detect scripts inside service / service_ipv6 for later use function send_update() modified to support custom update scripts. Signed-off-by: Christian Schoenebeck <christian.schoenebeck@gmail.com> commit 39e41b2151a79a7ace71a9d40b87cd4d6ce09503 Author: Christian Schoenebeck <christian.schoenebeck@gmail.com> Date: Sun Oct 5 10:52:44 2014 +0200 ddns-scripts: Added support for custom update scripts Added support for custom update scripts with new option update_script Signed-off-by: Christian Schoenebeck <christian.schoenebeck@gmail.com> commit 33f264768e37d8a6fe564faaafa51a7b45a0ee19 Author: Christian Schoenebeck <christian.schoenebeck@gmail.com> Date: Sun Oct 5 10:48:21 2014 +0200 ddns-scripts: Insert description for NEW option update_script Insert description for NEW option update_script Signed-off-by: Christian Schoenebeck <christian.schoenebeck@gmail.com> commit 6f6a60244df53e0556f5c75845c69aa832f97e4c Author: Christian Schoenebeck <christian.schoenebeck@gmail.com> Date: Sun Oct 5 10:43:52 2014 +0200 ddns-scripts: Update PKG_RELEASE Update_PKG_RELEASE to reflect changes Signed-off-by: Christian Schoenebeck <christian.schoenebeck@gmail.com>
* | | ocserv: updated to 0.8.6Nikos Mavrogiannopoulos2014-10-05
| | | | | | | | | | | | Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* | | Merge pull request #394 from arfett/mastersbyx2014-10-05
|\ \ \ | | | | | | | | mwan3-luci: update to 1.3-5
| * | | mwan3-luci: update to 1.3-5Aedan ARFETT Renner2014-10-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | new naming/wording - more generically mwan than mwan3 renamed cryptic variables/functions/etc everywhere removed unused and unnecessary variables everywhere cleaned up ugly and inefficient Lua and Javascript Signed-off-by: Aedan Renner chipdankly@gmail.com
* | | | Merge pull request #376 from thess/rtorrent-rpcTed Hess2014-10-04
|\ \ \ \ | | | | | | | | | | rtorrent: enable rtorrent-rpc variant, update license info
| * | | | rtorrent: enable rtorrent-rpc variant, update license infoTed Hess2014-09-29
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Ted Hess <thess@kitschensync.net>
* | | | | Merge pull request #370 from Shulyaka/mastersbyx2014-10-04
|\ \ \ \ \ | | | | | | | | | | | | tinycdb: new packages for tinycdb (a Constant DataBase) library
| * | | | | Tinycdb libraryDenis Shulyaka2014-10-03
| | | | | |
* | | | | | ocserv: updated to 0.8.5Nikos Mavrogiannopoulos2014-10-04
| |_|_|_|/ |/| | | | | | | | | | | | | | Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* | | | | Currently tinc init script will delete the generated configuration folder ↵Alessio Caiazza2014-10-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | and then check if it will not exists in order to create it. This patch will first check if the generated configuration folder exists and then delete it, after that it will always create the configuration folder.
* | | | | tinc: update MAINTAINER contact infoSaverio Proto2014-10-03
| | | | |
* | | | | tinc: update year in Copyright noticeSaverio Proto2014-10-03
| | | | |
* | | | | Merge pull request #390 from Adze1502/masterchamptar2014-10-02
|\ \ \ \ \ | | | | | | | | | | | | mwan3: update to version 1.5-7
| * | | | | mwan3: update to version 1.5-7Adze15022014-10-02
|/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed issue where an manual ifup-ed interface would immediatly go down again Remove from init as mwan3 is not a service Signed-off-by: Jeroen Louwes <jeroen.louwes@gmail.com>
* | | | | Merge pull request #357 from cjkoenig/update_monitchamptar2014-10-01
|\ \ \ \ \ | | | | | | | | | | | | monit: Update to 5.9
| * | | | | monit: Update to 5.9Christoph König2014-09-25
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Christoph König <christoph.koenig@gmail.com>
* | | | | | Merge pull request #378 from Vasilis/update_lispmobsbyx2014-10-01
|\ \ \ \ \ \ | | | | | | | | | | | | | | lispmob: Update to 0.4.1
| * | | | | | lispmob: Update to 0.4.1Vasileios Lakafosis2014-09-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Vasileios Lakafosis <lakafosi@cisco.com>
* | | | | | | confuse: adopt and updateSteven Barth2014-10-01
| | | | | | |
* | | | | | | Merge pull request #388 from br101/mastersbyx2014-10-01
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | horst: Update to version 4.2
| * | | | | | | horst: Update to version 4.2Bruno Randolf2014-10-01
| | | | | | | |
* | | | | | | | Merge pull request #389 from chris5560/mastersbyx2014-10-01
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | | ddns_scripts: url encode USERNAME and PASSWORD