aboutsummaryrefslogtreecommitdiffstats
path: root/main
Commit message (Collapse)AuthorAgeFilesLines
...
* main/zsh: upgrade to 5.1Eivind Uggedal2015-09-091-6/+6
|
* main/libbsd: upgrade to 0.7.0Sören Tempel2015-09-094-117/+42
| | | | fixes #4613
* openssh: fix subpackage dependenciesEivind Uggedal2015-09-091-1/+3
|
* main/openssh: openssh-sftp-server subpackageEivind Uggedal2015-09-091-3/+11
|
* main/alpine-mirrors: add rsync mirror for 2f30Natanael Copa2015-09-092-4/+5
|
* main/linux-vanilla: upgrade to 3.18.21Natanael Copa2015-09-091-4/+4
|
* main/go: upgrade to 1.5.1Eivind Uggedal2015-09-091-7/+7
|
* main/go: make go work with latest go-bootstrap changeSören Tempel2015-09-091-7/+15
| | | | | Also install go and gofmt binary to /usr/lib/go/bin and symlink it to /usr/bin. Also fix removal of tests.
* main/go-bootstrap: install to /usr/lib/go-bootstrapSören Tempel2015-09-091-14/+13
| | | | | | | | | To avoid that $GOROOT_BOOTSTRAP equals $GOROOT during main/go build. See: - https://github.com/golang/go/commit/f9379eb3467d2b6feb8fb0c7c2c366b81408305d Also: Cleanup package further and fix removal of _test.go packages.
* main/nodejs: upgrade to 4.0.0Eivind Uggedal2015-09-092-25/+7
|
* main/libuv: upgrade to 1.7.3Eivind Uggedal2015-09-091-4/+4
|
* main/libmnl: fix depends for -devNatanael Copa2015-09-081-3/+3
|
* main/mpv: upgrade to 0.10.0Sören Tempel2015-09-081-4/+4
|
* main/wpa_supplicant: remove bogus freq_listNatanael Copa2015-09-081-2/+4
| | | | ref #4612
* main/zsh: fix loading of provided zprofileEivind Uggedal2015-09-081-6/+2
| | | | | | | With `--enable-etcdir=/etc/zsh` zprofile needs to be installed to /etc/zsh. Also remove unnecessary configure flags for zshenv/zlogin/zlogout/zshrc since they mathed defaults when etcdir is enabled.
* main/dropbear: fix sftp-server locationEivind Uggedal2015-09-082-8/+28
| | | | | | Our openssh package ships sftp-server as /usr/lib/ssh/sftp-server and not /usr/libexec/sftp-server as is the dropbear default.
* main/hiredis: upgrade to 0.13.2Eivind Uggedal2015-09-071-4/+4
|
* main/lua-dbi: fix dependsNatanael Copa2015-09-071-4/+4
| | | | fixes #4619
* tarsnap: security upgrade to 1.0.36.1Eivind Uggedal2015-09-071-4/+4
|
* obnam: upgrade to 1.16Eivind Uggedal2015-09-071-5/+5
|
* py-cliapp: upgrade to 1.20150829Eivind Uggedal2015-09-071-7/+7
|
* weechat: split plugins into sub packagesEivind Uggedal2015-09-071-5/+21
| | | | | | | | | | | | Only for the plugins needing extra dependencies: - aspell - lua - perl - python One oddity is that the python plugin don't contain a NEEDED section against libpython so the dependency had to be manually added.
* main/freeswitch: fix empty voicemail passwordNatanael Copa2015-09-072-4/+36
| | | | | Upstream issue: https://freeswitch.org/jira/browse/FS-8131
* main/dropbear: fix initd checksumsEivind Uggedal2015-09-071-3/+3
|
* main/dropbear: upgrade to 2015.68Eivind Uggedal2015-09-072-4/+9
| | | | Also generate ECDSA-Hostkey on startup.
* main/openvswitch: update to 2.4.0Stuart Cardall2015-09-073-28/+43
| | | | | | | | | | | | | | | *** NB: please move openvswitch-2.3.2-r1.apk in edge ---> stable *** Changes in 2.4.0: https://github.com/openvswitch/ovs/blob/master/NEWS Added bash-completions ovs 2.3.2 & 2.4.0 both have partial support for LXC: see: https://github.com/itoffshore/lxc-scripts ovsup / ovsdown stop LXC containers losing connectivity when networking is restarted.
* main/openvswitch: fix ifupdown scriptStuart Cardall2015-09-073-19/+23
| | | | | | | | starting ovs-vswitchd from the ifupdown script did not start the depends during boot. ovs will now start correctly with networking if it is stopped or if none of the ovs services have been configured.
* main/wpa_supplicant: add wpa_cli(8) action scriptSören Tempel2015-09-072-5/+47
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This action script manages the associated network interfaces. It start them when wpa_supplicant successfully established a connection and it stops them when wpa_supplicant disconnected from an access point. When traveling between different location / networks / access points with my laptop I noticed that udhcpc didn't automatically require a new lease and had to be restarted each time I was associated with a new access point. I had to manually invoke `ifdown <interface> && ifup <interface>` each time I associated with a new access point. Searching for solutions I looked at gentoo's netifrc[1] and noticed that they are using a wpa_cli(8) action script[2] to solve this. I read the gentoo action script[3] and decided to write a new action script for alpine loosely based on gentoo's version. This is the result. Maybe there is a better way to solve this problem if so I would to hear about it. Otherwise I believe that this is the best approach to solve it. It should also make it unnecessary to add the wpa_supplicant service to the boot level since it doesn't need to be started before the networking service anymore. The action script has to be started manually using `wpa_cli -a /etc/wpa_supplicant/wpa_cli.sh` currently. I couldn't decide how to start it automatically. Gentoo starts it as a part of netifrc using start-stop-daemon[4]. Maybe we should start it with the same options from the wpa_supplicant OpenRC service? [1]: https://gitweb.gentoo.org/proj/netifrc.git [2]: https://gitweb.gentoo.org/proj/netifrc.git/tree/net/wpa_supplicant.sh#n54 [3]: https://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/net-wireless/wpa_supplicant/files/wpa_cli.sh [4]: https://gitweb.gentoo.org/proj/netifrc.git/tree/net/wpa_supplicant.sh#n164
* main/lua-asn1: upgrade to 2.0.0Kaarle Ritvanen2015-09-072-23/+6
|
* main/freeswitch: fix reset of voicemail greetingNatanael Copa2015-09-072-4/+56
| | | | | Upstream bug and pull request: https://freeswitch.org/jira/browse/FS-1772
* main/lvm2: upgrade to 2.02.130Natanael Copa2015-09-071-4/+4
|
* main/mesa: upgrade to 10.6.6Natanael Copa2015-09-071-5/+5
|
* main/php: upgrade to 5.6.13Natanael Copa2015-09-071-4/+4
|
* main/subversion: upgrade to 1.9.1Natanael Copa2015-09-071-5/+5
|
* main/dhcp: upgrade to 4.3.3Natanael Copa2015-09-072-30/+5
|
* main/bind: upgrade to 9.10.2_p4Natanael Copa2015-09-071-5/+5
|
* main/libvirt: upgrade to 1.2.19Natanael Copa2015-09-071-5/+5
|
* main/squid: upgrade to 3.5.8Natanael Copa2015-09-071-4/+4
|
* main/mutt: add suid to options for mutt_dotlockNatanael Copa2015-09-051-0/+1
|
* main/mutt: upgrade to 1.5.24Sören Tempel2015-09-052-58/+6
|
* main/gpgme: upgrade to 1.6.0Sören Tempel2015-09-051-6/+6
|
* main/chrony: adjust path to sendmail(1)Sören Tempel2015-09-051-1/+2
| | | | | | The default configuration assumes that sendmail is located at /usr/lib/sendmail, however, the sendmail version shipped by busybox is located at /usr/sbin/sendmail.
* main/youtube-dl: upgrade to 2015.08.28systmkor2015-09-051-5/+5
| | | | | | | ref #4274 Also: - changes url to requested http://youtube-dl.org/
* main/weechat: update to 1.3Stuart Cardall2015-09-051-6/+6
|
* main/weechat: fix undeclared python depMichael Zuo2015-09-051-2/+2
|
* main/openntpd: fixes privelege seperation defaultssystmkor2015-09-051-7/+8
| | | | | - compiles default privelege seperation user as ntp instead of _ntp - creates required chroot directory /var/empty
* main/alpine-baselayout: create /var/emptyNatanael Copa2015-09-051-1/+2
|
* main/alsa-utils: fix checksumNatanael Copa2015-09-051-3/+3
|
* main/alsa-utils: fix OpenRC service headerSören Tempel2015-09-052-2/+2
|
* main/wpa_supplicant: simplify OpenRC serviceSören Tempel2015-09-052-27/+10
| | | | Alpine only supports the Linux kernel.