doc_id stringlengths 36 36 | metadata dict | input stringlengths 28 4.3k | output stringlengths 11 5.45k |
|---|---|---|---|
45634bc2-092b-401a-9f14-73d4e6c536a8 | {
"language": "Batchfile"
} | ```batchfile
@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... | ```batchfile
@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... |
cd5199e6-c63f-4d64-aa29-825fec111dd4 | {
"language": "Batchfile"
} | ```batchfile
@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
```
Add CALL w... | ```batchfile
@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
``` |
bf09d27a-1844-4a8c-a527-c8fdec394b3a | {
"language": "Batchfile"
} | ```batchfile
@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 a... | ```batchfile
@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 a... |
30296253-bb4f-4740-beed-9f5318ad4818 | {
"language": "Batchfile"
} | ```batchfile
:: 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
)
```
Use symboli... | ```batchfile
:: 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
)
``` |
8d457428-f14b-4005-b5bc-0ba931a43ad9 | {
"language": "Batchfile"
} | ```batchfile
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
```
Build todomvc and habhub on deploy. | ```batchfile
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
``` |
45215881-b95f-40f3-92f6-62ade0a5ad47 | {
"language": "Batchfile"
} | ```batchfile
```
Add command file for building documentation | ```batchfile
@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 bui... |
6c247d37-eaf6-4c4b-8ecd-2784a3178107 | {
"language": "Batchfile"
} | ```batchfile
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```
Build Skeleton... | ```batchfile
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``` |
a3f96beb-0eb4-49b0-a839-9b5f7434be77 | {
"language": "Batchfile"
} | ```batchfile
GEOIPDATADIR=%LIBRARY_PREFIX%
INSTDIR=%LIBRARY_PREFIX%
nmake /f Makefile.vc
nmake /f Makefile.vc test
nmake /f Makefile.vc install```
SET env var [travis skip circle skip] | ```batchfile
SET GEOIPDATADIR=%LIBRARY_PREFIX%
SET INSTDIR=%LIBRARY_PREFIX%
nmake /f Makefile.vc
nmake /f Makefile.vc test
nmake /f Makefile.vc install``` |
7259dcbc-b484-4a9a-9179-eab8fcc54396 | {
"language": "Batchfile"
} | ```batchfile
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\_speed... | ```batchfile
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.py... |
11c69f10-0622-46b1-bff7-395d79e97a8c | {
"language": "Batchfile"
} | ```batchfile
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 ... | ```batchfile
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 ... |
6b904e4d-e38b-4243-b5b3-dcba9db3ab8f | {
"language": "Batchfile"
} | ```batchfile
@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
@... | ```batchfile
@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 (
mkd... |
7a7943b4-f5e3-45d2-b87b-751d743b3e04 | {
"language": "Batchfile"
} | ```batchfile
@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 folde... | ```batchfile
@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... |
8a30fc7c-f578-4f97-95ed-45a34fd2e6f4 | {
"language": "Batchfile"
} | ```batchfile
@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 %... | ```batchfile
@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 %... |
147d8abd-2929-435b-bdcf-3e7e977b2a64 | {
"language": "Batchfile"
} | ```batchfile
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 ... | ```batchfile
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 specifi... |
64fb7a42-a366-40a7-ab4e-67781d8d3869 | {
"language": "Batchfile"
} | ```batchfile
@echo off
rem dummy batch file to test user defined commands from
rem nar-process-libraries. Just display the arguments passed
echo %*
```
Use DOS line endings for batch file | ```batchfile
@echo off
rem dummy batch file to test user defined commands from
rem nar-process-libraries. Just display the arguments passed
echo %*
``` |
bf88427b-c6c2-48bd-b83a-d785e9336e69 | {
"language": "Batchfile"
} | ```batchfile
```
Add to itunes on windows | ```batchfile
@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 q... |
c82ed67b-a284-4446-bf2e-aaccfc24e7bd | {
"language": "Batchfile"
} | ```batchfile
@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%... | ```batchfile
@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%... |
ed28c213-153c-4955-aee2-14eb4b23495e | {
"language": "Batchfile"
} | ```batchfile
@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... | ```batchfile
@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%... |
b31b86e9-7916-4125-b15f-44911f9212c9 | {
"language": "Batchfile"
} | ```batchfile
@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
:er... | ```batchfile
@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
:er... |
c31a377c-5fea-4886-94a3-55631cde8b42 | {
"language": "Batchfile"
} | ```batchfile
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\... | ```batchfile
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
m... |
5cd781bc-c141-408f-b630-1936ac3f8daa | {
"language": "Batchfile"
} | ```batchfile
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
```
Fix svn props on batch file | ```batchfile
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
``` |
833aa5d1-fbf9-4864-b0f4-291580f465cc | {
"language": "Batchfile"
} | ```batchfile
@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 /fl... | ```batchfile
@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)%... |
1309e2b5-5f6b-4c28-8ab3-047c3b0b42bd | {
"language": "Batchfile"
} | ```batchfile
@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 VS120COMN... | ```batchfile
@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 VS120COMN... |
6cf2c95f-d83b-4056-af36-9b13bcd96e13 | {
"language": "Batchfile"
} | ```batchfile
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... | ```batchfile
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... |
1d9c6244-9c68-4ecf-8ba9-28025acc0b28 | {
"language": "Batchfile"
} | ```batchfile
:: 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 ... | ```batchfile
:: 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 B... |
36845719-5f65-4df6-9f14-5c8045243175 | {
"language": "BitBake"
} | ```bitbake
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
PAC... | ```bitbake
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 i... |
0e3f8109-e12f-49f5-83ad-b574d40c22bf | {
"language": "BitBake"
} | ```bitbake
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 = ... | ```bitbake
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_MOD... |
8f0308f2-f839-4c2a-b314-922c0b0bdc56 | {
"language": "BitBake"
} | ```bitbake
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;protoc... | ```bitbake
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.sako... |
9e8637dc-8045-413c-8352-3a5e4a27148e | {
"language": "BitBake"
} | ```bitbake
DESCRIPTION = "A small image just capable of allowing a device to boot."
IMAGE_INSTALL = "packagegroup-core-boot ${ROOTFS_PKGMANAGE_BOOTSTRAP} ${CORE_IMAGE_EXTRA_INSTALL} libusb1 mochad "
IMAGE_LINGUAS = " "
LICENSE = "MIT"
inherit core-image
IMAGE_ROOTFS_SIZE = "8192"
```
Fix Image Creation issue : I... | ```bitbake
DESCRIPTION = "A small image just capable of allowing a device to boot."
IMAGE_INSTALL = "packagegroup-core-boot ${ROOTFS_PKGMANAGE_BOOTSTRAP} ${CORE_IMAGE_EXTRA_INSTALL} libusb1 mochad "
IMAGE_LINGUAS = " "
LICENSE = "MIT"
inherit core-image
IMAGE_ROOTFS_SIZE = "16384"
``` |
32aa3781-b6e7-405e-a199-7c2684cdabf7 | {
"language": "BitBake"
} | ```bitbake
require u-boot-ti.inc
PR = "r29"
BRANCH = "ti-u-boot-2020.01"
SRCREV = "df5e46d817182dcbd52212a7ff3c31eb20398dbe"
```
Update to the latest commit | ```bitbake
require u-boot-ti.inc
PR = "r30"
BRANCH = "ti-u-boot-2020.01"
SRCREV = "84b608fd3489c8dd93d8eb20e7f005d967b88402"
``` |
50396535-becb-4689-95f4-de7eb57d8b0d | {
"language": "BitBake"
} | ```bitbake
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 = "c3... | ```bitbake
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 = "c3... |
e23d18ab-d9c6-427d-ac19-fe5c184097dd | {
"language": "BitBake"
} | ```bitbake
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-not... | ```bitbake
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"
PACKA... |
7e01f7ca-49ec-476d-927b-01d863da6a3e | {
"language": "BitBake"
} | ```bitbake
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 \
... | ```bitbake
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 \
... |
0c244ff8-37f9-412f-ad79-07228835d3c7 | {
"language": "BitBake"
} | ```bitbake
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}${THUMBNAI... | ```bitbake
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() {... |
637faaa3-6271-4884-bfba-d985aa814cab | {
"language": "BitBake"
} | ```bitbake
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 \
"
```
Add ota-plus client and provision... | ```bitbake
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 \
"
``` |
51e95f46-e207-4bba-806d-5287cc29bec4 | {
"language": "BitBake"
} | ```bitbake
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 ... | ```bitbake
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 ... |
5fc14683-7735-4886-9da4-94a3092cc7ed | {
"language": "BitBake"
} | ```bitbake
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://gitoriou... | ```bitbake
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://gitoriou... |
d1c1c082-d547-44fa-bbad-40efe34bca7e | {
"language": "BitBake"
} | ```bitbake
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} \
--p... | ```bitbake
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_R... |
2a78e2a6-1d9e-4352-a4d3-24f024b9e104 | {
"language": "BitBake"
} | ```bitbake
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 setupt... | ```bitbake
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 set... |
3279d3d1-238a-4c6d-acd0-91684d6c1851 | {
"language": "BitBake"
} | ```bitbake
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}"
```
Change RDEPENDS to make sure gpe-contacts-hildon doesn't pull in gpe-icon... | ```bitbake
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}"
``` |
c0cd16dd-50d8-4a79-a666-4fde9d513d9e | {
"language": "BitBake"
} | ```bitbake
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,... | ```bitbake
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,... |
3bf9edb9-fa8e-4a9b-a8f9-4fcd0a7390b6 | {
"language": "BitBake"
} | ```bitbake
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 = " \
... | ```bitbake
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 = " \
... |
a9a5503a-38e3-44cd-9a54-4fd51b685b1f | {
"language": "BitBake"
} | ```bitbake
require u-boot-ti.inc
PR = "r28"
BRANCH = "ti-u-boot-2020.01"
SRCREV = "71ba4a5f933a1f03e8bb72d487a62a877c2135ff"
```
Update to the latest commit | ```bitbake
require u-boot-ti.inc
PR = "r29"
BRANCH = "ti-u-boot-2020.01"
SRCREV = "df5e46d817182dcbd52212a7ff3c31eb20398dbe"
``` |
3d885a0c-a54e-4f14-a240-5a2a2c4bc3a0 | {
"language": "BitBake"
} | ```bitbake
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-firmwa... | ```bitbake
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} \
linu... |
d771f245-1398-4ed5-b9b4-5262efcd3527 | {
"language": "BitBake"
} | ```bitbake
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 \... | ```bitbake
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 \... |
31a9d565-b94d-4ff5-b1ab-673a850c6b28 | {
"language": "BitBake"
} | ```bitbake
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 =... | ```bitbake
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 =... |
e7f8572e-8b38-4e40-8554-a4ec48e425d0 | {
"language": "BitBake"
} | ```bitbake
DESCRIPTION = "Packages for Amazon Web Services."
LICENSE = "MIT"
inherit packagegroup
RDEPENDS_${PN} = "\
aws-iot-device-sdk-embedded-c \
aws-iot-device-sdk-embedded-c-dev \
python-aws-iot-device-sdk \
python-aws-iot-device-sdk-samples \
aws-iot-device-sdk-java \
python-awscli \
"
PR = "r0"
PACKAG... | ```bitbake
DESCRIPTION = "Packages for Amazon Web Services."
LICENSE = "MIT"
inherit packagegroup
RDEPENDS_${PN} = "\
aws-iot-device-sdk-embedded-c \
aws-iot-device-sdk-embedded-c-dev \
python-aws-iot-device-sdk \
python-aws-iot-device-sdk-samples \
aws-iot-device-sdk-java \
node-aws-iot-device-sdk-js \
python... |
5c06a7f7-0a33-415a-8c75-a01a96941cf9 | {
"language": "BitBake"
} | ```bitbake
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... | ```bitbake
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... |
c2b671e8-0360-4526-90c7-e4cf6a65a01c | {
"language": "BitBake"
} | ```bitbake
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... | ```bitbake
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... |
63c5d64e-588d-493e-9773-49403539b323 | {
"language": "BitBake"
} | ```bitbake
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[sha... | ```bitbake
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[sha... |
35cf1dec-ff8f-46c2-9224-62e6ac3de683 | {
"language": "BitBake"
} | ```bitbake
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_appen... | ```bitbake
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_appen... |
1776366b-d148-4632-92c9-7c98b42601c3 | {
"language": "BitBake"
} | ```bitbake
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"
inher... | ```bitbake
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://me... |
cbb49bec-ac09-456f-aa66-9c4ddeecc4ec | {
"language": "BitBake"
} | ```bitbake
#
# 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 "
```
Add Qt tools to SDK for QtAuto neptune image | ```bitbake
#
# 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 "
``` |
0b06f6ef-29e6-47bc-a5de-8867e4755e15 | {
"language": "BitBake"
} | ```bitbake
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
INH... | ```bitbake
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
INH... |
7fd713cd-ac3b-42f2-834e-14a3471a91cb | {
"language": "BitBake"
} | ```bitbake
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 ?=... | ```bitbake
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 ?=... |
f6c338f7-c7f0-4fb5-a87e-1968433fa442 | {
"language": "BitBake"
} | ```bitbake
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.c... | ```bitbake
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
... |
f5ce87fc-7cef-4062-8232-f64361902afa | {
"language": "BitBake"
} | ```bitbake
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 = "... | ```bitbake
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 = "... |
b498c352-c72b-4b66-b446-d43eb5803a24 | {
"language": "BitBake"
} | ```bitbake
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 = "g... | ```bitbake
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"
DE... |
36419839-4c66-46f7-9b5b-d9fb5e3e5f71 | {
"language": "BitBake"
} | ```bitbake
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 set... | ```bitbake
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 set... |
1307e844-ab53-4d61-8976-b08d55896744 | {
"language": "BitBake"
} | ```bitbake
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 sup... | ```bitbake
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-boo... |
bc1b7e80-26e3-4ae6-a7bd-748639586a6e | {
"language": "BitBake"
} | ```bitbake
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}/icon... | ```bitbake
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}/ic... |
95c744ac-a3b1-4bd5-8596-f760e6f9fd4d | {
"language": "BitBake"
} | ```bitbake
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://0... | ```bitbake
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://0... |
bda97d43-b4a7-44df-9caf-49e292fd0c5d | {
"language": "BitBake"
} | ```bitbake
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 = "37a52f48e... | ```bitbake
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
SRCR... |
b47d52b3-da57-49c1-acf3-09a954d43bd9 | {
"language": "BitBake"
} | ```bitbake
require libgpg-error.inc
PR = "${INC_PR}.1"
SRC_URI[md5sum] = "86e60e9a03205fb706e99be101a2387e"
SRC_URI[sha256sum] = "fff67ec5ffc93cf91fc62350a19a9f677c9bc6eb2730395d22f9d40c754ed619"
```
Update LICENSE field version to GPLv2 and LGPLv2.1 | ```bitbake
require libgpg-error.inc
LICENSE = "GPLv2 LGPLv2.1"
PR = "${INC_PR}.2"
SRC_URI[md5sum] = "86e60e9a03205fb706e99be101a2387e"
SRC_URI[sha256sum] = "fff67ec5ffc93cf91fc62350a19a9f677c9bc6eb2730395d22f9d40c754ed619"
``` |
eafcb689-f0bb-4a3a-bf62-d098cfc7b7b8 | {
"language": "BitBake"
} | ```bitbake
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 forw... | ```bitbake
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 forw... |
10bdec35-4f83-4558-8585-c84c22491468 | {
"language": "BitBake"
} | ```bitbake
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.... | ```bitbake
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://gi... |
158efd6f-5b1f-41de-a3e8-6147e1a63624 | {
"language": "BitBake"
} | ```bitbake
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 \
... | ```bitbake
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 \
... |
8084ea67-748c-4565-a3cc-70fc2fb80d3d | {
"language": "BitBake"
} | ```bitbake
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 t... | ```bitbake
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=866cdc7459d91e092b1743... |
3ca20676-3158-459b-8191-76ae9b427a40 | {
"language": "BitBake"
} | ```bitbake
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-va... | ```bitbake
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} = "... |
83a40d39-085b-4acd-810d-462cd4ff7056 | {
"language": "BitBake"
} | ```bitbake
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 "
```
Upgrade to SVN snapshot 4495. Changed SVN URI to http (https does not work). | ```bitbake
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 "
``` |
68b07272-25d8-4f80-8de6-8997d1cf7fac | {
"language": "BitBake"
} | ```bitbake
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 \
${P... | ```bitbake
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 \
$... |
c7345aff-1087-4597-bade-75fe477951b9 | {
"language": "BitBake"
} | ```bitbake
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}:"
```
Update SRCREV and Version to 5.15.36 | ```bitbake
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}:"
``` |
092e57e4-49a9-4adf-9440-f781e26cf9b9 | {
"language": "BitBake"
} | ```bitbake
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 \
... | ```bitbake
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_V... |
cde0e536-ab0c-4143-b771-2f40d664b713 | {
"language": "BitBake"
} | ```bitbake
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"
```
Revert "libdwarf: ship heade... | ```bitbake
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"
``` |
33581187-ba9e-4ec8-b871-24133d182081 | {
"language": "BitBake"
} | ```bitbake
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=h... | ```bitbake
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;protoco... |
cca3b6b4-c15a-4b9a-a4ce-68b1f20e0bf0 | {
"language": "BitBake"
} | ```bitbake
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] = "048348d8cfe0b5d0bba2f4d835005... | ```bitbake
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] = "048348d8cfe0b5d0bba2f4d835005... |
bbb126f6-59b1-46e7-89a6-b37e4dbf83d4 | {
"language": "BitBake"
} | ```bitbake
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}"
SRCR... | ```bitbake
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 = "5c28d4765ce7de57702f4f... |
71c937a3-33a5-450d-9352-1af0e52a2ebe | {
"language": "BitBake"
} | ```bitbake
SUMMARY = "Support packages for MagOS"
LICENSE = "MIT"
PR = "r0"
PACKAGE_ARCH = "${MACHINE_ARCH}"
inherit packagegroup
RDEPENDS_${PN} = " \
lsb \
lsbinitscripts \
openssh \
tzcode \
usbutils \
"
```
Add bluez-noinst-tools to the image. | ```bitbake
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 \
"
``` |
a3f461a7-da33-4ba3-9f5b-c042a7534770 | {
"language": "BitBake"
} | ```bitbake
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... | ```bitbake
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... |
1e0b4ad3-ca90-4a52-8b7d-7d8fc13c4a57 | {
"language": "BitBake"
} | ```bitbake
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_... | ```bitbake
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_En... |
525b395b-592e-4463-b6c1-95ae31c673c8 | {
"language": "BitBake"
} | ```bitbake
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"
SRC... | ```bitbake
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"
SRC... |
dc045557-2122-47bd-889a-14268fa2737e | {
"language": "BitBake"
} | ```bitbake
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] = "62bfce3f678f9347a19c766944e8aef7b89bc32... | ```bitbake
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] = "62bfce3f... |
dc9d6c42-a8cf-422f-a740-deb503a61530 | {
"language": "BitBake"
} | ```bitbake
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 sup... | ```bitbake
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 sup... |
503ea597-f1b0-4ab0-865c-bfa214e094b1 | {
"language": "BitBake"
} | ```bitbake
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[archi... | ```bitbake
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[archi... |
8a9c9dfa-910c-42ad-8074-8369fd29d44e | {
"language": "BitBake"
} | ```bitbake
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_... | ```bitbake
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_sy... |
17b98869-604e-4e03-8b8e-214f939443ea | {
"language": "BitBake"
} | ```bitbake
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... | ```bitbake
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;pro... |
6299c832-ca12-4976-a39e-ca3f33bb0e71 | {
"language": "BitBake"
} | ```bitbake
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.c... | ```bitbake
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.c... |
a1d683a5-2e97-45ad-9491-ca2ac0303c5f | {
"language": "BitBake"
} | ```bitbake
DESCRIPTION = "Edje is a complex graphical design & layout library."
# can also install vim data files
DEPENDS = "virtual/evas virtual/ecore eet embryo edje-native virtual/imlib2"
LICENSE = "MIT"
PR = "r3"
PACKAGES += "edje-utils"
FILES_edje-utils += "${bindir} ${datadir}/edje/data/template ${datadir}/edje/... | ```bitbake
DESCRIPTION = "Edje is a complex graphical design & layout library."
# can also install vim data files
DEPENDS = "virtual/evas virtual/ecore eet embryo edje-native virtual/imlib2"
LICENSE = "MIT"
PR = "r4"
PACKAGES = "edje-utils"
FILES_edje-utils = "${bindir}/edje ${bindir}/edje_* ${datadir}/edje/data/templ... |
e5efc972-127b-4ce5-88b5-872c79d87997 | {
"language": "BitBake"
} | ```bitbake
# 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 = "Re... | ```bitbake
# 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 = "Re... |
596dd89f-5831-464a-a774-ea4abeaffe18 | {
"language": "BitBake"
} | ```bitbake
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 += " \
... | ```bitbake
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 += " \
... |
5b956259-2fb3-40ad-ad1a-76189f284c75 | {
"language": "BitBake"
} | ```bitbake
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_s... | ```bitbake
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
... |
f881585e-8c87-4c1a-8e26-1a1f126aeb4d | {
"language": "BitBake"
} | ```bitbake
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... | ```bitbake
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... |
2f3513b7-6847-4b86-96ca-016c92970dd9 | {
"language": "BitBake"
} | ```bitbake
# 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=3f7041e5... | ```bitbake
# 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=3f7041e5... |
79919145-d15a-49f7-84b2-d234b298afaa | {
"language": "BitBake"
} | ```bitbake
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] = "62bfce3f678f9347a19c766944e8aef7b89bc32... | ```bitbake
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] = "62bfce3f... |
e054ccc4-3a07-4b0c-a8e2-afff0e50d592 | {
"language": "BitBake"
} | ```bitbake
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() {
}
```
Dis... | ```bitbake
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_compi... |
d55ede85-7421-4533-b810-aa2a833bc857 | {
"language": "BitBake"
} | ```bitbake
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};protoco... | ```bitbake
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;modul... |
27c47012-4b4d-4882-8bb1-596250742976 | {
"language": "BitBake"
} | ```bitbake
#
# Copyright (C) 2015 Pelagicore AB
# All rights reserved.
#
DESCRIPTION = "dLeyna Server"
DEPENDS = "dleyna-core"
EXTRA_OECONF += " --enable-never-quit "
require dleyna-git.inc
inherit systemd
SRCREV = "b5394e2be1cfaefe1f442a7cacc1c3a1f0c1c1ff"
SRC_URI += "file://dleyna.service"
SYSTEMD_SERVICE_${PN}... | ```bitbake
#
# Copyright (C) 2015 Pelagicore AB
# All rights reserved.
#
DESCRIPTION = "dLeyna Server"
DEPENDS = "dleyna-core"
EXTRA_OECONF += " --enable-never-quit --enable-debug"
require dleyna-git.inc
inherit systemd
SRCREV = "b5394e2be1cfaefe1f442a7cacc1c3a1f0c1c1ff"
SRC_URI += "file://dleyna.service"
SYSTEMD... |
93f9cada-7f16-40a7-b7e0-022f6bf8b03d | {
"language": "BitBake"
} | ```bitbake
LICENSE = "LGPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=5c213a7de3f013310bd272cdb6eb7a24"
inherit kde_cmake kde_rdepends
DEPENDS = "kde-workspace kde-runtime soprano shared-desktop-ontologies kdelibs4 libkactivities4"
RDEPENDS_${PN} = " kde-workspace libkactivities4 plasma-active shared-desktop-ontologi... | ```bitbake
LICENSE = "LGPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=5c213a7de3f013310bd272cdb6eb7a24"
inherit kde_cmake kde_rdepends
DEPENDS = "kde-workspace kde-runtime soprano shared-desktop-ontologies kdelibs4 libkactivities4"
RDEPENDS_${PN} = " kde-workspace libkactivities4 plasma-active shared-desktop-ontologi... |
772fafa4-991f-4a24-9b1a-48976fe3527b | {
"language": "BitBake"
} | ```bitbake
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() {
i... | ```bitbake
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() {
i... |
2cd104d6-8a34-4ca2-accb-85c81e014dc6 | {
"language": "BitBake"
} | ```bitbake
SUMMARY = "Simple DirectMedia Layer truetype font library"
SECTION = "libs"
DEPENDS = "virtual/libsdl2 freetype virtual/libgl"
LICENSE = "Zlib"
LIC_FILES_CHKSUM = "file://COPYING.txt;md5=e98cfd01ca78f683e9d035795810ce87"
SRC_URI = "http://www.libsdl.org/projects/SDL_ttf/release/SDL2_ttf-${PV}.tar.gz \
... | ```bitbake
SUMMARY = "Simple DirectMedia Layer truetype font library"
SECTION = "libs"
DEPENDS = "virtual/libsdl2 freetype virtual/egl"
LICENSE = "Zlib"
LIC_FILES_CHKSUM = "file://COPYING.txt;md5=e98cfd01ca78f683e9d035795810ce87"
SRC_URI = "http://www.libsdl.org/projects/SDL_ttf/release/SDL2_ttf-${PV}.tar.gz \
... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.