kumquat-buildroot/package
Thomas Petazzoni 0c5946acc2 ncurses: remove BR2_PACKAGE_NCURSES_TARGET_{FORM, MENU, PANEL} options
The ncurses sub-options BR2_PACKAGE_NCURSES_TARGET_{FORM,MENU,PANEL}
are currently very badly broken: they only control whether the
libform, libmenu and libpanel libraries are installed in
$(TARGET_DIR), but do absolutely nothing about their installation in
$(STAGING_DIR).

This means that when one of those options is disabled, the
corresponding library is indeed not installed in the target, but is
available in staging. It can therefore be detected by the configure
script of another package and used... even though the library will not
be in the target, causing a runtime failure.

Internally, ncurses.mk uses the "make install" logic of ncurses for
the staging installation, but uses a completely hand-written logic for
the target installation, which is the reason for this
desynchronization between what's installed in staging and target.

When BR2_PACKAGE_NCURSES_WCHAR=y, this also causes some build
failures. Indeed, when BR2_PACKAGE_NCURSES_WCHAR=y, Buildroot creates
some symbolic links lib<foo>.so -> lib<foo>w.so in staging and target,
but only for the lib<foo> that have been enabled by
BR2_PACKAGE_NCURSES_TARGET_{FORM,MENU,PANEL}. Due to this, a package
that for example needed the libmenu library but forgot to select
BR2_PACKAGE_NCURSES_TARGET_MENU was:

 - Building fine with BR2_PACKAGE_NCURSES_WCHAR disabled (because
   libmenu.so exists in staging), but would fail to run at runtime
   because libmenu.so is not in the target.

 - Fail to build with BR2_PACKAGE_NCURSES_WCHAR=y because only
   libmenuw.so exists, and not the libmenu.so symbolic link.

Since those libraries are small (43K for libform, 21K for libmenu and
8.2K for libpanel), this commit takes the very simple approach of
removing those options, and installing the libraries
unconditionally. It therefore uses the "make install" logic for both
the staging *and* target installation.

In detail, this commit:

 - Removes the NCURSES_PROGS variable, not needed since
   --without-progs already allows to disable the build and
   installation of programs.

 - Removes the NCURSES_LIBS-y variable, and replaces it with a single
   unconditional assignement to NCURSES_LIBS, only used to create the
   lib<foo>w.so -> lib<foo>.so symbolic links when wchar support is
   enabled.

 - Removes NCURSES_INSTALL_TARGET_CMDS and the functions it was
   calling: NCURSES_INSTALL_TARGET_LIBS and
   NCURSES_INSTALL_TARGET_PROGS.

 - Adds a NCURSES_TARGET_SYMLINK_RESET hook to create the reset ->
   tset symbolic link, as was done before.

 - Adds a NCURSES_TARGET_CLEANUP_TERMINFO to cleanup the terminfo
   files in the target, so that we stay in the same situation in terms
   of installed terminfo files.

 - Removes the BR2_PACKAGE_NCURSES_TARGET_{FORM,MENU,PANEL} options
   from the Config.in files: both their definition and usage.

 - Simplifies all the symlink dance for lib<foo> -> lib<foo>w, because
   as Yann E. Morin suggested, this dance is only needed in staging, not
   in the target. Once binaries have been built, they refer to the
   SONAME of the library, which is the lib<foo>w variant (for shared
   linking). For static linking and .pc files, it's obvious that we
   don't care about them on the target. Therefore the
   NCURSES_LINK_LIBS_STATIC, NCURSES_LINK_LIBS_SHARED and
   NCURSES_LINK_PC functions no longer take any argument: they always
   apply to STAGING_DIR only. NCURSES_LINK_TARGET_LIBS is removed.

It is worth mentioning that adding Config.in.legacy support is *NOT*
necessary. Indeed:

 - If they were disabled before this patch, having them in
   Config.in.legacy would not trigger the legacy warning.

 - If they were enabled before this patch, then the behavior is
   unchanged: all libraries are now unconditionally installed. So
   there is no point in warning the user.

We double-checked the installed size of a filesystem containing just
ncurses before and after this patch, and the only folder that has its
size changed is /usr/lib, growing from 852 KB to 932 KB in the wchar
enabled case. That's a 80 KB system size increase.

This commit fixes the sngrep build failure and potentially numerous
runtime issues with ncurses.

Fixes:

  http://autobuild.buildroot.net/results/7b5db21a6c568e6c6c8fe2b5d5a2f5ca24df510c/

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2017-02-26 17:00:12 +01:00
..
4th
a10disp
acl
acpica
acpid acpid: bump to version 2.0.28 2017-02-04 13:04:08 +01:00
acpitool
acsccid
adwaita-icon-theme
aer-inject
aespipe
agentpp agentpp: bump to 4.0.7 2017-01-16 13:45:07 +01:00
aiccu
aircrack-ng
alljoyn
alljoyn-base package: remove the default value of the $(PKG)_SOURCE variable 2017-01-25 16:46:29 +13:00
alljoyn-tcl
alljoyn-tcl-base
alsa-lib
alsa-utils ncurses: remove BR2_PACKAGE_NCURSES_TARGET_{FORM, MENU, PANEL} options 2017-02-26 17:00:12 +01:00
alsamixergui
am33x-cm3
am335x-pru-package
amd-catalyst
android-tools
angular-websocket
angularjs
apache
apitrace
apr
apr-util
argp-standalone
argparse
argus
armadillo
arptables
assimp
at
atf
atftp
atk
atkmm
atop
attr
aubio
audiofile
audit audit: bump to version 2.7.1 2017-02-04 13:04:22 +01:00
aufs
aufs-util
aumix
autoconf
autoconf-archive
autofs
automake
autossh
avahi
avrdude avrdude: fix typo in variable name 2017-02-07 09:48:30 +01:00
axel
axfsutils
b43-firmware
b43-fwcutter
babeld babeld: fix typo in variable name 2017-02-07 09:43:41 +01:00
bandwidthd
bash bash: add upstream security fixes to patch level 12 2017-02-08 09:46:13 +01:00
batctl
batman-adv package: remove the default value of the $(PKG)_SOURCE variable 2017-01-25 16:46:29 +13:00
bc
bcache-tools package: fix reverse dependencies of util-linux 2017-01-28 21:02:51 +13:00
bcm2835
bctoolbox bctoolbox: remove redundant mbedtls dependency 2017-02-23 22:24:39 +01:00
bcusdk
bdwgc
beecrypt
bellagio
benejson
berkeleydb berkeleydb: workaround m68k/coldfire issue 2017-02-22 21:33:21 +01:00
bind bind: security bump to version 9.11.0-P3 2017-02-13 18:01:14 +01:00
binutils binutils: fix for ld segfault for microblaze when --gc-sections is used 2017-02-25 16:47:17 +01:00
biosdevname
bison
bitstream
bitstream-vera
blktrace
bluez5_utils package/bluez5_utils: Only CLI client depends on !uClibc 2017-01-26 21:02:48 +13:00
bluez_utils
bmon
boa
bonnie
boost
bootstrap
bootutils
botan
bridge-utils
bsdiff
btrfs-progs btrfs-progs: don't use <execinfo.h> with uClibc 2017-02-23 22:34:55 +01:00
bullet
bustle
busybox busybox: bump version to 1.26.2 2017-01-21 13:55:00 +01:00
bwm-ng
bzip2
c-ares
c-icap
c-icap-modules
c-periphery
ca-certificates ca-certificates: bump to version 20161130 2017-01-04 17:02:12 +01:00
cache-calibrator
cairo
cairomm
can-utils
canfestival
cannelloni cannelloni: fix build failure caused by missing include 2017-02-15 21:30:03 +01:00
cantarell
cbootimage cbootimage: disable on musl 2017-02-14 22:13:42 +01:00
cc-tool
ccache ccache: Patch to fix toolchain-wrapper's --sysroot 2017-01-27 21:57:23 +13:00
ccid
ccrypt
cdrkit
cegui06
celt051
cgic
cgilua
cgroupfs-mount
check
checkpolicy checkpolicy: bump version to 2.6 2017-01-25 23:25:26 +13:00
chocolate-doom
chrony
cifs-utils
circus package: fix reverse dependencies of util-linux 2017-01-28 21:02:51 +13:00
civetweb
cjson cjson: security bump to version v1.2.1 2017-01-31 23:48:32 +01:00
clamav
clapack
classpath package/classpath: Don't depend on jamvm 2017-02-13 22:18:10 +01:00
cloog
cloop
cmake cmake: bump version to 3.7.2 2017-01-16 15:29:44 +01:00
collectd package/mosquito: needs sync_4 2017-02-19 22:49:33 +01:00
comix-cursors
connman
connman-gtk
conntrack-tools
copas
coreutils
cosmo
coxpcall
cpio package/cpio: Fix GNU Mirror Path 2017-02-06 19:13:47 +01:00
cppcms package/libgpg-error: bump to version 1.23 2016-07-04 22:22:27 +02:00
cppdb
cppunit
cppzmq package: fix reverse dependencies of util-linux 2017-01-28 21:02:51 +13:00
cpuload
cramfs
crda
crudini package: remove the default value of the $(PKG)_SOURCE variable 2017-01-25 16:46:29 +13:00
cryptodev
cryptodev-linux package/cryptodev-linux: fix build with recent kernels 2017-02-09 21:54:59 +01:00
cryptopp
cryptsetup package: fix reverse dependencies of util-linux 2017-01-28 21:02:51 +13:00
ctorrent
cups packages: improve license type lists 2017-02-20 22:16:01 +01:00
curlftpfs
cvs
cwiid
cxxtest
czmq package: fix reverse dependencies of util-linux 2017-01-28 21:02:51 +13:00
dado
dante
darkhttpd
dash
dawgdic
dbus dbus: security bump to version 1.10.16 2017-02-16 21:20:55 +01:00
dbus-cpp
dbus-glib
dbus-python
dbus-triggerd
dcron
ddrescue ddrescue: use generic extract command 2017-02-15 22:11:11 +01:00
debianutils
dejavu
devmem2
dfu-util
dhcp
dhcpcd
dhcpdump
dhrystone
dialog
diffutils
dillo
ding-libs
directfb directfb: add gfx-state initialisation 2017-02-20 21:37:11 +01:00
directfb-examples
dmalloc
dmidecode
dmraid
dnsmasq
docker
docker-containerd package: fix reverse dependencies of util-linux 2017-01-28 21:02:51 +13:00
docker-engine package: fix reverse dependencies of util-linux 2017-01-28 21:02:51 +13:00
domoticz package/mosquito: needs sync_4 2017-02-19 22:49:33 +01:00
doom-wad
dos2unix
dosfstools
dovecot
dovecot-pigeonhole
doxygen
drbd-utils drbd-utils: fix typo in variable name 2017-02-07 09:45:04 +01:00
dropbear
dropwatch
dsp-tools
dstat
dt
dtach
dtc
dtv-scan-tables
duma packages: improve license type lists 2017-02-20 22:16:01 +01:00
dvb-apps
dvblast
dvbsnoop
dvdauthor
dvdrw-tools
e2fsprogs packages: improve license type lists 2017-02-20 22:16:01 +01:00
e2tools package: update comments for reverse dependencies of util-linux 2017-01-28 21:03:04 +13:00
easydbus
ebtables
ecryptfs-utils
ed ed: use generic extract command 2017-02-15 22:11:11 +01:00
edid-decode
eeprog
efibootmgr
efivar
efl efl: do not force dependency on libudev by making eeze a config option. 2017-02-06 17:12:34 +01:00
eigen
ejabberd
elf2flt
elftosb
elfutils
emlog
empty
enchant
enlightenment efl: do not force dependency on libudev by making eeze a config option. 2017-02-06 17:12:34 +01:00
enscript
erlang erlang: set ERL_TOP to avoid using user's version 2017-02-19 23:20:43 +01:00
erlang-goldrush
erlang-lager erlang-lager: add explicit dependencies for host variant 2016-07-03 08:47:49 +02:00
erlang-p1-cache-tab
erlang-p1-iconv
erlang-p1-sip
erlang-p1-stringprep
erlang-p1-stun
erlang-p1-tls
erlang-p1-utils
erlang-p1-xml
erlang-p1-yaml
erlang-p1-zlib
erlang-rebar
espeak package/espeak: fix build issue with gcc6 2017-01-16 13:42:49 +01:00
ethtool
eudev package: update comments for reverse dependencies of util-linux 2017-01-28 21:03:04 +13:00
ev3dev-linux-drivers
evemu
eventlog
evtest package: remove the default value of the $(PKG)_SOURCE variable 2017-01-25 16:46:29 +13:00
exfat
exfat-utils
exim
exiv2
expat
expect
expedite
explorercanvas
ezxml
f2fs-tools package: update comments for reverse dependencies of util-linux 2017-01-28 21:03:04 +13:00
faad2
faifa
fakedate fakedate: new package 2017-02-07 22:29:59 +01:00
fakeroot
faketime
fan-ctrl
fastd
fb-test-app
fbdump
fbgrab
fbset
fbterm package/fbterm: Fix building against libiconv 2017-01-29 14:25:16 +01:00
fbtft
fbv
fcgiwrap
fconfig
fdk-aac
feh
fetchmail
ffmpeg package/ffmpeg: bump version to 3.2.3 2017-02-06 22:16:29 +01:00
fftw
ficl
file packages: improve license type lists 2017-02-20 22:16:01 +01:00
filemq package: fix reverse dependencies of util-linux 2017-01-28 21:02:51 +13:00
findutils
fio
fis
flac flac: fix benchmark linking issue with older glibc versions 2017-01-10 14:02:25 +01:00
flann
flannel
flashbench
flashrom
flex
flickcurl
flite
flot
fltk
fluxbox
fmc
fmlib
fmtools
font-awesome
fontconfig
fping
freeradius-client
freerdp
freescale-imx
freeswitch package: update comments for reverse dependencies of util-linux 2017-01-28 21:03:04 +13:00
freetype
fswebcam
ftop
fwts
fwup
fxload
gadgetfs-test
gamin
gauche
gawk
gcc gcc: add patches for or1k specific gcc version 2017-02-20 23:43:22 +01:00
gcr
gd gd: security bump to version 2.2.4 2017-01-19 15:09:12 +01:00
gdb package/gdb: backport upstream fix for simulator build issue with bfin 2017-02-12 15:02:10 +01:00
gdbm
gdk-pixbuf gdk-pixbuf: bump to version 2.36.4 2017-01-17 14:44:18 +11:00
genext2fs
gengetopt gengetopt: add patch to fix compilation warnings in generated code 2017-02-04 09:25:43 +01:00
genimage
genpart
genromfs
geoip
gesftpserver
getent
gettext
gflags
ghostscript-fonts
giblib
giflib
git packages: improve license type lists 2017-02-20 22:16:01 +01:00
git-crypt git-crypt: new package 2017-01-30 15:38:04 +01:00
glib-networking
glibc glibc: install libanl.so to target 2017-02-24 12:02:25 +01:00
glibmm
glm
glmark2 packages: improve license type lists 2017-02-20 22:16:01 +01:00
glog
gmock
gmp
gmpc
gmrender-resurrect
gnu-efi
gnuchess
gnupg
gnupg2
gnuplot
gnuradio
gnutls
go go: security bump to version 1.7.4 2017-01-23 23:01:27 +01:00
go-bootstrap
gob2
google-breakpad
google-material-design-icons
googlefontdirectory
gperf Revert "gperf: bump to version 3.1" 2017-01-18 11:31:24 +01:00
gpm
gpsd
gptfdisk package: fix reverse dependencies of util-linux 2017-01-28 21:02:51 +13:00
gqview
gr-osmosdr
granite
grantlee package/grantlee: upgrade to 5.1.0, remove obsolete Qt4 build option 2016-07-01 00:17:49 +02:00
graphite2 graphite2: bump to version 1.3.9 2017-01-26 21:08:37 +01:00
grep
gsettings-desktop-schemas
gsl
gssdp
gstreamer gstreamer: fix unaligned detection for or1k 2017-02-18 15:48:02 +01:00
gstreamer1 gst-omx: bump to version 1.10.4 2017-02-23 22:53:48 +01:00
gtest
gtk2-engines
gtkmm3
gtkperf
gtksourceview
guile
gupnp package: update comments for reverse dependencies of util-linux 2017-01-28 21:03:04 +13:00
gupnp-av
gupnp-dlna
gupnp-tools
gutenprint
gvfs
gzip
hans
harfbuzz harfbuzz: bump to version 1.4.2 2017-01-24 15:08:44 +01:00
haserl
haveged
hdparm hdparm: bump to version 9.51 2017-01-21 13:55:43 +01:00
heimdal heimdal: disable parallel make 2017-01-30 21:14:11 +01:00
heirloom-mailx
hiawatha hiawatha: bump to version 10.5 2017-01-27 21:32:42 +01:00
hicolor-icon-theme
hidapi
hiredis package/hiredis: fix makefile code 2017-02-14 21:23:11 +01:00
hostapd
hplip packages: improve license type lists 2017-02-20 22:16:01 +01:00
htop
httping
hwdata
hwloc
i2c-tools
i7z
ibrcommon package: remove the default value of the $(PKG)_SOURCE variable 2017-01-25 16:46:29 +13:00
ibrdtn package: remove the default value of the $(PKG)_SOURCE variable 2017-01-25 16:46:29 +13:00
ibrdtn-tools
ibrdtnd package: remove the default value of the $(PKG)_SOURCE variable 2017-01-25 16:46:29 +13:00
icu
ifenslave
ifplugd
iftop
ifupdown
igd2-for-linux
igh-ethercat
igmpproxy
ijs
imagemagick imagemagick: fix build of png support when jpeg support is disabled 2017-02-06 19:19:32 +01:00
imlib2
imx-usb-loader
inadyn
inconsolata
initscripts
inotify-tools
input-event-daemon
input-tools
intel-microcode
intltool
iodine
iostat
iotop
iozone
iperf
iperf3 iperf3: bump to version 3.1.5 2017-01-21 13:55:51 +01:00
ipmitool package/ipmitool: bump version to 1.8.18 2016-12-14 10:12:25 +01:00
ipmiutil
iproute2
iprutils ncurses: remove BR2_PACKAGE_NCURSES_TARGET_{FORM, MENU, PANEL} options 2017-02-26 17:00:12 +01:00
ipsec-tools ipsec-tools: fix typo in variable name 2017-02-07 10:02:14 +01:00
ipset
iptables iptables: bump to version 1.6.1 2017-01-29 14:44:23 +01:00
iptraf-ng ncurses: remove BR2_PACKAGE_NCURSES_TARGET_{FORM, MENU, PANEL} options 2017-02-26 17:00:12 +01:00
iputils
iqvlinux
irda-utils
irqbalance
irssi
isl
iucode-tool
iw
jack2 jack2: fix NGREG build failures 2017-01-25 23:05:20 +13:00
jamvm
jansson jansson: bump to version 2.9 2017-02-04 13:07:14 +01:00
janus-gateway janus-gateway: add dependency of streaming plugin on headers >= 3.9 2017-01-28 21:41:00 +13:00
jasper jasper: disable C++ compiler check 2017-01-16 13:16:14 +01:00
jemalloc
jhead
jimtcl
joe
jpeg
jpeg-turbo
jq
jquery
jquery-datetimepicker
jquery-keyboard
jquery-mobile
jquery-sidebar
jquery-sparkline
jquery-ui
jquery-ui-themes
jquery-validation
jsmin
jsmn package/cbootimage: enable target variant 2017-01-28 23:21:30 +13:00
json-c
json-glib
json-javascript
jsoncpp
kbd
kexec
kexec-lite kexec-lite: add KEXEC_LITE_LICENSE_FILES 2017-01-10 14:02:36 +01:00
keyutils
kismet ncurses: remove BR2_PACKAGE_NCURSES_TARGET_{FORM, MENU, PANEL} options 2017-02-26 17:00:12 +01:00
kmod kmod: workaround for microblaze ld bug 2017-02-19 22:27:14 +01:00
kmsxx kmsxx: fix build error for m68k/coldfire 2017-02-14 20:38:49 +01:00
knock
kodi
kodi-adsp-basic
kodi-adsp-freesurround
kodi-audiodecoder-modplug
kodi-audiodecoder-nosefart
kodi-audiodecoder-opus
kodi-audiodecoder-sidplay
kodi-audiodecoder-snesapu
kodi-audiodecoder-stsound
kodi-audiodecoder-timidity
kodi-audiodecoder-vgmstream
kodi-audioencoder-flac
kodi-audioencoder-lame
kodi-audioencoder-vorbis
kodi-audioencoder-wav
kodi-platform
kodi-pvr-argustv
kodi-pvr-dvblink
kodi-pvr-dvbviewer
kodi-pvr-filmon
kodi-pvr-hdhomerun
kodi-pvr-hts
kodi-pvr-iptvsimple
kodi-pvr-mediaportal-tvserver
kodi-pvr-mythtv
kodi-pvr-nextpvr
kodi-pvr-njoy
kodi-pvr-pctv
kodi-pvr-stalker
kodi-pvr-vbox
kodi-pvr-vdr-vnsi
kodi-pvr-vuplus
kodi-pvr-wmc
kodi-screensaver-asteroids
kodi-screensaver-asterwave
kodi-screensaver-biogenesis
kodi-screensaver-cpblobs
kodi-screensaver-crystalmorph
kodi-screensaver-greynetic
kodi-screensaver-matrixtrails
kodi-screensaver-pingpong
kodi-screensaver-planestate
kodi-screensaver-pyro
kodi-screensaver-rsxs
kodi-screensaver-stars
kodi-visualisation-fishbmc
kodi-visualisation-fountain
kodi-visualisation-goom
kodi-visualisation-shadertoy
kodi-visualisation-spectrum
kodi-visualisation-waveforhue
kodi-visualisation-waveform
kompexsqlite
ktap
kvm-unit-tests
kvmtool
kyua
lame
lapack
latencytop
lbase64
lbreakout2
lcdapi lcdapi: fix build error for m68k/coldfire 2017-02-14 20:38:43 +01:00
lcdproc
lcms2 lcms2: add upstream security fix for CVE-2016-10165 2017-01-30 21:16:05 +01:00
leafnode2
leafpad
less
lesstif
leveldb
lft
lftp
libaacs
libaio
libamcodec libamcodec: bump version to 296f39bc6fc47ddf5d88b9fd3cfb82a5b39048ca 2017-02-05 15:53:32 +01:00
libao
libarchive
libargtable2
libart
libasplib libasplib: add url to gcc bug report 2017-02-14 20:38:46 +01:00
libass
libassuan
libatasmart
libatomic_ops
libbdplus
libbluray
libbroadvoice
libbsd
libcap
libcap-ng
libcdaudio
libcddb
libcdio
libcec libcec: remove LIBCEC_AUTORECONF variable 2017-02-07 07:40:46 +01:00
libcgi
libcgicc
libcgroup
libcli
libcoap
libcodec2
libcofi
libconfig
libconfuse
libcroco
libcrossguid package: fix reverse dependencies of util-linux 2017-01-28 21:02:51 +13:00
libcue
libcuefile
libcurl libcurl: security bump to version 7.53.0 2017-02-23 21:35:11 +01:00
libdaemon
libdcadec
libdmtx
libdnet
libdri2
libdrm package/libdrm: bump version to 2.4.75 2017-01-28 22:54:40 +13:00
libdvbcsa
libdvbpsi
libdvbsi
libdvdcss
libdvdnav
libdvdread
libebml
libebur128
libedit
libee
libenca
libepoxy package/libepoxy: needs host-pkgconf 2017-02-24 11:57:08 +01:00
liberation
libesmtp
libestr
libev
libevdev libevdev: bump version to 1.5.6 2017-01-17 00:37:59 +01:00
libevent libevent: drop openssl static linking workaround 2017-02-09 15:02:12 +01:00
libexif
libeXosip2
libfastjson
libfcgi
libffi
libfm
libfm-extra
libfreefare
libfreeglut
libfreeimage
libfribidi
libftdi libftdi: fix typo in variable name 2017-02-07 09:55:27 +01:00
libftdi1
libfuse
libg7221
libgcrypt package/libgcrypt: bump to version 1.7.6 2017-01-27 13:10:06 +01:00
libgdiplus
libgee
libgeotiff
libglade
libglew
libglfw
libglib2
libglob
libglu
libgpg-error package/libgpg-error: bump to version 1.26 2017-01-27 13:12:31 +01:00
libgpgme
libgpiod package/libgpiod: bump version to 0.1.3 2017-02-14 22:44:17 +01:00
libgsasl
libgsm package/libgsm: new package 2017-01-28 08:34:28 +13:00
libgtk2
libgtk3 libgtk3: bump to version 3.22.7 2017-01-17 14:44:19 +11:00
libgudev
libhdhomerun
libhid
libhttpparser
libical
libiconv
libid3tag
libidn
libiio libiio: Bump to version 0.9 2017-02-06 19:51:01 +01:00
libilbc
libimxvpuapi libimxvpuapi: bump to version 0.10.3 2017-02-23 21:46:09 +01:00
libinput libinput: bump version to 1.6.0 2017-01-23 20:43:15 +01:00
libiqrf
libiscsi
libite
libjpeg
libjson
libksba
libldns
liblinear
libllcp
liblo
liblockfile packages: improve license type lists 2017-02-20 22:16:01 +01:00
liblog4c-localtime
liblogging
libmad
libmatroska
libmbim
libmbus
libmcrypt
libmemcached
libmhash
libmicrohttpd libmicrohttpd: bump version to 0.9.52 2017-02-04 17:14:16 +01:00
libminiupnpc
libmms
libmng
libmnl
libmodbus
libmodplug
libmpd
libmpdclient
libmpeg2
libnatpmp
libndp
libnet
libnetfilter_acct
libnetfilter_conntrack
libnetfilter_cthelper
libnetfilter_cttimeout
libnetfilter_log
libnetfilter_queue
libnfc
libnfnetlink
libnfs
libnftnl
libnice
libnl
libnspr
libnss libnss: workaround for microblaze ld bug 2017-02-19 22:23:21 +01:00
liboauth
libogg
libopenh264
liboping
libosip2
libpam-radius-auth
libpam-tacplus
libpcap libpcap: sparc needs -fPIC as sparc64/microblaze 2017-02-26 14:26:52 +01:00
libpciaccess
libpfm4
libphidget
libpjsip libpjsip: bump to version 2.6 2017-01-28 15:28:39 +13:00
libplatform package/libplatform: bump version to 2.1.0 2017-02-06 14:13:25 +01:00
libplayer
libplist
libpng
libpqxx
libpthread-stubs
libpthsem
libqmi
libqrencode
libraw libraw: fix build with old glibc versions 2017-02-16 09:26:43 +01:00
libraw1394
libreplaygain
libroxml
librsvg
librsync
librtas
librtlsdr
libsamplerate
libseccomp
libsecret
libselinux libselinux: bump version to 2.6 2017-01-25 23:25:26 +13:00
libsemanage libsemanage: bump version to 2.6 2017-01-25 23:25:26 +13:00
libsepol libsepol: bump version to 2.6 2017-01-25 23:25:26 +13:00
libserial
libserialport
libsexy
libsha1
libshairplay
libshout
libsidplay2
libsigc
libsigrok
libsigrokdecode
libsigsegv libsigsegv: make the architecture dependencies more robust 2016-08-09 15:50:04 +02:00
libsilk
libsndfile libsndfile: disable external library dependencies 2017-01-20 13:22:14 +11:00
libsoc
libsocketcan
libsodium libsodium: bump to version 1.0.11 2017-01-30 21:15:32 +01:00
libsoil
libsoundtouch
libsoup
libsoxr
libsquish
libsrtp
libssh
libssh2
libstrophe
libsvg
libsvg-cairo
libsvgtiny
libsysfs
libtasn1 package/libtasn1: Fix GNU Mirror Path 2017-02-06 18:59:18 +01:00
libtheora
libtirpc
libtomcrypt
libtommath
libtool
libtorrent
libtpl
libubox
libuci
libucl
libuecc
libuio
libump
libunistring
libunwind
libupnp
libupnpp
liburcu packages: improve license type lists 2017-02-20 22:16:01 +01:00
liburiparser
libusb
libusb-compat
libusbgx
libuv package/libuv: bump to version 0.11.0 2017-02-05 15:16:40 +01:00
libv4l libv4l/ir-ctl: fix musl compile 2017-02-14 22:34:14 +01:00
libva
libva-intel-driver
libvdpau
libvips
libvncserver
libvorbis
libvpx
libwebsock
libwebsockets
libxkbcommon libxkbcommon: bump to version 0.7.1 2017-01-30 15:16:34 +01:00
libxml2
libxml-parser-perl
libxmlpp
libxmlrpc package/libxmlrpc: bump to version 1.39.12 2017-01-16 11:53:13 +01:00
libxslt
libyaml
libyuv
libzip
lightning package/lightning: Fix GNU Mirror Path 2017-02-06 18:59:02 +01:00
lighttpd lighttpd: bump version to 1.4.45 2017-01-16 15:29:05 +01:00
linenoise
linknx
links
linphone
linux-backports
linux-firmware linux-firmware: bump to version 6d3bc8886517d171068fd1263176b8b5c51df204 2017-02-06 15:11:23 +01:00
linux-fusion
linux-headers linux-headers: bump 4.{4, 9}.x series 2017-02-26 15:13:26 +01:00
linux-pam linux-pam: adjust login pam file for SELinux 2017-01-25 23:05:20 +13:00
linux-syscall-support
linux-tools
linux-zigbee
liquid-dsp
lirc-tools
lite
live555
ljlinenoise
ljsyscall
lksctp-tools
lldpd
lm-sensors packages: improve license type lists 2017-02-20 22:16:01 +01:00
lmbench
localedef
lockdev
lockfile-progs
log4cplus
log4cpp package: remove the default value of the $(PKG)_SOURCE variable 2017-01-25 16:46:29 +13:00
log4cxx log4cxx: fix build issue with gcc6+ on architectures with signed char 2017-01-31 23:37:27 +01:00
logrotate logrotate: enable selinux support 2017-02-07 17:40:15 +01:00
logsurfer
lpc3250loader
lpeg
lpty
lrandom
lrzsz
lshw
lsof
lsqlite3
lsuio
ltp-testsuite package/ltp-testsuite: update configure flags 2017-01-20 14:09:23 +11:00
ltrace
ltris
lttng-babeltrace package: update comments for reverse dependencies of util-linux 2017-01-28 21:03:04 +13:00
lttng-libust package: update comments for reverse dependencies of util-linux 2017-01-28 21:03:04 +13:00
lttng-modules
lttng-tools package: fix reverse dependencies of util-linux 2017-01-28 21:02:51 +13:00
lua lua: bump to version 5.3.4 2017-01-30 13:32:56 +01:00
lua-cjson
lua-coat
lua-coatpersistent
lua-csnappy
lua-ev
lua-iconv
lua-messagepack
lua-msgpack-native
lua-periphery
lua-testmore
luabitop
luacrypto
luaexpat
luaexpatutils
luafilesystem
luainterpreter
luajit
luajson
lualogging
luaposix
luarocks luarocks: fix target-finalize hook processing 2016-12-28 23:55:11 +01:00
luasec
luasocket
luasql-sqlite3
lunit
lutok
luv
luvi
lvm2
lxc lxc: bump to version 2.0.7 2017-02-09 23:24:59 +01:00
lz4
lzip lzip: bump to version 1.18 2017-02-09 21:35:55 +01:00
lzlib
lzma
lzo
lzop
m4
macchanger
madplay
make
makedevs
mali-t76x
mariadb package: remove the default value of the $(PKG)_SOURCE variable 2017-01-25 16:46:29 +13:00
matchbox
matchbox-common
matchbox-desktop
matchbox-fakekey
matchbox-keyboard
matchbox-lib
matchbox-panel
matchbox-startup-monitor
mbedtls package/mbedtls: make compression support a config option 2017-02-06 22:20:32 +01:00
mc
mcelog
mcrypt
mdadm
mediastreamer package/mediastreamer: fix build by bumping to version 2.14.0 2017-01-25 22:25:31 +01:00
memcached
memstat
memtest86
memtester
menu-cache
mesa3d package/{mesa3d, mesa3d-headers}: bump version to 13.0.4 2017-02-01 21:38:04 +01:00
mesa3d-demos
mesa3d-headers mesa3d-headers: remove installation of OpenVG headers 2017-02-15 21:27:01 +01:00
metacity
mfgtools
micropython micropython: bump version to v1.8.7 2017-01-24 17:28:15 +01:00
micropython-lib micropython-lib: Indicate that pcre is a runtime dependency 2017-01-25 22:38:30 +01:00
midori
mii-diag
mimic
minicom
minidlna
minissdpd
minizip
miraclecast
mjpegtools
mjpg-streamer
mke2img
mkpasswd mkpasswd: remove dash from "host mkpasswd" to match other host tools 2017-01-13 16:09:22 +01:00
mkpimage mkpimage: bump to latest barebox version 2017-02-09 23:33:34 +01:00
mksh
mmc-utils
moarvm moarvm: bump to version 2017.01 2017-01-30 14:13:40 +01:00
mobile-broadband-provider-info
modem-manager
modplugtools
mongodb
mongoose
mongrel2 package: fix reverse dependencies of util-linux 2017-01-28 21:02:51 +13:00
monit
monkey
mono package/mono: bump to version 4.6.2.16 2017-01-17 14:45:53 +11:00
mono-gtksharp3
monolite
mosh
mosquitto package/mosquito: needs sync_4 2017-02-19 22:49:33 +01:00
motion motion: disable autotools host optimization 2017-02-11 15:18:33 +01:00
mp4v2
mpc
mpd package/mpd: use proper BR2_PACKAGE_MPD_VERSION_0_19 symbol 2017-02-16 22:31:02 +01:00
mpd-mpc
mpdecimal
mpfr
mpg123
mplayer
mpv package/mpv: fixup fix build on powerpc64 w/ altivec 2017-02-19 22:44:30 +01:00
mraa
mrouted
msgpack
msmtp
msr-tools
mtd package: fix reverse dependencies of util-linux 2017-01-28 21:02:51 +13:00
mtdev
mtdev2tuio
mtools
mtr
multicat
musepack
musl musl: no SSP on i386 and PowerPC 2017-02-15 13:10:14 +01:00
musl-compat-headers
mutt
mxml
mxsldr
mysql
nano nano: bump version to 2.7.4 2017-01-10 15:51:17 +01:00
nanocom
nasm
nbd
ncdu
ncftp
ncmpc
ncurses ncurses: remove BR2_PACKAGE_NCURSES_TARGET_{FORM, MENU, PANEL} options 2017-02-26 17:00:12 +01:00
ndisc6
ne10
neard
neardal
neon
net-tools
netatalk
netcat
netcat-openbsd
netperf
netplug
netsniff-ng
netsnmp
netstat-nat
netsurf-buildsystem
nettle
network-manager
newt
nfacct
nfs-utils
nftables
nginx nginx: bump version to 1.10.3 2017-02-04 17:15:39 +01:00
nginx-dav-ext
nginx-naxsi nginx-naxsi: bump to version 0.55.2 2017-02-06 15:24:21 +01:00
nginx-upload
ngircd
ngrep
ninja
nload ncurses: remove BR2_PACKAGE_NCURSES_TARGET_{FORM, MENU, PANEL} options 2017-02-26 17:00:12 +01:00
nmap
nmon
nodejs nodejs: unbreak 0.10.x host build 2017-01-23 19:07:04 +11:00
nodm
noip
norm
nss-mdns
nss-pam-ldapd
ntfs-3g ntfs-3g: add security fix for CVE-2017-0358 2017-02-14 11:18:38 +01:00
ntp ntp: security bump to verserion 4.2.8p9 2017-02-07 15:26:22 +01:00
numactl
nut
nuttcp
nvidia-driver
nvidia-tegra23
nvme
obsidian-cursors
ocf-linux
ocrad ocrad: use generic extract command 2017-02-15 22:11:12 +01:00
odhcp6c
odhcploc
odroid-mali
odroid-scripts
ofono
ola package: fix reverse dependencies of util-linux 2017-01-28 21:02:51 +13:00
olsr
omap-u-boot-utils
omniorb
omxplayer
on2-8170-libs on2-8170-libs: fix typo in variable name 2017-02-07 09:51:23 +01:00
on2-8170-modules
open2300
open-plc-utils
openal
openblas
openbox
opencore-amr
opencv
opencv3
opengl
openipmi
openjpeg
openldap
openmpi
openntpd openntpd: fix Config.in comment dependency 2017-02-06 19:22:08 +01:00
openobex
openocd
openpgm
openpowerlink
openssh openssh: Move key generation to the start function of init script. 2017-02-26 14:37:54 +01:00
openssl openssl: security bump to version 1.0.2k 2017-01-26 22:34:36 +01:00
openswan openswan: fix autobuild failures with uClibc-ng 2017-02-14 12:11:59 +01:00
opentyrian
opentyrian-data
openvmtools openvmtools: bump version to 5a9033ddfa95786d867e4d02bbb9a29bac8fb64f 2017-02-04 17:20:15 +01:00
openvpn openvpn: bump version to 2.4.0 2017-01-24 23:24:46 +13:00
openzwave
opkg
opkg-utils opkg-utils: new package 2017-02-06 16:07:33 +01:00
oprofile oprofile: Include operf command 2017-01-27 21:55:06 +13:00
opus opus: security bump to 1.1.4 2017-01-22 17:52:28 +11:00
opus-tools
opusfile
oracle-mysql package/oracle-mysql: fix path to systemd service file 2017-02-25 16:46:09 +01:00
orbit
orc
ortp package/ortp: bump version to 0.27.0 2017-01-24 22:37:58 +13:00
owfs
owl-linux
p7zip
p11-kit
p910nd
paho-mqtt-c
pango
pangomm
parted
patch
patchelf
pax-utils
pciutils
pcmanfm
pcre pcre: bump to version 8.40 2017-01-13 16:06:45 +01:00
pcsc-lite
pdbg
perl perl: bump to version 5.24.1 2017-01-23 14:03:15 +01:00
perl-crypt-openssl-random
perl-crypt-openssl-rsa
perl-datetime-tiny
perl-digest-hmac
perl-digest-sha1
perl-encode-detect
perl-encode-locale
perl-file-listing
perl-file-util
perl-gd perl-gd: bump to version 2.56 2017-01-29 14:57:04 +01:00
perl-gdgraph perl-gdgraph: bump to version 1.54 2017-01-29 14:57:40 +01:00
perl-gdtextutil
perl-html-parser
perl-html-tagset
perl-http-cookies
perl-http-daemon
perl-http-date
perl-http-message
perl-http-negotiate
perl-io-html
perl-io-socket-ssl
perl-json-tiny perl-json-tiny: bump to version 0.56 2017-01-20 20:27:55 +01:00
perl-libwww-perl perl-libwww-perl: bump to version 6.16 2017-01-20 20:31:47 +01:00
perl-lwp-mediatypes
perl-mail-dkim
perl-mailtools perl-mailtools: bump to version 2.18 2017-01-20 20:30:15 +01:00
perl-mime-base64
perl-module-build perl-module-build: bump to version 0.4220 2017-01-20 20:34:44 +01:00
perl-mojolicious perl-mojolicious: bump to version 7.20 2017-01-20 20:30:08 +01:00
perl-net-dns perl-net-dns: bump to version 1.07 2017-01-20 20:31:08 +01:00
perl-net-http perl-net-http: bump to version 6.12 2017-01-20 20:33:09 +01:00
perl-net-ssleay
perl-netaddr-ip perl-netaddr-ip: bump to version 4.079 2017-01-20 20:31:28 +01:00
perl-path-tiny perl-path-tiny: bump to version 0.100 2017-01-20 20:28:04 +01:00
perl-time-hires
perl-timedate
perl-try-tiny perl-try-tiny: bump to version 0.28 2017-01-20 20:29:49 +01:00
perl-uri
perl-www-robotrules
perl-xml-libxml perl-xml-libxml: bump to version 2.0128 2017-01-20 20:31:39 +01:00
perl-xml-namespacesupport
perl-xml-sax
perl-xml-sax-base
phidgetwebservice
php php: bump version to 7.1.1 2017-01-23 20:43:56 +01:00
php-amqp
php-geoip
php-gnupg
php-imagick php-imagick: bump version to 3.4.3RC1 2017-01-10 21:02:20 +01:00
php-memcached
php-ssh2
php-yaml
php-zmq package: fix reverse dependencies of util-linux 2017-01-28 21:02:51 +13:00
picocom
pifmrds
pinentry
pixman
pkgconf package/pkgconf: variable pkgdatadir also needs sysroot prefixing, wayland patch III 2017-01-29 23:06:33 +01:00
poco poco: doesn't support openrisc 2017-02-23 21:42:34 +01:00
polarssl
policycoreutils policycoreutils: bump version to 2.6 2017-01-25 23:25:26 +13:00
polkit
poppler poppler: qt5 support needs c++11 (since Qt5.7) 2017-02-11 15:19:57 +01:00
popt
portaudio portaudio: bump to version 190600_20161030 2017-02-04 17:23:07 +01:00
portmap
postgresql postgresql: disable spinlocks on openrisc 2017-02-15 22:34:44 +01:00
pound
powerpc-utils
powertop
powervr
pppd
pps-tools pps-tools: bump to version 97eaef2ab82a46d13ea5e00270712d6475fbe42b 2017-02-06 15:49:36 +01:00
pptp-linux
prboom
privoxy
procps-ng packages: improve license type lists 2017-02-20 22:16:01 +01:00
procrank_linux
proftpd package: remove the default value of the $(PKG)_SOURCE variable 2017-01-25 16:46:29 +13:00
protobuf
protobuf-c
proxychains-ng
pru-software-support pru-software-support: fix legal info again 2016-12-07 22:22:20 +01:00
pseudo
psmisc
psplash
ptpd
ptpd2
pugixml
pulseaudio
pulseview
pure-ftpd pure-ftpd: Added pure-ftpd quotas config option 2017-01-24 22:20:46 +13:00
putty package: remove the default value of the $(PKG)_SOURCE variable 2017-01-25 16:46:29 +13:00
pv
pwgen
python package/python: apply unicode config to host build 2017-02-23 23:03:19 +01:00
python3
python-alsaaudio
python-argh
python-arrow
python-attrs python-attrs: new package 2017-02-06 17:15:35 +01:00
python-autobahn
python-babel python-babel: new package 2017-01-25 14:11:10 +13:00
python-backports-abc
python-beautifulsoup4
python-bitstring python-bitstring: new package 2017-02-06 17:17:35 +01:00
python-bottle python-bottle: bump version to 0.12.13 2017-01-16 13:24:05 +01:00
python-can
python-cbor python-cbor: bump to version 1.0.0 2017-02-07 14:24:34 +01:00
python-certifi
python-cffi
python-characteristic
python-chardet
python-cheetah
python-cherrypy
python-click
python-coherence
python-configobj
python-configshell-fb
python-constantly
python-couchdb
python-crc16
python-crcmod
python-crossbar
python-cryptography
python-cssselect
python-cssutils
python-daemon
python-dataproperty python-dataproperty: bump to version 0.16.2 2017-01-24 22:49:04 +13:00
python-dateutil package: remove the default value of the $(PKG)_SOURCE variable 2017-01-25 16:46:29 +13:00
python-dialog
python-dialog3
python-dicttoxml
python-django
python-docopt
python-docutils
python-dominate
python-dpkt
python-ecdsa
python-engineio package: remove the default value of the $(PKG)_SOURCE variable 2017-01-25 16:46:29 +13:00
python-enum
python-enum34
python-flask python-flask: bump to version 0.12 2017-01-27 20:39:44 +13:00
python-flask-babel python-flask-babel: new package 2017-01-25 14:13:10 +13:00
python-flask-jsonrpc
python-flask-login
python-flup
python-futures
python-gobject
python-gunicorn python-gunicorn: fix build issue with python2 2017-02-06 22:49:44 +01:00
python-html5lib
python-httplib2
python-humanize
python-id3
python-idna
python-incremental
python-iniparse
python-iowait
python-ipaddr
python-ipaddress
python-ipy
python-ipython
python-itsdangerous
python-jinja2 python-jinja2: bump to version 2.9.4 2017-01-25 22:37:22 +01:00
python-json-schema-validator
python-jsonschema python-jsonschema: new package 2017-01-24 22:55:41 +13:00
python-keyring
python-libconfig
python-lmdb
python-logbook python-logbook: new package 2017-01-24 22:42:08 +13:00
python-lxml python-lxml: bump to version 3.7.2 2017-01-13 16:08:16 +01:00
python-mad
python-mako
python-markdown
python-markdown2 python-markdown2: new package 2017-01-24 22:46:38 +13:00
python-markupsafe
python-mbstrdecoder
python-meld3
python-mistune
python-msgpack
python-mutagen python-mutagen: new package 2017-01-26 21:06:19 +13:00
python-mwclient
python-mwscrape
python-mwscrape2slob
python-netaddr
python-netifaces
python-networkmanager package: remove the default value of the $(PKG)_SOURCE variable 2017-01-25 16:46:29 +13:00
python-nfc
python-numpy
python-paho-mqtt
python-pam
python-paramiko
python-pathpy python-pathpy: new package 2017-01-24 22:53:23 +13:00
python-pathtools
python-pathvalidate python-pathvalidate: bump to version 0.13.0 2017-01-24 22:48:59 +13:00
python-pexpect
python-pillow package/python-pillow: bump to version 4.0.0 2017-01-16 14:05:18 +01:00
python-posix-ipc
python-prompt-toolkit
python-protobuf
python-psutil
python-ptyprocess
python-pudb
python-pyasn
python-pyasn-modules
python-pycli
python-pycparser
python-pycrypto
python-pydal
python-pyelftools
python-pyftpdlib
python-pygame
python-pygments
python-pyicu
python-pyinotify
python-pylru
python-pymysql
python-pynacl
python-pyopenssl python-pyopenssl: bump to version 16.2.0 2017-02-07 14:25:14 +01:00
python-pyparsing
python-pyparted
python-pypcap
python-pyqrcode python-pyqrcode: new package 2017-01-27 21:05:28 +13:00
python-pyqt python-pyqt: use 'depends on' rather than 'select' for Qt 2017-02-07 17:46:48 +01:00
python-pyqt5 python-pyqt5: use 'depends on' rather than 'select' for Qt5 2017-02-07 17:46:48 +01:00
python-pyratemp
python-pyrex
python-pyro
python-pyroute2
python-pysendfile
python-pysmb
python-pysnmp
python-pysnmp-apps
python-pysnmp-mibs
python-pysocks
python-pytablereader python-pytablereader: new package 2017-01-24 22:56:30 +13:00
python-pytablewriter python-pytablewriter: bump to version 0.17.1 2017-01-24 22:57:16 +13:00
python-pytrie
python-pytz
python-pyudev
python-pyusb
python-pyxb
python-pyyaml python-pyyaml: bump to version 3.12 2017-02-07 20:39:18 +01:00
python-pyzmq python-pyzmq: bump to version 16.0.2 2017-02-01 22:11:58 +01:00
python-requests
python-requests-toolbelt
python-rpi-gpio
python-rtslib-fb
python-scapy3k
python-sdnotify
python-serial
python-service-identity python-service-identity: bump version to 16.0.0 2017-02-07 14:25:23 +01:00
python-setproctitle
python-setuptools
python-setuptools-scm python-setuptools-scm: new package 2017-01-24 22:49:17 +13:00
python-sh
python-shutilwhich
python-simpleaudio
python-simplejson
python-singledispatch
python-sip
python-six
python-slob
python-smbus-cffi
python-socketio package: remove the default value of the $(PKG)_SOURCE variable 2017-01-25 16:46:29 +13:00
python-spidev
python-thrift
python-tomako
python-toml python-toml: new package 2017-01-20 13:18:55 +11:00
python-tornado
python-treq
python-twisted
python-txaio
python-u-msgpack
python-ubjson python-ubjson: bump to version 0.8.5 2017-02-07 14:25:17 +01:00
python-ujson
python-urllib3
python-urwid python-urwid: bump to version 1.3.1 2017-01-13 16:08:01 +01:00
python-vcversioner python-vcversioner: new package 2017-01-24 22:54:37 +13:00
python-versiontools
python-watchdog
python-wcwidth
python-web2py
python-webpy
python-werkzeug
python-whoosh
python-ws4py
python-wsaccel
python-xlrd
python-xlsxwriter
python-xlutils
python-xlwt
python-zope-interface
qdecoder
qemu
qextserialport
qhull
qjson
qlibc
qpdf
qpid-proton package: fix reverse dependencies of util-linux 2017-01-28 21:02:51 +13:00
qt Revert "tslib: needs kernel headers 3.12" 2017-02-09 09:32:09 +01:00
qt5 qt5webkit: disable for MIPS soft-float 2017-02-23 22:01:41 +01:00
qt5cinex
qt-webkit-kiosk qt5webkit: disable for MIPS soft-float 2017-02-23 22:01:41 +01:00
qtuio
quagga quagga: security bump to version 1.1.1 2017-02-09 14:51:09 +01:00
quazip
quota
qwt
rabbitmq-c
rabbitmq-server rabbitmq-server: security bump to version 3.6.6 2017-01-16 11:53:47 +01:00
racehound
radvd
ramsmp
ramspeed
ranger
rapidjson
rapidxml
raptor
raspberrypi-usbboot
rdesktop
read-edid
readline
redis redis: bump to version 3.2.8 2017-02-15 21:26:04 +01:00
rfkill
riemann-c-client riemann-c-client: disable parallel make 2017-02-13 18:01:46 +01:00
rings
rng-tools rng-tools: Fix disabling package on non-x86 architectures. 2017-01-24 23:20:09 +13:00
rp-pppoe
rpcbind
rpi-firmware rpi-firmware: remove mkknlimg 2017-01-26 22:35:38 +01:00
rpi-userland rpi-userland: bump version 2017-01-23 22:59:50 +01:00
rpm rpm: disable static build support 2017-01-24 23:34:39 +13:00
rrdtool
rs485conf
rsh-redone
rsync
rsyslog
rt-tests
rtai
rtl8188eu rtl8188eu: Move the post install target hook before the infras 2017-01-27 21:53:59 +13:00
rtl8723bs rtl8723bs: new package 2017-01-29 16:19:58 +01:00
rtl8821au
rtmpdump
rtorrent
rtptools
rubix
ruby ruby: assume we always have finite, isinf and isnan for uClibc 2017-02-07 11:46:52 +01:00
runc runc: security bump to fix CVE-2016-9962 2017-01-23 19:07:48 +11:00
sam-ba
samba4 ncurses: remove BR2_PACKAGE_NCURSES_TARGET_{FORM, MENU, PANEL} options 2017-02-26 17:00:12 +01:00
sane-backends
sbc
sconeserver
scons
screen screen: bump version to 4.5.0 2017-01-19 15:00:01 +01:00
scrub
scrypt
sdl
sdl2 sdl2: X11 support depends on MMU (fork) 2017-01-20 13:25:48 +11:00
sdl2_gfx
sdl2_image
sdl2_ttf package/sdl2_ttf: fix detection of OpenGL 2017-01-28 23:31:34 +13:00
sdl_gfx
sdl_image
sdl_mixer
sdl_net
sdl_sound
sdl_ttf
sdparm
sed
sepolgen sepolgen: bump to version 2.6 2017-02-01 22:19:16 +01:00
ser2net ser2net: bump version to 3.3 2017-01-09 21:14:08 +01:00
setools
setserial
sg3_utils
shairport-sync
shapelib
shared-mime-info shared-mime-info: bump to version 1.8 2017-01-30 15:16:58 +01:00
shellinabox
sigrok-cli
simicsfs
sispmctl
skalibs
skeleton
sl
slang
slirp packages: improve license type lists 2017-02-20 22:16:01 +01:00
smack
smartmontools
smcroute
smstools3
snappy
sngrep package/sngrep: fix static linking against libpcap 2017-02-06 14:00:30 +01:00
snmppp snmppp: bump version to 3.3.9 2017-01-17 14:54:44 +01:00
socat
socketcand
sofia-sip
softether
sound-theme-borealis
sound-theme-freedesktop
sox
sp-oops-extract
spawn-fcgi
speex
sphinxbase
spi-tools
spice
spice-protocol
spidev_test
sqlcipher
sqlite
squashfs squashfs: bump to fix RHEL 5 compilation error 2017-02-04 09:18:55 +01:00
squeezelite
squid squid: security bump to version 3.5.24 2017-01-30 14:13:49 +01:00
sredird
sshfs
sshpass
sslh package/sslh: fix a patch, drop the other 2017-02-23 22:52:00 +01:00
start-stop-daemon
startup-notification
statserial
stella
stm32flash
strace
stress
stress-ng
strongswan
stunnel
subversion
sudo packages: improve license type lists 2017-02-20 22:16:01 +01:00
sunxi-boards
sunxi-cedarx
sunxi-mali package/sunxi-mali: reorder select/depends 2017-02-20 22:47:47 +01:00
sunxi-tools
supertuxkart
supervisor
swig
swupdate
sylpheed
synergy synergy: Fix build with gcc 6 2017-02-26 14:14:30 +01:00
sysdig
sysklogd
syslog-ng syslog-ng: Bump version to v3.9.1 2017-01-30 13:34:32 +01:00
sysprof
sysstat sysstat: bump version to 11.4.3 2017-01-16 15:30:04 +01:00
systemd systemd: add missing dhcp.network file 2017-02-06 20:00:23 +01:00
systemd-bootchart
sysvinit
szip
taglib
tar
targetcli-fb
taskd package: update comments for reverse dependencies of util-linux 2017-01-28 21:03:04 +13:00
tcl
tclap
tcllib
tcpdump tcpdump: security bump to version 4.9.0 2017-02-03 14:14:49 +01:00
tcping tcping: fix upstream location 2017-02-15 22:48:25 +01:00
tcpreplay
tegrarcm
tekui
terminology package/terminology: bump to version 1.0.0 2017-01-24 22:59:57 +13:00
tftpd
thrift
thttpd
ti-cgt-pru
ti-gfx
ti-sgx-demos
ti-sgx-km
ti-sgx-um
ti-uim
ti-utils
tidsp-binaries
tiff
time
tinc
tinyalsa
tinycbor
tinydtls
tinyhttpd
tinymembench
tinyxml
tinyxml2
tmux package/tmux: fix build 2017-02-05 21:59:26 +01:00
tn5250
tor package/tor: bump version to 0.2.9.9 2017-01-26 21:09:00 +01:00
tovid
tpm-tools trousers: disable on ARC 2017-02-16 15:23:57 +01:00
trace-cmd
transmission
tree
tremor
triggerhappy
trinity
trousers trousers: update ARC comment 2017-02-23 22:08:39 +01:00
ts4900-fpga
tslib tslib: bump to 1.5 2017-02-09 15:01:40 +01:00
tstools
tunctl package: remove the default value of the $(PKG)_SOURCE variable 2017-01-25 16:46:29 +13:00
turbolua
tvheadend package/tvheadend: bump version 2017-01-22 23:34:53 +01:00
twolame
tz
tzdata
tzdump
uboot-tools uboot-tools: bump to version 2017.01 2017-01-09 21:14:30 +01:00
ubus
ucl ucl: Use -std=iso9899:1990 instead of -std=c90 2017-01-26 20:58:41 +13:00
uclibc uclibc: add fix for ARM specific static linking issues 2017-02-20 13:21:46 +01:00
uclibc-ng-test uclibc-ng-test: pass LDFLAGS while building 2017-02-22 21:32:45 +01:00
udev
udisks
udpcast
udpxy udpxy: new package 2017-01-25 23:44:03 +13:00
uemacs
uhttpd
ulogd
unionfs
unixodbc package/unixodbc: add optional dependency to libtool 2017-02-04 23:55:20 +01:00
unrar
unscd
unzip
upmpdcli package/upmpdcli: bump to version 1.2.12 2017-01-30 14:12:18 +01:00
upower
upx
urg
usb_modeswitch
usb_modeswitch_data
usbmount
usbredir
usbutils
ushare
ussp-push
ustr package/ustr: fix ldconfig for host build 2017-01-10 21:09:22 +01:00
ustream-ssl
util-linux util-linux: re-add <pkg>_AUTORECONF = YES 2017-02-24 12:00:02 +01:00
ux500-firmware
v4l2grab
vala
valgrind packages: improve license type lists 2017-02-20 22:16:01 +01:00
valijson
vboot-utils
vde2
vdr
vdr-plugin-vnsiserver
vim vim: security bump to version 8.0.0329 2017-02-14 11:18:04 +01:00
vlc vlc: disable on ARC 2017-02-23 22:05:39 +01:00
vnstat
vo-aacenc
vorbis-tools
vpnc
vsftpd
vtun
w_scan
waf
wavemon package/wavemon: bump to version 0.8.1 2017-01-22 23:35:41 +01:00
wavpack wavpack: properly wrap help text 2017-02-19 23:05:10 +01:00
wayland
wayland-protocols
webkitgtk
webp webp: bump to version 0.5.2 2017-01-25 21:04:44 +13:00
webrtc-audio-processing
weston package/weston: fix build with musl 2017-01-24 18:27:46 +13:00
wf111
wget wget: bump to 1.19.1 to fix build issue 2017-02-13 22:13:09 +01:00
whetstone
which
whois
wilc1000-firmware
wine wine: Bump to version 2.0 2017-01-27 21:04:00 +13:00
wipe
wireless_tools
wireless-regdb
wireshark wireshark: security bump to version 2.2.4 2017-01-24 14:02:01 +01:00
wiringpi wiringpi: fix static linking 2017-02-12 15:03:02 +01:00
wmctrl
wpa_supplicant
wpan-tools
wsapi
x11r7 package/x11r7/xserver_xorg-server: Add patch to fix v1.19.1 with SIGIO 2017-02-15 21:26:22 +01:00
x11vnc
x264 x264: bump to version 97eaef2ab82a46d13ea5e00270712d6475fbe42b 2017-02-06 15:49:25 +01:00
x265 package/x265: Disable -march selection from CMakeLists.txt 2017-01-24 18:21:10 +13:00
xavante
xdotool
xen package: update comments for reverse dependencies of util-linux 2017-01-28 21:03:04 +13:00
xenomai packages: improve license type lists 2017-02-20 22:16:01 +01:00
xerces
xfsprogs package/xfsprogs: fix static build 2017-02-26 14:31:58 +01:00
xinetd
xl2tp
xmlstarlet
xorriso
xscreensaver packages: improve license type lists 2017-02-20 22:16:01 +01:00
xtables-addons xtables-addons: bump to version 2.12 2017-01-17 14:44:18 +11:00
xterm
xutil_util-macros package/xutil_util-macros: bump version to 1.19.1 2017-02-01 21:39:36 +01:00
xvisor
xvkbd
xxhash
xz
yad
yaffs2utils
yajl
yaml-cpp
yasm
yavta
ympd
zbar
zd1211-firmware
zeromq package: fix reverse dependencies of util-linux 2017-01-28 21:02:51 +13:00
zic
zip
zlib zlib: bump to version 1.2.11 2017-01-16 15:30:23 +01:00
zlog
zmqpp package: fix reverse dependencies of util-linux 2017-01-28 21:02:51 +13:00
znc
zsh
zxing-cpp
zynq-boot-bin
zyre package: fix reverse dependencies of util-linux 2017-01-28 21:02:51 +13:00
Config.in ddrescue: new package 2017-02-09 19:41:15 +01:00
Config.in.host opkg-utils: new package 2017-02-06 16:07:33 +01:00
doc-asciidoc.mk
Makefile.in core infra: make sure apply-patches is called with correct tar 2017-02-01 22:10:44 +01:00
pkg-autotools.mk
pkg-cmake.mk
pkg-download.mk
pkg-generic.mk package: refactor listing of extractor dependencies 2017-02-15 22:11:11 +01:00
pkg-kconfig.mk
pkg-kernel-module.mk
pkg-luarocks.mk
pkg-perl.mk pkg-perl: add PREFER_INSTALLER variable 2017-01-29 14:54:08 +01:00
pkg-python.mk infra: remove auto derivation of host dependencies 2016-07-03 10:24:02 +02:00
pkg-rebar.mk infra: remove auto derivation of host dependencies 2016-07-03 10:24:02 +02:00
pkg-utils.mk package: add generic support for lz archives 2017-02-15 22:11:11 +01:00
pkg-virtual.mk
pkg-waf.mk