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
DESCRIPTION = "SDK Testing" | |
SECTION = "libs" | |
LICENSE = "CLOSED" | |
BBCLASSEXTEND = "nativesdk" | |
FILES:${PN}:append:class-nativesdk = " ${SDKPATHNATIVE}" | |
do_configure[noexec] = "1" | |
do_compile[noexec] = "1" |
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/sh | |
set -e | |
# BASE_DL example: https://dist.apache.org/repos/dist/dev/logging/log4cxx/ | |
# ARCHIVE example: apache-log4cxx-1.2.0 | |
BASE_DL=$1 | |
ARCHIVE=$2 | |
FULL_DL="$1/$2" |
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 | |
# This script installs the proper dependencies on Debian 9(stretch) | |
# for you to install MPLABX | |
dpkg --add-architecture i386 | |
apt-get update | |
apt-get install libc6:i386 libstdc++6:i386 libxext6:i386 libexpat1:i386 |
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
handlers=java.util.logging.ConsoleHandler | |
java.util.logging.ConsoleHandler.level = FINEST | |
java.util.logging.SimpleFormatter.format=[%1$tc] %4$s: %5$s%n | |
com.rm5248.serial.level = FINEST | |
com.rm5248.serial.SerialPort.level=FINEST |
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 | |
# | |
# A simple script to install jenkins on debian/ubuntu | |
# Tested on a new Debian 8 DreamCompute image from Dreamhost. | |
# | |
AUTHBIND_PORT=/etc/authbind/byport/80 | |
sudo apt-get update |
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
Index: tools/arg.cpp | |
=================================================================== | |
--- tools/arg.cpp (revision 213) | |
+++ tools/arg.cpp (working copy) | |
@@ -81,7 +81,8 @@ | |
std::string Arg::stubsignature() | |
{ | |
- return DBus::signature( type() ); | |
+ //return DBus::signature( type() ); |
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 | |
# | |
# Steps for a release: | |
# | |
# 1. Ensure that the working directory is clean | |
# 2. Create a tag in SVN | |
# 3. build software | |
# 4. package software | |
# 5. build website |
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
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>log4cxx</groupId> | |
<artifactId>apache-log4cxx</artifactId> | |
<packaging>pom</packaging> | |
<version>0.11.2</version> | |
<name>Apache log4cxx (Incubating)</name> | |
<description>Logging framework for C++.</description> | |
<url>http://incubator.apache.org/log4cxx</url> | |
<issueManagement> |
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
PROJECT(log4cxx) | |
CMAKE_MINIMUM_REQUIRED(VERSION 2.8) | |
#find_package(PkgConfig) | |
#pkg_check_modules( APR apr-1 REQUIRED ) | |
#pkg_check_modules( APR_UTIL apr-util-1 REQUIRED ) | |
SET(APR_INCLUDE_DIR "${CMAKE_INSTALL_PREFIX}/include" CACHE STRING "Directory with APR include files") | |
SET(APR_LIBRARIES "${CMAKE_INSTALL_PREFIX}/lib/libapr-1.lib" CACHE STRING "APR library to link with") |