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#issuecomment-203577297
:: ref: https://github.com/conda-forge/libsodium-feedstock/commit/b411740e0f439d5a5d257f74f74945f86585684a#diff-d04c86b6bb20341f5f7c53165501a393R12
:: ref: https://stackoverflow.com/q/2709279
::
:: Also there is some bug using MSBuild from .NET to build with VS 2008 64-bit, which
:: we workaround as well.
::
:: ref: https://social.msdn.microsoft.com/Forums/vstudio/en-US/19bb86ab-258a-40a9-b9fc-3bf36cac46bc/team-build-error-msb4018-the-quotresolvevcprojectoutputquot-task-failed-unexpectedly?forum=tfsbuild
if %VS_MAJOR% == 9 (
set "PATH=C:\Windows\Microsoft.NET\Framework\v4.0.30319;%PATH%"
set VC_PROJECT_ENGINE_NOT_USING_REGISTRY_FOR_INIT=1
)
%PYTHON% -m pip install . -vv
| %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_HOME%"
)
pushd "%WORKON_HOME%\%1" 2>NUL && popd
@if not errorlevel 1 (
echo.
echo virtualenv "%1" already exists
echo.
goto end
)
virtualenv.exe "%WORKON_HOME%\%1"
REM Add unsetting of VIRTUAL_ENV to deactivate.bat
echo set VIRTUAL_ENV=>>"%WORKON_HOME%\%1\Scripts\deactivate.bat"
ENDLOCAL & "%WORKON_HOME%\%1\Scripts\activate.bat"
echo.
:END
| @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 1 (
mkdir "%WORKON_HOME%"
)
pushd "%WORKON_HOME%\%ENVNAME%" 2>NUL && popd
@if not errorlevel 1 (
echo.
echo virtualenv "%ENVNAME" already exists
echo.
goto end
)
pushd "%WORKON_HOME%"
virtualenv.exe %*
popd
REM Add unsetting of VIRTUAL_ENV to deactivate.bat
echo set VIRTUAL_ENV=>>"%WORKON_HOME%\%ENVNAME%\Scripts\deactivate.bat"
ENDLOCAL & "%WORKON_HOME%\%ENVNAME%\Scripts\activate.bat"
echo.
goto END
:END |
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\salt64.exe /S
:: /master=<yoursaltmaster> /minion-name=<thisminionname>
<nul set /p ".=;C:\salt" >> C:\Windows\Temp\PATH
set /p PATH=<C:\Windows\Temp\PATH
setx PATH "%PATH%" /m
| |
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 ^
-o .shake/build
@set shakeArgs=--lint ^
--directory ^
".." ^
%*
@ghc %ghcArgs% && .shake\build %shakeArgs%
|
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_INSTALL_PREFIX:PATH="%LIBRARY_PREFIX%" ^
-DBUILD_DOCUMENTATION:BOOL=OFF ^
-DVCOMP_WORKAROUND=OFF ^
"%SRC_DIR%"
if errorlevel 1 exit rem 1
cmake --build . --target install --config %CMAKE_CONFIG%
if errorlevel 1 exit 1
popd
| 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_INSTALL_PREFIX:PATH="%LIBRARY_PREFIX%" ^
-DBUILD_DOCUMENTATION:BOOL=OFF ^
-DVCOMP_WORKAROUND=OFF ^
-DENABLE_PACKAGING:BOOL=OFF ^
"%SRC_DIR%"
if errorlevel 1 exit rem 1
cmake --build . --target install --config %CMAKE_CONFIG%
if errorlevel 1 exit 1
popd
|
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 ^> Testing default
multirust default nightly || (echo FAILED && exit /b 1)
echo ^> Testing rustc
rustc --multirust || (echo FAILED && exit /b 1)
echo ^> Testing cargo
cargo --multirust || (echo FAILED && exit /b 1)
echo ^> Testing override
multirust override i686-msvc-stable || (echo FAILED && exit /b 1)
echo ^> Testing update
multirust update || (echo FAILED && exit /b 1)
echo ^> Testing uninstall
multirust uninstall -y || (echo FAILED && exit /b 1)
echo ^> Finished
| @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 ^> Testing default
multirust default nightly || (echo FAILED && exit /b 1)
echo ^> Testing rustc
call rustc --multirust || (echo FAILED && exit /b 1)
echo ^> Testing cargo
call cargo --multirust || (echo FAILED && exit /b 1)
echo ^> Testing override
multirust override i686-msvc-stable || (echo FAILED && exit /b 1)
echo ^> Testing update
multirust update || (echo FAILED && exit /b 1)
echo ^> Testing uninstall
multirust uninstall -y || (echo FAILED && exit /b 1)
echo ^> Finished
|
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 exist "%NuGetExe%" (
echo Downloading NuGet %NuGetExeVersion%
powershell -noprofile -executionPolicy RemoteSigned -file "%~dp0download-nuget.ps1" "%NuGetExeVersion%" "%NuGetExeFolder%" || goto :DownloadNuGetFailed
)
| @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 exist "%NuGetExe%" (
echo Downloading NuGet %NuGetExeVersion%
powershell -noprofile -executionPolicy Bypass -file "%~dp0download-nuget.ps1" "%NuGetExeVersion%" "%NuGetExeFolder%" || goto :DownloadNuGetFailed
)
|
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 contents...
start "ignored but required placeholder window title argument" buildlog.txt
@echo .
@echo ..
@echo ...
@echo ************************
@echo Build Complete!
@echo ************************
@echo End Time: %time%
@echo
| |
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
%WITH_COMPILER% python setup.py build
pip install twine
) | 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_COMPILER% python setup.py build
pip install twine
)
|
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:\git\bin\git.exe reset --hard
C:\git\bin\git.exe fetch --tags
C:\git\bin\git.exe checkout $GITSHA
C:\git\bin\curl -L http://downloads.sourceforge.net/sevenzip/7z920.msi ^> C:\7z.msi
msiexec /i C:\7z.msi /quiet /qn /norestart
set PATH=^%PATH^%;"C:\Program Files\7-Zip"
ping -n 4 127.0.0.1 ^> nul
powershell "Set-ExecutionPolicy ByPass"
.\meteor.bat --help ^> nul 2^>^&^1 || echo "First npm failure is expected"
cd C:\tmp\meteor\packages\meteor-tool
set METEOR_SESSION_FILE=C:\meteor-session
..\..\meteor.bat publish --existing-version
| 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:\git\bin\git.exe reset --hard
C:\git\bin\git.exe fetch --tags
C:\git\bin\git.exe checkout $GITSHA
C:\git\bin\curl -L http://downloads.sourceforge.net/sevenzip/7z920.msi ^> C:\7z.msi
msiexec /i C:\7z.msi /quiet /qn /norestart
set PATH=^%PATH^%;"C:\Program Files\7-Zip"
ping -n 4 127.0.0.1 ^> nul
powershell "Set-ExecutionPolicy ByPass"
.\meteor.bat --help ^> nul 2^>^&^1 || echo "First npm failure is expected"
cd C:\tmp\meteor\packages\meteor-tool
set METEOR_SESSION_FILE=C:\meteor-session
..\..\meteor.bat publish --existing-version ^> C:\log.txt 2^>^&^1 ^|^| type C:\log.txt
|
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 1 (
mkdir "%WORKON_HOME%"
)
pushd "%WORKON_HOME%\%ENVNAME%" 2>NUL && popd
@if not errorlevel 1 (
echo.
echo virtualenv "%ENVNAME" already exists
echo.
goto end
)
pushd "%WORKON_HOME%"
virtualenv.exe %*
popd
REM Add unsetting of VIRTUAL_ENV to deactivate.bat
echo set VIRTUAL_ENV=>>"%WORKON_HOME%\%ENVNAME%\Scripts\deactivate.bat"
ENDLOCAL & "%WORKON_HOME%\%ENVNAME%\Scripts\activate.bat"
echo.
goto END
:END | @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_HOME%"
)
pushd "%WORKON_HOME%\%1" 2>NUL && popd
@if not errorlevel 1 (
echo.
echo virtualenv "%1" already exists
echo.
goto end
)
virtualenv.exe "%WORKON_HOME%\%1"
REM Add unsetting of VIRTUAL_ENV to deactivate.bat
echo set VIRTUAL_ENV=>>"%WORKON_HOME%\%1\Scripts\deactivate.bat"
ENDLOCAL & "%WORKON_HOME%\%1\Scripts\activate.bat"
echo.
:END
|
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 = %OutputFolder%
@echo Performing Sonar post-processing...
@%~dp0\Sonar.TeamBuild.PostProcessor.exe
@echo Generating Sonar properties file to %OutputFolder% ...
@%~dp0\SonarProjectPropertiesGenerator.exe %ProjectKey% %ProjectName% %ProjectVersion% %OutputFolder%
@echo ...done.
@echo Calling SonarRunner...
@sonar-runner
@echo ...done.
| @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 = %OutputFolder%
@echo Performing Sonar post-processing...
@%~dp0\Sonar.TeamBuild.PostProcessor.exe
@echo Generating Sonar properties file to %OutputFolder% ...
@%~dp0\SonarProjectPropertiesGenerator.exe %ProjectKey% %ProjectName% %ProjectVersion% "%OutputFolder%"
@echo ...done.
@echo Calling SonarRunner...
@sonar-runner
@echo ...done.
|
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%\BetterDiscord
:: Remove BetterDiscord from all app versions
for /d %%G in ("%localappdata%\Discord\app-*") do (
call:deleteFolder "%%G\resources\node_modules\BetterDiscord"
call:deleteFolder "%%G\resources\app"
SET latestDiscordVersion=%%G
)
goto:end
:: Checks whether a folder exists and deletes it if it does
:deleteFolder
if exist "%~1" (
@RD /S /Q "%~1"
echo Folder "%~1" removed.
) else (
echo Folder "%~1" does not exist.
)
goto:eof
:end
echo.
echo Restarting Discord...
taskkill /f /im Discord.exe 1>nul 2>nul
"%localappdata%\Discord\Update.exe" --processStart Discord.exe
echo.
echo BetterDiscord has been removed!
echo.
pause | @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%\BetterDiscord
:: Remove BetterDiscord from all app versions
for /d %%G in ("%localappdata%\Discord\app-*") do (
call:deleteFolder "%%G\resources\node_modules\BetterDiscord"
call:deleteFolder "%%G\resources\app"
)
goto:end
:: Checks whether a folder exists and deletes it if it does
:deleteFolder
if exist "%~1" (
@RD /S /Q "%~1"
echo Folder "%~1" removed.
) else (
echo Folder "%~1" does not exist.
)
goto:eof
:end
echo.
echo Restarting Discord...
taskkill /f /im Discord.exe 1>nul 2>nul
"%localappdata%\Discord\Update.exe" --processStart Discord.exe
echo.
echo BetterDiscord has been removed!
echo.
pause
|
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.yml:test section
REM because it won't be run in the build directory.
ctest --build-config Release --output-on-failure
| 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.yml:test section
REM because it won't be run in the build directory.
ctest --build-config Release --output-on-failure
|
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 there is a space in the path. i.e. "C:\Program Files\iTunes\iTunes.exe"
:: Tell iTunes to open and add file to library
(start "C:\Program Files\iTunes\iTunes.exe" %var2%)
| |
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\SonarProjectPropertiesGenerator.exe %ProjectKey% %ProjectName% %ProjectVersion% "%OutputFolder%"
@echo ...done.
@echo Calling SonarRunner...
@sonar-runner
@echo ...done.
| @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\SonarProjectPropertiesGenerator.exe %ProjectKey% %ProjectName% %ProjectVersion% "%OutputFolder%"
@echo ...done.
@echo Calling SonarRunner...
cd "%OutputFolder"
@sonar-runner
@echo ...done.
|
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 = %OutputFolder%
@echo Performing Sonar post-processing...
@%~dp0\Sonar.TeamBuild.PostProcessor.exe
@echo Generating Sonar properties file to %OutputFolder% ...
@%~dp0\SonarProjectPropertiesGenerator.exe %ProjectKey% %ProjectName% %ProjectVersion% "%OutputFolder%"
@echo ...done.
@echo Calling SonarRunner...
@sonar-runner
@echo ...done.
| @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\SonarProjectPropertiesGenerator.exe %ProjectKey% %ProjectName% %ProjectVersion% "%OutputFolder%"
@echo ...done.
@echo Calling SonarRunner...
@sonar-runner
@echo ...done.
|
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 %counter% GEQ %attempts% goto :lastError
goto retry
:lastError
popd
echo An error has occured during npm install.
exit /b 1
:end
popd
echo Finished successfully.
exit /b 0
| @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 %counter% GEQ %attempts% goto :lastError
goto retry
:lastError
popd
echo An error has occured during npm install.
exit /b 1
:end
popd
echo Finished successfully.
exit /b 0
|
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-arbiter c:\shinken\windows\bin\shinken-arbiter.py
move /Y c:\shinken\windows\bin\shinken-broker c:\shinken\windows\bin\shinken-broker.py
c:\shinken\windows\instsrv.exe "Shinken-Arbiter" "c:\shinken\windows\srvany.exe"
c:\shinken\windows\instsrv.exe "Shinken-Scheduler" "c:\shinken\windows\srvany.exe"
c:\shinken\windows\instsrv.exe "Shinken-Poller" "c:\shinken\windows\srvany.exe"
c:\shinken\windows\instsrv.exe "Shinken-Reactionner" "c:\shinken\windows\srvany.exe"
c:\shinken\windows\instsrv.exe "Shinken-Broker" "c:\shinken\windows\srvany.exe"
| 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:\shinken\bin\shinken-broker c:\shinken\bin\shinken-broker.py
c:\shinken\windows\instsrv.exe "Shinken-Arbiter" "c:\shinken\windows\srvany.exe"
c:\shinken\windows\instsrv.exe "Shinken-Scheduler" "c:\shinken\windows\srvany.exe"
c:\shinken\windows\instsrv.exe "Shinken-Poller" "c:\shinken\windows\srvany.exe"
c:\shinken\windows\instsrv.exe "Shinken-Reactionner" "c:\shinken\windows\srvany.exe"
c:\shinken\windows\instsrv.exe "Shinken-Broker" "c:\shinken\windows\srvany.exe"
|
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\%Configuration%\msbuild.log;verbosity=normal %*
powershell -noprofile -executionpolicy bypass -file build\postbuild.ps1 -configuration %Configuration% | @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\bin\MSBuild.exe" /nologo /m /v:m /nr:false /flp:logfile=bin\%Configuration%\msbuild.log;verbosity=normal %*
powershell -noprofile -executionpolicy bypass -file build\postbuild.ps1 -configuration %Configuration% |
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 (
if not defined VS140COMNTOOLS (
echo Error: build.cmd should be run from a Visual Studio 2013 or 2015 Command Prompt.
echo Please see https://github.com/dotnet/corefx/wiki/Developer%%20Guide for build instructions.
exit /b 1
)
)
:: Log build command line
set _buildprefix=echo
set _buildpostfix=^> "%~dp0msbuild.log"
call :build %*
:: Build
set _buildprefix=
set _buildpostfix=
call :build %*
goto :AfterBuild
:build
%_buildprefix% msbuild "%~dp0build.proj" /nologo /maxcpucount /verbosity:minimal /nodeReuse:false /fileloggerparameters:Verbosity=diag;LogFile="%~dp0msbuild.log";Append %* %_buildpostfix%
set BUILDERRORLEVEL=%ERRORLEVEL%
goto :eof
:AfterBuild
echo.
:: Pull the build summary from the log file
findstr /ir /c:".*Warning(s)" /c:".*Error(s)" /c:"Time Elapsed.*" "%~dp0msbuild.log"
echo Build Exit Code = %BUILDERRORLEVEL%
exit /b %BUILDERRORLEVEL% | @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 (
if not defined VS140COMNTOOLS (
echo Error: build.cmd should be run from a Visual Studio 2013 or 2015 Command Prompt.
echo Please see https://github.com/dotnet/corefx/wiki/Developer-Guide for build instructions.
exit /b 1
)
)
:: Log build command line
set _buildprefix=echo
set _buildpostfix=^> "%~dp0msbuild.log"
call :build %*
:: Build
set _buildprefix=
set _buildpostfix=
call :build %*
goto :AfterBuild
:build
%_buildprefix% msbuild "%~dp0build.proj" /nologo /maxcpucount /verbosity:minimal /nodeReuse:false /fileloggerparameters:Verbosity=diag;LogFile="%~dp0msbuild.log";Append %* %_buildpostfix%
set BUILDERRORLEVEL=%ERRORLEVEL%
goto :eof
:AfterBuild
echo.
:: Pull the build summary from the log file
findstr /ir /c:".*Warning(s)" /c:".*Error(s)" /c:"Time Elapsed.*" "%~dp0msbuild.log"
echo Build Exit Code = %BUILDERRORLEVEL%
exit /b %BUILDERRORLEVEL% |
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 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 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" && git push || git checkout master
|
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
SET OUTPUT_DIRECTORY=.
SET HIVE_ROOT=%ProgramFiles(x86)%\Windows Kits\10\CoreSystem\10.0.10586.0\%BSP_ARCH%
SET WIM_ROOT=%ProgramFiles(x86)%\Windows Kits\10\CoreSystem\10.0.10586.0\%BSP_ARCH%
:: The following variables ensure the package is appropriately signed
SET SIGN_OEM=1
SET SIGN_WITH_TIMESTAMP=0
echo Creating Driver Package
"%KITSROOT%\Tools\bin\i386\pkggen.exe" HidDriver.%BSP_ARCH%.pkg.xml /config:"%PKG_CONFIG_XML%" /output:"%OUTPUT_DIRECTORY%" /version:%BSP_VERSION% /build:fre /cpu:%BSP_ARCH% /variables:"HIVE_ROOT=%HIVE_ROOT%;WIM_ROOT=%WIM_ROOT%;_RELEASEDIR=%OUTPUT_DIRECTORY%\;"
| :: 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
SET OUTPUT_DIRECTORY=.
SET HIVE_ROOT=%ProgramFiles(x86)%\Windows Kits\10\CoreSystem\10.0.14393.0\%BSP_ARCH%
SET WIM_ROOT=%ProgramFiles(x86)%\Windows Kits\10\CoreSystem\10.0.14393.0\%BSP_ARCH%
:: The following variables ensure the package is appropriately signed
SET SIGN_OEM=1
SET SIGN_WITH_TIMESTAMP=0
echo Creating Driver Package
"%KITSROOT%Tools\bin\i386\pkggen.exe" HidDriver.%BSP_ARCH%.pkg.xml /config:"%PKG_CONFIG_XML%" /output:"%OUTPUT_DIRECTORY%" /version:%BSP_VERSION% /build:fre /cpu:%BSP_ARCH% /nohives
|
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 =+ "freedesktop-mime-info"
FILES_freedesktop-mime-info = "${datadir}/mime/packages/freedesktop.org.xml"
RDEPENDS_freedesktop-mime-info = "shared-mime-info"
SRC_URI[md5sum] = "01d72161f7d88123fbccd378871f02f0"
SRC_URI[sha256sum] = "1c247e03418d6b90bcbc0da6c1abe6ac9cd5bacf9c3a2f3b6105376cf7b0eed8"
| 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 automagically
PACKAGES =+ "freedesktop-mime-info"
FILES_freedesktop-mime-info = "${datadir}/mime/packages/freedesktop.org.xml"
RDEPENDS_freedesktop-mime-info = "shared-mime-info"
SRC_URI[md5sum] = "01d72161f7d88123fbccd378871f02f0"
SRC_URI[sha256sum] = "1c247e03418d6b90bcbc0da6c1abe6ac9cd5bacf9c3a2f3b6105376cf7b0eed8"
|
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-modules-debug"
KERNEL_MODULE_PACKAGE_NAME_PREPEND = "kernel-module-debug"
KERNEL_MODULE_PACKAGE_PREPEND = "${KERNEL_MODULE_PACKAGE_NAME_PREPEND}-%s"
# Force creation of symlink to target file at a relative path
KERNEL_IMAGE_SYMLINK_DEST = "."
# Remove unecessary packages (kernel-vmlinux, kernel-dev) for optional kernel
PACKAGES = "kernel kernel-base kernel-image ${KERNEL_MODULES_META_PACKAGE}"
PKG_kernel = "kernel-debug"
# Remove kernel firmware package (refer to kernel.bbclass)
PACKAGESPLITFUNCS_remove = "split_kernel_packages"
# Subfolder of the same name will be added to FILESEXTRAPATHS and also
# used for nilrt-specific config fragment manipulation during build.
# Provide a unique name for each recipe saved in the same source folder.
KBUILD_FRAGMENTS_LOCATION := "nilrt-debug"
SRC_URI += "file://debug.cfg \
"
| 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_NAME_PREPEND = "kernel-module-debug"
KERNEL_MODULE_PACKAGE_PREPEND = "${KERNEL_MODULE_PACKAGE_NAME_PREPEND}-%s"
# Rename packages to avoid collision with stock kernel package names
PKG_kernel = "kernel-debug"
PKG_kernel-dev = "kernel-dev-debug"
PKG_kernel-vmlinux = "kernel-vmlinux-debug"
# Remove kernel firmware package (refer to kernel.bbclass)
PACKAGESPLITFUNCS_remove = "split_kernel_packages"
# Subfolder of the same name will be added to FILESEXTRAPATHS and also
# used for nilrt-specific config fragment manipulation during build.
# Provide a unique name for each recipe saved in the same source folder.
KBUILD_FRAGMENTS_LOCATION := "nilrt-debug"
SRC_URI += "file://debug.cfg \
"
|
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 \
file://defconfig \
file://${BOOT_SPLASH} \
"
| 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/linux-omap-2.6.git;branch=omap-3.2;protocol=git \
file://defconfig \
file://${BOOT_SPLASH} \
"
|
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 = "c39988855a9d1eb54adadb899b3865304da2cf84"
SRC_URI = "git://github.com/i-scream/libstatgrab.git \
file://linux-proctbl-names-with-spaces.patch \
"
S = "${WORKDIR}/git"
inherit autotools pkgconfig
# libstatgrab-client need the .so present to work :(
FILES_${PN} += "${libdir}/*.so"
INSANE_SKIP_${PN} = "dev-so"
| 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 = "c39988855a9d1eb54adadb899b3865304da2cf84"
SRC_URI = "git://github.com/i-scream/libstatgrab.git \
file://linux-proctbl-names-with-spaces.patch \
"
EXTRA_OECONF = "--without-perl5 --with-mnttab=/proc/mounts"
S = "${WORKDIR}/git"
inherit autotools pkgconfig
# libstatgrab-client need the .so present to work :(
FILES_${PN} += "${libdir}/*.so"
INSANE_SKIP_${PN} = "dev-so"
|
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] = "--enable-startup-notification,--disable-startup-notification,startup-notification"
inherit gnomebase gobject-introspection gtk-doc
SRC_URI[archive.md5sum] = "487938d65d4bfae1f2501052b1bd7492"
SRC_URI[archive.sha256sum] = "1cb03716bc477058dfdf3ebfa4f534de3b13b1aa067fcd064d0b7813291cba72"
inherit distro_features_check
# libxres means x11 only
REQUIRED_DISTRO_FEATURES = "x11"
| 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[startup-notification] = "--enable-startup-notification,--disable-startup-notification,startup-notification"
inherit gnomebase gobject-introspection gtk-doc
SRC_URI[archive.md5sum] = "487938d65d4bfae1f2501052b1bd7492"
SRC_URI[archive.sha256sum] = "1cb03716bc477058dfdf3ebfa4f534de3b13b1aa067fcd064d0b7813291cba72"
inherit distro_features_check
# libxres means x11 only
REQUIRED_DISTRO_FEATURES = "x11"
|
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 = "ffc5f88dcaa20b279a39b537db1c65019003b16d"
PV = "0.9.27+git${SRCPV}"
S = "${WORKDIR}/git"
EXTRA_OECONF = "\
--enable-maintainer-mode \
--disable-gtk-doc \
--with-regex-library=posix \
--with-decimal=gmp \
"
# Rasqal autogen.sh does not work properly, so let OE do the job
do_configure() {
cd ${S}
export NOCONFIGURE="no"; ./autogen.sh
oe_runconf
}
| 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 = "ffc5f88dcaa20b279a39b537db1c65019003b16d"
PV = "0.9.27+git${SRCPV}"
S = "${WORKDIR}/git"
EXTRA_OECONF = "\
--enable-maintainer-mode \
--disable-gtk-doc \
--with-regex-library=posix \
--with-decimal=gmp \
"
# Rasqal autogen.sh does not work properly, so let OE do the job
do_configure() {
cd ${S}
export NOCONFIGURE="no"; ./autogen.sh
oe_runconf
}
PARALLEL_MAKE = "" |
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}
cp -f ${WORKDIR}/result/${THUMBNAIL_FN} ${D}${THUMBNAIL_DIR}
}
FILES_${PN} = "${THUMBNAIL_DIR}/${THUMBNAIL_FN}"
THUMBNAIL_DIR = "${datadir}/assassin/"
THUMBNAIL_FN = "thumbnail.eet"
| 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() {
install -d ${D}${THUMBNAIL_DIR}
cp -f ${WORKDIR}/result/${THUMBNAIL_FN} ${D}${THUMBNAIL_DIR}
}
FILES_${PN} = "${THUMBNAIL_DIR}/${THUMBNAIL_FN}"
THUMBNAIL_DIR = "${datadir}/assassin/"
THUMBNAIL_FN = "thumbnail.eet"
|
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 += "${REFKIT_IMAGE_INDUSTRIAL_EXTRA_FEATURES}"
REFKIT_IMAGE_EXTRA_INSTALL += "${REFKIT_IMAGE_INDUSTRIAL_EXTRA_INSTALL}"
REFKIT_IMAGE_INDUSTRIAL_EXTRA_INSTALL_append = " packagegroup-industrial-robotics"
# Example for customization in local.conf when building
# refkit-image-industrial.bb:
# IMAGE_BASENAME_pn-refkit-image-industrial = "my-refkit-image-reference"
# REFKIT_IMAGE_INDUSTRIAL_EXTRA_INSTALL_append = "my-own-package"
# REFKIT_IMAGE_INDUSTRIAL_EXTRA_FEATURES_append = "dev-pkgs"
# inherit refkit-image
# Currently ROS (genmsg in particular) does not build if usrmerge is
# enabled. As a horrendous kludge, we only inherit refkit-image if
# usrmerge is not among DISTRO_FEATURES, thus letting this image de-
# generate to a NOP if usrmerge is enabled.
#
# Note that we need to also replicate the LICENSE-setting here in
# case refkit-image does not get inherited, otherwise the bitbake
# recipe-parser bails out.
LICENSE = "MIT"
inherit ${@bb.utils.contains('DISTRO_FEATURES', 'usrmerge', \
'', 'refkit-image', d)}
| 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 += "${REFKIT_IMAGE_INDUSTRIAL_EXTRA_FEATURES}"
REFKIT_IMAGE_EXTRA_INSTALL += "${REFKIT_IMAGE_INDUSTRIAL_EXTRA_INSTALL}"
REFKIT_IMAGE_INDUSTRIAL_EXTRA_INSTALL_append = " packagegroup-industrial-robotics"
# Example for customization in local.conf when building
# refkit-image-industrial.bb:
# IMAGE_BASENAME_pn-refkit-image-industrial = "my-refkit-image-reference"
# REFKIT_IMAGE_INDUSTRIAL_EXTRA_INSTALL_append = "my-own-package"
# REFKIT_IMAGE_INDUSTRIAL_EXTRA_FEATURES_append = "dev-pkgs"
inherit refkit-image
|
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_benchmarks/arm_benchmarks.git;protocol=git;branch=${BRANCH}"
S = "${WORKDIR}/git"
PLATFORM_ARCH = "${ARMPKGARCH}"
# Use ARCH format expected by the makefile
PLATFORM_ARCH_omapl138 = "armv5te"
do_compile() {
export CROSS_COMPILE=${TARGET_PREFIX}
# build the release version
make ARCH=${PLATFORM_ARCH} release
}
do_install() {
make ARCH=${PLATFORM_ARCH} DESTDIR=${D} install
}
| 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_benchmarks/arm_benchmarks.git;protocol=git;branch=${BRANCH}"
S = "${WORKDIR}/git"
PLATFORM_ARCH = "${ARMPKGARCH}"
PLATFORM_ARCH_omapl138 = "armv5te"
do_compile() {
export CROSS_COMPILE=${TARGET_PREFIX}
# build the release version
oe_runmake -C ${PLATFORM_ARCH} release
}
do_install() {
oe_runmake -C ${PLATFORM_ARCH} DESTDIR=${D} install
}
|
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-prefix=${TARGET_PREFIX}"
PR = "r3"
FILES_${PN}-dbg += "${prefix}/${TARGET_SYS}/bin/.debug"
do_stage() {
:
}
do_install () {
autotools_do_install
# Install the libiberty header
install -d ${D}${includedir}
install -m 644 ${S}/include/ansidecl.h ${D}${includedir}
install -m 644 ${S}/include/libiberty.h ${D}${includedir}
}
| 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_MINGW}
# to the sysroot path.
SYSROOT = "${@['${SDK_REALPATH}/${TARGET_SYS}', '${SDK_REALPATH_MINGW}${SDK_REALPATH}/${TARGET_SYS}'][bb.data.getVar('SDK_OS', d, 1) in ['mingw32', 'mingw64']]}"
EXTRA_OECONF = "--with-sysroot=${SYSROOT} \
--program-prefix=${TARGET_PREFIX}"
PR = "r4"
FILES_${PN}-dbg += "${prefix}/${TARGET_SYS}/bin/.debug"
do_stage() {
:
}
do_install () {
autotools_do_install
# Install the libiberty header
install -d ${D}${includedir}
install -m 644 ${S}/include/ansidecl.h ${D}${includedir}
install -m 644 ${S}/include/libiberty.h ${D}${includedir}
}
|
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
DEPENDS = "python-native python-pywbem-native python-m2crypto python-pywbem"
SRC_URI = "http://fedorahosted.org/released/${BPN}/${BP}.tar.gz \
"
SRC_URI[md5sum] = "e156246cb7b49753db82f4ddf7f03e50"
SRC_URI[sha256sum] = "292b8f5f2250655a4add8183c529b73358bc980bd4f23cfa484a940953fce9e4"
do_compile_prepend() {
cd cli
sed 's/@@VERSION@@/$(VERSION)/g' setup.py.skel >setup.py
}
do_install_prepend() {
cd cli
}
python() {
if 'meta-python' not in d.getVar('BBFILE_COLLECTIONS').split():
raise bb.parse.SkipRecipe('Requires meta-python to be present.')
}
| 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
DEPENDS = "python-native python-pywbem-native python-m2crypto python-pywbem"
SRC_URI = "http://fedorahosted.org/released/${BPN}/${BP}.tar.gz \
"
SRC_URI[md5sum] = "e156246cb7b49753db82f4ddf7f03e50"
SRC_URI[sha256sum] = "292b8f5f2250655a4add8183c529b73358bc980bd4f23cfa484a940953fce9e4"
S = "${WORKDIR}/${BP}/cli"
do_configure_prepend() {
sed 's/@@VERSION@@/$(VERSION)/g' setup.py.skel >setup.py
}
python() {
if 'meta-python' not in d.getVar('BBFILE_COLLECTIONS').split():
raise bb.parse.SkipRecipe('Requires meta-python to be present.')
}
|
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 kernel recipe requires a particular ref.
#SRCREV = ""
| 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 kernel recipe requires a particular ref.
#SRCREV = ""
# Move vmlinux-${KERNEL_VERSION_NAME} from /boot to /lib/modules/${KERNEL_VERSION}/build/
# to avoid filling the /boot partition.
FILES_${KERNEL_PACKAGE_NAME}-vmlinux_remove = "/boot/vmlinux-${KERNEL_VERSION_NAME}"
FILES_${KERNEL_PACKAGE_NAME}-vmlinux += "${nonarch_base_libdir}/modules/${KERNEL_VERSION}/build/vmlinux-${KERNEL_VERSION_NAME}"
do_install_append(){
install -d "${D}${nonarch_base_libdir}/modules/${KERNEL_VERSION}/build"
mv ${D}/boot/vmlinux-${KERNEL_VERSION} "${D}${nonarch_base_libdir}/modules/${KERNEL_VERSION}/build/"
}
|
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 \
htop \
lsof \
sudo \
vim \
"
RDEPENDS_${PN}-gui = " \
claws-mail \
epdfview \
gcalctool \
gnome-mplayer \
leafpad \
midori \
pidgin \
xarchiver \
xchat \
xnoise \
"
| 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 = " \
dropbear \
file \
htop \
lsof \
sudo \
tmux \
vim \
"
RDEPENDS_${PN}-gui = " \
abiword \
batti \
claws-mail \
epdfview \
gcalctool \
gnome-mplayer \
leafpad \
liferea \
midori \
notification-daemon \
pidgin \
remmina \
xarchiver \
xchat \
xnoise \
"
|
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-rtl8192cu \
kernel-modules \
wireless-tools \
parted \
lvm2 \
openssl \
dosfstools \
e2fsprogs \
connman \
connman-client \
btrfs-tools \
apt \
rce \
tar \
util-linux \
socat \
jq curl \
resin-device-register \
resin-device-progress \
resin-device-update \
resin-btrfs-balance \
supervisor-init \
vpn-init \
bridge-utils \
"
| 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-ath9k \
linux-firmware-ralink \
linux-firmware-rtl8192cu \
kernel-modules \
wireless-tools \
parted \
lvm2 \
openssl \
dosfstools \
e2fsprogs \
connman \
connman-client \
btrfs-tools \
apt \
rce \
tar \
util-linux \
socat \
jq curl \
resin-device-register \
resin-device-progress \
resin-device-update \
resin-btrfs-balance \
supervisor-init \
vpn-init \
bridge-utils \
"
|
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 \
"
RDEPENDS_${PN}_append_x64 = "\
packagegroup-ni-next-kernel \
packagegroup-ni-nohz-kernel \
packagegroup-ni-mono-extra \
florence \
ni-grpc-device \
"
RDEPENDS_${PN} += "\
binutils \
cgdb \
cifs-utils \
elfutils \
file \
g++ \
gcc \
gdb \
git \
gperf \
htop \
iperf2 \
iperf3 \
kernel-performance-tests \
ldd \
ltrace \
mysql-python \
ntpdate \
openssl-dev \
perf \
python-modules \
python-nose \
python-pip \
python-psutil \
python-setuptools \
python3-dev \
python3-misc \
python3-pip \
rsync \
sshpass \
strace \
valgrind \
vim \
"
| 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 \
"
RDEPENDS_${PN}_append_x64 = "\
packagegroup-ni-next-kernel \
packagegroup-ni-nohz-kernel \
packagegroup-ni-mono-extra \
florence \
ni-grpc-device \
"
RDEPENDS_${PN} += "\
binutils \
cgdb \
cifs-utils \
elfutils \
file \
g++ \
gcc \
gdb \
git \
gperf \
htop \
iperf2 \
iperf3 \
kernel-performance-tests \
kernel-test-nohz \
ldd \
ltrace \
mysql-python \
ntpdate \
openssl-dev \
perf \
python-modules \
python-nose \
python-pip \
python-psutil \
python-setuptools \
python3-dev \
python3-misc \
python3-pip \
rsync \
sshpass \
strace \
valgrind \
vim \
"
|
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+svnr${SRCREV}"
PR = "r0.01"
SRC_URI = "svn://svn.projects.openmoko.org/svnroot/diversity/toys;module=diversity-radar;proto=http"
S = "${WORKDIR}/${PN}"
inherit setuptools
FILES_${PN} += "${prefix}/share/*"
PKG_TAGS_${PN} = "group::communication alias::Diversity_Radar"
| 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+svnr${SRCREV}"
PR = "r0.01"
SRC_URI = "svn://svn.projects.openmoko.org/svnroot/diversity/toys;module=diversity-radar;proto=http"
S = "${WORKDIR}/${PN}"
inherit setuptools
FILES_${PN} += "${prefix}/share/*"
PKG_TAGS_${PN} = "group::communication"
|
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_GATEWAY_EXTRA_FEATURES}"
REFKIT_IMAGE_EXTRA_INSTALL += "${REFKIT_IMAGE_GATEWAY_EXTRA_INSTALL}"
REFKIT_IMAGE_GATEWAY_EXTRA_FEATURES_append = " iotivity nodejs-runtime"
# Example for customization in local.conf when building
# refkit-image-gateway.bb:
# IMAGE_BASENAME_pn-refkit-image-gateway = "my-refkit-image-gateway"
# REFKIT_IMAGE_GATEWAY_EXTRA_INSTALL_append = "my-own-package"
# REFKIT_IMAGE_GATEWAY_EXTRA_FEATURES_append = "dev-pkgs"
inherit refkit-image
| 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_GATEWAY_EXTRA_FEATURES}"
REFKIT_IMAGE_EXTRA_INSTALL += "${REFKIT_IMAGE_GATEWAY_EXTRA_INSTALL}"
REFKIT_IMAGE_GATEWAY_EXTRA_FEATURES_append = " iotivity nodejs-runtime bluetooth-audio"
# Example for customization in local.conf when building
# refkit-image-gateway.bb:
# IMAGE_BASENAME_pn-refkit-image-gateway = "my-refkit-image-gateway"
# REFKIT_IMAGE_GATEWAY_EXTRA_INSTALL_append = "my-own-package"
# REFKIT_IMAGE_GATEWAY_EXTRA_FEATURES_append = "dev-pkgs"
inherit refkit-image
|
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 = "35687ca957b746f153a6872139462b1443f8cad1"
PV = "0.0.38+git${SRCPV}"
SRC_URI = "git://github.com/mike-fabian/langtable.git;branch=master \
"
inherit setuptools3 python3native
DISTUTILS_INSTALL_ARGS = "--prefix=${D}/${prefix} \
--install-data=${D}/${datadir}/langtable"
FILES_${PN} += "${datadir}/*"
RDEPENDS_${PN} += " \
${PYTHON_PN}-argparse \
${PYTHON_PN}-compression \
${PYTHON_PN}-doctest \
${PYTHON_PN}-enum \
${PYTHON_PN}-logging \
${PYTHON_PN}-signal \
${PYTHON_PN}-xml \
"
| 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 = "35687ca957b746f153a6872139462b1443f8cad1"
PV = "0.0.38+git${SRCPV}"
SRC_URI = "git://github.com/mike-fabian/langtable.git;branch=master \
"
inherit setuptools3 python3native
DISTUTILS_INSTALL_ARGS = "--prefix=${D}/${prefix} \
--install-data=${D}/${datadir}/langtable"
FILES_${PN} += "${datadir}/*"
RDEPENDS_${PN} += " \
${PYTHON_PN}-argparse \
${PYTHON_PN}-compression \
${PYTHON_PN}-doctest \
${PYTHON_PN}-enum \
${PYTHON_PN}-logging \
${PYTHON_PN}-xml \
"
|
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] = "a14549db3c49f6ae2170cbbf4664bd48ace50681045e8dbea7c8d9fb96f9c765"
inherit autotools
| 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] = "a14549db3c49f6ae2170cbbf4664bd48ace50681045e8dbea7c8d9fb96f9c765"
inherit autotools
BBCLASSEXTEND = "native nativesdk"
|
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${SRCPV}"
S = "${WORKDIR}/git/kernel_module/gdbproxy-mod"
inherit module
PLATFORM = ""
PLATFORM_dra7xx = "DRA7xx_PLATFORM"
PLATFORM_keystone = "KEYSTONE_PLATFORM"
EXTRA_OEMAKE = "PLATFORM=${PLATFORM}"
# The following is to prevent an unused configure.ac from erroneously
# triggering the QA check for gettext.
EXTRA_OECONF = "--disable-nls"
do_configure() {
:
}
COMPATIBLE_MACHINE = "dra7xx|keystone"
PACKAGE_ARCH = "${MACHINE_ARCH}"
include gdbc6x.inc
module_autoload_gdbserverproxy = "gdbserverproxy"
| 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${SRCPV}"
S = "${WORKDIR}/git/kernel_module/gdbproxy-mod"
inherit module
PLATFORM = ""
PLATFORM_dra7xx = "DRA7xx_PLATFORM"
PLATFORM_keystone = "KEYSTONE_PLATFORM"
EXTRA_OEMAKE = "PLATFORM=${PLATFORM} KVERSION=${KERNEL_VERSION} KERNEL_SRC=${STAGING_KERNEL_DIR}"
# The following is to prevent an unused configure.ac from erroneously
# triggering the QA check for gettext.
EXTRA_OECONF = "--disable-nls"
do_configure() {
:
}
COMPATIBLE_MACHINE = "dra7xx|keystone"
PACKAGE_ARCH = "${MACHINE_ARCH}"
include gdbc6x.inc
KERNEL_MODULE_AUTOLOAD += "gdbserverproxy"
|
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 autotools
python __anonymous () {
import re
host = bb.data.getVar('HOST_SYS', d, 1)
if not re.match('i.86.*-linux', host):
raise bb.parse.SkipPackage("incompatible with host %s" % host)
}
do_install_append() {
install -d ${D}/boot/
ln -sf ../usr/lib/grub/i386${TARGET_VENDOR}/ ${D}/boot/grub
# TODO: better use grub-set-default script here?
install -m 0644 ${WORKDIR}/menu.lst ${D}/boot/grub
}
FILES_${PN}-doc = "${datadir}"
FILES_${PN} = "/boot /usr"
| 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"
inherit autotools
do_install_append() {
install -m 0644 -D ${WORKDIR}/menu.lst ${D}/boot/grub/menu.lst
# Copy stage1/1_5/2 files to /boot/grub
GRUB_TARGET_ARCH=$(echo ${TARGET_ARCH} | sed -e 's/.86/386/')
install -m 0644 \
${D}/${libdir}/grub/${GRUB_TARGET_ARCH}${TARGET_VENDOR}/* \
${D}/boot/grub/
}
PACKAGES =+ "${PN}-install ${PN}-eltorito"
FILES_${PN}-install = " \
${sbindir}/grub-install \
${sbindir}/grub-terminfo \
${sbindir}/grub-md5-crypt \
${bindir}/mbchk \
${libdir}/grub \
"
FILES_${PN}-eltorito = "/boot/grub/stage2_eltorito"
FILES_${PN} += "/boot"
COMPATIBLE_HOST = "i.86.*-linux"
|
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_DEFAULT_DEPS = "1"
SRC_URI += "file://pareon_run.sh.template"
do_compile() {
awk -v PAREON_LIBDIR=${PAREON_LIBDIR} '{gsub(/@@PAREON_LIBDIR@@/, PAREON_LIBDIR); print}' < ${WORKDIR}/pareon_run.sh.template > ${WORKDIR}/pareon_run.sh
}
do_install() {
# copy wrapper script
install -d ${D}${bindir}
install -m 0755 ${WORKDIR}/pareon_run.sh ${D}${bindir}
# copy libpareon_verify and libstdc++
install -d ${D}${PAREON_LIBDIR}
cp -a ${PAREON_LIBDIR}/* ${D}${PAREON_LIBDIR}
cp -a ${PAREON_CXXDIR}/* ${D}${PAREON_LIBDIR}
}
| 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_DEFAULT_DEPS = "1"
SRC_URI += "file://pareon_run.sh.template"
FILES_${PN} += "${PAREON_LIBDIR}/libpareon_verify.so.* ${PAREON_LIBDIR}/libstdc++.so.*"
FILES_${PN}-dbg += "${PAREON_LIBDIR}.debug"
do_compile() {
awk -v PAREON_LIBDIR=${PAREON_LIBDIR} '{gsub(/@@PAREON_LIBDIR@@/, PAREON_LIBDIR); print}' < ${WORKDIR}/pareon_run.sh.template > ${WORKDIR}/pareon_run.sh
}
do_install() {
# copy wrapper script
install -d ${D}${bindir}
install -m 0755 ${WORKDIR}/pareon_run.sh ${D}${bindir}
# copy libpareon_verify and libstdc++
install -d ${D}${PAREON_LIBDIR}
cp -a ${PAREON_LIBDIR}/libpareon_verify.so.* ${D}${PAREON_LIBDIR}
cp -a ${PAREON_CXXDIR}/libstdc++.so.* ${D}${PAREON_LIBDIR}
}
|
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"
SRC_URI = "git://git.ti.com/glsdk/gst-plugin-ducati.git;protocol=git;branch=${BRANCH} \
"
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
| 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"
SRC_URI = "git://git.ti.com/glsdk/gst-plugin-ducati.git;protocol=git;branch=${BRANCH} \
"
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
|
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
done
}
do_install () {
install -d ${D}${sysconfdir}/opkg
install -m 0644 ${S}/${sysconfdir}/opkg/* ${D}${sysconfdir}/opkg/
}
PACKAGE_ARCH = "${MACHINE_ARCH}"
CONFFILES_${PN} += "${sysconfdir}/opkg/Multiverse-feed.conf"
PKG_TAGS_${PN} = "group::repos alias::Om_Multiverse"
OPENMOKO_URI = "http://downloads.openmoko.org/repository"
| 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
}
do_install () {
install -d ${D}${sysconfdir}/opkg
install -m 0644 ${S}/${sysconfdir}/opkg/* ${D}${sysconfdir}/opkg/
}
PACKAGE_ARCH = "${MACHINE_ARCH}"
CONFFILES_${PN} += "${sysconfdir}/opkg/Multiverse-feed.conf"
PKG_TAGS_${PN} = "group::repos alias::Om_Multiverse"
OPENMOKO_URI = "http://downloads.openmoko.org/repository"
|
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}/git"
BRANCH ?= "rel-v2020.2"
REPO ?= "git://github.com/xilinx/hdmi-modules.git;protocol=https"
SRCREV ?= "2cbacc12910bab236e491c5aa44999fa16cbaea9"
BRANCHARG = "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH', True) != '']}"
SRC_URI = "${REPO};${BRANCHARG}"
inherit module
EXTRA_OEMAKE += "O=${STAGING_KERNEL_BUILDDIR}"
COMPATIBLE_MACHINE = "^$"
COMPATIBLE_MACHINE_zynqmp = "zynqmp"
COMPATIBLE_MACHINE_versal = "versal"
| 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}/git"
BRANCH ?= "master"
REPO ?= "git://github.com/Xilinx/hdmi-modules.git;protocol=https"
SRCREV = "007af0d54fdccd7fdd93095511b5a5a886aea30b"
BRANCHARG = "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH', True) != '']}"
SRC_URI = "${REPO};${BRANCHARG}"
inherit module
EXTRA_OEMAKE += "O=${STAGING_KERNEL_BUILDDIR}"
COMPATIBLE_MACHINE = "^$"
COMPATIBLE_MACHINE_zynqmp = "zynqmp"
COMPATIBLE_MACHINE_versal = "versal"
|
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-doc-native"
EXTRA_OECONF += "--disable-glibtest"
BBCLASSEXTEND = "native"
| 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 = "glib-2.0 gtk-doc-native"
EXTRA_OECONF += "--disable-glibtest"
BBCLASSEXTEND = "native"
|
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
DEPENDS = "python3-native python3-pywbem-native python3-m2crypto python-pywbem"
SRC_URI = "http://fedorahosted.org/released/${BPN}/${BP}.tar.gz \
"
SRC_URI[md5sum] = "e156246cb7b49753db82f4ddf7f03e50"
SRC_URI[sha256sum] = "292b8f5f2250655a4add8183c529b73358bc980bd4f23cfa484a940953fce9e4"
S = "${WORKDIR}/${BP}/cli"
do_configure_prepend() {
sed 's/@@VERSION@@/$(VERSION)/g' setup.py.skel >setup.py
}
python() {
if 'meta-python' not in d.getVar('BBFILE_COLLECTIONS').split():
raise bb.parse.SkipRecipe('Requires meta-python to be present.')
}
| 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
DEPENDS = "python-native python-pywbem-native python-m2crypto python-pywbem"
SRC_URI = "http://fedorahosted.org/released/${BPN}/${BP}.tar.gz \
"
SRC_URI[md5sum] = "e156246cb7b49753db82f4ddf7f03e50"
SRC_URI[sha256sum] = "292b8f5f2250655a4add8183c529b73358bc980bd4f23cfa484a940953fce9e4"
S = "${WORKDIR}/${BP}/cli"
do_configure_prepend() {
sed 's/@@VERSION@@/$(VERSION)/g' ${S}/setup.py.skel > ${S}/setup.py
}
python() {
if 'meta-python' not in d.getVar('BBFILE_COLLECTIONS').split():
raise bb.parse.SkipRecipe('Requires meta-python to be present.')
}
|
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 these
HAS_PLATFORM_INIT ?= " \
xilinx_zynqmp_virt_config \
xilinx_zynq_virt_defconfig \
xilinx_versal_vc_p_a2197_revA_x_prc_01_revA \
"
| 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 support for these
HAS_PLATFORM_INIT ?= " \
xilinx_zynqmp_virt_config \
xilinx_zynq_virt_defconfig \
xilinx_versal_vc_p_a2197_revA_x_prc_01_revA \
"
|
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[md5sum] = "5cf5527e803a554f43319ee53c771e0b"
SRC_URI[sha256sum] = "44eb1f158a9b2a92cd626541a24c44387162b3d792e4b238c84e6f3d8ed1dd9a"
| 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_URI[md5sum] = "5cf5527e803a554f43319ee53c771e0b"
SRC_URI[sha256sum] = "44eb1f158a9b2a92cd626541a24c44387162b3d792e4b238c84e6f3d8ed1dd9a"
|
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-Use-_ISOC11_SOURCE-only-with-glibc.patch \
"
CPPFLAGS_append_libc-musl = " -D_GNU_SOURCE"
COMPATIBLE_HOST = '(x86_64|i.86|powerpc|powerpc64|arm).*-linux'
RDEPENDS_${PN} = "perl"
| 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-Use-_ISOC11_SOURCE-only-with-glibc.patch \
"
CPPFLAGS_append_libc-musl = " -D_GNU_SOURCE"
COMPATIBLE_HOST = '(x86_64|i.86|powerpc|powerpc64|arm).*-linux'
PACKAGES =+ "${PN}-check"
FILES_${PN}-check += "${bindir}/check_for_unsafe_apis"
RDEPENDS_${PN}-check += "perl"
|
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 = "37a52f48ebd4850d07cd8fe7277e6fa7a653c2ae"
PV = "4.8.0+git${SRCPV}"
S = "${WORKDIR}/git"
OECMAKE_SOURCEPATH = ".."
OECMAKE_BUILDPATH = "build"
FILES_${PN} += "\
${libdir}/kde4/*.so \
${libdir}/libkdeinit4*.so \
\
${datadir}/* \
"
FILES_${PN}-dbg += "${libdir}/kde4/.debug/*"
| 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 = "a7a128232033f284d41890a6967fc0641925b251"
PV = "4.8.0+git${SRCPV}"
S = "${WORKDIR}/git"
OECMAKE_SOURCEPATH = ".."
OECMAKE_BUILDPATH = "build"
FILES_${PN} += "\
${libdir}/kde4/*.so \
${libdir}/libkdeinit4*.so \
\
${datadir}/* \
"
FILES_${PN}-dbg += "${libdir}/kde4/.debug/*"
|
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. "
SRCREV = "949e6facb77383876aeff8a6944dde66b3089574"
SRC_URI = " \
git://github.com/krallin/tini.git \
file://0001-Do-not-strip-the-output-binary-allow-yocto-to-do-thi.patch \
"
LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://LICENSE;md5=ffc9091894702bc5dcf4cc0085561ef5"
S = "${WORKDIR}/git"
BBCLASSEXTEND = "native"
inherit cmake
do_install() {
mkdir -p ${D}/${bindir}
install -m 0755 ${B}/tini-static ${D}/${bindir}/balena-init
}
| 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. "
SRCREV = "949e6facb77383876aeff8a6944dde66b3089574"
SRC_URI = " \
git://github.com/krallin/tini.git \
file://0001-Do-not-strip-the-output-binary-allow-yocto-to-do-thi.patch \
"
LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://LICENSE;md5=ffc9091894702bc5dcf4cc0085561ef5"
S = "${WORKDIR}/git"
BBCLASSEXTEND = "native"
inherit cmake
do_install() {
mkdir -p ${D}/${bindir}
install -m 0755 ${B}/tini-static ${D}/${bindir}/balena-engine-init
}
|
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/MostAwesomeDude/txWS.git"
SRCREV= "88cf6d9b9b685ffa1720644bd53c742afb10a414"
S = "${WORKDIR}/git"
inherit setuptools3
| 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/MostAwesomeDude/txWS.git"
SRCREV= "88cf6d9b9b685ffa1720644bd53c742afb10a414"
S = "${WORKDIR}/git"
inherit setuptools3
|
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-dev libxml2 libxml2-dev openssl openssl-dev lsb \
mosquitto mosquitto-dev libdmclient libdmclient-dev \
packagegroup-sdk-target "
SUMMARY_${PN}-addon = "Advantech proprietary packages"
RDEPENDS_${PN}-addon = "\
rmm susi4 susi-iot "
| 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-dev libxml2 libxml2-dev openssl openssl-dev lsb \
mosquitto mosquitto-dev libdmclient libdmclient-dev \
mosquitto-clients libmosquitto1 libmosquittopp1 packagegroup-sdk-target "
SUMMARY_${PN}-addon = "Advantech proprietary packages"
RDEPENDS_${PN}-addon = "\
rmm susi4 susi-iot "
|
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"
RDEPENDS_${PN} += "perl"
SRC_URI = "ftp://ftp.stunnel.org/stunnel/archive/5.x/${BP}.tar.gz"
SRC_URI[md5sum] = "9079f5fafbccaf88b7d92b227d78249a"
SRC_URI[sha256sum] = "ffa386ae4c825f35f35157c285e7402a6d58779ad8c3822f74a9d355b54aba1d"
inherit autotools
EXTRA_OECONF += "--with-ssl='${STAGING_EXECPREFIXDIR}' --disable-fips"
PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'ipv6 systemd', d)}"
PACKAGECONFIG[systemd] = "--enable-systemd,--disable-systemd,systemd"
PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6,"
| 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"
DEPENDS = "openssl zlib tcp-wrappers"
RDEPENDS_${PN} += "perl"
SRC_URI = "ftp://ftp.stunnel.org/stunnel/archive/5.x/${BP}.tar.gz"
SRC_URI[md5sum] = "9079f5fafbccaf88b7d92b227d78249a"
SRC_URI[sha256sum] = "ffa386ae4c825f35f35157c285e7402a6d58779ad8c3822f74a9d355b54aba1d"
inherit autotools
EXTRA_OECONF += "--with-ssl='${STAGING_EXECPREFIXDIR}' --disable-fips"
PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'ipv6 systemd', d)}"
PACKAGECONFIG[systemd] = "--enable-systemd,--disable-systemd,systemd"
PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6,"
|
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_compile() {
sed -i "s/\"r001\"/\"r${SRCPV}\"/g" __init__.py
python -O -m compileall ${S}
echo "oe16" > oe.txt
}
do_install() {
install -d ${D}${PLUGINDIR}
install -m 644 *.py* *.xml *.png *.txt ${D}${PLUGINDIR}
# Should i use "install" here?
cp -r skins ${D}${PLUGINDIR}/
rm -rf `find ${D}${PLUGINDIR}/skins -name '.svn' -type d`;
}
| 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-valerie"
do_compile() {
# remove .svn dirs
rm -rf `find . -name '.svn' -type d`
# patch SVN version
sed -i "s/\"r001\"/\"r${SRCPV}\"/g" __init__.py
# sanitize file modes
chmod a-x *.py */*.py
# Compile python files
python -O -m compileall ${S}
# Create weird file, required for the plugin to work
echo "oe16" > oe.txt
}
do_install() {
install -d ${D}${PLUGINDIR}
cp -r . ${D}${PLUGINDIR}/
}
|
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}-threading \
"
SRC_URI[md5sum] = "8e580fa1ff3971f94a6f81672b76c406"
SRC_URI[sha256sum] = "9c998a5d7606ca835065cdabc013ae6c66eb9ea76a00a1e3bc6e0cfe2b4f71f4"
inherit pypi setuptools3
| 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}-shell \
${PYTHON_PN}-smtpd \
${PYTHON_PN}-threading \
"
SRC_URI[md5sum] = "8e580fa1ff3971f94a6f81672b76c406"
SRC_URI[sha256sum] = "9c998a5d7606ca835065cdabc013ae6c66eb9ea76a00a1e3bc6e0cfe2b4f71f4"
inherit pypi setuptools3
|
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 \
file://main.c \
file://COPYING \
file://sitec_lp.h \
file://sts_fm.c \
file://sts_fm.h \
"
S = "${WORKDIR}"
# The inherit of module.bbclass will automatically name module packages with
# "kernel-module-" prefix as required by the oe-core build environment.
| 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}"
SRC_URI = "file://Makefile \
file://main.c \
file://COPYING \
file://sitec_lp.h \
file://sts_fm.c \
file://sts_fm.h \
"
S = "${WORKDIR}"
# The inherit of module.bbclass will automatically name module packages with
# "kernel-module-" prefix as required by the oe-core build environment.
|
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=anonymous;pswd=''"
S = "${WORKDIR}/trunk"
do_compile() {
export CROSS_COMPILE=${TARGET_PREFIX}
export ARCH=${TUNE_PKGARCH}
# build the release version
make release
}
do_install() {
export ARCH=${TUNE_PKGARCH}
make DESTDIR=${D} install
}
| 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;user=anonymous;pswd=''"
S = "${WORKDIR}/trunk"
do_compile() {
export CROSS_COMPILE=${TARGET_PREFIX}
export ARCH=${ARMPKGARCH}
# build the release version
make release
}
do_install() {
export ARCH=${ARMPKGARCH}
make DESTDIR=${D} install
}
|
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_URI[sha256sum] = "a22ca993cea2962dbb588f9f30d0015ac4afcc45bee27d3978c0dbe9e97c6c0f"
inherit pypi setuptools3
RDEPENDS_${PN} += "\
${PYTHON_PN}-datetime \
"
| 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_URI[sha256sum] = "a22ca993cea2962dbb588f9f30d0015ac4afcc45bee27d3978c0dbe9e97c6c0f"
inherit pypi setuptools3
RDEPENDS_${PN} += "\
${PYTHON_PN}-datetime \
${PYTHON_PN}-cryptography \
"
|
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 = "4edd92e915e56512dc32615bfe6ab2a807a9fdeb"
S="${WORKDIR}/git"
| 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 = "5c28d4765ce7de57702f4f529fed7da80b82e8d8"
S="${WORKDIR}/git"
|
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.txt;md5=5b4e3a2172bba4c47cded5885e7e507e"
SRC_URI[sha256sum] = "40dc582ce1eec631c3df79420b187a6da276bbd68a4ec0a8f1f123ea616b97a2"
PYPI_PACKAGE = "supervisor"
inherit pypi systemd setuptools3
RDEPENDS:${PN} = "\
${PYTHON_PN}-meld3 \
"
SRC_URI += "file://supervisord.conf \
file://supervisor.service \
"
SYSTEMD_SERVICE:${PN} = "supervisor.service"
do_install:append() {
install -d ${D}${sysconfdir}/supervisor
install -d ${D}${systemd_system_unitdir}
install -m 0644 ${WORKDIR}/supervisord.conf ${D}${sysconfdir}/supervisor
install -m 0644 ${WORKDIR}/supervisor.service ${D}${systemd_system_unitdir}
}
| 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.txt;md5=5b4e3a2172bba4c47cded5885e7e507e"
SRC_URI[sha256sum] = "40dc582ce1eec631c3df79420b187a6da276bbd68a4ec0a8f1f123ea616b97a2"
PYPI_PACKAGE = "supervisor"
inherit pypi systemd setuptools3
RDEPENDS:${PN} = "\
python3-meld3 \
python3-io \
python3-xmlrpc \
python3-resource \
python3-setuptools \
python3-smtpd \
"
SRC_URI += "file://supervisord.conf \
file://supervisor.service \
"
SYSTEMD_SERVICE:${PN} = "supervisor.service"
do_install:append() {
install -d ${D}${sysconfdir}/supervisor
install -d ${D}${systemd_system_unitdir}
install -m 0644 ${WORKDIR}/supervisord.conf ${D}${sysconfdir}/supervisor
install -m 0644 ${WORKDIR}/supervisor.service ${D}${systemd_system_unitdir}
}
|
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=${PN}-${PV} \
"
LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://LICENSE;md5=e3fc50a88d0a364313df4b21ef20c29e"
inherit mender-state-scripts
do_compile() {
cp ArtifactRollback_Enter_00 ${MENDER_STATE_SCRIPTS_DIR}/
cp Download_Enter_00 ${MENDER_STATE_SCRIPTS_DIR}/
cp ArtifactCommit_Enter_00 ${MENDER_STATE_SCRIPTS_DIR}/
cp Sync_Enter_00 ${MENDER_STATE_SCRIPTS_DIR}/
}
RDEPENDS_${PN}_append = " netcat "
| 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;subdir=${BPN}-${PV} \
"
LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://LICENSE;md5=e3fc50a88d0a364313df4b21ef20c29e"
inherit mender-state-scripts
do_compile() {
cp ArtifactRollback_Enter_00 ${MENDER_STATE_SCRIPTS_DIR}/
cp Download_Enter_00 ${MENDER_STATE_SCRIPTS_DIR}/
cp ArtifactCommit_Enter_00 ${MENDER_STATE_SCRIPTS_DIR}/
cp Sync_Enter_00 ${MENDER_STATE_SCRIPTS_DIR}/
}
RDEPENDS_${PN}_append = " netcat "
|
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 = "86dafacb8b86ce51006b5ecf48e791f5c8a9ed38"
# Make it easy to test against branches
GIT_BRANCH = "master"
SRC_URI = "git://bitbucket.org/jarribas/gnss-simulator.git;branch=${GIT_BRANCH};protocol=https "
S = "${WORKDIR}/git"
inherit cmake
PACKAGES = "gnss-simulator gnss-simulator-dbg"
FILES_${PN} = "${bindir}/gnss_sim \
/usr/share/gnss-sim/* \
"
FILES_${PN}-dbg = " \
/usr/bin/.debug/gnss_sim \
/usr/src/debug/gnss-simulator/* \
"
do_rm_work() {
}
| 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 = "86dafacb8b86ce51006b5ecf48e791f5c8a9ed38"
# Make it easy to test against branches
GIT_BRANCH = "master"
SRC_URI = "git://bitbucket.org/jarribas/gnss-simulator.git;branch=${GIT_BRANCH};protocol=https "
S = "${WORKDIR}/git"
inherit cmake
PACKAGES = "gnss-simulator gnss-simulator-dbg"
FILES_${PN} = "${bindir}/gnss_sim \
${datadir}/gnss-sim/* \
"
FILES_${PN}-dbg += " \
${prefix}/src/debug/gnss-simulator/* \
${bindir}/.debug/gnss_sim \
"
do_rm_work() {
}
|
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] = "62bfce3f678f9347a19c766944e8aef7b89bc32b25ac23eb3e4c25929ce8974c"
| 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] = "62bfce3f678f9347a19c766944e8aef7b89bc32b25ac23eb3e4c25929ce8974c"
|
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 tree.
BRANCH = "ti-u-boot-2013.01.01-amsdk-05.07.00.00"
# Commit corresponds to tag "v2013.01.01_amsdk-05.07.00.00"
SRCREV = "8eb15a787c558fee98b0fa2a66ff0849c732edcc"
# Set the name of the SPL that will built so that it is also packaged with u-boot.
SPL_BINARY = "MLO"
| 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 tree.
BRANCH = "ti-u-boot-2013.01.01-amsdk-06.00.00.00"
SRCREV = "540aa6fbb0c9274bda598f7e8819ed28259cad6b"
# Set the name of the SPL that will built so that it is also packaged with u-boot.
SPL_BINARY = "MLO"
|
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.sha256sum] = "456a6415647bceeb0159b90b3553ff328728cf29a608fce08024232504ccb874"
DEPENDS += " \
libxml2-native \
glib-2.0-native \
gtk+3 \
appstream-glib \
libxslt \
sqlite3 \
webkitgtk \
yelp-xsl \
"
do_configure:prepend() {
export ITSTOOL=${STAGING_BINDIR_NATIVE}/itstool
}
FILES:${PN} += " \
${datadir}/metainfo \
${datadir}/yelp-xsl \
"
RDEPENDS:${PN} += "yelp-xsl"
| 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.sha256sum] = "456a6415647bceeb0159b90b3553ff328728cf29a608fce08024232504ccb874"
DEPENDS += " \
libxml2-native \
glib-2.0-native \
gtk+3 \
appstream-glib \
libxslt \
sqlite3 \
webkitgtk \
yelp-xsl \
"
PACKAGECONFIG ?= ""
# Enable if soup3 is enabled in webkit recipe
PACKAGECONFIG[soup3] = ",--with-webkit2gtk-4-0,"
do_configure:prepend() {
export ITSTOOL=${STAGING_BINDIR_NATIVE}/itstool
}
FILES:${PN} += " \
${datadir}/metainfo \
${datadir}/yelp-xsl \
"
RDEPENDS:${PN} += "yelp-xsl"
|
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_sysroot[rdeptask] = "do_unpack"
| 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_prepare_recipe_sysroot[rdeptask] = "do_unpack"
|
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"
SRCREV = "69ce77c74641bf0c66f13af7e5d6df071d0c41fc"
FILES_${PN} += "${OE_QMAKE_PATH_PLUGINS}/wayland-graphics-integration"
FILES_${PN}-dbg += "${OE_QMAKE_PATH_PLUGINS}/wayland-graphics-integration/*/.debug"
QT_VERSION ?= "5.2.1"
do_install_append() {
# do install files created by qtwaylandscanner
install ${B}/include/QtCompositor/${QT_VERSION}/QtCompositor/private/qwayland-server-*.h ${D}${OE_QMAKE_PATH_QT_HEADERS}/QtCompositor/${QT_VERSION}/QtCompositor/private
install ${B}/include/QtCompositor/${QT_VERSION}/QtCompositor/private/*protocol*.h ${D}${OE_QMAKE_PATH_QT_HEADERS}/QtCompositor/${QT_VERSION}/QtCompositor/private
}
| 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"
SRCREV = "4600a18b90740bea57ad5f027aedb18641aec969"
FILES_${PN} += "${OE_QMAKE_PATH_PLUGINS}/wayland-graphics-integration"
FILES_${PN}-dbg += "${OE_QMAKE_PATH_PLUGINS}/wayland-graphics-integration/*/.debug"
QT_VERSION ?= "5.3.0"
do_install_append() {
# do install files created by qtwaylandscanner
install ${B}/include/QtCompositor/${QT_VERSION}/QtCompositor/private/qwayland-server-*.h ${D}${OE_QMAKE_PATH_QT_HEADERS}/QtCompositor/${QT_VERSION}/QtCompositor/private
install ${B}/include/QtCompositor/${QT_VERSION}/QtCompositor/private/*protocol*.h ${D}${OE_QMAKE_PATH_QT_HEADERS}/QtCompositor/${QT_VERSION}/QtCompositor/private
}
|
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/raspberrypi/linux.git;protocol=git;branch=rpi-patches \
"
LINUX_VERSION ?= "3.1.9-rpi"
PV = "${LINUX_VERSION}+${PR}+git${SRCREV}"
S = "${WORKDIR}/git"
# NOTE: For now we pull in the default config from the RPi kernel GIT tree.
KERNEL_DEFCONFIG = "bcmrpi_defconfig"
PARALLEL_MAKEINST = ""
do_configure_prepend() {
install -m 0644 ${S}/arch/${ARCH}/configs/${KERNEL_DEFCONFIG} ${WORKDIR}/defconfig || die "No default configuration for ${MACHINE} / ${KERNEL_DEFCONFIG} available."
}
| 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/raspberrypi/linux.git;protocol=git;branch=rpi-patches \
"
LINUX_VERSION ?= "3.1.9-rpi"
PV = "${LINUX_VERSION}+${PR}+git${SRCREV}"
S = "${WORKDIR}/git"
# NOTE: For now we pull in the default config from the RPi kernel GIT tree.
KERNEL_DEFCONFIG = "bcmrpi_defconfig"
PARALLEL_MAKEINST = ""
do_configure_prepend() {
install -m 0644 ${S}/arch/${ARCH}/configs/${KERNEL_DEFCONFIG} ${WORKDIR}/defconfig || die "No default configuration for ${MACHINE} / ${KERNEL_DEFCONFIG} available."
}
do_install_prepend() {
install -d ${D}/lib/firmware
}
|
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 packages."
RDEPENDS_packagegroup-gnss-sdr-base = " \
gnuradio \
gflags \
glog \
armadillo \
gtest \
gnutls \
log4cpp \
matio \
python-mako \
python-six \
packagegroup-gnss-sdr-drivers \
"
SUMMARY_packagegroup-gnss-sdr-bin = "GNSS-SDR binary."
DEPENDS_packagegroup-gnss-sdr-bin = " \
gnss-sdr \
"
SUMMARY_packagegroup-gnss-sdr-drivers = "RF front-end drivers."
DEPENDS_packagegroup-gnss-sdr-drivers = " \
uhd \
rtl-sdr \
libbladerf \
libbladerf-bin \
gr-osmosdr \
gr-iio \
"
| # 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 packages."
RDEPENDS_packagegroup-gnss-sdr-base = " \
gnuradio \
gflags \
glog \
armadillo \
gtest \
gnutls \
log4cpp \
matio \
python-mako \
python-six \
uhd \
rtl-sdr \
libbladerf \
libbladerf-bin \
gr-osmosdr \
gr-iio \
"
SUMMARY_packagegroup-gnss-sdr-bin = "GNSS-SDR binary."
DEPENDS_packagegroup-gnss-sdr-bin = " \
gnss-sdr \
"
SUMMARY_packagegroup-gnss-sdr-drivers = "RF front-end drivers."
DEPENDS_packagegroup-gnss-sdr-drivers = " \
uhd \
rtl-sdr \
libbladerf \
libbladerf-bin \
gr-osmosdr \
gr-iio \
"
|
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-management \
tools-profile \
"
IMAGE_INSTALL:append = " kernel-modules resize-rootfs"
CORE_IMAGE_EXTRA_INSTALL += " \
packagegroup-core-boot \
packagegroup-gnss-sdr-bin \
packagegroup-gnss-sdr-base \
packagegroup-gnss-sdr-base-extended \
packagegroup-gnss-sdr-drivers \
packagegroup-xfce-extended \
${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'xauth', '', d)} \
e2fsprogs-resize2fs \
"
IMAGE_FSTYPES:append = " wic.xz wic.bmap"
IMAGE_FSTYPES:remove:qemuall = "wic.xz wic.bmap"
WKS_FILE ??= "${TOPDIR}/../meta-gnss-sdr/wic/sdimage-geniux.wks"
| 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-management \
tools-profile \
"
IMAGE_INSTALL:append = " kernel-modules resize-rootfs"
CORE_IMAGE_EXTRA_INSTALL += " \
packagegroup-core-boot \
packagegroup-gnss-sdr-bin \
packagegroup-gnss-sdr-base \
packagegroup-gnss-sdr-base-extended \
packagegroup-gnss-sdr-drivers \
packagegroup-xfce-extended \
${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'xauth', '', d)} \
e2fsprogs-resize2fs \
"
IMAGE_INSTALL:append:zedboard-zynq7 = " u-boot-zynq-uenv"
IMAGE_FSTYPES:append = " wic.xz wic.bmap"
IMAGE_FSTYPES:remove:qemuall = "wic.xz wic.bmap"
WKS_FILE ??= "${TOPDIR}/../meta-gnss-sdr/wic/sdimage-geniux.wks"
|
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() {
autotools_stage_includes
install -d ${STAGING_LIBDIR}
oe_libinstall -C libtiff -a -so libtiff ${STAGING_LIBDIR}
oe_libinstall -C libtiff -a -so libtiffxx ${STAGING_LIBDIR}
}
PACKAGES =+ "tiffxx tiffxx-dbg tiffxx-dev tiff-utils tiff-utils-dbg"
FILES_tiffxx = "${libdir}/libtiffxx.so.*"
FILES_tiffxx-dev = "${libdir}/libtiffxx.so ${libdir}/libtiffxx.*a"
FILES_tiffxx-dbg = "${libdir}/.debug/libtiffxx.so*"
FILES_tiff-utils = "${bindir}/*"
FILES_tiff-utils-dbg = "${bindir}/.debug/"
| 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() {
autotools_stage_includes
install -d ${STAGING_LIBDIR}
oe_libinstall -C libtiff -a -so libtiff ${STAGING_LIBDIR}
oe_libinstall -C libtiff -a -so libtiffxx ${STAGING_LIBDIR}
}
PACKAGES =+ "tiffxx tiffxx-dbg tiffxx-dev tiff-utils tiff-utils-dbg"
FILES_tiffxx = "${libdir}/libtiffxx.so.*"
FILES_tiffxx-dev = "${libdir}/libtiffxx.so ${libdir}/libtiffxx.*a"
FILES_tiffxx-dbg = "${libdir}/.debug/libtiffxx.so*"
FILES_tiff-utils = "${bindir}/*"
FILES_tiff-utils-dbg = "${bindir}/.debug/"
|
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=master \
file://0001-Without-docs.patch \
file://0002-Fix-Phonon-to-phonon-in-includes.patch"
## Tag 4.8.0
SRCREV = "043cb5a4338c9880a0aefaafa669b9eefe564ff1"
PV = "4.8.0+git${SRCPV}"
S = "${WORKDIR}/git"
FILES_${PN} += "${datadir} \
${libdir}/kde4/*.so"
FILES_${PN}-dbg += "${libdir}/kde4/.debug/*.so" | 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.git;branch=master \
file://0001-Without-docs.patch \
file://0002-Fix-Phonon-to-phonon-in-includes.patch"
## Tag 4.8.0
SRCREV = "043cb5a4338c9880a0aefaafa669b9eefe564ff1"
PV = "4.8.0+git${SRCPV}"
S = "${WORKDIR}/git"
FILES_${PN} += "${datadir} \
${libdir}/kde4/*.so"
FILES_${PN}-dbg += "${libdir}/kde4/.debug/*.so" |
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=3f7041e5710007661d762bb6043a69c6"
SECTION = "base"
DEPENDS = "libubox json-c"
SRCREV = "c61815319c1c0e76898048a19151f30844a6989c"
SRC_URI = "git://git.openwrt.org/project/uqmi.git \
"
inherit cmake pkgconfig
S = "${WORKDIR}/git"
FILES_SOLIBSDEV = ""
FILES_${PN} += "${libdir}/*"
| # 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=3f7041e5710007661d762bb6043a69c6"
SECTION = "base"
DEPENDS = "libubox json-c"
SRCREV = "c61815319c1c0e76898048a19151f30844a6989c"
SRC_URI = "git://git.openwrt.org/project/uqmi.git \
"
inherit cmake pkgconfig
S = "${WORKDIR}/git"
B = "${S}"
FILES_SOLIBSDEV = ""
FILES_${PN} += "${libdir}/*"
|
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] = "62bfce3f678f9347a19c766944e8aef7b89bc32b25ac23eb3e4c25929ce8974c"
| 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] = "62bfce3f678f9347a19c766944e8aef7b89bc32b25ac23eb3e4c25929ce8974c"
|
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;scmdata=keep"
S = "${WORKDIR}/${SRCNAME}"
| 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};protocol=http;scmdata=keep"
S = "${WORKDIR}/${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 "${MENDER_ARTIFACT_NAME}" ]; then
bberror "Need to define MENDER_ARTIFACT_NAME variable."
fi
cat > ${B}/artifact_info << END
artifact_name=${MENDER_ARTIFACT_NAME}
END
}
do_install() {
install -d ${D}${sysconfdir}/mender
install -m 0644 -t ${D}${sysconfdir}/mender ${B}/artifact_info
}
FILES_${PN} += " \
${sysconfdir}/mender/artifact_info \
"
| 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 "${MENDER_ARTIFACT_NAME}" ]; then
bberror "Need to define MENDER_ARTIFACT_NAME variable."
exit 1
fi
cat > ${B}/artifact_info << END
artifact_name=${MENDER_ARTIFACT_NAME}
END
}
do_install() {
install -d ${D}${sysconfdir}/mender
install -m 0644 -t ${D}${sysconfdir}/mender ${B}/artifact_info
}
FILES_${PN} += " \
${sysconfdir}/mender/artifact_info \
"
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.