code
string
repo_name
string
path
string
language
string
license
string
size
int64
# Locally calculated after checking pgp signature sha256 0de0396220a9566a580166e66b39674cb40efd2176f52ad2c65486c99c920c8c apache-log4cxx-0.10.0.tar.gz
shibajee/buildroot
package/log4cxx/log4cxx.hash
hash
mit
151
################################################################################ # # log4cxx # ################################################################################ LOG4CXX_VERSION = 0.10.0 LOG4CXX_SITE = http://archive.apache.org/dist/logging/log4cxx/$(LOG4CXX_VERSION) LOG4CXX_SOURCE = apache-log4cxx-$(LOG4CXX_VERSION).tar.gz LOG4CXX_INSTALL_STAGING = YES LOG4CXX_LICENSE = Apache-2.0 LOG4CXX_LICENSE_FILES = LICENSE LOG4CXX_CONF_OPTS = \ --with-apr=$(STAGING_DIR)/usr/bin/apr-1-config \ --with-apr-util=$(STAGING_DIR)/usr/bin/apu-1-config \ --disable-dot \ --disable-doxygen \ --disable-html-docs LOG4CXX_DEPENDENCIES = apr apr-util $(eval $(autotools-package))
shibajee/buildroot
package/log4cxx/log4cxx.mk
mk
mit
686
Make the package autoreconfigurable Adjust a minor detail in configure.ac in order to make the package compatible with the autoconf/automake versions we are using in Buildroot. Signed-off-by: Benoît Thébaudeau <benoit.thebaudeau.dev@gmail.com> Index: b/configure.ac =================================================================== --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ AC_INIT([logrotate],[3.8.9]) -AM_INIT_AUTOMAKE +AM_INIT_AUTOMAKE([foreign]) AC_DEFINE(_GNU_SOURCE) AM_EXTRA_RECURSIVE_TARGETS([test])
shibajee/buildroot
package/logrotate/0001-make-autoreconfable.patch
patch
mit
534
From 24fd7f81f9966071717f6a0effe8190310f1b393 Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Date: Fri, 19 Aug 2016 22:39:17 +0200 Subject: [PATCH] Use autoconf checks for strndup and asprintf The current code in config.c can provide its own implementation of asprintf() and strndup() if not provided by the system. However, in order to decide if they should be provided, the check done is: #if !defined(name_of_function) which only works if the function is actually defined as a macro, which is not necessarily the case. Therefore, we replace this logic by a proper AC_CHECK_FUNCS() check in the configure script. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> --- config.c | 4 ++-- configure.ac | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/config.c b/config.c index dbbf563..2209afd 100644 --- a/config.c +++ b/config.c @@ -45,7 +45,7 @@ #include "asprintf.c" #endif -#if !defined(asprintf) && !defined(_FORTIFY_SOURCE) +#if !defined(HAVE_ASPRINTF) && !defined(_FORTIFY_SOURCE) #include <stdarg.h> int asprintf(char **string_ptr, const char *format, ...) @@ -78,7 +78,7 @@ int asprintf(char **string_ptr, const char *format, ...) #endif -#if !defined(strndup) +#if !defined(HAVE_STRNDUP) char *strndup(const char *s, size_t n) { size_t nAvail; diff --git a/configure.ac b/configure.ac index e655b85..73b98da 100644 --- a/configure.ac +++ b/configure.ac @@ -13,6 +13,8 @@ AC_STRUCT_ST_BLOCKS AC_CHECK_LIB([popt],[poptParseArgvString],, AC_MSG_ERROR([libpopt required but not found])) +AC_CHECK_FUNCS([strndup asprintf]) + AC_ARG_WITH([selinux], [AS_HELP_STRING([--with-selinux], [support handling SELinux contexts (yes,no,check) @<:@default=check@:>@])], -- 2.7.4
shibajee/buildroot
package/logrotate/0002-Use-autoconf-checks-for-strndup-and-asprintf.patch
patch
mit
1,805
config BR2_PACKAGE_LOGROTATE bool "logrotate" select BR2_PACKAGE_POPT depends on BR2_USE_WCHAR depends on BR2_USE_MMU # fork() help A simple program to rotate logs. https://fedorahosted.org/logrotate/ comment "logrotate needs a toolchain w/ wchar" depends on BR2_USE_MMU depends on !BR2_USE_WCHAR
shibajee/buildroot
package/logrotate/Config.in
in
mit
312
compress include /etc/logrotate.d /var/log/messages /var/log/auth.log /var/log/user.log { rotate 7 daily delaycompress missingok sharedscripts postrotate /usr/bin/killall -HUP syslogd endscript }
shibajee/buildroot
package/logrotate/logrotate.conf
INI
mit
207
# Locally calculated sha256 2de00c65e23fa9d7909cae6594e550b9abe9a7eb1553669ddeaca92d30f97009 logrotate-3.9.2.tar.gz sha256 e0d360908ac506e02f08fa1ad70e17d6985045d8640f383fef8f322886d6e1e1 6a36c105587b07ad14fc937f3ee6e2eb402621a2.patch
shibajee/buildroot
package/logrotate/logrotate.hash
hash
mit
235
################################################################################ # # logrotate # ################################################################################ LOGROTATE_VERSION = 3.9.2 LOGROTATE_SITE = $(call github,logrotate,logrotate,$(LOGROTATE_VERSION)) LOGROTATE_LICENSE = GPLv2+ LOGROTATE_LICENSE_FILES = COPYING LOGROTATE_DEPENDENCIES = popt host-pkgconf # tarball does not have a generated configure script LOGROTATE_AUTORECONF = YES LOGROTATE_CONF_ENV = LIBS="`$(PKG_CONFIG_HOST_BINARY) --libs popt`" LOGROTATE_CONF_OPTS = --without-selinux LOGROTATE_PATCH = https://github.com/logrotate/logrotate/commit/6a36c105587b07ad14fc937f3ee6e2eb402621a2.patch ifeq ($(BR2_PACKAGE_ACL),y) LOGROTATE_DEPENDENCIES += acl LOGROTATE_CONF_OPTS += --with-acl else LOGROTATE_CONF_OPTS += --without-acl endif define LOGROTATE_INSTALL_TARGET_CONF $(INSTALL) -m 0644 package/logrotate/logrotate.conf $(TARGET_DIR)/etc/logrotate.conf $(INSTALL) -d -m 0755 $(TARGET_DIR)/etc/logrotate.d endef LOGROTATE_POST_INSTALL_TARGET_HOOKS += LOGROTATE_INSTALL_TARGET_CONF $(eval $(autotools-package))
shibajee/buildroot
package/logrotate/logrotate.mk
mk
mit
1,104
config BR2_PACKAGE_LOGSURFER bool "logsurfer" depends on BR2_USE_MMU # fork() help Logsurfer is a program for monitoring system logs in real-time, and reporting on the occurrence of events. http://www.crypt.gen.nz/logsurfer/
shibajee/buildroot
package/logsurfer/Config.in
in
mit
238
# Locally computed: sha256 74a36e8530a884031b4ae2344a46b9aaa07a1ee36d143802f6b64f817c5bd1af logsurfer-1.8.tar.gz
shibajee/buildroot
package/logsurfer/logsurfer.hash
hash
mit
115
################################################################################ # # logsurfer # ################################################################################ LOGSURFER_VERSION = 1.8 LOGSURFER_SITE = http://downloads.sourceforge.net/project/logsurfer/logsurfer/logsurfer-$(LOGSURFER_VERSION) define LOGSURFER_INSTALL_TARGET_CMDS $(INSTALL) -D -m 0755 $(@D)/src/logsurfer \ $(TARGET_DIR)/usr/bin/logsurfer endef $(eval $(autotools-package))
shibajee/buildroot
package/logsurfer/logsurfer.mk
mk
mit
465
config BR2_PACKAGE_HOST_LPC3250LOADER bool "host lpc3250loader" help lpc3250loader is a tool to load/burn programs (in particular kickstart and S1L) on an LPC3250 platform. https://github.com/alexandrebelloni/lpc3250loader
shibajee/buildroot
package/lpc3250loader/Config.in.host
host
mit
235
# Locally calculated sha256 267de7541c92e5b007b93c660a41188976d531a3757f4ffd9b7142d3994da7d1 lpc3250loader-1.0.tar.gz
shibajee/buildroot
package/lpc3250loader/lpc3250loader.hash
hash
mit
119
################################################################################ # # lpc3250loader # ################################################################################ HOST_LPC3250LOADER_VERSION = 1.0 HOST_LPC3250LOADER_SITE = $(call github,alexandrebelloni,lpc3250loader,$(HOST_LPC3250LOADER_VERSION)) LPC3250LOADER_LICENSE = GPLv2+ LPC3250LOADER_LICENSE_FILES = LPC3250loader.py define HOST_LPC3250LOADER_INSTALL_CMDS $(INSTALL) -m 0755 -D $(@D)/LPC3250loader.py \ $(HOST_DIR)/usr/bin/LPC3250loader.py endef $(eval $(host-generic-package))
shibajee/buildroot
package/lpc3250loader/lpc3250loader.mk
mk
mit
562
config BR2_PACKAGE_LPEG bool "lpeg" depends on BR2_PACKAGE_HAS_LUAINTERPRETER help LPeg is a new pattern-matching library for Lua, based on Parsing Expression Grammars (PEGs). http://www.inf.puc-rio.br/~roberto/lpeg/lpeg.html
shibajee/buildroot
package/lpeg/Config.in
in
mit
239
# Locally calculated sha256 e70c7cf8d7b8feddd8a41235d0ebb27bb60fbe7f31c8364ad23ee30a7f0cc26e lpeg-1.0.0-1.src.rock
shibajee/buildroot
package/lpeg/lpeg.hash
hash
mit
116
################################################################################ # # lpeg # ################################################################################ LPEG_VERSION = 1.0.0-1 LPEG_LICENSE = MIT $(eval $(luarocks-package))
shibajee/buildroot
package/lpeg/lpeg.mk
mk
mit
245
config BR2_PACKAGE_LPTY bool "lpty" depends on BR2_PACKAGE_HAS_LUAINTERPRETER help A simple facility for lua to control other programs via PTYs. http://www.tset.de/lpty/
shibajee/buildroot
package/lpty/Config.in
in
mit
183
# Locally calculated sha256 cf263ece9b50a78a7fb2277e3546fbbf0bf6858f41821932d92f2e3d8a065091 lpty-1.0.1-1.src.rock
shibajee/buildroot
package/lpty/lpty.hash
hash
mit
116
################################################################################ # # lpty # ################################################################################ LPTY_VERSION_UPSTREAM = 1.0.1 LPTY_VERSION = $(LPTY_VERSION_UPSTREAM)-1 LPTY_SUBDIR = lpty-$(LPTY_VERSION) LPTY_LICENSE = MIT LPTY_LICENSE_FILES = $(LPTY_SUBDIR)/doc/LICENSE $(eval $(luarocks-package))
shibajee/buildroot
package/lpty/lpty.mk
mk
mit
377
config BR2_PACKAGE_LRANDOM bool "lrandom" depends on BR2_PACKAGE_HAS_LUAINTERPRETER help A library for generating random numbers based on the Mersenne Twister http://www.tecgraf.puc-rio.br/~lhf/ftp/lua/#lrandom
shibajee/buildroot
package/lrandom/Config.in
in
mit
224
# Locally calculated sha256 96fbc56beb0efca20253301915e14ba25150e2b09541ea7a3570e0def624b196 lrandom-20120430.51-1.src.rock sha256 480a6cf11caaba99290ff30cd6e854ac9dce61e38b9d9caf5498165f7fb93454 lrandom-20120430.52-1.src.rock
shibajee/buildroot
package/lrandom/lrandom.hash
hash
mit
229
################################################################################ # # lrandom # ################################################################################ ifeq ($(BR2_PACKAGE_LUA_5_2)$(BR2_PACKAGE_LUA_5_3),y) LRANDOM_VERSION = 20120430.52-1 else LRANDOM_VERSION = 20120430.51-1 endif LRANDOM_SUBDIR = random LRANDOM_LICENSE = Public domain $(eval $(luarocks-package))
shibajee/buildroot
package/lrandom/lrandom.mk
mk
mit
391
config BR2_PACKAGE_LRZSZ bool "lrzsz" # It could technically build in a static-only environment, but # it unconditionally redefines the error() and error_at_line() # functions, which clashes with the definition from # uClibc. Since the autotools packaging dates back from 1998, # lots of work is needed to fix it, and do some proper tests # on the availability of such functions. depends on !BR2_STATIC_LIBS help Portable and fast implementation of the X/Y/Zmodem protocols. http://www.ohse.de/uwe/software/lrzsz.html comment "lrzsz needs a toolchain w/ dynamic library" depends on BR2_STATIC_LIBS
shibajee/buildroot
package/lrzsz/Config.in
in
mit
616
# Locally calculated sha256 c28b36b14bddb014d9e9c97c52459852f97bd405f89113f30bee45ed92728ff1 lrzsz-0.12.20.tar.gz
shibajee/buildroot
package/lrzsz/lrzsz.hash
hash
mit
114
################################################################################ # # lrzsz # ################################################################################ LRZSZ_VERSION = 0.12.20 LRZSZ_SITE = http://www.ohse.de/uwe/releases LRZSZ_CONF_OPTS = --disable-timesync LRZSZ_LICENSE = GPLv2+ LRZSZ_LICENSE_FILES = COPYING define LRZSZ_POST_CONFIGURE_HOOKS $(SED) "s/-lnsl//;" $(@D)/src/Makefile $(SED) "s~\(#define ENABLE_SYSLOG.*\)~/* \1 */~;" $(@D)/config.h endef define LRZSZ_BUILD_HOOKS $(MAKE) CROSS_COMPILE="$(TARGET_CROSS)" prefix="$(TARGET_DIR)" -C $(@D) endef define LRZSZ_INSTALL_TARGET_CMDS $(INSTALL) -m 0755 -D $(@D)/src/lrz $(TARGET_DIR)/usr/bin/rz $(INSTALL) -m 0755 -D $(@D)/src/lsz $(TARGET_DIR)/usr/bin/sz ln -sf rz $(TARGET_DIR)/usr/bin/lrz ln -sf sz $(TARGET_DIR)/usr/bin/lsz endef $(eval $(autotools-package))
shibajee/buildroot
package/lrzsz/lrzsz.mk
mk
mit
854
From 5af98ca8135ac411364b16720d795224a9b4a178 Mon Sep 17 00:00:00 2001 From: Gustavo Zacarias <gustavo@zacarias.com.ar> Date: Sat, 30 Jul 2016 15:15:14 +0200 Subject: [PATCH] Makefile: allow to pass additional LIBS We need to be able to pass extra LIBS when our toolchain lacks NLS support, this way we can build libintl and link to it. A good example is uClibc with locale support disabled. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> --- src/Makefile | 2 +- src/gui/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Makefile b/src/Makefile index b50586b..acbdbfa 100644 --- a/src/Makefile +++ b/src/Makefile @@ -30,7 +30,7 @@ ifneq ($(shell $(LD) --help 2| grep -- --as-needed), ) LDFLAGS+= -Wl,--as-needed endif LDSTATIC=-static -LIBS=-llshw -lresolv +LIBS+=-llshw -lresolv ifeq ($(SQLITE), 1) LIBS+= $(shell pkg-config --libs sqlite3) endif diff --git a/src/gui/Makefile b/src/gui/Makefile index 332ce57..7f72e3f 100644 --- a/src/gui/Makefile +++ b/src/gui/Makefile @@ -11,7 +11,7 @@ INCLUDES=-I../core $(GTKINCLUDES) CXXFLAGS=-g -Wall $(INCLUDES) $(DEFINES) $(RPM_OPT_FLAGS) CFLAGS=$(CXXFLAGS) $(DEFINES) GTKLIBS=$(shell pkg-config gtk+-2.0 gmodule-2.0 --libs) -LIBS=-L../core -llshw -lresolv $(GTKLIBS) +LIBS+=-L../core -llshw -lresolv $(GTKLIBS) LDFLAGS= ifneq ($(shell $(LD) --help 2| grep -- --as-needed), ) LDFLAGS+= -Wl,--as-needed -- 2.7.4
shibajee/buildroot
package/lshw/0001-Makefile-allow-to-pass-additional-LIBS.patch
patch
mit
1,426
From 016bdb133a44bdf42c268ff72ee7aa04af19cfd3 Mon Sep 17 00:00:00 2001 From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be> Date: Sat, 27 Aug 2016 01:11:56 +0200 Subject: [PATCH] Fix musl build: basename() is in libgen.h. Also, its argument is not const, so add const_cast. This is risky because in fact basename() will modify the argument if it ends with / but that's not the case here. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> --- src/core/dasd.cc | 1 + src/core/sysfs.cc | 9 +++++---- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/src/core/dasd.cc b/src/core/dasd.cc index 626b8a8..6276101 100644 --- a/src/core/dasd.cc +++ b/src/core/dasd.cc @@ -9,6 +9,7 @@ #include <sys/ioctl.h> #include <linux/fs.h> #include <map> +#include <libgen.h> using namespace std; diff --git a/src/core/sysfs.cc b/src/core/sysfs.cc index acc9d00..bdd69e3 100644 --- a/src/core/sysfs.cc +++ b/src/core/sysfs.cc @@ -16,6 +16,7 @@ #include <sys/stat.h> #include <sys/types.h> #include <sys/mount.h> +#include <libgen.h> __ID("@(#) $Id$"); @@ -99,7 +100,7 @@ static string sysfs_getbustype(const string & path) { devname = string(fs.path + "/bus/") + string(namelist[i]->d_name) + - "/devices/" + basename(path.c_str()); + "/devices/" + basename(const_cast<char*>(path.c_str())); if (samefile(devname, path)) return string(namelist[i]->d_name); @@ -139,7 +140,7 @@ static string sysfstobusinfo(const string & path) if (bustype == "virtio") { - string name = basename(path.c_str()); + string name = basename(const_cast<char*>(path.c_str())); if (name.compare(0, 6, "virtio") == 0) return "virtio@" + name.substr(6); else @@ -207,7 +208,7 @@ string entry::driver() const string driverlink = This->devpath + "/driver"; if (!exists(driverlink)) return ""; - return basename(readlink(driverlink).c_str()); + return basename(const_cast<char*>(readlink(driverlink).c_str())); } @@ -288,7 +289,7 @@ string entry::name_in_class(const string & classname) const string entry::name() const { - return basename(This->devpath.c_str()); + return basename(const_cast<char*>(This->devpath.c_str())); } -- 2.9.3
shibajee/buildroot
package/lshw/0002-Fix-musl-build-basename-is-in-libgen.h.patch
patch
mit
2,252
From 50284ac4400ac3d7562f4765726492caee8ff547 Mon Sep 17 00:00:00 2001 From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be> Date: Sat, 27 Aug 2016 01:15:13 +0200 Subject: [PATCH] Fix use of LONG_BIT LONG_BIT is not a sysconf value, it is either 32 or 64. Using it as a sysconf value will give weird results. Originally it was sysconf(_SC_LONG_BIT) (before it was "fixed" by the gentoo guys). But this is useless: it will always return a value equal to LONG_BIT: it's either compiled 32-bit or 64-bit so a runtime lookup doesn't make sense. For this reason, musl has removed the definition of _SC_LONG_BIT. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> --- src/core/abi.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/core/abi.cc b/src/core/abi.cc index 76e5082..a13daaa 100644 --- a/src/core/abi.cc +++ b/src/core/abi.cc @@ -19,8 +19,7 @@ __ID("@(#) $Id: mem.cc 1352 2006-05-27 23:54:13Z ezix $"); bool scan_abi(hwNode & system) { - // are we compiled as 32- or 64-bit process ? - system.setWidth(sysconf(LONG_BIT)); + system.setWidth(LONG_BIT); pushd(PROC_SYS); -- 2.9.3
shibajee/buildroot
package/lshw/0003-Fix-use-of-LONG_BIT.patch
patch
mit
1,155
config BR2_PACKAGE_LSHW bool "lshw" depends on BR2_INSTALL_LIBSTDCPP depends on BR2_USE_WCHAR select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE help lshw (Hardware Lister) is a small tool to provide detailed information on the hardware configuration of the machine. http://ezix.org/project/wiki/HardwareLiSter comment "lshw needs a toolchain w/ C++, wchar" depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR
shibajee/buildroot
package/lshw/Config.in
in
mit
434
# Locally calculated sha256 ae22ef11c934364be4fd2a0a1a7aadf4495a0251ec6979da280d342a89ca3c2f lshw-B.02.18.tar.gz
shibajee/buildroot
package/lshw/lshw.hash
hash
mit
113
################################################################################ # # lshw # ################################################################################ LSHW_VERSION = B.02.18 LSHW_SITE = http://ezix.org/software/files LSHW_LICENSE = GPLv2 LSHW_LICENSE_FILES = COPYING LSHW_CFLAGS = $(TARGET_CFLAGS) ifeq ($(BR2_ENABLE_LOCALE),) LSHW_CFLAGS += -DNONLS endif LSHW_MAKE_OPTS = CC="$(TARGET_CC)" CXX="$(TARGET_CXX)" AR="$(TARGET_AR)" \ RPM_OPT_FLAGS="$(LSHW_CFLAGS)" all LSHW_MAKE_ENV = LIBS="$(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),-lintl)" LSHW_DEPENDENCIES = $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext) define LSHW_BUILD_CMDS $(LSHW_MAKE_ENV) $(MAKE) -C $(@D)/src $(LSHW_MAKE_OPTS) endef define LSHW_INSTALL_TARGET_CMDS $(LSHW_MAKE_ENV) $(MAKE) -C $(@D)/src DESTDIR=$(TARGET_DIR) \ $(LSHW_MAKE_OPTS) install endef $(eval $(generic-package))
shibajee/buildroot
package/lshw/lshw.mk
mk
mit
869
diff -ru lsof_4.81.orig/lsof_4.81_src/lib/Makefile.skel lsof_4.81/lsof_4.81_src/lib/Makefile.skel --- a/lib/Makefile.skel 2001-02-13 03:12:22.000000000 +0100 +++ b/lib/Makefile.skel 2006-11-29 13:51:44.000000000 +0100 @@ -21,8 +21,8 @@ all: ${LIB} ${LIB}: ${OBJ} - ${AR} - ${RANLIB} + ${AR} cr ${LIB} ${OBJ} + ${RANLIB} ${LIB} clean: FRC rm -f ${LIB} ${OBJ} errs Makefile.bak a.out core
shibajee/buildroot
package/lsof/0001-makefile.patch
patch
mit
396
--- a/print.c 2006-08-23 13:37:43.000000000 -0600 +++ b/print.c 2006-08-23 13:38:29.000000000 -0600 @@ -148,6 +148,7 @@ static void fill_portmap() { +#if !defined __UCLIBC__ || (defined __UCLIBC__ && defined __UCLIBC_HAS_RPC__) char buf[128], *cp, *nm; CLIENT *c; int h, port, pr; @@ -266,6 +267,7 @@ Pth[pr][h] = pt; } clnt_destroy(c); +#endif }
shibajee/buildroot
package/lsof/0002-noportmap.patch
patch
mit
371
--- lsof_4.84/Configure 2008-10-21 18:21:45.000000000 +0200 +++ lsof_4.84/Configure 2010-11-03 14:00:00.000000000 +0100 @@ -5206,6 +5206,10 @@ cp $LSOF_MKFC ${LSOF_LIB}/$LSOF_LIBMKF fi # } cat ./dialects/$LSOF_DIALECT_DIR/$LSOF_REST >> $LSOF_MKFC +if test "X$LSOF_CFLAGS_OVERRIDE" != "X" # { +then + sed -i -e 's/^CFLAGS=/override CFLAGS=/' $LSOF_MKFC +fi # } if test "X$LSOF_LIB_NO" = "X" # { then
shibajee/buildroot
package/lsof/0003-override-cflags.patch
patch
mit
409
diff -rdup lsof_4.81.orig/lsof_4.81_src/dialects/linux/machine.h lsof_4.81/lsof_4.81_src/dialects/linux/machine.h --- a/dialects/linux/machine.h 2007-04-24 18:20:58.000000000 +0200 +++ b/dialects/linux/machine.h 2007-05-15 12:17:03.000000000 +0200 @@ -616,6 +616,6 @@ * zeromem is a macro that uses bzero or memset. */ -#define zeromem(a, l) bzero(a, l) +#define zeromem(a, l) memset(a, 0, l) #endif /* !defined(LSOF_MACHINE_H) */
shibajee/buildroot
package/lsof/0004-remove-susvlegacy-funcs.patch
patch
mit
441
config BR2_PACKAGE_LSOF bool "lsof" depends on BR2_USE_MMU # fork() depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS help lsof (LiSt Open Files) The lsof tool lists information about files opened by processes. http://people.freebsd.org/~abe/
shibajee/buildroot
package/lsof/Config.in
in
mit
253
# Locally calculated after checking pgp signature sha256 81ac2fc5fdc944793baf41a14002b6deb5a29096b387744e28f8c30a360a3718 lsof_4.89.tar.bz2
shibajee/buildroot
package/lsof/lsof.hash
hash
mit
140
################################################################################ # # lsof # ################################################################################ LSOF_VERSION = 4.89 LSOF_SOURCE = lsof_$(LSOF_VERSION).tar.bz2 # Use http mirror since master ftp site access is very draconian LSOF_SITE = http://www.mirrorservice.org/sites/lsof.itap.purdue.edu/pub/tools/unix/lsof LSOF_LICENSE = lsof license # License is repeated in each file, this is a relatively small one. # It is also defined in 00README, but that contains a lot of other cruft. LSOF_LICENSE_FILES = dialects/linux/dproto.h # Make certain full-blown lsof gets built after the busybox version (1.20+) LSOF_DEPENDENCIES += $(if $(BR2_PACKAGE_BUSYBOX),busybox) ifeq ($(BR2_USE_WCHAR),) define LSOF_CONFIGURE_WCHAR_FIXUPS $(SED) 's,^#define[[:space:]]*HASWIDECHAR.*,#undef HASWIDECHAR,' \ $(@D)/machine.h endef endif ifeq ($(BR2_ENABLE_LOCALE),) define LSOF_CONFIGURE_LOCALE_FIXUPS $(SED) 's,^#define[[:space:]]*HASSETLOCALE.*,#undef HASSETLOCALE,' \ $(@D)/machine.h endef endif # The .tar.bz2 contains another .tar, which contains the source code. define LSOF_EXTRACT_CMDS $(call suitable-extractor,$(LSOF_SOURCE)) $(DL_DIR)/$(LSOF_SOURCE) | \ $(TAR) -O $(TAR_OPTIONS) - lsof_$(LSOF_VERSION)/lsof_$(LSOF_VERSION)_src.tar | \ $(TAR) --strip-components=1 -C $(LSOF_DIR) $(TAR_OPTIONS) - endef define LSOF_CONFIGURE_CMDS (cd $(@D) ; \ echo n | $(TARGET_CONFIGURE_OPTS) DEBUG="$(TARGET_CFLAGS)" \ LSOF_INCLUDE="$(STAGING_DIR)/usr/include" LSOF_CFLAGS_OVERRIDE=1 \ LINUX_CLIB=-DGLIBCV=2 ./Configure linux) $(LSOF_CONFIGURE_WCHAR_FIXUPS) $(LSOF_CONFIGURE_LOCALE_FIXUPS) endef define LSOF_BUILD_CMDS $(MAKE) $(TARGET_CONFIGURE_OPTS) DEBUG="$(TARGET_CFLAGS)" -C $(@D) endef define LSOF_INSTALL_TARGET_CMDS $(INSTALL) -D -m 755 $(@D)/lsof $(TARGET_DIR)/usr/bin/lsof endef $(eval $(generic-package))
shibajee/buildroot
package/lsof/lsof.mk
mk
mit
1,897
config BR2_PACKAGE_LSQLITE3 bool "lsqlite3" select BR2_PACKAGE_SQLITE depends on BR2_PACKAGE_HAS_LUAINTERPRETER help a thin Lua wrapper for the SQLite3 library. http://lua.sqlite.org/
shibajee/buildroot
package/lsqlite3/Config.in
in
mit
195
# Locally calculated sha256 b49b5941af92a6e7834a45f76dba1f6ea8f817cda373655f59c9da78416d1dfc lsqlite3-0.9.3-0.src.rock
shibajee/buildroot
package/lsqlite3/lsqlite3.hash
hash
mit
120
################################################################################ # # lsqlite3 # ################################################################################ LSQLITE3_VERSION = 0.9.3-0 LSQLITE3_SUBDIR = lsqlite3_fsl09w LSQLITE3_DEPENDENCIES = sqlite LSQLITE3_LICENSE = MIT $(eval $(luarocks-package))
shibajee/buildroot
package/lsqlite3/lsqlite3.mk
mk
mit
322
config BR2_PACKAGE_LSUIO bool "lsuio" help list available userspace I/O (UIO) devices http://www.osadl.org/UIO.uio.0.html
shibajee/buildroot
package/lsuio/Config.in
in
mit
131
# Locally calculated sha256 c88b3850248b2d3419e025abd7b9b0991c8bd33a2d4983f9608408a29900bfb5 lsuio-0.2.0.tar.gz
shibajee/buildroot
package/lsuio/lsuio.hash
hash
mit
112
################################################################################ # # lsuio # ################################################################################ LSUIO_VERSION = 0.2.0 LSUIO_SITE = http://www.osadl.org/projects/downloads/UIO/user LSUIO_LICENSE = GPLv2 LSUIO_LICENSE_FILES = COPYING $(eval $(autotools-package))
shibajee/buildroot
package/lsuio/lsuio.mk
mk
mit
341
O_DIRECTORY is only available if _GNU_SOURCE is defined https://github.com/linux-test-project/ltp/pull/58 Signed-off-by: Waldemar Brodkorb <wbx@openadk.org> diff -Nur ltp-full-20160126.orig/testcases/kernel/syscalls/fanotify/fanotify01.c ltp-full-20160126/testcases/kernel/syscalls/fanotify/fanotify01.c --- ltp-full-20160126.orig/testcases/kernel/syscalls/fanotify/fanotify01.c 2016-01-26 13:35:25.000000000 +0100 +++ ltp-full-20160126/testcases/kernel/syscalls/fanotify/fanotify01.c 2016-03-05 00:55:02.977264913 +0100 @@ -25,6 +25,7 @@ * DESCRIPTION * Check that fanotify work for a file */ +#define _GNU_SOURCE #include "config.h" #include <stdio.h> diff -Nur ltp-full-20160126.orig/testcases/kernel/syscalls/fanotify/fanotify02.c ltp-full-20160126/testcases/kernel/syscalls/fanotify/fanotify02.c --- ltp-full-20160126.orig/testcases/kernel/syscalls/fanotify/fanotify02.c 2016-01-26 13:35:25.000000000 +0100 +++ ltp-full-20160126/testcases/kernel/syscalls/fanotify/fanotify02.c 2016-03-05 00:54:44.600558612 +0100 @@ -25,6 +25,7 @@ * DESCRIPTION * Check that fanotify work for children of a directory */ +#define _GNU_SOURCE #include "config.h" #include <stdio.h> diff -Nur ltp-full-20160126.orig/testcases/kernel/syscalls/fanotify/fanotify03.c ltp-full-20160126/testcases/kernel/syscalls/fanotify/fanotify03.c --- ltp-full-20160126.orig/testcases/kernel/syscalls/fanotify/fanotify03.c 2016-01-26 13:35:25.000000000 +0100 +++ ltp-full-20160126/testcases/kernel/syscalls/fanotify/fanotify03.c 2016-03-05 00:55:13.917685403 +0100 @@ -25,6 +25,7 @@ * DESCRIPTION * Check that fanotify permission events work */ +#define _GNU_SOURCE #include "config.h" #include <stdio.h> diff -Nur ltp-full-20160126.orig/testcases/kernel/syscalls/fanotify/fanotify04.c ltp-full-20160126/testcases/kernel/syscalls/fanotify/fanotify04.c --- ltp-full-20160126.orig/testcases/kernel/syscalls/fanotify/fanotify04.c 2016-01-26 13:35:25.000000000 +0100 +++ ltp-full-20160126/testcases/kernel/syscalls/fanotify/fanotify04.c 2016-03-05 00:55:24.530093286 +0100 @@ -25,6 +25,8 @@ * DESCRIPTION * Check various fanotify special flags */ + +#define _GNU_SOURCE #include "config.h" #include <stdio.h>
shibajee/buildroot
package/ltp-testsuite/0001-fix-uClibc-build.patch
patch
mit
2,231
rpc-tirpc: disable tirpc_auth_authdes_*create tests Due to Buildroot patch 0007-Disable-DES-authentification-support.patch on libtirpc, this library is built without method authdes_create. Any code that uses this library, like the rpc-tirpc testsuite, thus fails to link. In the context of Buildroot, instead of disabling ltp-testsuite entirely, just disable the problematic tests. Upstream-status: not applicable Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> --- testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/Makefile b/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/Makefile index 45bc8a6..c04a088 100644 --- a/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/Makefile +++ b/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/Makefile @@ -19,4 +19,8 @@ top_srcdir ?= ../../../../../../.. include $(top_srcdir)/include/mk/env_pre.mk + +FILTER_OUT_DIRS += tirpc_auth_authdes_seccreate \ + tirpc_auth_authdes_create + include $(top_srcdir)/include/mk/generic_trunk_target.mk -- 1.9.5
shibajee/buildroot
package/ltp-testsuite/0002-rpc-tirpc-disable-tirpc_auth_authdes_seccreate-tests.patch
patch
mit
1,195
uClibc-ng has no profil() support Signed-off-by: Waldemar Brodkorb <wbx@openadk.org> diff -Nur ltp-full-20160126.orig/testcases/kernel/syscalls/profil/profil01.c ltp-full-20160126/testcases/kernel/syscalls/profil/profil01.c --- ltp-full-20160126.orig/testcases/kernel/syscalls/profil/profil01.c 2016-01-26 13:35:25.000000000 +0100 +++ ltp-full-20160126/testcases/kernel/syscalls/profil/profil01.c 2016-03-05 01:00:07.328962536 +0100 @@ -37,6 +37,9 @@ #define PROFIL_BUFLEN (32*1024) char *TCID = "profil01"; + +#if !defined(__UCLIBC__) + int TST_TOTAL = 1; static volatile sig_atomic_t profil_done; @@ -124,3 +127,9 @@ tst_exit(); } +#else /* systems that dont support profil */ +int main(void) +{ + tst_brkm(TCONF, NULL, "system doesn't have profil support"); +} +#endif
shibajee/buildroot
package/ltp-testsuite/0003-disable-profil-on-uClibc.patch
patch
mit
794
uClibc-ng need __UCLIBC_SV4_DEPRECATED__ enabled for ustat Signed-off-by: Waldemar Brodkorb <wbx@openadk.org> diff -Nur ltp-full-20160126.orig/testcases/kernel/syscalls/ustat/ustat01.c ltp-full-20160126/testcases/kernel/syscalls/ustat/ustat01.c --- ltp-full-20160126.orig/testcases/kernel/syscalls/ustat/ustat01.c 2016-01-26 13:35:25.000000000 +0100 +++ ltp-full-20160126/testcases/kernel/syscalls/ustat/ustat01.c 2016-03-05 01:15:39.492789841 +0100 @@ -20,7 +20,9 @@ */ #include <unistd.h> +#if !defined(__UCLIBC__) || defined(__UCLIBC_SV4_DEPRECATED__) #include <ustat.h> +#endif #include <errno.h> #include <sys/types.h> #include <sys/stat.h> @@ -30,6 +32,9 @@ static void setup(void); char *TCID = "ustat01"; + +#if !defined(__UCLIBC__) || defined(__UCLIBC_SV4_DEPRECATED__) + int TST_TOTAL = 1; static dev_t dev_num; @@ -79,3 +84,10 @@ dev_num = buf.st_dev; } +#else /* systems that dont support ustat */ +int main(void) +{ + tst_brkm(TCONF, NULL, "system doesn't have ustat support"); +} +#endif + diff -Nur ltp-full-20160126.orig/testcases/kernel/syscalls/ustat/ustat02.c ltp-full-20160126/testcases/kernel/syscalls/ustat/ustat02.c --- ltp-full-20160126.orig/testcases/kernel/syscalls/ustat/ustat02.c 2016-01-26 13:35:25.000000000 +0100 +++ ltp-full-20160126/testcases/kernel/syscalls/ustat/ustat02.c 2016-03-05 01:15:55.677411889 +0100 @@ -21,7 +21,9 @@ */ #include <unistd.h> +#if !defined(__UCLIBC__) || defined(__UCLIBC_SV4_DEPRECATED__) #include <ustat.h> +#endif #include <errno.h> #include <sys/stat.h> #include <sys/types.h> @@ -32,6 +34,8 @@ char *TCID = "ustat02"; +#if !defined(__UCLIBC__) || defined(__UCLIBC_SV4_DEPRECATED__) + static dev_t invalid_dev = -1; static dev_t root_dev; struct ustat ubuf; @@ -101,3 +105,9 @@ root_dev = buf.st_dev; } +#else /* systems that dont support ustat */ +int main(void) +{ + tst_brkm(TCONF, NULL, "system doesn't have ustat support"); +} +#endif
shibajee/buildroot
package/ltp-testsuite/0004-disable-ustat-on-uClibc.patch
patch
mit
1,963
rusers.h is unused and not available for uClibc-ng / libtirpc Signed-off-by: Waldemar Brodkorb <wbx@openadk.org> diff -Nur ltp-full-20160126.orig/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_auth_auth_destroy/rpc_auth_destroy.c ltp-full-20160126/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_auth_auth_destroy/rpc_auth_destroy.c --- ltp-full-20160126.orig/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_auth_auth_destroy/rpc_auth_destroy.c 2016-01-26 13:35:25.000000000 +0100 +++ ltp-full-20160126/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_auth_auth_destroy/rpc_auth_destroy.c 2016-03-05 02:16:56.274105305 +0100 @@ -30,7 +30,6 @@ #include <time.h> #include <rpc/rpc.h> #include <sys/socket.h> -#include <rpcsvc/rusers.h> #include <utmp.h> #include <sys/time.h> #include <netdb.h> diff -Nur ltp-full-20160126.orig/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_auth_authnone_create/rpc_authnone_create.c ltp-full-20160126/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_auth_authnone_create/rpc_authnone_create.c --- ltp-full-20160126.orig/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_auth_authnone_create/rpc_authnone_create.c 2016-01-26 13:35:25.000000000 +0100 +++ ltp-full-20160126/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_auth_authnone_create/rpc_authnone_create.c 2016-03-05 02:16:32.641196984 +0100 @@ -30,7 +30,6 @@ #include <time.h> #include <rpc/rpc.h> #include <sys/socket.h> -#include <rpcsvc/rusers.h> #include <utmp.h> #include <sys/time.h> #include <netdb.h> diff -Nur ltp-full-20160126.orig/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_auth_authunix_create/rpc_authunix_create.c ltp-full-20160126/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_auth_authunix_create/rpc_authunix_create.c --- ltp-full-20160126.orig/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_auth_authunix_create/rpc_authunix_create.c 2016-01-26 13:35:25.000000000 +0100 +++ ltp-full-20160126/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_auth_authunix_create/rpc_authunix_create.c 2016-03-05 02:21:09.831850681 +0100 @@ -30,7 +30,6 @@ #include <time.h> #include <rpc/rpc.h> #include <sys/socket.h> -#include <rpcsvc/rusers.h> #include <utmp.h> #include <sys/time.h> #include <netdb.h> diff -Nur ltp-full-20160126.orig/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_auth_authunix_create_default/rpc_authunix_create_default.c ltp-full-20160126/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_auth_authunix_create_default/rpc_authunix_create_default.c --- ltp-full-20160126.orig/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_auth_authunix_create_default/rpc_authunix_create_default.c 2016-01-26 13:35:25.000000000 +0100 +++ ltp-full-20160126/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_auth_authunix_create_default/rpc_authunix_create_default.c 2016-03-05 02:18:57.370759601 +0100 @@ -30,7 +30,6 @@ #include <time.h> #include <rpc/rpc.h> #include <sys/socket.h> -#include <rpcsvc/rusers.h> #include <utmp.h> #include <sys/time.h> #include <netdb.h> diff -Nur ltp-full-20160126.orig/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_clnttcp_create/rpc_clnttcp_create.c ltp-full-20160126/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_clnttcp_create/rpc_clnttcp_create.c --- ltp-full-20160126.orig/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_clnttcp_create/rpc_clnttcp_create.c 2016-01-26 13:35:25.000000000 +0100 +++ ltp-full-20160126/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_clnttcp_create/rpc_clnttcp_create.c 2016-03-05 02:23:32.113319210 +0100 @@ -30,7 +30,6 @@ #include <time.h> #include <rpc/rpc.h> #include <sys/socket.h> -#include <rpcsvc/rusers.h> #include <utmp.h> #include <sys/time.h> #include <netdb.h> diff -Nur ltp-full-20160126.orig/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_clnttcp_create/rpc_clnttcp_create_limits.c ltp-full-20160126/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_clnttcp_create/rpc_clnttcp_create_limits.c --- ltp-full-20160126.orig/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_clnttcp_create/rpc_clnttcp_create_limits.c 2016-01-26 13:35:25.000000000 +0100 +++ ltp-full-20160126/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_clnttcp_create/rpc_clnttcp_create_limits.c 2016-03-05 02:23:39.221592413 +0100 @@ -30,7 +30,6 @@ #include <time.h> #include <rpc/rpc.h> #include <sys/socket.h> -#include <rpcsvc/rusers.h> #include <utmp.h> #include <sys/time.h> #include <netdb.h> diff -Nur ltp-full-20160126.orig/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_clnttcp_create/rpc_clnttcp_create_stress.c ltp-full-20160126/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_clnttcp_create/rpc_clnttcp_create_stress.c --- ltp-full-20160126.orig/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_clnttcp_create/rpc_clnttcp_create_stress.c 2016-01-26 13:35:25.000000000 +0100 +++ ltp-full-20160126/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_clnttcp_create/rpc_clnttcp_create_stress.c 2016-03-05 02:23:48.565951560 +0100 @@ -30,7 +30,6 @@ #include <time.h> #include <rpc/rpc.h> #include <sys/socket.h> -#include <rpcsvc/rusers.h> #include <utmp.h> #include <sys/time.h> #include <netdb.h> diff -Nur ltp-full-20160126.orig/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_clntudp_bufcreate/rpc_clntudp_bufcreate.c ltp-full-20160126/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_clntudp_bufcreate/rpc_clntudp_bufcreate.c --- ltp-full-20160126.orig/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_clntudp_bufcreate/rpc_clntudp_bufcreate.c 2016-01-26 13:35:25.000000000 +0100 +++ ltp-full-20160126/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_clntudp_bufcreate/rpc_clntudp_bufcreate.c 2016-03-05 02:23:56.706264429 +0100 @@ -30,7 +30,6 @@ #include <time.h> #include <rpc/rpc.h> #include <sys/socket.h> -#include <rpcsvc/rusers.h> #include <utmp.h> #include <sys/time.h> #include <netdb.h> diff -Nur ltp-full-20160126.orig/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_clntudp_bufcreate/rpc_clntudp_bufcreate_limits.c ltp-full-20160126/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_clntudp_bufcreate/rpc_clntudp_bufcreate_limits.c --- ltp-full-20160126.orig/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_clntudp_bufcreate/rpc_clntudp_bufcreate_limits.c 2016-01-26 13:35:25.000000000 +0100 +++ ltp-full-20160126/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_clntudp_bufcreate/rpc_clntudp_bufcreate_limits.c 2016-03-05 02:24:03.818537786 +0100 @@ -30,7 +30,6 @@ #include <time.h> #include <rpc/rpc.h> #include <sys/socket.h> -#include <rpcsvc/rusers.h> #include <utmp.h> #include <sys/time.h> #include <netdb.h> diff -Nur ltp-full-20160126.orig/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_clntudp_create/rpc_clntudp_create.c ltp-full-20160126/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_clntudp_create/rpc_clntudp_create.c --- ltp-full-20160126.orig/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_clntudp_create/rpc_clntudp_create.c 2016-01-26 13:35:25.000000000 +0100 +++ ltp-full-20160126/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_clntudp_create/rpc_clntudp_create.c 2016-03-05 02:24:10.518795308 +0100 @@ -30,7 +30,6 @@ #include <time.h> #include <rpc/rpc.h> #include <sys/socket.h> -#include <rpcsvc/rusers.h> #include <utmp.h> #include <sys/time.h> #include <netdb.h> diff -Nur ltp-full-20160126.orig/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_clntudp_create/rpc_clntudp_create_stress.c ltp-full-20160126/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_clntudp_create/rpc_clntudp_create_stress.c --- ltp-full-20160126.orig/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_clntudp_create/rpc_clntudp_create_stress.c 2016-01-26 13:35:25.000000000 +0100 +++ ltp-full-20160126/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_clntudp_create/rpc_clntudp_create_stress.c 2016-03-05 02:24:20.095163371 +0100 @@ -30,7 +30,6 @@ #include <time.h> #include <rpc/rpc.h> #include <sys/socket.h> -#include <rpcsvc/rusers.h> #include <utmp.h> #include <sys/time.h> #include <netdb.h>
shibajee/buildroot
package/ltp-testsuite/0005-rpc-fix-uClibc.patch
patch
mit
8,893
comment "ltp-testsuite needs specific uClibc options, see help" depends on BR2_PACKAGE_LTP_TESTSUITE depends on BR2_TOOLCHAIN_USES_UCLIBC config BR2_PACKAGE_LTP_TESTSUITE bool "ltp-testsuite" depends on BR2_USE_MMU # fork() depends on BR2_TOOLCHAIN_HAS_THREADS depends on !BR2_TOOLCHAIN_USES_MUSL select BR2_PACKAGE_LIBTIRPC if !BR2_TOOLCHAIN_HAS_NATIVE_RPC # does not build, cachectl.h issue depends on !BR2_nios2 help The Linux Test Project provides a huge testsuite for Linux. The LTP testsuite uses several functions that are considered obsolete, such as sigset() and others. Therefore, the LTP testsuite does not build with Buildroot's default uClibc configuration, and options such as DO_XSI_MATH, UCLIBC_HAS_OBSOLETE_BSD_SIGNAL and UCLIBC_SV4_DEPRECATED are needed. http://linux-test-project.github.io comment "ltp-testsuite needs a non-musl toolchain w/ threads" depends on !BR2_nios2 depends on BR2_USE_MMU depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_TOOLCHAIN_USES_MUSL
shibajee/buildroot
package/ltp-testsuite/Config.in
in
mit
1,022
# From: https://github.com/linux-test-project/ltp/releases/download/20160126/ltp-full-20160126.tar.xz.md5 md5 fc3b7411cdf17b2608e26c05d36fc26a ltp-full-20160126.tar.xz # From: https://github.com/linux-test-project/ltp/releases/download/20160126/ltp-full-20160126.tar.xz.sha1 sha1 a39c9b05edb942cde23a1f7fa08289a5e427fa04 ltp-full-20160126.tar.xz
shibajee/buildroot
package/ltp-testsuite/ltp-testsuite.hash
hash
mit
348
################################################################################ # # ltp-testsuite # ################################################################################ LTP_TESTSUITE_VERSION = 20160126 LTP_TESTSUITE_SOURCE = ltp-full-$(LTP_TESTSUITE_VERSION).tar.xz LTP_TESTSUITE_SITE = https://github.com/linux-test-project/ltp/releases/download/$(LTP_TESTSUITE_VERSION) LTP_TESTSUITE_LICENSE = GPLv2, GPLv2+ LTP_TESTSUITE_LICENSE_FILES = COPYING LTP_TESTSUITE_CONF_OPTS += \ --with-power-management-testsuite \ --with-realtime-testsuite ifeq ($(BR2_LINUX_KERNEL),y) LTP_TESTSUITE_DEPENDENCIES += linux LTP_TESTSUITE_MAKE_ENV += $(LINUX_MAKE_FLAGS) LTP_TESTSUITE_CONF_OPTS += --with-linux-dir=$(LINUX_DIR) else LTP_TESTSUITE_CONF_OPTS += --without-modules endif # Needs libcap with file attrs which needs attr, so both required ifeq ($(BR2_PACKAGE_LIBCAP)$(BR2_PACKAGE_ATTR),yy) LTP_TESTSUITE_DEPENDENCIES += libcap else LTP_TESTSUITE_CONF_ENV += ac_cv_lib_cap_cap_compare=no endif # ltp-testsuite uses <fts.h>, which isn't compatible with largefile # support. LTP_TESTSUITE_CFLAGS = $(filter-out -D_FILE_OFFSET_BITS=64,$(TARGET_CFLAGS)) LTP_TESTSUITE_CPPFLAGS = $(filter-out -D_FILE_OFFSET_BITS=64,$(TARGET_CPPFLAGS)) LTP_TESTSUITE_LIBS = ifeq ($(BR2_PACKAGE_LIBTIRPC),y) LTP_TESTSUITE_DEPENDENCIES += libtirpc host-pkgconf LTP_TESTSUITE_CFLAGS += "`$(PKG_CONFIG_HOST_BINARY) --cflags libtirpc`" LTP_TESTSUITE_LIBS += "`$(PKG_CONFIG_HOST_BINARY) --libs libtirpc`" endif LTP_TESTSUITE_CONF_ENV += \ CFLAGS="$(LTP_TESTSUITE_CFLAGS)" \ CPPFLAGS="$(LTP_TESTSUITE_CPPFLAGS)" \ LIBS="$(LTP_TESTSUITE_LIBS)" \ SYSROOT="$(STAGING_DIR)" # Requires uClibc fts and bessel support, normally not enabled ifeq ($(BR2_TOOLCHAIN_USES_UCLIBC),y) define LTP_TESTSUITE_REMOVE_UNSUPPORTED rm -rf $(@D)/testcases/kernel/controllers/cpuset/ rm -rf $(@D)/testcases/misc/math/float/bessel/ rm -f $(@D)/testcases/misc/math/float/float_bessel.c endef LTP_TESTSUITE_POST_PATCH_HOOKS += LTP_TESTSUITE_REMOVE_UNSUPPORTED endif $(eval $(autotools-package))
shibajee/buildroot
package/ltp-testsuite/ltp-testsuite.mk
mk
mit
2,060
From 04377d28135e351c8d096c4392a493e937416815 Mon Sep 17 00:00:00 2001 From: Alexandre Belloni <alexandre.belloni@free-electrons.com> Date: Thu, 24 Jul 2014 23:15:20 +0200 Subject: [PATCH] Allow building with uclibc toolchains Unfortunately, uclicbc doesn't define SHT_ARM_ATTRIBUTES in elf.h Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com> --- sysdeps/linux-gnu/arm/plt.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sysdeps/linux-gnu/arm/plt.c b/sysdeps/linux-gnu/arm/plt.c index 9e9e37f0c5b0..a0a5795eb9cb 100644 --- a/sysdeps/linux-gnu/arm/plt.c +++ b/sysdeps/linux-gnu/arm/plt.c @@ -28,6 +28,10 @@ #include "library.h" #include "ltrace-elf.h" +#ifndef SHT_ARM_ATTRIBUTES +#define SHT_ARM_ATTRIBUTES 0x70000003 +#endif + static int get_hardfp(uint64_t abi_vfp_args) { -- 1.9.1
shibajee/buildroot
package/ltrace/0001-arm-plt.patch
patch
mit
832
From 4e58f53b7886420d002e5919f279acd6d7c4afd1 Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Date: Tue, 22 Dec 2015 21:47:45 +0100 Subject: [PATCH] sparc: add missing library.h include MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes the following build failure on sparc: plt.c: In function ‘sym2addr’: plt.c:33:12: error: dereferencing pointer to incomplete type return sym->enter_addr; ^ plt.c:34:1: warning: control reaches end of non-void function [-Wreturn-type] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> --- sysdeps/linux-gnu/sparc/plt.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sysdeps/linux-gnu/sparc/plt.c b/sysdeps/linux-gnu/sparc/plt.c index 3d2e589..959eed1 100644 --- a/sysdeps/linux-gnu/sparc/plt.c +++ b/sysdeps/linux-gnu/sparc/plt.c @@ -21,6 +21,7 @@ #include <gelf.h> #include "proc.h" #include "common.h" +#include "library.h" GElf_Addr arch_plt_sym_val(struct ltelf *lte, size_t ndx, GElf_Rela * rela) { -- 2.6.4
shibajee/buildroot
package/ltrace/0002-sparc-add-missing-library.h-include.patch
patch
mit
1,088
config BR2_PACKAGE_LTRACE bool "ltrace" # ltrace normally has mips/mipsel support, but it's currently # broken (error: 'struct ltelf' has no member named # 'relplt_count'). Issue reported upstream at # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=756764. depends on (BR2_i386 || BR2_arm || BR2_mips || BR2_mipsel \ || BR2_powerpc || BR2_sparc || BR2_x86_64 || BR2_xtensa) select BR2_PACKAGE_ELFUTILS depends on BR2_USE_WCHAR # elfutils depends on !BR2_STATIC_LIBS # elfutils depends on BR2_TOOLCHAIN_USES_UCLIBC || BR2_TOOLCHAIN_USES_GLIBC # elfutils help Debugging program which runs a specified command until it exits. While the command is executing, ltrace intercepts and records the dynamic library calls which are called by the executed process and the signals received by that process. http://ltrace.org comment "ltrace needs a uClibc or glibc toolchain w/ wchar, dynamic library" depends on !BR2_USE_WCHAR || BR2_STATIC_LIBS \ || !(BR2_TOOLCHAIN_USES_UCLIBC || BR2_TOOLCHAIN_USES_GLIBC)
shibajee/buildroot
package/ltrace/Config.in
in
mit
1,032
################################################################################ # # ltrace # ################################################################################ LTRACE_VERSION = c22d359433b333937ee3d803450dc41998115685 LTRACE_SITE = git://anonscm.debian.org/collab-maint/ltrace.git LTRACE_DEPENDENCIES = elfutils LTRACE_CONF_OPTS = --disable-werror LTRACE_LICENSE = GPLv2 LTRACE_LICENSE_FILES = COPYING LTRACE_AUTORECONF = YES define LTRACE_CREATE_CONFIG_M4 mkdir -p $(@D)/config/m4 endef LTRACE_POST_PATCH_HOOKS += LTRACE_CREATE_CONFIG_M4 # ltrace can use libunwind only if libc has backtrace() support # We don't normally do so for uClibc and we can't know if it's external # Also ltrace with libunwind support is broken for MIPS so we disable it ifeq ($(BR2_PACKAGE_LIBUNWIND),y) ifeq ($(BR2_TOOLCHAIN_USES_UCLIBC)$(BR2_mips)$(BR2_mipsel),) # --with-elfutils only selects unwinding support backend. elfutils is a # mandatory dependency regardless. LTRACE_CONF_OPTS += --with-libunwind=yes --with-elfutils=no LTRACE_DEPENDENCIES += libunwind else LTRACE_CONF_OPTS += --with-libunwind=no endif endif $(eval $(autotools-package))
shibajee/buildroot
package/ltrace/ltrace.mk
mk
mit
1,149
Upstream patch to fix build with GCC 5 Obtained from the LGames Subversion repository with the following command: svn diff -c164 svn://svn.code.sf.net/p/lgames/code/trunk/ltris Signed-off-by: Rodrigo Rebello <rprebello@gmail.com> Revision log message: ------------------------------------------------------------------------ r164 | kulkanie | 2015-05-16 05:48:02 -0300 (Sat, 16 May 2015) | 1 line removed all inline keywords ------------------------------------------------------------------------ Line added to LTris ChangeLog concerning the change: - removed all inline keywords to work with GCC 5 (2015/05/16 MS) Author: Michael Speck Index: src/sdl.c =================================================================== --- a/src/sdl.c (revision 163) +++ b/src/sdl.c (revision 164) @@ -244,7 +244,7 @@ #endif /* return full path of bitmap */ -inline void get_full_bmp_path( char *full_path, char *file_name ) +void get_full_bmp_path( char *full_path, char *file_name ) { sprintf(full_path, "%s/gfx/%s", SRC_DIR, file_name ); } @@ -330,7 +330,7 @@ /* lock surface */ -inline void lock_surf(SDL_Surface *sur) +void lock_surf(SDL_Surface *sur) { if (SDL_MUSTLOCK(sur)) SDL_LockSurface(sur); @@ -339,7 +339,7 @@ /* unlock surface */ -inline void unlock_surf(SDL_Surface *sur) +void unlock_surf(SDL_Surface *sur) { if (SDL_MUSTLOCK(sur)) SDL_UnlockSurface(sur); @@ -666,7 +666,7 @@ /* lock font surface */ -inline void lock_font(Font *fnt) +void lock_font(Font *fnt) { if (SDL_MUSTLOCK(fnt->pic)) SDL_LockSurface(fnt->pic); @@ -675,7 +675,7 @@ /* unlock font surface */ -inline void unlock_font(Font *fnt) +void unlock_font(Font *fnt) { if (SDL_MUSTLOCK(fnt->pic)) SDL_UnlockSurface(fnt->pic); @@ -905,7 +905,7 @@ /* update rectangle (0,0,0,0)->fullscreen */ -inline void refresh_screen(int x, int y, int w, int h) +void refresh_screen(int x, int y, int w, int h) { SDL_UpdateRect(sdl.screen, x, y, w, h); } @@ -1055,7 +1055,7 @@ /* lock surface */ -inline void lock_screen() +void lock_screen() { if (SDL_MUSTLOCK(sdl.screen)) SDL_LockSurface(sdl.screen); @@ -1064,7 +1064,7 @@ /* unlock surface */ -inline void unlock_screen() +void unlock_screen() { if (SDL_MUSTLOCK(sdl.screen)) SDL_UnlockSurface(sdl.screen); @@ -1073,7 +1073,7 @@ /* flip hardware screens (double buffer) */ -inline void flip_screen() +void flip_screen() { SDL_Flip(sdl.screen); } @@ -1132,7 +1132,7 @@ /* get milliseconds since last call */ -inline int get_time() +int get_time() { int ms; cur_time = SDL_GetTicks(); @@ -1148,7 +1148,7 @@ /* reset timer */ -inline void reset_timer() +void reset_timer() { last_time = SDL_GetTicks(); } Index: src/sdl.h =================================================================== --- a/src/sdl.h (revision 163) +++ b/src/sdl.h (revision 164) @@ -41,8 +41,8 @@ SDL_Surface* load_surf(char *fname, int f); SDL_Surface* create_surf(int w, int h, int f); void free_surf( SDL_Surface **surf ); -inline void lock_surf(SDL_Surface *sur); -inline void unlock_surf(SDL_Surface *sur); +void lock_surf(SDL_Surface *sur); +void unlock_surf(SDL_Surface *sur); void blit_surf(void); void alpha_blit_surf(int alpha); void fill_surf(int c); @@ -86,8 +86,8 @@ Font* load_fixed_font(char *fname, int off, int len, int w); void free_font(Font **sfnt); int write_text(Font *sfnt, SDL_Surface *dest, int x, int y, char *str, int alpha); -inline void lock_font(Font *sfnt); -inline void unlock_font(Font *sfnt); +void lock_font(Font *sfnt); +void unlock_font(Font *sfnt); SDL_Rect last_write_rect(Font *fnt); int text_width(Font *fnt, char *str); @@ -132,14 +132,14 @@ char** get_mode_names( int *count ); int set_video_mode( Video_Mode mode ); void hardware_cap(); -inline void refresh_screen( int x, int y, int w, int h ); +void refresh_screen( int x, int y, int w, int h ); void refresh_rects(); void add_refresh_rect(int x, int y, int w, int h); int wait_for_key(); void wait_for_click(); -inline void lock_screen(); -inline void unlock_screen(); -inline void flip_screen(); +void lock_screen(); +void unlock_screen(); +void flip_screen(); void fade_screen( int type, int ms ); void take_screenshot( int i ); @@ -148,8 +148,8 @@ SDL_Cursor* create_cursor( int width, int height, int hot_x, int hot_y, char *source ); /* timer */ -inline int get_time(); -inline void reset_timer(); +int get_time(); +void reset_timer(); #ifdef __cplusplus }; Index: src/tools.c =================================================================== --- a/src/tools.c (revision 163) +++ b/src/tools.c (revision 164) @@ -23,7 +23,7 @@ #include "ltris.h" /* compares to strings and returns true if their first strlen(str1) chars are equal */ -inline int strequal( char *str1, char *str2 ) +int strequal( char *str1, char *str2 ) { if ( strlen( str1 ) != strlen( str2 ) ) return 0; return ( !strncmp( str1, str2, strlen( str1 ) ) ); @@ -30,7 +30,7 @@ } /* set delay to ms milliseconds */ -inline void delay_set( Delay *delay, int ms ) +void delay_set( Delay *delay, int ms ) { delay->limit = ms; delay->cur = 0; @@ -37,13 +37,13 @@ } /* reset delay ( cur = 0 )*/ -inline void delay_reset( Delay *delay ) +void delay_reset( Delay *delay ) { delay->cur = 0; } /* check if times out and reset */ -inline int delay_timed_out( Delay *delay, int ms ) +int delay_timed_out( Delay *delay, int ms ) { delay->cur += ms; if ( delay->cur >= delay->limit ) { @@ -56,12 +56,12 @@ } /* set timer so that we have a time out next call of delay_timed_out() */ -inline void delay_force_time_out( Delay *delay ) +void delay_force_time_out( Delay *delay ) { delay->cur = delay->limit; } -inline void goto_tile( int *x, int *y, int d ) +void goto_tile( int *x, int *y, int d ) { /* 0 -up, clockwise, 5 - left up */ switch ( d ) { @@ -326,24 +326,24 @@ the target value until reached when counter_update() is called. ==================================================================== */ -inline void counter_set( Counter *counter, double value ) +void counter_set( Counter *counter, double value ) { counter->value = value; counter->approach = value; } -inline void counter_add( Counter *counter, double add ) +void counter_add( Counter *counter, double add ) { counter->value += add; } -inline double counter_get_approach( Counter counter ) +double counter_get_approach( Counter counter ) { return counter.approach; } -inline double counter_get( Counter counter ) +double counter_get( Counter counter ) { return counter.value; } -inline void counter_update( Counter *counter, int ms ) +void counter_update( Counter *counter, int ms ) { double change; if ( counter->approach == counter->value ) return; Index: src/bowl.c =================================================================== --- a/src/bowl.c (revision 163) +++ b/src/bowl.c (revision 164) @@ -333,7 +333,7 @@ Set a tile contents and pixel contents. ==================================================================== */ -inline void bowl_set_tile( Bowl *bowl, int x, int y, int tile_id ) +void bowl_set_tile( Bowl *bowl, int x, int y, int tile_id ) { int i, j = y * bowl->block_size; bowl->contents[x][y] = tile_id; Index: src/tools.h =================================================================== --- a/src/tools.h (revision 163) +++ b/src/tools.h (revision 164) @@ -33,7 +33,7 @@ #define VEC_DIST( vec1, vec2 ) ( sqrt( ( vec1.x - vec2.x ) * ( vec1.x - vec2.x ) + ( vec1.y - vec2.y ) * ( vec1.y - vec2.y ) ) ) /* compares to strings and returns true if their first strlen(str1) chars are equal */ -inline int strequal( char *str1, char *str2 ); +int strequal( char *str1, char *str2 ); /* delete lines */ void delete_lines( char **lines, int line_number ); @@ -45,16 +45,16 @@ } Delay; /* set delay to ms milliseconds */ -inline void delay_set( Delay *delay, int ms ); +void delay_set( Delay *delay, int ms ); /* reset delay ( cur = 0 )*/ -inline void delay_reset( Delay *delay ); +void delay_reset( Delay *delay ); /* check if time's out ( add ms milliseconds )and reset */ -inline int delay_timed_out( Delay *delay, int ms ); +int delay_timed_out( Delay *delay, int ms ); /* set timer so that we have a time out next call of delay_timed_out() */ -inline void delay_force_time_out( Delay *delay ); +void delay_force_time_out( Delay *delay ); /* return distance betwteen to map positions */ int get_dist( int x1, int y1, int x2, int y2 );
shibajee/buildroot
package/ltris/0001-fix-gcc5-build.patch
patch
mit
8,671
config BR2_PACKAGE_LTRIS bool "LTris" depends on BR2_USE_MMU # fork() select BR2_PACKAGE_SDL select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE help LTris is a tetris clone, using SDL. It optionally requires SDL_mixer for audio support. A display with minimum 640x480 resolution and a keyboard are recommended. http://lgames.sourceforge.net/index.php?project=LTris if BR2_PACKAGE_LTRIS config BR2_PACKAGE_LTRIS_AUDIO bool "audio support" default y select BR2_PACKAGE_SDL_MIXER help Activates audio support in LTris. Will add SDL_mixer. endif
shibajee/buildroot
package/ltris/Config.in
in
mit
577
# Locally computed: sha256 8f6a9e7719d22004aee153db29ffd9ca41c7a6cd87fc791591994eecc2e625a1 ltris-1.0.19.tar.gz
shibajee/buildroot
package/ltris/ltris.hash
hash
mit
114
################################################################################ # # ltris # ################################################################################ LTRIS_SITE = http://downloads.sourceforge.net/lgames/ltris LTRIS_VERSION = 1.0.19 LTRIS_LICENSE = GPLv2+ LTRIS_LICENSE_FILES = COPYING LTRIS_DEPENDENCIES = sdl LTRIS_CONF_ENV = \ SDL_CONFIG="$(STAGING_DIR)/usr/bin/sdl-config" \ LIBS="$(LTRIS_LIBS)" ifeq ($(BR2_PACKAGE_LTRIS_AUDIO),y) LTRIS_DEPENDENCIES += sdl_mixer host-pkgconf LTRIS_CONF_OPTS += --enable-sound # configure script does NOT use pkg-config to figure out how to link # with sdl_mixer, breaking static linking as sdl_mixer can use libmad LTRIS_LIBS += `$(PKG_CONFIG_HOST_BINARY) --libs SDL_mixer` else LTRIS_CONF_OPTS += --disable-sound endif ifeq ($(BR2_NEEDS_GETTEXT_IF_LOCALE),y) LTRIS_DEPENDENCIES += gettext LTRIS_LIBS += -lintl endif $(eval $(autotools-package))
shibajee/buildroot
package/ltris/ltris.mk
mk
mit
916
Do not call posix_fallocate() on uClibc uClibc does not implement posix_fallocate(), and posix_fallocate() is mostly only an hint to the kernel that we will need such or such amount of space inside a file. So we just don't call posix_fallocate() when building against uClibc. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> [Peter: add #include <features.h> --- formats/ctf/ctf.c | 3 +++ 1 file changed, 3 insertions(+) Index: lttng-babeltrace-0.8/formats/ctf/ctf.c =================================================================== --- lttng-babeltrace-0.8.orig/formats/ctf/ctf.c +++ lttng-babeltrace-0.8/formats/ctf/ctf.c @@ -32,6 +32,7 @@ #include <sys/stat.h> #include <fcntl.h> #include <dirent.h> +#include <features.h> #include <glib.h> #include <unistd.h> #include <stdlib.h> @@ -384,9 +385,11 @@ } pos->content_size = -1U; /* Unknown at this point */ pos->packet_size = WRITE_PACKET_LEN; +#ifndef __UCLIBC__ off = posix_fallocate(pos->fd, pos->mmap_offset, pos->packet_size / CHAR_BIT); assert(off >= 0); +#endif pos->offset = 0; } else { read_next_packet:
shibajee/buildroot
package/lttng-babeltrace/0001-no-posix-fallocate-in-uclibc.patch
patch
mit
1,136
From 670d0961a823df0db28f39a354430f3dc2519418 Mon Sep 17 00:00:00 2001 From: Samuel Martin <s.martin49@gmail.com> Date: Sat, 28 May 2016 12:53:33 +0200 Subject: [PATCH] configure: fix uuid support detection on static build This change adds uuid support detection using pkg-config, before falling back on default AC_CHECK_LIB calls. Using flags from pkg-config is useful for static build, because they also include dependency flags; whereas AC_CHECK_LIB function achieves its test by trying to link against the requested library, without taking care of its dependency requirements/flags. Therefore, in case of static build, it can fail on the uuid detection like [1], because the uuid's dependency flags (regarding gettext) are missing. Instead, using pkg-config to do the check will take care of getting and setting all required flags. This change adds uuid detection using pkg-config helper before falling back on the standard AC_CHECK_LIB detection for platforms missing pkg-config. This issue [1] has been triggered on Buildroot farms. [1] http://autobuild.buildroot.net/results/43b/43b98ddf9eb44152ed9ac4a98d887af14831d8da/build-end.log Signed-off-by: Samuel Martin <s.martin49@gmail.com> --- configure.ac | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/configure.ac b/configure.ac index 632fe39..b344fa8 100644 --- a/configure.ac +++ b/configure.ac @@ -65,6 +65,15 @@ esac AM_CONDITIONAL([BABELTRACE_BUILD_WITH_MINGW], [test "x$MINGW32" = "xyes"]) # Check for libuuid +PKG_CHECK_MODULES([UUID], [uuid], +[ + LIBS="${UUID_LIBS} ${LIBS}" + CFLAGS="${CFLAGS} ${UUID_CFLAGS}" + AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_LIBUUID], 1, [Has libuuid support.]) + have_libuuid=yes +], +[ +# try detecting libuuid without pkg-config AC_CHECK_LIB([uuid], [uuid_generate], [ AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_LIBUUID], 1, [Has libuuid support.]) @@ -83,6 +92,7 @@ AC_CHECK_LIB([uuid], [uuid_generate], AC_MSG_ERROR([Cannot find libuuid uuid_generate nor libc uuid_create. Use [LDFLAGS]=-Ldir to specify their location.]) fi ]) +]) ] ) AM_CONDITIONAL([BABELTRACE_BUILD_WITH_LIBUUID], [test "x$have_libuuid" = "xyes"]) -- 2.8.3
shibajee/buildroot
package/lttng-babeltrace/0002-configure-fix-uuid-support-detection-on-static-build.patch
patch
mit
2,161
config BR2_PACKAGE_LTTNG_BABELTRACE bool "lttng-babeltrace" select BR2_PACKAGE_UTIL_LINUX select BR2_PACKAGE_UTIL_LINUX_LIBUUID select BR2_PACKAGE_LIBGLIB2 select BR2_PACKAGE_POPT depends on BR2_USE_WCHAR # libglib2, util-linux depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2 depends on BR2_USE_MMU # libglib2 help The Babeltrace project provides trace read and write libraries, as well as a trace converter application. Plugins can be created for any trace format to allow its conversion to/from another trace format. Babeltrace is the reference implementation of the Common Trace Format (see <http://diamon.org/docs/ctf/>). Babeltrace can decode and display LTTng traces, since the latter are written using the CTF format. Having this tool on the target is not mandatory. You can transfer the binary trace output from the target to your development workstation, and use babeltrace here. Buildroot automatically builds a host babeltrace in $(O)/host/usr/bin/babeltrace as a dependency of the lttng-tools package. http://www.efficios.com/babeltrace comment "lttng-babeltrace needs a toolchain w/ wchar, threads" depends on BR2_USE_MMU depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
shibajee/buildroot
package/lttng-babeltrace/Config.in
in
mit
1,251
# From http://lttng.org/files/babeltrace/babeltrace-1.2.4.tar.bz2.md5 md5 20a806fa7570e69a91707855a98f3ca6 babeltrace-1.2.4.tar.bz2 # From http://lttng.org/files/babeltrace/babeltrace-1.2.4.tar.bz2.sha1 sha1 c72a80e8fd905cb1ae3b0cf88885517faafe0fa1 babeltrace-1.2.4.tar.bz2 # Locally generated sha256 666e3a1ad2dc7d5703059963056e7800f0eab59c8eeb6be2efe4f3acc5209eb1 babeltrace-1.2.4.tar.bz2
shibajee/buildroot
package/lttng-babeltrace/lttng-babeltrace.hash
hash
mit
402
################################################################################ # # lttng-babeltrace # ################################################################################ LTTNG_BABELTRACE_SITE = http://lttng.org/files/babeltrace LTTNG_BABELTRACE_VERSION = 1.2.4 LTTNG_BABELTRACE_SOURCE = babeltrace-$(LTTNG_BABELTRACE_VERSION).tar.bz2 LTTNG_BABELTRACE_LICENSE = MIT, LGPLv2.1 (include/babeltrace/list.h), GPLv2 (test code) LTTNG_BABELTRACE_LICENSE_FILES = mit-license.txt gpl-2.0.txt LICENSE LTTNG_BABELTRACE_DEPENDENCIES = popt util-linux libglib2 host-pkgconf HOST_LTTNG_BABELTRACE_DEPENDENCIES = \ host-popt host-util-linux host-libglib2 host-pkgconf # for 0002-configure-fix-uuid-support-detection-on-static-build.patch LTTNG_BABELTRACE_AUTORECONF = YES $(eval $(autotools-package)) $(eval $(host-autotools-package))
shibajee/buildroot
package/lttng-babeltrace/lttng-babeltrace.mk
mk
mit
840
config BR2_PACKAGE_LTTNG_LIBUST bool "lttng-libust" select BR2_PACKAGE_LIBURCU select BR2_PACKAGE_UTIL_LINUX select BR2_PACKAGE_UTIL_LINUX_LIBUUID depends on BR2_USE_WCHAR # util-linux # liburcu only works on some architectures and requires threads support" depends on BR2_PACKAGE_LIBURCU_ARCH_SUPPORTS depends on BR2_TOOLCHAIN_HAS_THREADS depends on !BR2_STATIC_LIBS help Userspace tracing library for the LTTng 2.x tracing infrastructure. It allows userspace programs to create custom trace events that are integrated with all other events gathered by LTTng. http://lttng.org comment "lttng-libust needs a toolchain w/ dynamic library, wchar, threads" depends on BR2_PACKAGE_LIBURCU_ARCH_SUPPORTS depends on BR2_STATIC_LIBS || !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
shibajee/buildroot
package/lttng-libust/Config.in
in
mit
803
# http://www.lttng.org/files/lttng-ust/lttng-ust-2.7.1.tar.bz2.sha1 sha1 597ebecb885debb58c263de57f30b1096d4eefc6 lttng-ust-2.7.1.tar.bz2 # Locally computed sha1 2e79c98e458b2e052930fb81441e6ca8377a2ed7 787364e8bac9a146f9d65c763633c2b75eb76463.patch sha1 cf77ec415111f77573be7917d9b62d8e49dc6304 30307a67b48641875b122d8f832bbfb454e95d92.patch
shibajee/buildroot
package/lttng-libust/lttng-libust.hash
hash
mit
348
################################################################################ # # lttng-libust # ################################################################################ LTTNG_LIBUST_SITE = http://lttng.org/files/lttng-ust LTTNG_LIBUST_VERSION = 2.7.1 LTTNG_LIBUST_SOURCE = lttng-ust-$(LTTNG_LIBUST_VERSION).tar.bz2 LTTNG_LIBUST_LICENSE = LGPLv2.1, MIT (system headers), GPLv2 (liblttng-ust-ctl/ustctl.c used by lttng-sessiond) LTTNG_LIBUST_LICENSE_FILES = COPYING LTTNG_LIBUST_PATCH = \ https://github.com/lttng/lttng-ust/commit/787364e8bac9a146f9d65c763633c2b75eb76463.patch \ https://github.com/lttng/lttng-ust/commit/30307a67b48641875b122d8f832bbfb454e95d92.patch LTTNG_LIBUST_INSTALL_STAGING = YES LTTNG_LIBUST_DEPENDENCIES = liburcu util-linux ifeq ($(BR2_PACKAGE_PYTHON),y) LTTNG_LIBUST_DEPENDENCIES += python else ifeq ($(BR2_PACKAGE_PYTHON3),y) LTTNG_LIBUST_DEPENDENCIES += python3 else LTTNG_LIBUST_CONF_ENV = am_cv_pathless_PYTHON="none" endif $(eval $(autotools-package))
shibajee/buildroot
package/lttng-libust/lttng-libust.mk
mk
mit
1,002
config BR2_PACKAGE_LTTNG_MODULES bool "lttng-modules" depends on BR2_LINUX_KERNEL help Linux kernel modules for the LTTng 2.x kernel tracing infrastructure. Make sure your target kernel has the following config options enabled: * CONFIG_MODULES: loadable module support * CONFIG_KALLSYMS: this is necessary until the few required missing symbols are exported to GPL modules from mainline * CONFIG_HIGH_RES_TIMERS: needed for LTTng 2.x clock source * CONFIG_TRACEPOINTS: kernel tracepoint instrumentation (enabled as a side-effect of any of the perf/ftrace/blktrace instrumentation features) The following kernel configuration options will affect the features available from LTTng: * CONFIG_HAVE_SYSCALL_TRACEPOINTS: system call tracing * CONFIG_PERF_EVENTS: performance counters * CONFIG_EVENT_TRACING: needed to allow block layer tracing * CONFIG_KPROBES: dynamic probes * CONFIG_KRETPROBES: dynamic function entry/return probes * CONFIG_KALLSYMS_ALL: state dump of mapping between block device number and name The packaged version is compatible with Linux 2.6.38 to 3.16. http://lttng.org comment "lttng-modules needs a Linux kernel to be built" depends on !BR2_LINUX_KERNEL
shibajee/buildroot
package/lttng-modules/Config.in
in
mit
1,304
# from http://lttng.org/files/lttng-tools/lttng-modules-2.7.1.tar.bz2.sha1 sha1 38c42ec89b4966c7a4cc04aea75f5841634d8d66 lttng-modules-2.7.1.tar.bz2
shibajee/buildroot
package/lttng-modules/lttng-modules.hash
hash
mit
151
################################################################################ # # lttng-modules # ################################################################################ LTTNG_MODULES_VERSION = 2.7.1 LTTNG_MODULES_SITE = http://lttng.org/files/lttng-modules LTTNG_MODULES_SOURCE = lttng-modules-$(LTTNG_MODULES_VERSION).tar.bz2 LTTNG_MODULES_LICENSE = LGPLv2.1/GPLv2 (kernel modules), MIT (lib/bitfield.h, lib/prio_heap/*) LTTNG_MODULES_LICENSE_FILES = lgpl-2.1.txt gpl-2.0.txt mit-license.txt LICENSE $(eval $(kernel-module)) $(eval $(generic-package))
shibajee/buildroot
package/lttng-modules/lttng-modules.mk
mk
mit
568
From: Baruch Siach <baruch@tkos.co.il> Date: Tue, 8 Mar 2016 14:25:34 +0200 Subject: [PATCH] Fix: build failure when __GLIBC_PREREQ is missing The musl C library does not provide the __GLIBC_PREREQ macro. Instead of relying on glibc version test, check directly for the availability of epoll_create1(). Signed-off-by: Baruch Siach <baruch@tkos.co.il> --- Patch status: sent upstream rebased on master branch (http://lists.lttng.org/pipermail/lttng-dev/2016-March/025593.html) configure.ac | 2 +- src/common/compat/poll.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 66d83b60b017..4fc1160c9a08 100644 --- a/configure.ac +++ b/configure.ac @@ -70,7 +70,7 @@ AC_CHECK_FUNCS([ \ gethostbyname gethostname getpagesize localtime_r memchr memset \ mkdir munmap putenv realpath rmdir socket strchr strcspn strdup \ strncasecmp strndup strpbrk strrchr strstr strtol strtoul \ - strtoull \ + strtoull epoll_create1 \ ]) # Babeltrace viewer check diff --git a/src/common/compat/poll.h b/src/common/compat/poll.h index 699901848dc1..84f25d5c85aa 100644 --- a/src/common/compat/poll.h +++ b/src/common/compat/poll.h @@ -73,7 +73,7 @@ enum { LPOLLNVAL = EPOLLHUP, LPOLLRDHUP = EPOLLRDHUP, /* Close on exec feature of epoll */ -#if __GLIBC_PREREQ(2, 9) +#if defined(HAVE_EPOLL_CREATE1) && defined(EPOLL_CLOEXEC) LTTNG_CLOEXEC = EPOLL_CLOEXEC, #else /* @@ -127,7 +127,7 @@ extern int compat_epoll_create(struct lttng_poll_event *events, #define lttng_poll_create(events, size, flags) \ compat_epoll_create(events, size, flags) -#if __GLIBC_PREREQ(2, 9) +#if defined(HAVE_EPOLL_CREATE1) && defined(EPOLL_CLOEXEC) static inline int compat_glibc_epoll_create(int size __attribute__((unused)), int flags) { -- 2.7.0
shibajee/buildroot
package/lttng-tools/0001-Fix-build-failure-when-__GLIBC_PREREQ-is-missing.patch
patch
mit
1,808
From: Baruch Siach <baruch@tkos.co.il> Date: Tue, 8 Mar 2016 14:40:49 +0200 Subject: [PATCH] Fix: add missing sys/types.h header The musl C library requires inclusion of sys/types.h for mode_t. Signed-off-by: Baruch Siach <baruch@tkos.co.il> --- Patch status: sent upstream (http://lists.lttng.org/pipermail/lttng-dev/2016-March/025594.html) src/common/runas.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/common/runas.h b/src/common/runas.h index 2c5565af3646..ac1143eecf84 100644 --- a/src/common/runas.h +++ b/src/common/runas.h @@ -19,6 +19,7 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ +#include <sys/types.h> #include <unistd.h> #include <pthread.h> -- 2.7.0
shibajee/buildroot
package/lttng-tools/0002-Fix-add-missing-sys-types.h-header.patch
patch
mit
716
config BR2_PACKAGE_LTTNG_TOOLS bool "lttng-tools" # liburcu only works on some architectures and requires thread support depends on BR2_PACKAGE_LIBURCU_ARCH_SUPPORTS depends on BR2_USE_WCHAR # util-linux depends on BR2_TOOLCHAIN_HAS_THREADS depends on !BR2_STATIC_LIBS # uses dlfcn select BR2_PACKAGE_LIBURCU select BR2_PACKAGE_LIBXML2 select BR2_PACKAGE_POPT select BR2_PACKAGE_UTIL_LINUX select BR2_PACKAGE_UTIL_LINUX_LIBUUID help Userspace utilities for the LTTng 2.x tracing infrastructure. Those utilities are required on the target system to start and stop tracing sessions. Analysis of the trace can be done on the host machine using the babeltrace utility. This utility is automatically built by Buildroot in $(O)/host/usr/bin/babeltrace, as a dependency of lttng-tools. However, there is also a lttng-babeltrace package for the target, if babeltrace on the target is interesting. If userspace tracing is desired, you need to enable lttng-libust. http://lttng.org comment "lttng-tools needs a toolchain w/ threads, wchar, dynamic library" depends on BR2_PACKAGE_LIBURCU_ARCH_SUPPORTS depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR || BR2_STATIC_LIBS
shibajee/buildroot
package/lttng-tools/Config.in
in
mit
1,224
# Locally generated sha256 0c799fb21dfa42475feaa1507ded934608b2e531039b46c40e944a5b81c7b21c lttng-tools-2.7.1.tar.bz2
shibajee/buildroot
package/lttng-tools/lttng-tools.hash
hash
mit
120
################################################################################ # # lttng-tools # ################################################################################ LTTNG_TOOLS_VERSION = 2.7.1 LTTNG_TOOLS_SITE = http://lttng.org/files/lttng-tools LTTNG_TOOLS_SOURCE = lttng-tools-$(LTTNG_TOOLS_VERSION).tar.bz2 LTTNG_TOOLS_LICENSE = GPLv2+, LGPLv2.1+ (include/lttng/*, src/lib/lttng-ctl/*) LTTNG_TOOLS_LICENSE_FILES = gpl-2.0.txt lgpl-2.1.txt LICENSE LTTNG_TOOLS_CONF_OPTS += --with-xml-prefix=$(STAGING_DIR)/usr # Patching configure.ac LTTNG_TOOLS_AUTORECONF = YES # The host-lttng-babeltrace technically isn't a required build # dependency. However, having the babeltrace utilities built for the # host is very useful, since those tools allow to convert the binary # trace format into an human readable format. LTTNG_TOOLS_DEPENDENCIES = liburcu libxml2 popt host-lttng-babeltrace util-linux ifeq ($(BR2_PACKAGE_LTTNG_LIBUST),y) LTTNG_TOOLS_CONF_OPTS += --enable-lttng-ust LTTNG_TOOLS_DEPENDENCIES += lttng-libust else LTTNG_TOOLS_CONF_OPTS += --disable-lttng-ust endif $(eval $(autotools-package))
shibajee/buildroot
package/lttng-tools/lttng-tools.mk
mk
mit
1,120
config BR2_PACKAGE_LUA_CJSON bool "lua-cjson" depends on BR2_PACKAGE_HAS_LUAINTERPRETER help The Lua CJSON module provides JSON support for Lua. It features: - Fast, standards compliant encoding/parsing routines - Full support for JSON with UTF-8, including decoding surrogate pairs - Optional run-time support for common exceptions to the JSON specification (infinity, NaN, ...) - No dependencies on other libraries (C-module) http://www.kyne.com.au/~mark/software/lua-cjson.php
shibajee/buildroot
package/lua-cjson/Config.in
in
mit
511
# Locally calculated sha256 db7af849c555d1a474f729fe4a56b5530e9be7b24749eb7a7c474a7c7207b972 lua-cjson-2.1.0-1.src.rock
shibajee/buildroot
package/lua-cjson/lua-cjson.hash
hash
mit
121
################################################################################ # # lua-cjson # ################################################################################ LUA_CJSON_VERSION_UPSTREAM = 2.1.0 LUA_CJSON_VERSION = $(LUA_CJSON_VERSION_UPSTREAM)-1 LUA_CJSON_LICENSE = MIT LUA_CJSON_LICENSE_FILES = lua-cjson-$(LUA_CJSON_VERSION_UPSTREAM)/LICENSE $(eval $(luarocks-package))
shibajee/buildroot
package/lua-cjson/lua-cjson.mk
mk
mit
393
config BR2_PACKAGE_LUA_COAT bool "lua-coat" help Yet Another Lua Object-Oriented Model http://fperrad.github.io/lua-Coat/
shibajee/buildroot
package/lua-coat/Config.in
in
mit
131
# Locally calculated sha256 38a8342f6b3883a81931feaa9ef90a6343445289f3d65a296f0924818587c7d4 lua-coat-0.9.1-1.src.rock
shibajee/buildroot
package/lua-coat/lua-coat.hash
hash
mit
120
################################################################################ # # lua-coat # ################################################################################ LUA_COAT_VERSION_UPSTREAM = 0.9.1 LUA_COAT_VERSION = $(LUA_COAT_VERSION_UPSTREAM)-1 LUA_COAT_SUBDIR = lua-Coat-$(LUA_COAT_VERSION_UPSTREAM) LUA_COAT_LICENSE = MIT LUA_COAT_LICENSE_FILES = $(LUA_COAT_SUBDIR)/COPYRIGHT $(eval $(luarocks-package))
shibajee/buildroot
package/lua-coat/lua-coat.mk
mk
mit
424
config BR2_PACKAGE_LUA_COATPERSISTENT bool "lua-coatpersistent" # run-time dependencies select BR2_PACKAGE_DADO select BR2_PACKAGE_LUA_COAT depends on BR2_PACKAGE_LSQLITE3 || BR2_PACKAGE_LUASQL_SQLITE3 help An ORM for lua-Coat. http://fperrad.github.io/lua-CoatPersistent/ comment "lua-coatpersistent needs lsqlite3 or luasql-sqlite3" depends on !BR2_PACKAGE_LSQLITE3 && !BR2_PACKAGE_LUASQL_SQLITE3
shibajee/buildroot
package/lua-coatpersistent/Config.in
in
mit
414
# Locally calculated sha256 46f5a1988a47b988d729df2937589756d989df7c26dac6aaf2a331a7b15bf7cf lua-coatpersistent-lsqlite3-0.2.1-1.src.rock sha256 8053428fa7a6229d70ae161ec55a24b28c210078ac494161d48b6bf74ed000ca lua-coatpersistent-luasql-0.2.1-1.src.rock
shibajee/buildroot
package/lua-coatpersistent/lua-coatpersistent.hash
hash
mit
255
################################################################################ # # lua-coatpersistent # ################################################################################ LUA_COATPERSISTENT_VERSION_UPSTREAM = 0.2.1 ifeq ($(BR2_PACKAGE_LSQLITE3),y) LUA_COATPERSISTENT_VERSION = lsqlite3-$(LUA_COATPERSISTENT_VERSION_UPSTREAM)-1 else LUA_COATPERSISTENT_VERSION = luasql-$(LUA_COATPERSISTENT_VERSION_UPSTREAM)-1 endif LUA_COATPERSISTENT_SUBDIR = lua-CoatPersistent-$(LUA_COATPERSISTENT_VERSION_UPSTREAM) LUA_COATPERSISTENT_LICENSE = MIT LUA_COATPERSISTENT_LICENSE_FILES = $(LUA_COATPERSISTENT_SUBDIR)/COPYRIGHT $(eval $(luarocks-package))
shibajee/buildroot
package/lua-coatpersistent/lua-coatpersistent.mk
mk
mit
654
config BR2_PACKAGE_LUA_CSNAPPY bool "lua-csnappy" help lua-csnappy is a binding of the csnappy library which implements the Google's Snappy (de)compressor. http://fperrad.github.io/lua-csnappy/
shibajee/buildroot
package/lua-csnappy/Config.in
in
mit
207
# Locally calculated sha256 3504789c7832f4ed3d7aef47ba9d62940985cde7556284db2233842bfb7d8876 lua-csnappy-0.1.3-1.src.rock
shibajee/buildroot
package/lua-csnappy/lua-csnappy.hash
hash
mit
123
################################################################################ # # lua-csnappy # ################################################################################ LUA_CSNAPPY_VERSION_UPSTREAM = 0.1.3 LUA_CSNAPPY_VERSION = $(LUA_CSNAPPY_VERSION_UPSTREAM)-1 LUA_CSNAPPY_SUBDIR = lua-csnappy-$(LUA_CSNAPPY_VERSION_UPSTREAM) LUA_CSNAPPY_LICENSE = BSD-3c LUA_CSNAPPY_LICENSE_FILES = $(LUA_CSNAPPY_SUBDIR)/COPYRIGHT $(eval $(luarocks-package))
shibajee/buildroot
package/lua-csnappy/lua-csnappy.mk
mk
mit
457
config BR2_PACKAGE_LUA_EV bool "lua-ev" depends on BR2_PACKAGE_HAS_LUAINTERPRETER select BR2_PACKAGE_LIBEV depends on !BR2_bfin # libev help Get access to the libev library from Lua. https://github.com/brimworks/lua-ev
shibajee/buildroot
package/lua-ev/Config.in
in
mit
231
# Locally calculated sha256 f7f5df5ecfe4bd54797261d1b1bd3f770d39128b7aba72deef6d1d8d8e2b53fe lua-ev-v1.4.tar.gz
shibajee/buildroot
package/lua-ev/lua-ev.hash
hash
mit
113
################################################################################ # # lua-ev # ################################################################################ LUA_EV_VERSION = v1.4 LUA_EV_SITE = $(call github,brimworks,lua-ev,$(LUA_EV_VERSION)) LUA_EV_DEPENDENCIES = luainterpreter libev LUA_EV_LICENSE = MIT LUA_EV_LICENSE_FILES = README LUA_EV_CONF_OPTS = -DINSTALL_CMOD="/usr/lib/lua/$(LUAINTERPRETER_ABIVER)" $(eval $(cmake-package))
shibajee/buildroot
package/lua-ev/lua-ev.mk
mk
mit
456
config BR2_PACKAGE_LUA_ICONV bool "lua-iconv" select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE help Lua binding to the POSIX 'iconv' library http://ittner.github.io/lua-iconv/
shibajee/buildroot
package/lua-iconv/Config.in
in
mit
187
# Locally calculated sha256 fb66e785e15376c2d2817f1f1b27d10272b877eacc998c727a10f081a7d768fa lua-iconv-7-1.src.rock
shibajee/buildroot
package/lua-iconv/lua-iconv.hash
hash
mit
117
################################################################################ # # lua-iconv # ################################################################################ LUA_ICONV_VERSION_UPSTREAM = 7 LUA_ICONV_VERSION = $(LUA_ICONV_VERSION_UPSTREAM)-1 LUA_ICONV_SUBDIR = lua-iconv-$(LUA_ICONV_VERSION_UPSTREAM) LUA_ICONV_DEPENDENCIES = $(if $(BR2_PACKAGE_LIBICONV),libiconv) LUA_ICONV_LICENSE = MIT LUA_ICONV_LICENSE_FILES = $(LUA_ICONV_SUBDIR)/COPYING $(eval $(luarocks-package))
shibajee/buildroot
package/lua-iconv/lua-iconv.mk
mk
mit
493
config BR2_PACKAGE_LUA_MESSAGEPACK bool "lua-messagepack" help A pure Lua implementation of the MessagePack serialization format. http://fperrad.github.io/lua-MessagePack/
shibajee/buildroot
package/lua-messagepack/Config.in
in
mit
184
# Locally calculated sha256 be6827c93383c8d7214c9ac9b7a62ab04186db4c6c2a3a7b36036157784f58b8 lua-messagepack-0.3.4-1.src.rock sha256 5ab74601696973a66802de1fec614859db0d93d5fa960fac0f70cb04a490e5e5 lua-messagepack-lua53-0.3.4-1.src.rock
shibajee/buildroot
package/lua-messagepack/lua-messagepack.hash
hash
mit
239
################################################################################ # # lua-messagepack # ################################################################################ LUA_MESSAGEPACK_VERSION_UPSTREAM = 0.3.4 ifeq ($(BR2_PACKAGE_LUA_5_3),y) LUA_MESSAGEPACK_VERSION = lua53-$(LUA_MESSAGEPACK_VERSION_UPSTREAM)-1 else LUA_MESSAGEPACK_VERSION = $(LUA_MESSAGEPACK_VERSION_UPSTREAM)-1 endif LUA_MESSAGEPACK_SUBDIR = lua-MessagePack-$(LUA_MESSAGEPACK_VERSION_UPSTREAM) LUA_MESSAGEPACK_LICENSE = MIT LUA_MESSAGEPACK_LICENSE_FILES = $(LUA_MESSAGEPACK_SUBDIR)/COPYRIGHT $(eval $(luarocks-package))
shibajee/buildroot
package/lua-messagepack/lua-messagepack.mk
mk
mit
607
config BR2_PACKAGE_LUA_MSGPACK_NATIVE bool "lua-msgpack-native" depends on BR2_PACKAGE_HAS_LUAINTERPRETER depends on BR2_PACKAGE_LUA_5_1 || BR2_PACKAGE_LUAJIT help This is a native, C language implementation of msgpack (http://msgpack.org) library/protocol for Lua language https://github.com/kengonakajima/lua-msgpack-native comment "lua-msgpack-native needs a Lua 5.1 interpreter" depends on !BR2_PACKAGE_LUA_5_1 depends on !BR2_PACKAGE_LUAJIT
shibajee/buildroot
package/lua-msgpack-native/Config.in
in
mit
463
# locally computed sha256 025cf91d509fa3985869d18ef9b8eaeb875ff3c9fcf6467beeed6eab3bb35c93 lua-msgpack-native-41a91b994c70389dc9daa1a15678741d8ec41749.tar.gz
shibajee/buildroot
package/lua-msgpack-native/lua-msgpack-native.hash
hash
mit
160