Instruction
stringlengths
14
778
input_code
stringlengths
0
4.24k
output_code
stringlengths
1
5.44k
Remove hack to see if compiler definition on windows changes something on appveyor
:: Nasty hack to force the newer MSBuild from .NET is still used for the older :: Visual Studio build. Without this an older MSBuild will be picked up by accident on :: AppVeyor after running `vcvars32.bat`, which fails to process our solution files. :: :: ref: https://github.com/conda-forge/staged-recipes/pull/194#iss...
%PYTHON% -m pip install . -vv
Allow additional parameters to be sent to virtualenv.exe
@echo off if [%1]==[] goto USAGE goto MKVIRTUALENV :USAGE echo. echo Pass a name to create a new virtualenv echo. goto END :MKVIRTUALENV if not defined WORKON_HOME ( set WORKON_HOME=%USERPROFILE%\Envs ) SETLOCAL EnableDelayedExpansion pushd "%WORKON_HOME%" 2>NUL && popd @if errorlevel 1 ( mkdir "%WORKON_H...
@echo off if [%1]==[] goto USAGE goto MKVIRTUALENV :USAGE echo. echo Pass a name to create a new virtualenv echo. goto END :MKVIRTUALENV if not defined WORKON_HOME ( set WORKON_HOME=%USERPROFILE%\Envs ) set "ENVNAME=%~1" shift SETLOCAL EnableDelayedExpansion pushd "%WORKON_HOME%" 2>NUL && popd @if errorlevel...
Add Salt Batch File From @sherbang
if not exist "C:\Windows\Temp\salt64.exe" ( powershell -Command "(New-Object System.Net.WebClient).DownloadFile('https://docs.saltstack.com/downloads/Salt-Minion-2014.1.3-1-AMD64-Setup.exe', 'C:\Windows\Temp\salt64.exe')" <NUL ) :: http://docs.saltstack.com/en/latest/topics/installation/windows.html c:\windows\temp\...
Add build folder and CMAKE_PREFIX_PATH
cmake -G "NMake Makefiles" -D BUILD_TESTS=OFF -D CMAKE_INSTALL_PREFIX=%LIBRARY_PREFIX% %SRC_DIR% if errorlevel 1 exit 1 nmake if errorlevel 1 exit 1 nmake install if errorlevel 1 exit 1
mkdir build cd build cmake -G "NMake Makefiles" ^ -D BUILD_TESTS=OFF ^ -D CMAKE_INSTALL_PREFIX=%LIBRARY_PREFIX% ^ -D CMAKE_PREFIX_PATH=%LIBRARY_PREFIX% ^ %SRC_DIR% if errorlevel 1 exit 1 nmake if errorlevel 1 exit 1 nmake install if errorlevel 1 exit 1
Split the batch file into multiple lines, add missing flags (-j -O).
@mkdir .shake 2> nul @ghc --make -Wall src/Main.hs -isrc -rtsopts -with-rtsopts=-I0 -outputdir=.shake -o .shake/build && .shake\build --lint --directory ".." %*
@mkdir .shake 2> nul @set ghcArgs=--make ^ -Wall ^ src/Main.hs ^ -isrc ^ -rtsopts ^ -with-rtsopts=-I0 ^ -outputdir=.shake ^ -j ^ -O ...
Disable packaging to Avoid copying msvc runtime
set CMAKE_CONFIG=Release mkdir build_%CMAKE_CONFIG% pushd build_%CMAKE_CONFIG% cmake -G "NMake Makefiles" ^ -DCMAKE_BUILD_TYPE:STRING=%CMAKE_CONFIG% ^ -DBLA_VENDOR:STRING=OpenBLAS ^ -DENABLE_PYTHON:BOOL=ON ^ -DCMAKE_INSTA...
set CMAKE_CONFIG=Release mkdir build_%CMAKE_CONFIG% pushd build_%CMAKE_CONFIG% cmake -G "NMake Makefiles" ^ -DCMAKE_BUILD_TYPE:STRING=%CMAKE_CONFIG% ^ -DBLA_VENDOR:STRING=OpenBLAS ^ -DENABLE_PYTHON:BOOL=ON ^ -DCMAKE_INSTA...
Remove quotes on NODE_PATH env var set
@echo off SET NODE_PATH="%~dp0\dev_bundle\lib\node_modules" "%~dp0\dev_bundle\bin\node.exe" "%~dp0\tools\main.js" %*
@echo off SET NODE_PATH=%~dp0\dev_bundle\lib\node_modules "%~dp0\dev_bundle\bin\node.exe" "%~dp0\tools\main.js" %*
Use call for invoking batch files
@echo off echo ^> Running CLI tests... set MR="%~dp0\..\target\release\multirust-rs.exe" echo ^> Testing --help %MR% --help || (echo FAILED && exit /b 1) echo ^> Testing install %MR% install -a || (echo FAILED && exit /b 1) echo ^> Updating PATH set PATH=%USERPROFILE%\.multirust\bin;%PATH% echo ^> ...
@echo off echo ^> Running CLI tests... set MR="%~dp0\..\target\release\multirust-rs.exe" echo ^> Testing --help %MR% --help || (echo FAILED && exit /b 1) echo ^> Testing install %MR% install -a || (echo FAILED && exit /b 1) echo ^> Updating PATH set PATH=%USERPROFILE%\.multirust\bin;%PATH% echo ^> ...
Add CALL when executing gradlew batch script
@ECHO OFF SETLOCAL ENABLEDELAYEDEXPANSION SET BASEDIR=%~dp0 SET BASEDIR=%BASEDIR:~0,-1% SET ARGS= SET STRIPFIRST=0 FOR %%A IN (%*) DO ( SET ARGS=!ARGS!,%%~A SET STRIPFIRST=1 ) IF "%STRIPFIRST%" == "1" (SET ARGS=%ARGS:~1%) CD %BASEDIR% gradlew.bat grain "-Pargs=%ARGS%" ENDLOCAL
@ECHO OFF SETLOCAL ENABLEDELAYEDEXPANSION SET BASEDIR=%~dp0 SET BASEDIR=%BASEDIR:~0,-1% SET ARGS= SET STRIPFIRST=0 FOR %%A IN (%*) DO ( SET ARGS=!ARGS!,%%~A SET STRIPFIRST=1 ) IF "%STRIPFIRST%" == "1" (SET ARGS=%ARGS:~1%) CD %BASEDIR% CALL gradlew.bat grain "-Pargs=%ARGS%" ENDLOCAL
Use ByPass to run Powershell
@echo off REM This is a script that will set environment information about where to find REM NuGet.exe, it's version and ensure that it's present on the enlistment. set NuGetExeVersion=3.5.0-beta2 set NuGetExeFolder=%~dp0..\.. set NuGetExe=%NuGetExeFolder%\NuGet.exe REM Download NuGet.exe if we haven't already if not...
@echo off REM This is a script that will set environment information about where to find REM NuGet.exe, it's version and ensure that it's present on the enlistment. set NuGetExeVersion=3.5.0-beta2 set NuGetExeFolder=%~dp0..\.. set NuGetExe=%NuGetExeFolder%\NuGet.exe REM Download NuGet.exe if we haven't already if not...
Use symbolic links on Windows again
:: hard link to all of the dot files in this directory from the :: home directory. @echo off if not defined HOME ( set HOME=%USERPROFILE% ) setx HOME %HOME% for %%f in (%~dp0.\.*) do ( if exist %HOME%\%%~nxf ( del /P %HOME%\%%~nxf ) mklink /h %HOME%\%%~nxf %%f )
:: hard link to all of the dot files in this directory from the :: home directory. @echo off if not defined HOME ( set HOME=%USERPROFILE% ) setx HOME %HOME% for %%f in (%~dp0.\.*) do ( if exist %HOME%\%%~nxf ( del /P %HOME%\%%~nxf ) mklink %HOME%\%%~nxf %%f )
Build todomvc and habhub on deploy.
git checkout gh-pages git merge master npm start mol mol/app/hello mol/app/supplies mol/perf/render mol/perf/uibench git commit -a -m "Update" && git push || git checkout master
git checkout gh-pages git merge master npm start mol mol/app/hello mol/app/supplies mol/app/habhub mol/app/todomvc mol/perf/render mol/perf/uibench git commit -a -m "Update" && git push || git checkout master
Add command file for building documentation
@echo off @echo . @echo .. @echo ... @echo Running reference documentation Build Script, capturing output to buildlog.txt ... @echo Start Time: %time% ..\..\build-support\tools\nant\bin\nant %1 %2 %3 %4 %5 %6 %7 %8 %9 > buildlog.txt @echo . @echo .. @echo ... @echo Launching text file viewer to display buildlog.txt con...
Build Skeletons batch file: use relative path.
pushd bin JSILc "Microsoft.Xna.Framework.Game, Version=4.0.0.0, Culture=neutral, PublicKeyToken=842cf8be1de50553" "Microsoft.Xna.Framework.Xact, Version=4.0.0.0, Culture=neutral, PublicKeyToken=842cf8be1de50553" "C:\Users\Kevin\Documents\Projects\JSIL\Skeletons\skeletons.jsilconfig" popd
pushd bin JSILc "Microsoft.Xna.Framework.Game, Version=4.0.0.0, Culture=neutral, PublicKeyToken=842cf8be1de50553" "Microsoft.Xna.Framework.Xact, Version=4.0.0.0, Culture=neutral, PublicKeyToken=842cf8be1de50553" "..\Skeletons\skeletons.jsilconfig" popd
SET env var [travis skip circle skip]
GEOIPDATADIR=%LIBRARY_PREFIX% INSTDIR=%LIBRARY_PREFIX% nmake /f Makefile.vc nmake /f Makefile.vc test nmake /f Makefile.vc install
SET GEOIPDATADIR=%LIBRARY_PREFIX% SET INSTDIR=%LIBRARY_PREFIX% nmake /f Makefile.vc nmake /f Makefile.vc test nmake /f Makefile.vc install
Remove redis from appveyor build
pip install wheel nuget install redis-64 -excludeversion redis-64\redis-server.exe --service-install redis-64\redis-server.exe --service-start nuget install ZeroMQ %WITH_COMPILER% pip install cython redis pyzmq python scripts\test_setup.py python setup.py develop IF DEFINED CYBUILD ( cython logbook\_speedups.pyx %WIT...
pip install wheel nuget install redis-64 -excludeversion redis-64\redis-server.exe --service-install redis-64\redis-server.exe --service-start nuget install ZeroMQ %WITH_COMPILER% pip install cython pyzmq python scripts\test_setup.py python setup.py develop IF DEFINED CYBUILD ( cython logbook\_speedups.pyx %WITH_COMP...
Print publish log only on failure
REM This file is copied line by line by the publish-meteor-tool-on-arch.sh script IF EXIST C:\tmp ( rmdir /s /q C:\tmp ) md C:\tmp cd C:\tmp C:\git\bin\git.exe clone https://github.com/meteor/meteor.git cd meteor C:\git\bin\git.exe config --replace-all core.autocrlf input C:\git\bin\git.exe rm --cached -r . ^> nul C:\g...
REM This file is copied line by line by the publish-meteor-tool-on-arch.sh script IF EXIST C:\tmp ( rmdir /s /q C:\tmp ) md C:\tmp cd C:\tmp C:\git\bin\git.exe clone https://github.com/meteor/meteor.git cd meteor C:\git\bin\git.exe config --replace-all core.autocrlf input C:\git\bin\git.exe rm --cached -r . ^> nul C:\g...
Revert "Allow additional parameters to be sent to virtualenv.exe"
@echo off if [%1]==[] goto USAGE goto MKVIRTUALENV :USAGE echo. echo Pass a name to create a new virtualenv echo. goto END :MKVIRTUALENV if not defined WORKON_HOME ( set WORKON_HOME=%USERPROFILE%\Envs ) set "ENVNAME=%~1" shift SETLOCAL EnableDelayedExpansion pushd "%WORKON_HOME%" 2>NUL && popd @if errorlevel...
@echo off if [%1]==[] goto USAGE goto MKVIRTUALENV :USAGE echo. echo Pass a name to create a new virtualenv echo. goto END :MKVIRTUALENV if not defined WORKON_HOME ( set WORKON_HOME=%USERPROFILE%\Envs ) SETLOCAL EnableDelayedExpansion pushd "%WORKON_HOME%" 2>NUL && popd @if errorlevel 1 ( mkdir "%WORKON_H...
Support spaces in the output folder
@echo Running Sonar post-build script... @set ProjectKey=%1 @set ProjectName=%2 @set ProjectVersion=%3 @REM Set the output folder to the command line parameter, if supplied @set OutputFolder=%4 @if "%OutputFolder%"=="" set OutputFolder=%TF_BUILD_BUILDDIRECTORY%\SonarTemp\Output\ @echo Sonar output folder = %OutputFo...
@echo Running Sonar post-build script... @set ProjectKey=%1 @set ProjectName=%2 @set ProjectVersion=%3 @REM Set the output folder to the command line parameter, if supplied @set OutputFolder=%4 @if "%OutputFolder%"=="" set OutputFolder=%TF_BUILD_BUILDDIRECTORY%\SonarTemp\Output @echo Sonar output folder = %OutputFol...
Remove unnecessary line of code
@ECHO off :prompt set /P c=Are you sure you want to uninstall BetterDiscord [Y/N]? echo. if /I "%c%" EQU "Y" goto :removeBetterDiscord if /I "%c%" EQU "N" goto :eof goto :prompt :removeBetterDiscord echo Removing BetterDiscord... echo. :: Delete %appdata%\BetterDiscord call:deleteFolder %appdata%\Bett...
@ECHO off :prompt set /P c=Are you sure you want to uninstall BetterDiscord [Y/N]? echo. if /I "%c%" EQU "Y" goto :removeBetterDiscord if /I "%c%" EQU "N" goto :eof goto :prompt :removeBetterDiscord echo Removing BetterDiscord... echo. :: Delete %appdata%\BetterDiscord call:deleteFolder %appdata%\Bett...
Call cmake in parent dir on windows.
mkdir build cd build cmake -G "%CMAKE_GENERATOR%" -DBUILD_VISUALIZER=OFF -DCMAKE_INSTALL_PREFIX="%LIBRARY_PREFIX%" cmake --build . --target install --config Release -- /verbosity:quiet REM NOTE: Run the tests here in the build directory to make sure things are REM built correctly. This cannot be specified in the meta.y...
mkdir build cd build cmake -G "%CMAKE_GENERATOR%" -DBUILD_VISUALIZER=OFF -DCMAKE_INSTALL_PREFIX="%LIBRARY_PREFIX%" .. cmake --build . --target install --config Release -- /verbosity:quiet REM NOTE: Run the tests here in the build directory to make sure things are REM built correctly. This cannot be specified in the met...
Use DOS line endings for batch file
@echo off rem dummy batch file to test user defined commands from rem nar-process-libraries. Just display the arguments passed echo %*
@echo off rem dummy batch file to test user defined commands from rem nar-process-libraries. Just display the arguments passed echo %*
Add to itunes on windows
@echo off :: Make sure "Edit>Preferences>Advanced>Copy files to iTunes Media folder when adding to library" is unchecked before implementing this. :: Pull file path from SMA set var=%MH_FILES% :: Remove [] from Path pulled from SMA set var2=%var:~1,-1% :: Put the path to your itunes.exe, This MUST be in quotes if ther...
Fix the Post build script
@echo Running Sonar post-build script... @set ProjectKey=%1 @set ProjectName=%2 @set ProjectVersion=%3 @set OutputFolder=%TF_BUILD_BUILDDIRECTORY%\SonarTemp\Output @echo Performing Sonar post-processing... @%~dp0\Sonar.TeamBuild.PostProcessor.exe @echo Generating Sonar properties file to %OutputFolder% ... @%~dp0\S...
@echo Running Sonar post-build script... @set ProjectKey=%1 @set ProjectName=%2 @set ProjectVersion=%3 @set OutputFolder=%TF_BUILD_BUILDDIRECTORY%\SonarTemp\Output @echo Performing Sonar post-processing... @%~dp0\Sonar.TeamBuild.PostProcessor.exe @echo Generating Sonar properties file to %OutputFolder% ... @%~dp0\S...
Remove the ability to override the output folder
@echo Running Sonar post-build script... @set ProjectKey=%1 @set ProjectName=%2 @set ProjectVersion=%3 @REM Set the output folder to the command line parameter, if supplied @set OutputFolder=%4 @if "%OutputFolder%"=="" set OutputFolder=%TF_BUILD_BUILDDIRECTORY%\SonarTemp\Output @echo Sonar output folder = %OutputFol...
@echo Running Sonar post-build script... @set ProjectKey=%1 @set ProjectName=%2 @set ProjectVersion=%3 @set OutputFolder=%TF_BUILD_BUILDDIRECTORY%\SonarTemp\Output @echo Performing Sonar post-processing... @%~dp0\Sonar.TeamBuild.PostProcessor.exe @echo Generating Sonar properties file to %OutputFolder% ... @%~dp0\S...
Update kudu with new kuduscript (linux only)
@echo off setlocal enabledelayedexpansion pushd %1 set attempts=5 set counter=0 :retry set /a counter+=1 echo Attempt %counter% out of %attempts% cmd /c npm install https://github.com/projectkudu/KuduScript/tarball/b27b514505b3d85ccb1396ab3dc7ed64d1dfd455 IF %ERRORLEVEL% NEQ 0 goto error goto end :error if %count...
@echo off setlocal enabledelayedexpansion pushd %1 set attempts=5 set counter=0 :retry set /a counter+=1 echo Attempt %counter% out of %attempts% cmd /c npm install https://github.com/projectkudu/KuduScript/tarball/6f8085cef949e47a38eef03345d683dc4ca9ad7d IF %ERRORLEVEL% NEQ 0 goto error goto end :error if %count...
Fix the isntall script on windows box.
move /Y c:\shinken\windows\bin\shinken-poller c:\shinken\windows\bin\shinken-poller.py move /Y c:\shinken\windows\bin\shinken-reactionner c:\shinken\windows\bin\shinken-reactionner.py move /Y c:\shinken\windows\bin\shinken-scheduler c:\shinken\windows\bin\shinken-scheduler.py move /Y c:\shinken\windows\bin\shinken-a...
move /Y c:\shinken\bin\shinken-poller c:\shinken\bin\shinken-poller.py move /Y c:\shinken\bin\shinken-reactionner c:\shinken\bin\shinken-reactionner.py move /Y c:\shinken\bin\shinken-scheduler c:\shinken\bin\shinken-scheduler.py move /Y c:\shinken\bin\shinken-arbiter c:\shinken\bin\shinken-arbiter.py move /Y c:\shi...
Fix svn props on batch file
java -classpath "jars/stylebook-1.0-b2.jar;jars/xalan.jar;jars/xerces.jar" org.apache.stylebook.StyleBook "targetDirectory=../doc/html" ../doc/xerces-c_book.xml ../doc/style
java -classpath "jars/stylebook-1.0-b2.jar;jars/xalan.jar;jars/xerces.jar" org.apache.stylebook.StyleBook "targetDirectory=../doc/html" ../doc/xerces-c_book.xml ../doc/style
Create directory so log can be written
@ECHO OFF :: Libraries are currently pre-release SET VersionSuffix=alpha :: Default to a release build IF "%Configuration%"=="" SET Configuration=Release powershell -noprofile -executionpolicy bypass -file build\restore.ps1 "%ProgramFiles(x86)%\MSBuild\14.0\bin\MSBuild.exe" /nologo /m /v:m /nr:false /flp:logfile=bin...
@ECHO OFF :: Libraries are currently pre-release SET VersionSuffix=alpha :: Default to a release build IF "%Configuration%"=="" SET Configuration=Release if not exist bin\%Configuration% mkdir bin\%Configuration% powershell -noprofile -executionpolicy bypass -file build\restore.ps1 "%ProgramFiles(x86)%\MSBuild\14.0...
Fix incorrect url for Developer Guide
@echo off setlocal :: Note: We've disabled node reuse because it causes file locking issues. :: The issue is that we extend the build with our own targets which :: means that that rebuilding cannot successully delete the task :: assembly. :: Check prerequisites if not defined VS120COMNTOOLS ( i...
@echo off setlocal :: Note: We've disabled node reuse because it causes file locking issues. :: The issue is that we extend the build with our own targets which :: means that that rebuilding cannot successully delete the task :: assembly. :: Check prerequisites if not defined VS120COMNTOOLS ( i...
Build lamps and quine on deploy.
git checkout gh-pages git merge master npm start mol mol/app/hello mol/app/supplies mol/app/habhub mol/app/todomvc mol/perf/render mol/perf/uibench mol/app/bench mol/app/bench/list/mol mol/app/bench/list/tsx mol/app/taxon mol/app/taxon/demo mol/app/users mol/mem git commit -a -m "Update" && git push || git checkout mas...
git checkout gh-pages git merge master npm start mol mol/app/hello mol/app/supplies mol/app/habhub mol/app/todomvc mol/perf/render mol/perf/uibench mol/app/bench mol/app/bench/list/mol mol/app/bench/list/tsx mol/app/taxon mol/app/taxon/demo mol/app/users mol/mem mol/app/quine mol/app/lamps git commit -a -m "Update" && ...
Change commandline to be compatible with 14393
:: Run the following script from “Deployment and Imaging Tools Environment” as Admin. SET PATH=%KITSROOT%\tools\bin\i386;%PATH% SET PATH=%KITSROOT%\bin\i386;%PATH% SET AKROOT=%KITSROOT% SET WPDKCONTENTROOT=%KITSROOT% SET PKG_CONFIG_XML=%KITSROOT%\Tools\bin\i386\pkggen.cfg.xml SET BSP_VERSION=10.0.0.0 SET BSP_ARCH=arm ...
:: Run the following script from “Deployment and Imaging Tools Environment” as Admin. SET PATH=%KITSROOT%\tools\bin\i386;%PATH% SET PATH=%KITSROOT%\bin\i386;%PATH% SET AKROOT=%KITSROOT% SET WPDKCONTENTROOT=%KITSROOT% SET PKG_CONFIG_XML=%KITSROOT%Tools\bin\i386\pkggen.cfg.xml SET BSP_VERSION=10.0.0.0 SET BSP_ARCH=arm S...
Update LICENSE field version to GPLv2
require shared-mime-info.inc DEPENDS = "libxml2 intltool-native glib-2.0 shared-mime-info-native" PR = "r2" do_install_append() { update-mime-database ${D}${datadir}/mime } # freedesktop.org.xml is huge and only needed when updating the db # mime.bbclass will add the dependency on it automagically PACKAGES =+ "f...
require shared-mime-info.inc LICENSE = "GPLv2" DEPENDS = "libxml2 intltool-native glib-2.0 shared-mime-info-native" PR = "r3" do_install_append() { update-mime-database ${D}${datadir}/mime } # freedesktop.org.xml is huge and only needed when updating the db # mime.bbclass will add the dependency on it automagic...
Clean up debug kernel recipe
DESCRIPTION = "Linux kernel, debug build, based on nilrt branch" require linux-nilrt.inc require linux-nilrt-squashfs.inc NI_RELEASE_VERSION = "comms-2.0" LINUX_VERSION = "3.14" LINUX_VERSION_EXTENSION = "-nilrt-debug" KBRANCH = "nilrt/${NI_RELEASE_VERSION}/${LINUX_VERSION}" KERNEL_MODULES_META_PACKAGE = "kernel-mod...
DESCRIPTION = "Linux kernel, debug build, based on nilrt branch" require linux-nilrt.inc NI_RELEASE_VERSION = "comms-2.0" LINUX_VERSION = "3.14" LINUX_VERSION_EXTENSION = "-nilrt-debug" KBRANCH = "nilrt/${NI_RELEASE_VERSION}/${LINUX_VERSION}" KERNEL_MODULES_META_PACKAGE = "kernel-modules-debug" KERNEL_MODULE_PACKAGE...
Use latest kernel from sakoman repo
require linux.inc DESCRIPTION = "Linux kernel for OMAP processors" KERNEL_IMAGETYPE = "uImage" COMPATIBLE_MACHINE = "overo" BOOT_SPLASH ?= "logo_linux_clut224-generic.ppm" PV = "3.2" S = "${WORKDIR}/git" SRCREV = "${AUTOREV}" SRC_URI = "git://www.sakoman.com/git/linux-omap-2.6.git;branch=omap-3.2;protocol=git \ ...
require linux.inc DESCRIPTION = "Linux kernel for OMAP processors" KERNEL_IMAGETYPE = "uImage" COMPATIBLE_MACHINE = "overo" BOOT_SPLASH ?= "logo_linux_clut224-generic.ppm" PV = "3.2" S = "${WORKDIR}/git" SRCREV = "${AUTOREV}" #SRCREV = "33128932803c3f8c35fe8dae257901deb60db2aa" SRC_URI = "git://www.sakoman.com/git...
Fix for fido, be more clear regarding configure options
DESCRIPTION = "Utilities to collect and visualise system statistics" HOMEPAGE = "http://www.i-scream.org/libstatgrab/" LICENSE = "GPLv2+" LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" DEPENDS = "ncurses" PV = "0.91" FILESEXTRAPATHS_prepend := "${THISDIR}/patches:" SRCREV = "c39988855a9d1...
DESCRIPTION = "Utilities to collect and visualise system statistics" HOMEPAGE = "http://www.i-scream.org/libstatgrab/" LICENSE = "GPLv2+" LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" DEPENDS = "ncurses" PV = "0.91" FILESEXTRAPATHS_prepend := "${THISDIR}/patches:" SRCREV = "c39988855a9d1...
Add missing dependency on gnome-common-native
SUMMARY = "Window navigation construction toolkit" LICENSE = "LGPLv2" LIC_FILES_CHKSUM = "file://COPYING;md5=5f30f0716dfdd0d91eb439ebec522ec2" BPN = "libwnck" SECTION = "x11/libs" DEPENDS = "intltool-native gtk+3 gdk-pixbuf-native libxres" PACKAGECONFIG ??= "startup-notification" PACKAGECONFIG[startup-notification] ...
SUMMARY = "Window navigation construction toolkit" LICENSE = "LGPLv2" LIC_FILES_CHKSUM = "file://COPYING;md5=5f30f0716dfdd0d91eb439ebec522ec2" BPN = "libwnck" SECTION = "x11/libs" DEPENDS = "intltool-native gnome-common-native gtk+3 gdk-pixbuf-native libxres" PACKAGECONFIG ??= "startup-notification" PACKAGECONFIG[st...
Fix race conditions with PARALLEL_MAKE = ""
LICENSE = "GPLv2" LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" inherit autotools gtk-doc DEPENDS = "raptor" RDEPENDS_${PN} = "raptor" SRC_URI = "git://github.com/dajobe/rasqal.git;branch=master \ file://No-docs-and-NOCONFIGURE.patch \ file://Fix-cross-compile.patch \ " SRCREV ...
LICENSE = "GPLv2" LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" inherit autotools gtk-doc DEPENDS = "raptor" RDEPENDS_${PN} = "raptor" SRC_URI = "git://github.com/dajobe/rasqal.git;branch=master \ file://No-docs-and-NOCONFIGURE.patch \ file://Fix-cross-compile.patch \ " SRCREV ...
Revert "[alias name] Adding alias name tags for packages"
DESCRIPTION = "Assassin Packages Thumbnails" HOMEPAGE = "http://assassin.projects.openmoko.org/" LICENSE = "GPL" RDEPENDS = "assassin" PV = "0.1+svnr${SRCPV}" PR = "r1" SRC_URI = "svn://svn.openmoko.org/trunk/src/target/thumbnails/;module=result;proto=https" do_install() { install -d ${D}${THUMBNAIL_DIR} ...
DESCRIPTION = "Assassin Packages Thumbnails" HOMEPAGE = "http://assassin.projects.openmoko.org/" PKG_TAGS_${PN} = "group::unknown" LICENSE = "GPL" RDEPENDS = "assassin" PV = "0.1+svnr${SRCPV}" PR = "r0" SRC_URI = "svn://svn.openmoko.org/trunk/src/target/thumbnails/;module=result;proto=https" do_install() { in...
Add ota-plus client and provisioning recipe to image
SUMMARY = "AGL SOTA Package Group" DESCRIPTION = "A set of packages belong to GENIVI SOTA Project and OSTree" LICENSE = "MIT" inherit packagegroup PACKAGES = " packagegroup-agl-sota " ALLOW_EMPTY_${PN} = "1" RDEPENDS_${PN} += "\ rvi-sota-client \ ostree \ "
SUMMARY = "AGL SOTA Package Group" DESCRIPTION = "A set of packages belong to GENIVI SOTA Project and OSTree" LICENSE = "MIT" inherit packagegroup PACKAGES = " packagegroup-agl-sota " ALLOW_EMPTY_${PN} = "1" RDEPENDS_${PN} += "\ ota-plus-client \ ota-plus-demo-provision \ ostree \ "
Revert "rekit-image-industrial.bb: horrendous kludge to avoid usrmerge conflict."
SUMMARY = "IoT Reference OS Kit image for Industrial profile." DESCRIPTION = "IoT Reference OS Kit image for Industrial profile." REFKIT_IMAGE_INDUSTRIAL_EXTRA_FEATURES ?= "${REFKIT_IMAGE_FEATURES_COMMON}" REFKIT_IMAGE_INDUSTRIAL_EXTRA_INSTALL ?= "${REFKIT_IMAGE_INSTALL_COMMON}" REFKIT_IMAGE_EXTRA_FEATURES += "${REFKI...
SUMMARY = "IoT Reference OS Kit image for Industrial profile." DESCRIPTION = "IoT Reference OS Kit image for Industrial profile." REFKIT_IMAGE_INDUSTRIAL_EXTRA_FEATURES ?= "${REFKIT_IMAGE_FEATURES_COMMON}" REFKIT_IMAGE_INDUSTRIAL_EXTRA_INSTALL ?= "${REFKIT_IMAGE_INSTALL_COMMON}" REFKIT_IMAGE_EXTRA_FEATURES += "${REFKI...
Move makefiles into ARCH directory
DESCRIPTION = "ARM Benchmarks" HOMEPAGE = "https://gforge.ti.com/gf/project/am_benchmarks/" LICENSE = "BSD" LIC_FILES_CHKSUM = "file://COPYING;md5=7aefb5e1cffc7b6a3ef18b803f957922" SECTION = "system" PR = "r3" BRANCH ?= "master" SRCREV = "e9fbf7990e93d97e7471e509626969d244cca214" SRC_URI = "git://gitorious.org/arm_b...
DESCRIPTION = "ARM Benchmarks" HOMEPAGE = "https://gforge.ti.com/gf/project/am_benchmarks/" LICENSE = "BSD" LIC_FILES_CHKSUM = "file://COPYING;md5=7aefb5e1cffc7b6a3ef18b803f957922" SECTION = "system" PR = "r4" BRANCH ?= "master" SRCREV = "9b7b4fbde8fcf796a23da2a464dbf934e550f6c9" SRC_URI = "git://gitorious.org/arm_b...
Use add SYSROOT, use SDK_REALPATH_MINGW, bump PR
SECTION = "devel" require binutils_${PV}.bb inherit canadian-sdk DEPENDS="\ virtual/${HOST_PREFIX}binutils \ virtual/${HOST_PREFIX}gcc \ flex-native bison-native \ " FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/binutils-${PV}" EXTRA_OECONF = "--with-sysroot=${prefix}/${TARGET_SYS} \ --program-pref...
SECTION = "devel" require binutils_${PV}.bb inherit canadian-sdk DEPENDS="\ virtual/${HOST_PREFIX}binutils \ virtual/${HOST_PREFIX}gcc \ flex-native bison-native \ " FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/binutils-${PV}" # On MinGW hosts we want to prepend a drive letter, in ${SDK_REALPATH_MIN...
Fix setup.py clean during build
SUMMARY = "Set of CLI tools for Openlmi providers" DESCRIPTION = "openlmi-tools is a set of command line tools for Openlmi providers." HOMEPAGE = "http://www.openlmi.org/" LICENSE = "GPLv2+" LIC_FILES_CHKSUM = "file://COPYING;md5=75859989545e37968a99b631ef42722e" SECTION = "System/Management" inherit setuptools DEPEN...
SUMMARY = "Set of CLI tools for Openlmi providers" DESCRIPTION = "openlmi-tools is a set of command line tools for Openlmi providers." HOMEPAGE = "http://www.openlmi.org/" LICENSE = "GPLv2+" LIC_FILES_CHKSUM = "file://../COPYING;md5=75859989545e37968a99b631ef42722e" SECTION = "System/Management" inherit setuptools DE...
Change RDEPENDS to make sure gpe-contacts-hildon doesn't pull in gpe-icons.
include gpe-contacts.inc PR="r1" SRC_URI = "${GPE_MIRROR}/gpe-contacts-${PV}.tar.bz2" DEPENDS += "gtk+-2.6.4-1.osso7 libgpepimc-hildon libosso hildon-lgpl" EXTRA_OECONF += "--enable-hildon" S = "${WORKDIR}/gpe-contacts-${PV}"
include gpe-contacts.inc PR="r2" SRC_URI = "${GPE_MIRROR}/gpe-contacts-${PV}.tar.bz2" DEPENDS += "gtk+-2.6.4-1.osso7 libgpepimc-hildon libosso hildon-lgpl" RDEPENDS = "" EXTRA_OECONF += "--enable-hildon" S = "${WORKDIR}/gpe-contacts-${PV}"
Move debug vmlinux out of /boot
DESCRIPTION = "NILRT linux kernel debug build" NI_RELEASE_VERSION = "master" LINUX_VERSION = "5.10" LINUX_VERSION_xilinx-zynq = "4.14" LINUX_KERNEL_TYPE = "debug" require linux-nilrt-alternate.inc SRC_URI += "\ file://debug.cfg \ " # This is the place to overwrite the source AUTOREV from linux-nilrt.inc, if # the k...
DESCRIPTION = "NILRT linux kernel debug build" NI_RELEASE_VERSION = "master" LINUX_VERSION = "5.10" LINUX_VERSION_xilinx-zynq = "4.14" LINUX_KERNEL_TYPE = "debug" require linux-nilrt-alternate.inc SRC_URI += "\ file://debug.cfg \ " # This is the place to overwrite the source AUTOREV from linux-nilrt.inc, if # the k...
Add some extra apps to Jlime images.
DESCRIPTION = "Base package set for Jlime images." SECTION = "x11/wm" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" PR = "r3" inherit task PROVIDES = "${PACKAGES}" PACKAGES = "\ ${PN}-cli \ ${PN}-gui \ " RDEPENDS_${PN}-cli = " \ file \ ...
DESCRIPTION = "Base package set for Jlime images." SECTION = "x11/wm" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" PR = "r4" inherit task PROVIDES = "${PACKAGES}" PACKAGES = "\ ${PN}-cli \ ${PN}-gui \ " RDEPENDS_${PN}-cli = " \ dropbea...
Update to the latest commit
require u-boot-ti.inc PR = "r28" BRANCH = "ti-u-boot-2020.01" SRCREV = "71ba4a5f933a1f03e8bb72d487a62a877c2135ff"
require u-boot-ti.inc PR = "r29" BRANCH = "ti-u-boot-2020.01" SRCREV = "df5e46d817182dcbd52212a7ff3c31eb20398dbe"
Add iozone to staging build
SUMMARY = "Resin Package Groups" LICENSE = "Apache-2.0" PR = "r1" inherit packagegroup RESIN_INIT_PACKAGE ?= "resin-init" RDEPENDS_${PN} = "\ ${@bb.utils.contains('DISTRO_FEATURES', 'resin-staging', 'nano', '', d)} \ ${RESIN_INIT_PACKAGE} \ linux-firmware-ath9k \ linux-firmware-ralink \ linux-firmware-rtl8192c...
SUMMARY = "Resin Package Groups" LICENSE = "Apache-2.0" PR = "r1" inherit packagegroup RESIN_INIT_PACKAGE ?= "resin-init" RESIN_STAGING_ADDONS = "iozone3 nano" RDEPENDS_${PN} = "\ ${@bb.utils.contains('DISTRO_FEATURES', 'resin-staging', '${RESIN_STAGING_ADDONS}', '', d)} \ ${RESIN_INIT_PACKAGE} \ linux-firmware-...
Add ptest for NO_HZ_FULL configured kernels to desirable group
SUMMARY = "Non-critical, but desirable packages. These packages are not \ permitted to fail during build." LICENSE = "MIT" inherit packagegroup # essential packagegroups RDEPENDS_${PN} += "\ packagegroup-core-tools-debug \ packagegroup-ni-debug-kernel \ packagegroup-ni-ptest \ packagegroup-ni-selinux \ " RDEPEND...
SUMMARY = "Non-critical, but desirable packages. These packages are not \ permitted to fail during build." LICENSE = "MIT" inherit packagegroup # essential packagegroups RDEPENDS_${PN} += "\ packagegroup-core-tools-debug \ packagegroup-ni-debug-kernel \ packagegroup-ni-ptest \ packagegroup-ni-selinux \ " RDEPEND...
Revert "[alias name] Adding alias name tags for packages"
DESCRIPTION = "Diversity_radar - a GPS location based communicative application" HOMEPAGE = "http://diversity.projects.openmoko.org/" SECTION = "openmoko/applications" LICENSE = "GPL" DEPENDS = "python-evas python-edje python-ecore python-edbus python-dbus python-etk" RDEPENDS_${PN} = "diversity-daemon" PV = "0.0.4+svn...
DESCRIPTION = "Diversity_radar - a GPS location based communicative application" HOMEPAGE = "http://diversity.projects.openmoko.org/" SECTION = "openmoko/applications" LICENSE = "GPL" DEPENDS = "python-evas python-edje python-ecore python-edbus python-dbus python-etk" RDEPENDS_${PN} = "diversity-daemon" PV = "0.0.4+svn...
Add bluetooth audio feature to gateway profile
SUMMARY = "IoT Reference OS Kit image for Gateway profile." DESCRIPTION = "IoT Reference OS Kit image for Gateway profile." REFKIT_IMAGE_GATEWAY_EXTRA_FEATURES ?= "${REFKIT_IMAGE_FEATURES_COMMON}" REFKIT_IMAGE_GATEWAY_EXTRA_INSTALL ?= "${REFKIT_IMAGE_INSTALL_COMMON}" REFKIT_IMAGE_EXTRA_FEATURES += "${REFKIT_IMAGE_GATE...
SUMMARY = "IoT Reference OS Kit image for Gateway profile." DESCRIPTION = "IoT Reference OS Kit image for Gateway profile." REFKIT_IMAGE_GATEWAY_EXTRA_FEATURES ?= "${REFKIT_IMAGE_FEATURES_COMMON}" REFKIT_IMAGE_GATEWAY_EXTRA_INSTALL ?= "${REFKIT_IMAGE_INSTALL_COMMON}" REFKIT_IMAGE_EXTRA_FEATURES += "${REFKIT_IMAGE_GATE...
Remove deprecated python3-signal from the RDEPENDS
DESCRIPTION = "langtable is used to guess reasonable defaults for locale,\ keyboard, territory" HOMEPAGE = "https://github.com/mike-fabian/langtable/" LICENSE = "GPLv3+" SECTION = "devel/python" LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" S = "${WORKDIR}/git" B = "${S}" SRCREV = "35687ca...
DESCRIPTION = "langtable is used to guess reasonable defaults for locale,\ keyboard, territory" HOMEPAGE = "https://github.com/mike-fabian/langtable/" LICENSE = "GPLv3+" SECTION = "devel/python" LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" S = "${WORKDIR}/git" B = "${S}" SRCREV = "35687ca...
Extend recipe for native and nativesdk usage
SUMMARY = "The Sodium crypto library" HOMEPAGE = "http://libsodium.org/" LICENSE = "ISC" LIC_FILES_CHKSUM = "file://LICENSE;md5=c9f00492f01f5610253fde01c3d2e866" SRC_URI = "https://download.libsodium.org/libsodium/releases/${BPN}-${PV}.tar.gz" SRC_URI[md5sum] = "b58928d035064b2a46fb564937b83540" SRC_URI[sha256sum] = "...
SUMMARY = "The Sodium crypto library" HOMEPAGE = "http://libsodium.org/" LICENSE = "ISC" LIC_FILES_CHKSUM = "file://LICENSE;md5=c9f00492f01f5610253fde01c3d2e866" SRC_URI = "https://download.libsodium.org/libsodium/releases/${BPN}-${PV}.tar.gz" SRC_URI[md5sum] = "b58928d035064b2a46fb564937b83540" SRC_URI[sha256sum] = "...
Fix build issue with fido
DESCRIPTION = "Interface for GDB to commincate witha TI C66X DSP" LICENSE = "GPLv2" LIC_FILES_CHKSUM = "file://COPYING.txt;md5=75859989545e37968a99b631ef42722e" # This package builds a kernel module, use kernel PR as base and append a local MACHINE_KERNEL_PR_append = "a" PR = "${MACHINE_KERNEL_PR}" PV_append = "+git${...
DESCRIPTION = "Interface for GDB to commincate witha TI C66X DSP" LICENSE = "GPLv2" LIC_FILES_CHKSUM = "file://COPYING.txt;md5=75859989545e37968a99b631ef42722e" # This package builds a kernel module, use kernel PR as base and append a local MACHINE_KERNEL_PR_append = "b" PR = "${MACHINE_KERNEL_PR}" PV_append = "+git${...
Split the grub-install script and friends into a separate package.
DESCRIPTION = "GRand Unified Bootloader" HOMEPAGE = "http://www.gnu.org/software/grub" SECTION = "bootloaders" PRIORITY = "optional" RDEPENDS = "diffutils" PR = "r4" SRC_URI = "ftp://alpha.gnu.org/gnu/grub/grub-${PV}.tar.gz \ file://automake-1.10.patch;patch=1 \ file://menu.lst" inherit autotool...
DESCRIPTION = "GRand Unified Bootloader" HOMEPAGE = "http://www.gnu.org/software/grub" SECTION = "bootloaders" PRIORITY = "optional" RDEPENDS_${PN}-install = "diffutils" PR = "r5" SRC_URI = "ftp://alpha.gnu.org/gnu/grub/grub-${PV}.tar.gz \ file://automake-1.10.patch;patch=1 \ file://menu.lst" in...
Add Qt tools to SDK for QtAuto neptune image
# # Copyright (C) 2017 Pelagicore AB # SPDX-License-Identifier: MIT # DESCRIPTION = "Reference PELUX image with QtAuto frontend" inherit core-image-pelux-qtauto # This image uses neptune as the reference UI IMAGE_INSTALL += " neptune-ui "
# # Copyright (C) 2017 Pelagicore AB # SPDX-License-Identifier: MIT # DESCRIPTION = "Reference PELUX image with QtAuto frontend" inherit core-image-pelux-qtauto inherit populate_sdk_qt5 # This image uses neptune as the reference UI IMAGE_INSTALL += " neptune-ui "
Fix FILES variable in libpareon-verify_vs.bb
require conf/distro/include/pareon.inc DESCRIPTION = "Pareon Verify shared library" LICENSE = "Proprietary" LIC_FILES_CHKSUM = "file://${PAREON_DIR}/EULA.exec;md5=1c43b59db6eab4e68de95551563c708b" # Sabotage the default dependencies to avoid dependency loops trying to build lowlevel recipes with pareon INHIBIT_DEFAUL...
require conf/distro/include/pareon.inc DESCRIPTION = "Pareon Verify shared library" LICENSE = "Proprietary" LIC_FILES_CHKSUM = "file://${PAREON_DIR}/EULA.exec;md5=1c43b59db6eab4e68de95551563c708b" # Sabotage the default dependencies to avoid dependency loops trying to build lowlevel recipes with pareon INHIBIT_DEFAUL...
Update SRCREV with latest commit
DESCRIPTION = "GStreamer elements to use the multimedia accelerators available on some TI parts" LICENSE = "LGPLv2" LIC_FILES_CHKSUM = "file://COPYING;md5=fbc093901857fcd118f065f900982c24" require gstreamer1.0-plugins-ti.inc PR = "${INC_PR}.28" SRCREV = "7f3326b81b838fb6c916acd1d6a3090fda12c772" BRANCH ?= "master" ...
DESCRIPTION = "GStreamer elements to use the multimedia accelerators available on some TI parts" LICENSE = "LGPLv2" LIC_FILES_CHKSUM = "file://COPYING;md5=fbc093901857fcd118f065f900982c24" require gstreamer1.0-plugins-ti.inc PR = "${INC_PR}.29" SRCREV = "19e911bb45757d8341ffd7819ca783ca04f5e3b1" BRANCH ?= "master" ...
Revert "[Descriptions] Adding more description to applications"
DESCRIPTION = "Configuration files for online package repositories of the Openmoko community repository feeds." PR = "r0.04" do_compile() { mkdir -p ${S}/${sysconfdir}/opkg for feed in Multiverse; do echo "src/gz daily-${feed} ${OPENMOKO_URI}/${feed}" > ${S}/${sysconfdir}/opkg/${feed}-feed.conf don...
DESCRIPTION = "Configuration files for online package repositories of Openmoko community repository feeds" PR = "r0.03" do_compile() { mkdir -p ${S}/${sysconfdir}/opkg for feed in Multiverse; do echo "src/gz daily-${feed} ${OPENMOKO_URI}/${feed}" > ${S}/${sysconfdir}/opkg/${feed}-feed.conf done } d...
Update commit id and branch for 2021 release
SUMMARY = "Xilinx HDMI Linux Kernel module" DESCRIPTION = "Out-of-tree HDMI kernel modules provider for MPSoC EG/EV devices" SECTION = "kernel/modules" LICENSE = "GPLv2" LIC_FILES_CHKSUM = "file://LICENSE.md;md5=570506b747d768e7802376f932dff926" XLNX_HDMI_VERSION = "5.4.0" PV = "${XLNX_HDMI_VERSION}" S = "${WORKDIR}/...
SUMMARY = "Xilinx HDMI Linux Kernel module" DESCRIPTION = "Out-of-tree HDMI kernel modules provider for MPSoC EG/EV devices" SECTION = "kernel/modules" LICENSE = "GPLv2" LIC_FILES_CHKSUM = "file://LICENSE.md;md5=570506b747d768e7802376f932dff926" XLNX_HDMI_VERSION = "5.4.0" PV = "${XLNX_HDMI_VERSION}" S = "${WORKDIR}/...
Update LICENSE field version to GPLv2
DESCRIPTION = "An accessibility toolkit for GNOME." SECTION = "x11/libs" PRIORITY = "optional" LICENSE = "LGPL" PR = "r1" inherit gnome SRC_URI[archive.md5sum] = "548d413775819fef425410739041cac3" SRC_URI[archive.sha256sum] = "92b9b1213cafc68fe9c3806273b968c26423237d7b1f631dd83dc5270b8c268c" DEPENDS = "glib-2.0 gtk...
DESCRIPTION = "An accessibility toolkit for GNOME." SECTION = "x11/libs" PRIORITY = "optional" LICENSE = "GPLv2+ LGPLv2+" PR = "r2" inherit gnome SRC_URI[archive.md5sum] = "548d413775819fef425410739041cac3" SRC_URI[archive.sha256sum] = "92b9b1213cafc68fe9c3806273b968c26423237d7b1f631dd83dc5270b8c268c" DEPENDS = "gl...
Use S to access setup.py
SUMMARY = "Set of CLI tools for Openlmi providers" DESCRIPTION = "openlmi-tools is a set of command line tools for Openlmi providers." HOMEPAGE = "http://www.openlmi.org/" LICENSE = "GPLv2+" LIC_FILES_CHKSUM = "file://../COPYING;md5=75859989545e37968a99b631ef42722e" SECTION = "System/Management" inherit setuptools3 D...
SUMMARY = "Set of CLI tools for Openlmi providers" DESCRIPTION = "openlmi-tools is a set of command line tools for Openlmi providers." HOMEPAGE = "http://www.openlmi.org/" LICENSE = "GPLv2+" LIC_FILES_CHKSUM = "file://../COPYING;md5=75859989545e37968a99b631ef42722e" SECTION = "System/Management" inherit setuptools3 D...
Update branch and SRCREV for update release
UBOOT_VERSION = "v2021.01" UBRANCH ?= "xlnx_rebase_v2022.01" SRCREV = "c50d6c48f4e1368cd38699278e35563cb4b0e444" include u-boot-xlnx.inc include u-boot-spl-zynq-init.inc LICENSE = "GPLv2+" LIC_FILES_CHKSUM = "file://README;beginline=1;endline=4;md5=744e7e3bb0c94b4b9f6b3db3bf893897" # u-boot-xlnx has support for th...
UBOOT_VERSION = "v2021.01" UBRANCH ?= "xlnx_rebase_v2022.01_2022.1_update" SRCREV = "a807cf8f6ce03ef1441c246a90aefbc8b6ea4c43" include u-boot-xlnx.inc include u-boot-spl-zynq-init.inc LICENSE = "GPLv2+" LIC_FILES_CHKSUM = "file://README;beginline=1;endline=4;md5=744e7e3bb0c94b4b9f6b3db3bf893897" # u-boot-xlnx has ...
Update LICENSE field version to GPLv2
SECTION = "unknown" LICENSE = "GPL" inherit autotools gtk-icon-cache # Override RDEPENDS_${PN} = hicolor-icon-theme from gtk-icon-cache RDEPENDS_${PN} = "" RDEPENDS_${PN} = "" PR = "r1" SRC_URI = "http://icon-theme.freedesktop.org/releases/${P}.tar.gz" PACKAGE_ARCH = "all" FILES_${PN} += "${datadir}/icons" SRC_URI...
SECTION = "unknown" LICENSE = "GPLv2" inherit autotools gtk-icon-cache # Override RDEPENDS_${PN} = hicolor-icon-theme from gtk-icon-cache RDEPENDS_${PN} = "" RDEPENDS_${PN} = "" PR = "r2" SRC_URI = "http://icon-theme.freedesktop.org/releases/${P}.tar.gz" PACKAGE_ARCH = "all" FILES_${PN} += "${datadir}/icons" SRC_U...
Put perl requiring tools into separate package
SUMMARY = "Safe C Library" LICENSE = "safec" LIC_FILES_CHKSUM = "file://COPYING;md5=6d0eb7dfc57806a006fcbc4e389cf164" SECTION = "lib" inherit autotools pkgconfig S = "${WORKDIR}/git" SRCREV = "a99a052a56da409638c9fe7e096a5ae6661ca7cb" SRC_URI = "git://github.com/rurban/safeclib.git \ file://0001-memrchr...
SUMMARY = "Safe C Library" LICENSE = "safec" LIC_FILES_CHKSUM = "file://COPYING;md5=6d0eb7dfc57806a006fcbc4e389cf164" SECTION = "lib" inherit autotools pkgconfig S = "${WORKDIR}/git" SRCREV = "a99a052a56da409638c9fe7e096a5ae6661ca7cb" SRC_URI = "git://github.com/rurban/safeclib.git \ file://0001-memrchr...
Fix build, use the right git version.
LICENSE = "LGPLv2" LIC_FILES_CHKSUM = "file://COPYING;md5=5c213a7de3f013310bd272cdb6eb7a24" DEPENDS = "kdelibs4 soprano" inherit kde_without_docs kde_rdepends kde_cmake SRC_URI = "git://anongit.kde.org/kde-baseapps;protocol=git;branch=master \ file://Convert-Phonon-to-phonon.patch" SRCREV = "37a52f48ebd4850d07cd...
LICENSE = "LGPLv2" LIC_FILES_CHKSUM = "file://COPYING;md5=5c213a7de3f013310bd272cdb6eb7a24" DEPENDS = "kdelibs4 soprano" inherit kde_without_docs kde_rdepends kde_cmake SRC_URI = "git://anongit.kde.org/kde-baseapps;protocol=git;branch=master \ file://Convert-Phonon-to-phonon.patch" ## Tag v4.8.0 SRCREV = "a7a12...
Update LICENSE field version to GPLv2 and LGPLv2.1
require libgpg-error.inc PR = "${INC_PR}.1" SRC_URI[md5sum] = "86e60e9a03205fb706e99be101a2387e" SRC_URI[sha256sum] = "fff67ec5ffc93cf91fc62350a19a9f677c9bc6eb2730395d22f9d40c754ed619"
require libgpg-error.inc LICENSE = "GPLv2 LGPLv2.1" PR = "${INC_PR}.2" SRC_URI[md5sum] = "86e60e9a03205fb706e99be101a2387e" SRC_URI[sha256sum] = "fff67ec5ffc93cf91fc62350a19a9f677c9bc6eb2730395d22f9d40c754ed619"
Fix tini filename after balena-engine rename
HOMEPAGE = "http://github.com/krallin/tini" SUMMARY = "Minimal init for containers" DESCRIPTION = "Tini is the simplest init you could think of. All Tini does is \ spawn a single child (Tini is meant to be run in a container), and wait for \ it to exit all the while reaping zombies and performing signal forwarding. " ...
HOMEPAGE = "http://github.com/krallin/tini" SUMMARY = "Minimal init for containers" DESCRIPTION = "Tini is the simplest init you could think of. All Tini does is \ spawn a single child (Tini is meant to be run in a container), and wait for \ it to exit all the while reaping zombies and performing signal forwarding. " ...
Fix deps to py3 modules
SUMMARY = "Twisted Web Sockets" HOMEPAGE = "https://github.com/MostAwesomeDude/txWS" LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://LICENSE;md5=76699830db7fa9e897f6a1ad05f98ec8" DEPENDS = "python-twisted python-six python-vcversioner python-six-native python-vcversioner-native" SRC_URI = "git://github.com/MostAwe...
SUMMARY = "Twisted Web Sockets" HOMEPAGE = "https://github.com/MostAwesomeDude/txWS" LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://LICENSE;md5=76699830db7fa9e897f6a1ad05f98ec8" DEPENDS = "python3-twisted python3-six python3-vcversioner python3-six-native python3-vcversioner-native" SRC_URI = "git://github.com/Mo...
Add additional mosquitto programs & libraries
DESCRIPTION = "Package groups for Advantech WISE-PaaS" LICENSE = "MIT" inherit packagegroup PACKAGES = "\ ${PN} \ ${PN}-base \ ${PN}-addon \ " RDEPENDS_${PN} = "\ ${PN}-base \ ${PN}-addon \ " SUMMARY_${PN}-base = "Yocto native packages" RDEPENDS_${PN}-base = "\ sqlite3 lua uci \ curl curl...
DESCRIPTION = "Package groups for Advantech WISE-PaaS" LICENSE = "MIT" inherit packagegroup PACKAGES = "\ ${PN} \ ${PN}-base \ ${PN}-addon \ " RDEPENDS_${PN} = "\ ${PN}-base \ ${PN}-addon \ " SUMMARY_${PN}-base = "Yocto native packages" RDEPENDS_${PN}-base = "\ sqlite3 lua uci \ curl curl...
Add HOMEPAGE info into recipe file.
SUMMARY = "Program for providing universal TLS/SSL tunneling service" DESCRIPTION = "SSL encryption wrapper between remote client and local (inetd-startable) or remote server." SECTION = "net" LICENSE = "GPLv2" LIC_FILES_CHKSUM = "file://COPYING;md5=866cdc7459d91e092b174388fab8d283" DEPENDS = "openssl zlib tcp-wrappers...
SUMMARY = "Program for providing universal TLS/SSL tunneling service" HOMEPAGE = "http://www.stunnel.org/" DESCRIPTION = "SSL encryption wrapper between remote client and local (inetd-startable) or remote server." SECTION = "net" LICENSE = "GPLv2" LIC_FILES_CHKSUM = "file://COPYING;md5=866cdc7459d91e092b174388fab8d283"...
Change recipe to cope with extra subdirectories
DESCRIPTION = "Project Valerie - Media Center" DEPENDS = "python" PACKAGES = "${PN}" PACKAGE_ARCH = "all" MODULE = "ValerieMediaCenter" require valerie.inc RDEPENDS_${PN} = "python-ctypes valerie-libshowiframe valerie-sync valerie-e2control" RREPLACES_${PN} = "project-valerie" RCONFLICTS_${PN} = "project-valerie" do_...
DESCRIPTION = "Project Valerie - Media Center" DEPENDS = "python" PACKAGES = "${PN}" PACKAGE_ARCH = "all" MODULE = "ValerieMediaCenter" require valerie.inc PR = "r1" RDEPENDS_${PN} = "python-ctypes valerie-libshowiframe valerie-sync valerie-e2control" RREPLACES_${PN} = "project-valerie" RCONFLICTS_${PN} = "project-val...
Upgrade to SVN snapshot 4495. Changed SVN URI to http (https does not work).
require navit.inc SRCREV = "4345" PV = "0.2.0+svnr${SRCPV}" PR = "${INC_PR}.12" S = "${WORKDIR}/navit" SRC_URI += "svn://anonymous@navit.svn.sourceforge.net/svnroot/navit/trunk;module=navit;proto=https "
require navit.inc SRCREV = "4495" PV = "0.2.0+svnr${SRCPV}" PR = "${INC_PR}.12" S = "${WORKDIR}/navit" SRC_URI += "svn://anonymous@navit.svn.sourceforge.net/svnroot/navit/trunk;module=navit;proto=http "
Add fcntl, logging to RDEPENDS
DESCRIPTION = "Python pyinotify: Linux filesystem events monitoring" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://COPYING;md5=ab173cade7965b411528464589a08382" RDEPENDS:${PN} += "\ ${PYTHON_PN}-ctypes \ ${PYTHON_PN}-io \ ${PYTHON_PN}-misc \ ${PYTHON_PN}-shell \ ${PYTHON_PN}-smtpd \ ${PYTHON_PN}-t...
DESCRIPTION = "Python pyinotify: Linux filesystem events monitoring" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://COPYING;md5=ab173cade7965b411528464589a08382" RDEPENDS:${PN} += "\ ${PYTHON_PN}-ctypes \ ${PYTHON_PN}-fcntl \ ${PYTHON_PN}-io \ ${PYTHON_PN}-logging \ ${PYTHON_PN}-misc \ ${PYTHON_PN}...
Update SRCREV and Version to 5.15.36
LINUX_VERSION = "5.15.19" KBRANCH="xlnx_rebase_v5.15_LTS" SRCREV = "63ddb06d5da5f9804b96213b697283dee17f42dd" KCONF_AUDIT_LEVEL="0" include linux-xlnx.inc FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:"
LINUX_VERSION = "5.15.36" KBRANCH="xlnx_rebase_v5.15_LTS" SRCREV = "9ef3be1de28ec61f4dad2b16b1097b7e2270a5a6" KCONF_AUDIT_LEVEL="0" include linux-xlnx.inc FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:"
Change license file to COREBASE file
SUMMARY = "Module for Low Power Actions on sitec systems S4 Comm Pro X" LICENSE = "GPLv2" LIC_FILES_CHKSUM = "file://COPYING;md5=12f884d2ae1ff87c09e5b7ccc2c4ca7e" MAINTAINER = "Robert Lehmann <robert.lehmann@sitec-systems.de>" inherit module PR = "r1" PV = "${KERNEL_VERSION}" SRC_URI = "file://Makefile \ ...
SUMMARY = "Module for Low Power Actions on sitec systems S4 Comm Pro X" LICENSE = "GPLv2" LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/GPL-2.0;md5=801f80980d171dd6425610833a22dbe6" MAINTAINER = "Robert Lehmann <robert.lehmann@sitec-systems.de>" inherit module PR = "r1" PV = "${KERNEL_VERSION}" S...
Revert "libdwarf: ship header in /usr/include/ like in other distros"
require dwarf.inc SRC_URI += "file://fix-gennames.patch" do_install() { install -d ${D}${libdir} ${D}${includedir} install -m 0755 libdwarf.a ${D}${libdir} install -m 0644 dwarf.h libdwarf.h ${D}${includedir} } ALLOW_EMPTY_${PN} = "1" BBCLASSEXTEND = "native"
require dwarf.inc SRC_URI += "file://fix-gennames.patch" do_install() { install -d ${D}${libdir} ${D}${includedir}/libdwarf install -m 0755 libdwarf.a ${D}${libdir} install -m 0644 dwarf.h libdwarf.h ${D}${includedir}/libdwarf } ALLOW_EMPTY_${PN} = "1" BBCLASSEXTEND = "native"
Fix compile and install issues
DESCRIPTION = "ARM Benchmarks" HOMEPAGE = "https://gforge.ti.com/gf/project/am_benchmarks/" LICENSE = "BSD" LIC_FILES_CHKSUM = "file://COPYING;md5=7aefb5e1cffc7b6a3ef18b803f957922" SECTION = "system" SRCREV = "76" PR = "r0+svnr${SRCPV}" SRC_URI = "svn://gforge.ti.com/svn/am_benchmarks/;module=trunk;proto=https;user=a...
DESCRIPTION = "ARM Benchmarks" HOMEPAGE = "https://gforge.ti.com/gf/project/am_benchmarks/" LICENSE = "BSD" LIC_FILES_CHKSUM = "file://COPYING;md5=7aefb5e1cffc7b6a3ef18b803f957922" SECTION = "system" SRCREV = "76" PR = "r1+svnr${SRCPV}" SRC_URI = "svn://gforge.ti.com/svn/am_benchmarks/;module=trunk;protocol=https;use...
Add python3-cryptography to RDEPENDS for python3-redis
SUMMARY = "Python client for Redis key-value store" DESCRIPTION = "The Python interface to the Redis key-value store." HOMEPAGE = "http://github.com/andymccurdy/redis-py" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://LICENSE;md5=51d9ad56299ab60ba7be65a621004f27" SRC_URI[md5sum] = "048348d8cfe0b5d0bba2f4d835005c3b" SRC_UR...
SUMMARY = "Python client for Redis key-value store" DESCRIPTION = "The Python interface to the Redis key-value store." HOMEPAGE = "http://github.com/andymccurdy/redis-py" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://LICENSE;md5=51d9ad56299ab60ba7be65a621004f27" SRC_URI[md5sum] = "048348d8cfe0b5d0bba2f4d835005c3b" SRC_UR...
Upgrade to latest / change source location / cmake build
SUMMARY = "A Qt5 library with input/output helpers" LICENSE = "GPLv2" LIC_FILES_CHKSUM = "file://LICENSE;md5=bd7b2c994af21d318bd2cd3b3f80c2d5" require recipes-qt/qt5/qt5.inc SRC_URI = "git://github.com/schnitzeltony/${BPN}.git;branch=master" DEPENDS += "qtbase qtserialport" PV = "0.4.0+git${SRCPV}" SRCREV = "4edd9...
SUMMARY = "A Qt5 library with input/output helpers" LICENSE = "GPLv2" LIC_FILES_CHKSUM = "file://LICENSE;md5=bd7b2c994af21d318bd2cd3b3f80c2d5" inherit cmake_qt5 SRC_URI = "git://github.com/ZeraGmbH/qtiohelper.git" DEPENDS += "qtbase qtserialport" PV = "0.4.0+git${SRCPV}" SRCREV = "5c28d4765ce7de57702f4f529fed7da80...
Add bluez-noinst-tools to the image.
SUMMARY = "Support packages for MagOS" LICENSE = "MIT" PR = "r0" PACKAGE_ARCH = "${MACHINE_ARCH}" inherit packagegroup RDEPENDS_${PN} = " \ lsb \ lsbinitscripts \ openssh \ tzcode \ usbutils \ "
SUMMARY = "Support packages for MagOS" LICENSE = "MIT" PR = "r0" PACKAGE_ARCH = "${MACHINE_ARCH}" inherit packagegroup RDEPENDS_${PN} = " \ bluez5-noinst-tools \ lsb \ lsbinitscripts \ openssh \ tzcode \ usbutils \ "
Add runtime dependencies for python3-supervisor
SUMMARY = "Supervisor: A Process Control System" DESCRIPTION = "\ Supervisor is a client/server system that allows its users \ to monitorand control a number of processes on UNIX-like \ operating systems." HOMEPAGE = "https://github.com/Supervisor/supervisor" LICENSE = "BSD-4-Clause" LIC_FILES_CHKSUM = "file://LICENSES...
SUMMARY = "Supervisor: A Process Control System" DESCRIPTION = "\ Supervisor is a client/server system that allows its users \ to monitorand control a number of processes on UNIX-like \ operating systems." HOMEPAGE = "https://github.com/Supervisor/supervisor" LICENSE = "BSD-4-Clause" LIC_FILES_CHKSUM = "file://LICENSES...
Use BPN rather than PN in master branch.
FILESEXTRAPATHS_prepend := "${THISDIR}/files:" SRC_URI = "file://ArtifactRollback_Enter_00;subdir=${PN}-${PV} \ file://Download_Enter_00;subdir=${PN}-${PV} \ file://LICENSE;subdir=${PN}-${PV} \ file://ArtifactCommit_Enter_00;subdir=${PN}-${PV} \ file://Sync_Enter_00;subdir=$...
FILESEXTRAPATHS_prepend := "${THISDIR}/files:" SRC_URI = "file://ArtifactRollback_Enter_00;subdir=${BPN}-${PV} \ file://Download_Enter_00;subdir=${BPN}-${PV} \ file://LICENSE;subdir=${BPN}-${PV} \ file://ArtifactCommit_Enter_00;subdir=${BPN}-${PV} \ file://Sync_Enter_00;subd...
Use standard target filesystem paths
SUMMARY = "A GNSS signal generator" AUTHOR = "Javier Arribas <jarribas@cttc.es>" HOMEPAGE = "https://bitbucket.org/jarribas/gnss-simulator/" LICENSE = "GPLv3" LIC_FILES_CHKSUM = "file://COPYING;md5=31f43bdb1ab7b19dae6e891241ca0568" PR = "r0" DEPENDS = "volk boost armadillo gflags glog " PV = "1.0.git" SRCREV = "86da...
SUMMARY = "A GNSS signal generator" AUTHOR = "Javier Arribas <jarribas@cttc.es>" HOMEPAGE = "https://bitbucket.org/jarribas/gnss-simulator/" LICENSE = "GPLv3" LIC_FILES_CHKSUM = "file://COPYING;md5=31f43bdb1ab7b19dae6e891241ca0568" PR = "r0" DEPENDS = "volk boost armadillo gflags glog " PV = "1.0.git" SRCREV = "86da...
Update LICENSE field version to GPLv2
require orbit2.inc SRC_URI += "file://disable-ipv6.patch" noipv6 = "${@base_contains('DISTRO_FEATURES', 'ipv6', '', '-DDISABLE_IPV6', d)}" EXTRA_OEMAKE_append = " 'CFLAGS=${CFLAGS} ${noipv6}'" SRC_URI[md5sum] = "10bfb957fa4a8935a0b4afaee7d71df7" SRC_URI[sha256sum] = "62bfce3f678f9347a19c766944e8aef7b89bc32b25ac23eb3e...
require orbit2.inc LICENSE = "GPLv2+" PR = "r1" SRC_URI += "file://disable-ipv6.patch" noipv6 = "${@base_contains('DISTRO_FEATURES', 'ipv6', '', '-DDISABLE_IPV6', d)}" EXTRA_OEMAKE_append = " 'CFLAGS=${CFLAGS} ${noipv6}'" SRC_URI[md5sum] = "10bfb957fa4a8935a0b4afaee7d71df7" SRC_URI[sha256sum] = "62bfce3f678f9347a19...
Update am335x to use latest u-boot for 3.2 kernel
require u-boot-ti.inc DESCRIPTION = "u-boot bootloader for ARM MPU devices" COMPATIBLE_MACHINE = "ti33x" DEFAULT_PREFERENCE = "-1" PR = "r5+gitr${SRCPV}" SRC_URI = "git://git.ti.com/ti-u-boot/ti-u-boot.git;protocol=git;branch=${BRANCH}" # This version of u-boot is meant for 3.2 kernel which doesn't support device...
require u-boot-ti.inc DESCRIPTION = "u-boot bootloader for ARM MPU devices" COMPATIBLE_MACHINE = "ti33x" DEFAULT_PREFERENCE = "-1" PR = "r6+gitr${SRCPV}" SRC_URI = "git://git.ti.com/ti-u-boot/ti-u-boot.git;protocol=git;branch=${BRANCH}" # This version of u-boot is meant for 3.2 kernel which doesn't support device...
Add option to support webkit2gtk-4-0
SUMMARY = "Help browser for the GNOME desktop" LICENSE = "GPLv2" LIC_FILES_CHKSUM = " \ file://COPYING;md5=6e1b9cb787e76d7e6946887a65caa754 \ " inherit gnomebase itstool autotools-brokensep gsettings gettext gtk-doc features_check mime-xdg # for webkitgtk REQUIRED_DISTRO_FEATURES = "x11" SRC_URI[archive.sha256su...
SUMMARY = "Help browser for the GNOME desktop" LICENSE = "GPLv2" LIC_FILES_CHKSUM = " \ file://COPYING;md5=6e1b9cb787e76d7e6946887a65caa754 \ " inherit gnomebase itstool autotools-brokensep gsettings gettext gtk-doc features_check mime-xdg # for webkitgtk REQUIRED_DISTRO_FEATURES = "x11" SRC_URI[archive.sha256su...
Fix naming in the recipe
inherit features_check REQUIRED_DISTRO_FEATURES = "canps" inherit esw python3native DEPENDS += "xilstandalone " ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/canps/src/" ESW_COMPONENT_NAME = "libcanps.a" addtask do_generate_driver_data before do_configure after do_prepare_recipe_sysroot do_prepare_recipe_sysr...
inherit features_check REQUIRED_DISTRO_FEATURES = "xxvethernet" inherit esw python3native DEPENDS += "xilstandalone" ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/xxvethernet/src/" ESW_COMPONENT_NAME = "libxxvethernet.a" addtask do_generate_driver_data before do_configure after do_prepare_recipe_sysroot do_pr...
Revert "qtwayland: reverting back to old version"
require recipes-qt/qt5/qt5-git.inc require recipes-qt/qt5/${PN}.inc # qtwayland wasn't released yet, last tag before this SRCREV is 5.0.0-beta1 # qt5-git PV is only to indicate that this recipe is compatible with qt5 5.2.1 SRC_URI = "git://github.com/webOS-ports/qtwayland;branch=webOS-ports/master;protocol=git" SRCRE...
require recipes-qt/qt5/qt5-git.inc require recipes-qt/qt5/${PN}.inc # qtwayland wasn't released yet, last tag before this SRCREV is 5.0.0-beta1 # qt5-git PV is only to indicate that this recipe is compatible with qt5 5.2.1 SRC_URI = "git://github.com/webOS-ports/qtwayland;branch=webOS-ports/master-next;protocol=git" ...
Fix build issue with make 3.82
COMPATIBLE_MACHINE = "raspberrypi" require linux.inc DESCRIPTION = "Linux kernel for the RaspberryPi board" PR = "r1" # Bump MACHINE_KERNEL_PR in the machine config if you update the kernel. # This is on the rpi-patches branch SRCREV = "0ec4154d64ebba48ca2446cde60a90546311defc" SRC_URI = "git://github.com/raspberr...
COMPATIBLE_MACHINE = "raspberrypi" require linux.inc DESCRIPTION = "Linux kernel for the RaspberryPi board" PR = "r1" # Bump MACHINE_KERNEL_PR in the machine config if you update the kernel. # This is on the rpi-patches branch SRCREV = "0ec4154d64ebba48ca2446cde60a90546311defc" SRC_URI = "git://github.com/raspberr...
Add libiio and gr-iio to target
# packagegroup definitions to help the GNSS-SDR community build images # they like. LICENSE = "MIT" inherit packagegroup PACKAGES = " \ packagegroup-gnss-sdr-base \ packagegroup-gnss-sdr-bin \ packagegroup-gnss-sdr-drivers \ " PROVIDES = "${PACKAGES}" SUMMARY_packagegroup-gnss-sdr-base = "Required pack...
# packagegroup definitions to help the GNSS-SDR community build images # they like. LICENSE = "MIT" inherit packagegroup PACKAGES = " \ packagegroup-gnss-sdr-base \ packagegroup-gnss-sdr-bin \ packagegroup-gnss-sdr-drivers \ " PROVIDES = "${PACKAGES}" SUMMARY_packagegroup-gnss-sdr-base = "Required pack...
Add u-boot-zynq-uenv to zedboard-zynq7, so the wic image can be built
require version-image.inc SUMMARY = "An image with the GNSS-SDR binary and the Xfce desktop environment" LICENSE = "MIT" PR = "r6" inherit core-image image-buildinfo require recipes-images/images/geniux-users.inc IMAGE_FEATURES += " \ ssh-server-openssh \ splash \ " EXTRA_IMAGE_FEATURES += " \ package-...
require version-image.inc SUMMARY = "An image with the GNSS-SDR binary and the Xfce desktop environment" LICENSE = "MIT" PR = "r6" inherit core-image image-buildinfo require recipes-images/images/geniux-users.inc IMAGE_FEATURES += " \ ssh-server-openssh \ splash \ " EXTRA_IMAGE_FEATURES += " \ package-...
Add lzo to dependencies, otherwise it will try to link against a build host lzo.
DESCRIPTION = "This software provides support for the Tag Image File Format (TIFF)" LICENSE = "" HOMEPAGE = "http://www.remotesensing.org/libtiff/" DEPENDS = "zlib jpeg" PR = "r3" SRC_URI = "http://dl.maptools.org/dl/libtiff/old/tiff-${PV}.tar.gz \ file://configure.patch;patch=1" inherit autotools do_stage() { a...
DESCRIPTION = "This software provides support for the Tag Image File Format (TIFF)" LICENSE = "" HOMEPAGE = "http://www.remotesensing.org/libtiff/" DEPENDS = "zlib jpeg lzo" PR = "r4" SRC_URI = "http://dl.maptools.org/dl/libtiff/old/tiff-${PV}.tar.gz \ file://configure.patch;patch=1" inherit autotools do_stage() ...
Add missing depends to kde-baseapps
SUMMARY = "KDE standard image viewer" LICENSE = "GPLv2" LIC_FILES_CHKSUM = "file://COPYING;md5=5a3169a2d39a757efd8b7aa66a69d97b" DEPENDS = "kdelibs4 automoc4-native exiv2" # for videos? RDEPENDS = "libqtphonon4" inherit kde_cmake kde_rdepends kde_without_docs SRC_URI = "git://anongit.kde.org/gwenview.git;branch=mas...
SUMMARY = "KDE standard image viewer" LICENSE = "GPLv2" LIC_FILES_CHKSUM = "file://COPYING;md5=5a3169a2d39a757efd8b7aa66a69d97b" DEPENDS = "kdelibs4 automoc4-native exiv2 kde-baseapps" # for videos? RDEPENDS = "libqtphonon4" inherit kde_cmake kde_rdepends kde_without_docs SRC_URI = "git://anongit.kde.org/gwenview.g...
Set build dir as same source dir
# Copyright (C) 2015 Khem Raj <raj.khem@gmail.com> # Released under the MIT license (see COPYING.MIT for the terms) DESCRIPTION = "OpenWrt uqmi utility" HOMEPAGE = "http://git.openwrt.org/?p=project/uqmi.git;a=summary" LICENSE = "GPL-2.0" LIC_FILES_CHKSUM = "file://main.c;beginline=1;endline=20;md5=3f7041e5710007661d7...
# Copyright (C) 2015 Khem Raj <raj.khem@gmail.com> # Released under the MIT license (see COPYING.MIT for the terms) DESCRIPTION = "OpenWrt uqmi utility" HOMEPAGE = "http://git.openwrt.org/?p=project/uqmi.git;a=summary" LICENSE = "GPL-2.0" LIC_FILES_CHKSUM = "file://main.c;beginline=1;endline=20;md5=3f7041e5710007661d7...
Update LICENSE field version to GPLv2
require orbit2.inc SRC_URI += "file://disable-ipv6.patch" noipv6 = "${@base_contains('DISTRO_FEATURES', 'ipv6', '', '-DDISABLE_IPV6', d)}" EXTRA_OEMAKE_append = " 'CFLAGS=${CFLAGS} ${noipv6}'" SRC_URI[md5sum] = "10bfb957fa4a8935a0b4afaee7d71df7" SRC_URI[sha256sum] = "62bfce3f678f9347a19c766944e8aef7b89bc32b25ac23eb3e...
require orbit2.inc LICENSE = "GPLv2+" PR = "r1" SRC_URI += "file://disable-ipv6.patch" noipv6 = "${@base_contains('DISTRO_FEATURES', 'ipv6', '', '-DDISABLE_IPV6', d)}" EXTRA_OEMAKE_append = " 'CFLAGS=${CFLAGS} ${noipv6}'" SRC_URI[md5sum] = "10bfb957fa4a8935a0b4afaee7d71df7" SRC_URI[sha256sum] = "62bfce3f678f9347a19...
Disable parallel build, it's broken
LICENSE = "Open Market" DESCRIPTION = "Fast CGI backend (web server to CGI handler) library" PR = "r0" SRC_URI = "http://www.fastcgi.com/dist/fcgi-${PV}.tar.gz" S=${WORKDIR}/fcgi-${PV} LEAD_SONAME = "libfcgi.so*" inherit autotools pkgconfig do_stage() { autotools_stage_all } do_compile() { }
LICENSE = "Open Market" DESCRIPTION = "Fast CGI backend (web server to CGI handler) library" PR = "r1" SRC_URI = "http://www.fastcgi.com/dist/fcgi-${PV}.tar.gz" S=${WORKDIR}/fcgi-${PV} LEAD_SONAME = "libfcgi.so*" PARALLEL_MAKE="" inherit autotools pkgconfig do_stage() { autotools_stage_all } do_compile() { }
Use autotools-brokensep to avoid build failures
SUMMARY = "Engrave is an Edje Editing Library" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://COPYING;md5=edf2d968b9eb026bfa82cccbd0e6f9f5" # also requires yacc and lex on host DEPENDS = "evas ecore" PV = "0.0.0+svnr${SRCPV}" SRCREV = "${EFL_SRCREV}" inherit efl SRC_URI = "${E_SVN}/OLD;module=${SRCNAME};protocol=http;scmd...
SUMMARY = "Engrave is an Edje Editing Library" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://COPYING;md5=edf2d968b9eb026bfa82cccbd0e6f9f5" # also requires yacc and lex on host DEPENDS = "evas ecore" PV = "0.0.0+svnr${SRCPV}" SRCREV = "${EFL_SRCREV}" inherit efl autotools-brokensep SRC_URI = "${E_SVN}/OLD;module=${SRCNAME...
Add missing exit command on error.
DESCRIPTION = "Mender artifact information" HOMEPAGE = "https://mender.io" LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10" FILESPATH = "${COMMON_LICENSE_DIR}" SRC_URI = "file://Apache-2.0" S = "${WORKDIR}" inherit allarch PV = "0.1" do_compile() { if [ -z "${M...
DESCRIPTION = "Mender artifact information" HOMEPAGE = "https://mender.io" LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10" FILESPATH = "${COMMON_LICENSE_DIR}" SRC_URI = "file://Apache-2.0" S = "${WORKDIR}" inherit allarch PV = "0.1" do_compile() { if [ -z "${M...