This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From c1bc3bf02474fc4aa44e81b153e49b039a1f74b7 Mon Sep 17 00:00:00 2001 | |
From: "Fiorentino Ing. Stefano" <[email protected]> | |
Date: Fri, 22 May 2020 18:40:28 +0200 | |
Subject: [PATCH] (extern) explicit instantiation of a type_factory | |
Signed-off-by: Fiorentino Ing. Stefano <[email protected]> | |
--- | |
.github/workflows/build.yml | 45 +- | |
...41fa871a7e818a75275294b82d2b3555ca79.patch | 1606 +++++++++++++++++ | |
src/CMakeLists.txt | 15 +- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
PREVPWD=${PWD} | |
echo "Current Directory -> " ${PREVPWD} | |
while IFS= read -r line | |
do | |
command=$(echo "$line" | awk 'BEGIN { FS = " " } ; {print "cd \""$2"\" && git reset --hard "$8}') | |
if eval "${command}"; then | |
echo "${command}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [[ ${1} =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]] | |
then | |
for dir in $(find . -maxdepth 1 ! -path . -type d); | |
do | |
cd $dir | |
find . -type d -name '.git*' ! -path "*/poky-tmp/*" 2>/dev/null | \ | |
sed 's/\.git$//g' | \ | |
xargs -I '{}' sh -c 'readlink -e {};' | \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sudo git config --system --unset credential.helper | |
git config --global --unset credential.helper | |
git config --unset credential.helper | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
for dir in $(find . -maxdepth 1 ! -path . -type d); | |
do | |
cd $dir | |
find . -type d -name '.git*' ! -path "*/poky-tmp/*" 2>/dev/null | \ | |
sed 's/\.git$//g' | \ | |
xargs -I '{}' sh -c 'readlink -e {};' | \ | |
uniq | \ | |
sort | \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# grep -rn "#pragma once" src/* | sed 's/:1:#pragma once//g' > file_list | |
for name in $(cat file_list); | |
do | |
echo $name; | |
cleaned=$(echo $name | sed 's/src\/uvw\///g' | sed 's/\.hpp//g' | sed 's/\.h//g') | |
echo $cleaned | |
upper=$(echo $cleaned | tr '[a-z]' '[A-Z]' | xargs -r -n1 -I {} echo UVW_{}_INCLUDE_H) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [[ ${1} =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]] | |
then | |
for dir in $(find . -maxdepth 1 ! -path . -type d); | |
do | |
cd $dir | |
find . -type d -name '.git*' ! -path "*/poky-tmp/*" 2>/dev/null | \ | |
sed 's/\.git$//g' | \ | |
xargs -I '{}' sh -c 'readlink -e {};' | \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <uvw.hpp> | |
#include <cassert> | |
#include <iostream> | |
#include <memory> | |
#include <chrono> | |
int main() { | |
using namespace std::chrono_literals; | |
// get the default loop |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# - Find libmosquittopp | |
# Find the native libmosquittopp includes and libraries | |
# | |
# MOSQUITTOPP_INCLUDE_DIR - where to find mosquitto.h, etc. | |
# MOSQUITTOPP_LIBRARIES - List of libraries when using libmosquittopp. | |
# MOSQUITTOPP_FOUND - True if libmosquittopp found. | |
if (NOT MOSQUITTOPP_INCLUDE_DIR) | |
find_path(MOSQUITTOPP_INCLUDE_DIR mosquitto.h) | |
endif() |
NewerOlder