commit stringlengths 40 40 | old_file stringlengths 4 237 | new_file stringlengths 4 237 | old_contents stringlengths 1 4.24k | new_contents stringlengths 1 4.87k | subject stringlengths 15 778 | message stringlengths 15 8.75k | lang stringclasses 266
values | license stringclasses 13
values | repos stringlengths 5 127k |
|---|---|---|---|---|---|---|---|---|---|
a2d4a744651b3636e1845c47ac2c9c9fb12c520e | src/BatchFiles/SonarPostBuild.bat | src/BatchFiles/SonarPostBuild.bat | @echo Running Sonar post-build script...
@set ProjectKey=%1
@set ProjectName=%2
@set ProjectVersion=%3
@REM Set the output folder to the command line parameter, if supplied
@set OutputFolder=%4
@if "%OutputFolder%"=="" set OutputFolder=%TF_BUILD_BUILDDIRECTORY%\SonarTemp\Output\
@echo Sonar output folder = %OutputFo... | @echo Running Sonar post-build script...
@set ProjectKey=%1
@set ProjectName=%2
@set ProjectVersion=%3
@REM Set the output folder to the command line parameter, if supplied
@set OutputFolder=%4
@if "%OutputFolder%"=="" set OutputFolder=%TF_BUILD_BUILDDIRECTORY%\SonarTemp\Output
@echo Sonar output folder = %OutputFol... | Support spaces in the output folder | Support spaces in the output folder
| Batchfile | mit | SonarSource-DotNet/sonar-msbuild-runner,duncanpMS/sonar-msbuild-runner,SonarSource-VisualStudio/sonar-scanner-msbuild,LunicLynx/sonar-msbuild-runner,SonarSource-VisualStudio/sonar-msbuild-runner,jessehouwing/sonar-msbuild-runner,duncanpMS/sonar-msbuild-runner,jabbera/sonar-msbuild-runner,HSAR/sonar-msbuild-runner,Sonar... |
9ae3b5ba693c1e2fc77fade2419d9a4f8f7a7ef8 | misc/uninstall.bat | misc/uninstall.bat | @ECHO off
:prompt
set /P c=Are you sure you want to uninstall BetterDiscord [Y/N]?
echo.
if /I "%c%" EQU "Y" goto :removeBetterDiscord
if /I "%c%" EQU "N" goto :eof
goto :prompt
:removeBetterDiscord
echo Removing BetterDiscord...
echo.
:: Delete %appdata%\BetterDiscord
call:deleteFolder %appdata%\Bett... | @ECHO off
:prompt
set /P c=Are you sure you want to uninstall BetterDiscord [Y/N]?
echo.
if /I "%c%" EQU "Y" goto :removeBetterDiscord
if /I "%c%" EQU "N" goto :eof
goto :prompt
:removeBetterDiscord
echo Removing BetterDiscord...
echo.
:: Delete %appdata%\BetterDiscord
call:deleteFolder %appdata%\Bett... | Remove unnecessary line of code | Remove unnecessary line of code
I forgot to delete this line before committing the file | Batchfile | mit | mkody/BetterDiscordApp,Confuseh/BetterDiscordApp,Jiiks/BetterDiscordApp,mkody/BetterDiscordApp,Jiiks/BetterDiscordApp,DeathStrikeV/BetterDiscordApp,Confuseh/BetterDiscordApp,mkody/BetterDiscordApp,DeathStrikeV/BetterDiscordApp,Confuseh/BetterDiscordApp,DeathStrikeV/BetterDiscordApp,Jiiks/BetterDiscordApp,mkody/BetterDi... |
5a2f1e387449661dd27b51cb5f20ec5e776989a3 | recipes/simbody/bld.bat | recipes/simbody/bld.bat | mkdir build
cd build
cmake -G "%CMAKE_GENERATOR%" -DBUILD_VISUALIZER=OFF -DCMAKE_INSTALL_PREFIX="%LIBRARY_PREFIX%"
cmake --build . --target install --config Release -- /verbosity:quiet
REM NOTE: Run the tests here in the build directory to make sure things are
REM built correctly. This cannot be specified in the meta.y... | mkdir build
cd build
cmake -G "%CMAKE_GENERATOR%" -DBUILD_VISUALIZER=OFF -DCMAKE_INSTALL_PREFIX="%LIBRARY_PREFIX%" ..
cmake --build . --target install --config Release -- /verbosity:quiet
REM NOTE: Run the tests here in the build directory to make sure things are
REM built correctly. This cannot be specified in the met... | Call cmake in parent dir on windows. | Call cmake in parent dir on windows.
| Batchfile | bsd-3-clause | SylvainCorlay/staged-recipes,planetarypy/staged-recipes,rolando-contrib/staged-recipes,chohner/staged-recipes,dschreij/staged-recipes,Cashalow/staged-recipes,OpenPIV/staged-recipes,Savvysherpa/staged-recipes,petrushy/staged-recipes,birdsarah/staged-recipes,barkls/staged-recipes,ReimarBauer/staged-recipes,stuertz/staged... |
f261be803463315ad6249b96ed904a4c5fc74392 | src/it/it0010-lib-static/echo.bat | src/it/it0010-lib-static/echo.bat | @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 %*
| Use DOS line endings for batch file | Use DOS line endings for batch file
| Batchfile | apache-2.0 | Zetten/nar-maven-plugin,eyalg1972/nar-maven-plugin,dmakarov/nar-maven-plugin,diyessi/nar-maven-plugin,dmakarov/nar-maven-plugin,revolsys/nar-maven-plugin,markjohndoyle/nar-maven-plugin,dugilos/nar-maven-plugin,dmakarov/nar-maven-plugin,manu4linux/nar-maven-plugin,markjohndoyle/nar-maven-plugin,eyalg1972/nar-maven-plugi... |
4dbd7f4684c34299861b991584738cf724b49655 | src/BatchFiles/SonarPostBuild.bat | src/BatchFiles/SonarPostBuild.bat | @echo Running Sonar post-build script...
@set ProjectKey=%1
@set ProjectName=%2
@set ProjectVersion=%3
@set OutputFolder=%TF_BUILD_BUILDDIRECTORY%\SonarTemp\Output
@echo Performing Sonar post-processing...
@%~dp0\Sonar.TeamBuild.PostProcessor.exe
@echo Generating Sonar properties file to %OutputFolder% ...
@%~dp0\S... | @echo Running Sonar post-build script...
@set ProjectKey=%1
@set ProjectName=%2
@set ProjectVersion=%3
@set OutputFolder=%TF_BUILD_BUILDDIRECTORY%\SonarTemp\Output
@echo Performing Sonar post-processing...
@%~dp0\Sonar.TeamBuild.PostProcessor.exe
@echo Generating Sonar properties file to %OutputFolder% ...
@%~dp0\S... | Fix the Post build script | Fix the Post build script
| Batchfile | mit | SonarSource-VisualStudio/sonar-msbuild-runner,SonarSource-VisualStudio/sonar-scanner-msbuild,SonarSource/sonar-msbuild-runner,SonarSource-VisualStudio/sonar-scanner-msbuild,duncanpMS/sonar-msbuild-runner,LunicLynx/sonar-msbuild-runner,jessehouwing/sonar-msbuild-runner,SonarSource-DotNet/sonar-msbuild-runner,LunicLynx/s... |
829a5694e32a1dd0395d79f62561a4b8145546e7 | src/BatchFiles/SonarPostBuild.bat | src/BatchFiles/SonarPostBuild.bat | @echo Running Sonar post-build script...
@set ProjectKey=%1
@set ProjectName=%2
@set ProjectVersion=%3
@REM Set the output folder to the command line parameter, if supplied
@set OutputFolder=%4
@if "%OutputFolder%"=="" set OutputFolder=%TF_BUILD_BUILDDIRECTORY%\SonarTemp\Output
@echo Sonar output folder = %OutputFol... | @echo Running Sonar post-build script...
@set ProjectKey=%1
@set ProjectName=%2
@set ProjectVersion=%3
@set OutputFolder=%TF_BUILD_BUILDDIRECTORY%\SonarTemp\Output
@echo Performing Sonar post-processing...
@%~dp0\Sonar.TeamBuild.PostProcessor.exe
@echo Generating Sonar properties file to %OutputFolder% ...
@%~dp0\S... | Remove the ability to override the output folder | Remove the ability to override the output folder
| Batchfile | mit | duncanpMS/sonar-msbuild-runner,jango2015/sonar-msbuild-runner,duncanpMS/sonar-msbuild-runner,SonarSource-VisualStudio/sonar-scanner-msbuild,SonarSource-VisualStudio/sonar-msbuild-runner,SonarSource-DotNet/sonar-msbuild-runner,SonarSource-VisualStudio/sonar-scanner-msbuild,dbolkensteyn/sonar-msbuild-runner,HSAR/sonar-ms... |
755cca14029ff107797cecfd10373354638c0c20 | Kudu.Services.Web/updateNodeModules.cmd | Kudu.Services.Web/updateNodeModules.cmd | @echo off
setlocal enabledelayedexpansion
pushd %1
set attempts=5
set counter=0
:retry
set /a counter+=1
echo Attempt %counter% out of %attempts%
cmd /c npm install https://github.com/projectkudu/KuduScript/tarball/b27b514505b3d85ccb1396ab3dc7ed64d1dfd455
IF %ERRORLEVEL% NEQ 0 goto error
goto end
:error
if %count... | @echo off
setlocal enabledelayedexpansion
pushd %1
set attempts=5
set counter=0
:retry
set /a counter+=1
echo Attempt %counter% out of %attempts%
cmd /c npm install https://github.com/projectkudu/KuduScript/tarball/6f8085cef949e47a38eef03345d683dc4ca9ad7d
IF %ERRORLEVEL% NEQ 0 goto error
goto end
:error
if %count... | Update kudu with new kuduscript (linux only) | Update kudu with new kuduscript (linux only)
| Batchfile | apache-2.0 | EricSten-MSFT/kudu,projectkudu/kudu,projectkudu/kudu,projectkudu/kudu,EricSten-MSFT/kudu,EricSten-MSFT/kudu,projectkudu/kudu,shibayan/kudu,projectkudu/kudu,EricSten-MSFT/kudu,shibayan/kudu,shibayan/kudu,EricSten-MSFT/kudu,shibayan/kudu,shibayan/kudu |
51d11b804a38c2bc2ea50144a97beafb4ef3b260 | windows/install-all.bat | windows/install-all.bat | move /Y c:\shinken\windows\bin\shinken-poller c:\shinken\windows\bin\shinken-poller.py
move /Y c:\shinken\windows\bin\shinken-reactionner c:\shinken\windows\bin\shinken-reactionner.py
move /Y c:\shinken\windows\bin\shinken-scheduler c:\shinken\windows\bin\shinken-scheduler.py
move /Y c:\shinken\windows\bin\shinken-a... | move /Y c:\shinken\bin\shinken-poller c:\shinken\bin\shinken-poller.py
move /Y c:\shinken\bin\shinken-reactionner c:\shinken\bin\shinken-reactionner.py
move /Y c:\shinken\bin\shinken-scheduler c:\shinken\bin\shinken-scheduler.py
move /Y c:\shinken\bin\shinken-arbiter c:\shinken\bin\shinken-arbiter.py
move /Y c:\shi... | Fix the isntall script on windows box. | Fix the isntall script on windows box.
| Batchfile | agpl-3.0 | lets-software/shinken,xorpaul/shinken,xorpaul/shinken,Aimage/shinken,KerkhoffTechnologies/shinken,Aimage/shinken,xorpaul/shinken,mohierf/shinken,baloo/shinken,geektophe/shinken,Simage/shinken,rednach/krill,fpeyre/shinken,KerkhoffTechnologies/shinken,kaji-project/shinken,dfranco/shinken,Aimage/shinken,staute/shinken_deb... |
6b5dc0a0c5f760675986d3bdbf057e0a5d6a5824 | tools/createdocs.bat | tools/createdocs.bat | 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
| Fix svn props on batch file | Fix svn props on batch file
git-svn-id: 36fa54bcf7959784062f2fb33d73c647c0664d45@1663377 13f79535-47bb-0310-9956-ffa450edef68
| Batchfile | apache-2.0 | ctapmex/xerces-c,ctapmex/xerces-c,colorer/xerces-c,colorer/xerces-c,colorer/xerces-c,ctapmex/xerces-c,ctapmex/xerces-c,colorer/xerces-c,colorer/xerces-c |
c14196402814c2eb7aae75540128cd9caf45c1b7 | build.cmd | build.cmd | @ECHO OFF
:: Libraries are currently pre-release
SET VersionSuffix=alpha
:: Default to a release build
IF "%Configuration%"=="" SET Configuration=Release
powershell -noprofile -executionpolicy bypass -file build\restore.ps1
"%ProgramFiles(x86)%\MSBuild\14.0\bin\MSBuild.exe" /nologo /m /v:m /nr:false /flp:logfile=bin... | @ECHO OFF
:: Libraries are currently pre-release
SET VersionSuffix=alpha
:: Default to a release build
IF "%Configuration%"=="" SET Configuration=Release
if not exist bin\%Configuration% mkdir bin\%Configuration%
powershell -noprofile -executionpolicy bypass -file build\restore.ps1
"%ProgramFiles(x86)%\MSBuild\14.0... | Create directory so log can be written | Create directory so log can be written
| Batchfile | mit | Microsoft/dotnet-apiport,conniey/dotnet-apiport,conniey/dotnet-apiport,twsouthwick/dotnet-apiport,JJVertical/dotnet-apiport,mjrousos/dotnet-apiport,Microsoft/dotnet-apiport,twsouthwick/dotnet-apiport,mjrousos/dotnet-apiport,Microsoft/dotnet-apiport,JJVertical/dotnet-apiport,conniey/dotnet-apiport |
7d9fc4af563d4224c41d5321fa264b7bbfe3d813 | build.cmd | build.cmd | @echo off
setlocal
:: Note: We've disabled node reuse because it causes file locking issues.
:: The issue is that we extend the build with our own targets which
:: means that that rebuilding cannot successully delete the task
:: assembly.
:: Check prerequisites
if not defined VS120COMNTOOLS (
i... | @echo off
setlocal
:: Note: We've disabled node reuse because it causes file locking issues.
:: The issue is that we extend the build with our own targets which
:: means that that rebuilding cannot successully delete the task
:: assembly.
:: Check prerequisites
if not defined VS120COMNTOOLS (
i... | Fix incorrect url for Developer Guide | Fix incorrect url for Developer Guide
| Batchfile | mit | rahku/corefx,MaggieTsang/corefx,shimingsg/corefx,cartermp/corefx,alexperovich/corefx,krytarowski/corefx,shrutigarg/corefx,yizhang82/corefx,PatrickMcDonald/corefx,larsbj1988/corefx,tijoytom/corefx,ravimeda/corefx,janhenke/corefx,mokchhya/corefx,gkhanna79/corefx,yizhang82/corefx,ptoonen/corefx,mellinoe/corefx,larsbj1988/... |
9e5e827b9afe154a25d7b65f41eace9d4aeb88a4 | deploy.sh.cmd | deploy.sh.cmd | git checkout gh-pages
git merge master
npm start mol mol/app/hello mol/app/supplies mol/app/habhub mol/app/todomvc mol/perf/render mol/perf/uibench mol/app/bench mol/app/bench/list/mol mol/app/bench/list/tsx mol/app/taxon mol/app/taxon/demo mol/app/users mol/mem
git commit -a -m "Update" && git push || git checkout mas... | git checkout gh-pages
git merge master
npm start mol mol/app/hello mol/app/supplies mol/app/habhub mol/app/todomvc mol/perf/render mol/perf/uibench mol/app/bench mol/app/bench/list/mol mol/app/bench/list/tsx mol/app/taxon mol/app/taxon/demo mol/app/users mol/mem mol/app/quine mol/app/lamps
git commit -a -m "Update" && ... | Build lamps and quine on deploy. | Build lamps and quine on deploy.
| Batchfile | mit | eigenmethod/mol,nin-jin/mol,nin-jin/mol,eigenmethod/mol,nin-jin/mol,eigenmethod/mol |
08b52557a919bdf676d6901863f16f1e2c1a0f7b | HIDInjector/driver/CreateDriverPackage.cmd | HIDInjector/driver/CreateDriverPackage.cmd | :: Run the following script from “Deployment and Imaging Tools Environment” as Admin.
SET PATH=%KITSROOT%\tools\bin\i386;%PATH%
SET PATH=%KITSROOT%\bin\i386;%PATH%
SET AKROOT=%KITSROOT%
SET WPDKCONTENTROOT=%KITSROOT%
SET PKG_CONFIG_XML=%KITSROOT%\Tools\bin\i386\pkggen.cfg.xml
SET BSP_VERSION=10.0.0.0
SET BSP_ARCH=arm
... | :: Run the following script from “Deployment and Imaging Tools Environment” as Admin.
SET PATH=%KITSROOT%\tools\bin\i386;%PATH%
SET PATH=%KITSROOT%\bin\i386;%PATH%
SET AKROOT=%KITSROOT%
SET WPDKCONTENTROOT=%KITSROOT%
SET PKG_CONFIG_XML=%KITSROOT%Tools\bin\i386\pkggen.cfg.xml
SET BSP_VERSION=10.0.0.0
SET BSP_ARCH=arm
S... | Change commandline to be compatible with 14393 | Change commandline to be compatible with 14393
| Batchfile | mit | zhuridartem/samples,bfjelds/samples,parameshbabu/samples,paulmon/samples,bfjelds/samples,derekameer/samples,parameshbabu/samples,ms-iot/samples,derekameer/samples,jordanrh1/samples,javiddhankwala/samples,jordanrh1/samples,derekameer/samples,jessekaplan/samples,ms-iot/samples,jessekaplan/samples,javiddhankwala/samples,p... |
e49e8bc42c7b1426f0ab80f14b90e732ef84b733 | recipes/shared-mime-info/shared-mime-info_0.51.bb | recipes/shared-mime-info/shared-mime-info_0.51.bb | require shared-mime-info.inc
DEPENDS = "libxml2 intltool-native glib-2.0 shared-mime-info-native"
PR = "r2"
do_install_append() {
update-mime-database ${D}${datadir}/mime
}
# freedesktop.org.xml is huge and only needed when updating the db
# mime.bbclass will add the dependency on it automagically
PACKAGES =+ "f... | require shared-mime-info.inc
LICENSE = "GPLv2"
DEPENDS = "libxml2 intltool-native glib-2.0 shared-mime-info-native"
PR = "r3"
do_install_append() {
update-mime-database ${D}${datadir}/mime
}
# freedesktop.org.xml is huge and only needed when updating the db
# mime.bbclass will add the dependency on it automagic... | Update LICENSE field version to GPLv2 | shared-mime-info: Update LICENSE field version to GPLv2
* Updated LICENSE field version from generic GPL to GPLv2 to
reflect the real license version.
* This change was based on source inspection.
Signed-off-by: Chase Maupin <5a5662f468a76e0fc4391e65fb9f536df44d7380@ti.com>
Signed-off-by: Martin Jansa <516df3ff67e1... | BitBake | mit | xifengchuo/openembedded,hulifox008/openembedded,giobauermeister/openembedded,hulifox008/openembedded,xifengchuo/openembedded,openembedded/openembedded,openembedded/openembedded,openembedded/openembedded,xifengchuo/openembedded,giobauermeister/openembedded,hulifox008/openembedded,openembedded/openembedded,giobauermeiste... |
1eb3262fea767b7ab3ddbfae6965afb8fa5516a5 | recipes-kernel/linux/linux-nilrt-debug_3.14.bb | recipes-kernel/linux/linux-nilrt-debug_3.14.bb | DESCRIPTION = "Linux kernel, debug build, based on nilrt branch"
require linux-nilrt.inc
require linux-nilrt-squashfs.inc
NI_RELEASE_VERSION = "comms-2.0"
LINUX_VERSION = "3.14"
LINUX_VERSION_EXTENSION = "-nilrt-debug"
KBRANCH = "nilrt/${NI_RELEASE_VERSION}/${LINUX_VERSION}"
KERNEL_MODULES_META_PACKAGE = "kernel-mod... | DESCRIPTION = "Linux kernel, debug build, based on nilrt branch"
require linux-nilrt.inc
NI_RELEASE_VERSION = "comms-2.0"
LINUX_VERSION = "3.14"
LINUX_VERSION_EXTENSION = "-nilrt-debug"
KBRANCH = "nilrt/${NI_RELEASE_VERSION}/${LINUX_VERSION}"
KERNEL_MODULES_META_PACKAGE = "kernel-modules-debug"
KERNEL_MODULE_PACKAGE... | Clean up debug kernel recipe | linux-nilrt-debug: Clean up debug kernel recipe
Add missing packages, enforce 'debug' naming convention consistently,
and remove dependency on the squashfs-based versioning tools.
Signed-off-by: Joshua Hernstrom <32dc8cfec5c07c8b12607232c3deac1c85064218@ni.com>
| BitBake | mit | ni/meta-nilrt,ni/meta-nilrt,ni/meta-nilrt,ni/meta-nilrt,ni/meta-nilrt |
c7d6ca2e13be994b95c506534f1c61da8ebcc46c | recipes-kernel/linux/linux-sakoman_3.2.bb | recipes-kernel/linux/linux-sakoman_3.2.bb | require linux.inc
DESCRIPTION = "Linux kernel for OMAP processors"
KERNEL_IMAGETYPE = "uImage"
COMPATIBLE_MACHINE = "overo"
BOOT_SPLASH ?= "logo_linux_clut224-generic.ppm"
PV = "3.2"
S = "${WORKDIR}/git"
SRCREV = "${AUTOREV}"
SRC_URI = "git://www.sakoman.com/git/linux-omap-2.6.git;branch=omap-3.2;protocol=git \
... | require linux.inc
DESCRIPTION = "Linux kernel for OMAP processors"
KERNEL_IMAGETYPE = "uImage"
COMPATIBLE_MACHINE = "overo"
BOOT_SPLASH ?= "logo_linux_clut224-generic.ppm"
PV = "3.2"
S = "${WORKDIR}/git"
SRCREV = "${AUTOREV}"
#SRCREV = "33128932803c3f8c35fe8dae257901deb60db2aa"
SRC_URI = "git://www.sakoman.com/git... | Use latest kernel from sakoman repo | Use latest kernel from sakoman repo
| BitBake | mit | scottellis/meta-jumpnow,scottellis/meta-jumpnow,scottellis/meta-jumpnow |
8f2820f6be0fa2c03136179869758985f64d256b | recipes-mochad/images/core-image-mochad.bb | recipes-mochad/images/core-image-mochad.bb | DESCRIPTION = "A small image just capable of allowing a device to boot."
IMAGE_INSTALL = "packagegroup-core-boot ${ROOTFS_PKGMANAGE_BOOTSTRAP} ${CORE_IMAGE_EXTRA_INSTALL} libusb1 mochad "
IMAGE_LINGUAS = " "
LICENSE = "MIT"
inherit core-image
IMAGE_ROOTFS_SIZE = "8192"
| DESCRIPTION = "A small image just capable of allowing a device to boot."
IMAGE_INSTALL = "packagegroup-core-boot ${ROOTFS_PKGMANAGE_BOOTSTRAP} ${CORE_IMAGE_EXTRA_INSTALL} libusb1 mochad "
IMAGE_LINGUAS = " "
LICENSE = "MIT"
inherit core-image
IMAGE_ROOTFS_SIZE = "16384"
| Fix Image Creation issue : Increase Rootfs Size | Fix Image Creation issue : Increase Rootfs Size
Signed-off-by: Baptiste DURAND <b25337b7e75bfa5131dfd7920748e6b5e058e3ca@gmail.com>
| BitBake | mit | baillaw/meta-x10 |
7d3855a28b7eb45f1b1adc185148e1349f9ede4c | recipes-bsp/u-boot/u-boot-ti-staging_2020.01.bb | recipes-bsp/u-boot/u-boot-ti-staging_2020.01.bb | require u-boot-ti.inc
PR = "r29"
BRANCH = "ti-u-boot-2020.01"
SRCREV = "df5e46d817182dcbd52212a7ff3c31eb20398dbe"
| require u-boot-ti.inc
PR = "r30"
BRANCH = "ti-u-boot-2020.01"
SRCREV = "84b608fd3489c8dd93d8eb20e7f005d967b88402"
| Update to the latest commit | ti-uboot-staging: Update to the latest commit
Update SRCREV to latest commit
Signed-off-by: Praneeth Bajjuri <5cbfdb29322859ed5c637fdb11a8f23fddd8e511@ti.com>
Signed-off-by: Dan Murphy <50b72235ef2106735bf2282950a69d11e6d56bc7@ti.com>
| BitBake | mit | rcn-ee/meta-ti,rcn-ee/meta-ti,rcn-ee/meta-ti,rcn-ee/meta-ti |
a1c2fa4c964d6d6d8c0ec6495fdb43d11e0022b8 | recipes-extended/libstatgrab/libstatgrab_git.bb | recipes-extended/libstatgrab/libstatgrab_git.bb | DESCRIPTION = "Utilities to collect and visualise system statistics"
HOMEPAGE = "http://www.i-scream.org/libstatgrab/"
LICENSE = "GPLv2+"
LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
DEPENDS = "ncurses"
PV = "0.91"
FILESEXTRAPATHS_prepend := "${THISDIR}/patches:"
SRCREV = "c39988855a9d1... | DESCRIPTION = "Utilities to collect and visualise system statistics"
HOMEPAGE = "http://www.i-scream.org/libstatgrab/"
LICENSE = "GPLv2+"
LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
DEPENDS = "ncurses"
PV = "0.91"
FILESEXTRAPATHS_prepend := "${THISDIR}/patches:"
SRCREV = "c39988855a9d1... | Fix for fido, be more clear regarding configure options | Fix for fido, be more clear regarding configure options
Signed-off-by: Jens Rehsack <69d49c504a9219a55b8be0f905e8fe3c32ffb57f@netbsd.org>
| BitBake | mit | vmoesker/meta-jens,zeretztkeG/meta-jens,rdm-dev/meta-jens,mrabe89sigma/rdm-meta-jens,vmoesker/meta-jens,mrabe89sigma/meta-jens,tobw/meta-jens,tobw/meta-jens,tobw/meta-jens,rdm-dev/meta-jens,mrabe89sigma/rdm-meta-jens,mrabe89sigma/rdm-meta-jens,zeretztkeG/meta-jens,rdm-dev/meta-jens,zeretztkeG/meta-jens,zeretztkeG/meta-... |
3be9eea720ba70fd3a9e4744401fd268e31731f8 | meta-gnome/recipes-gnome/libwnck/libwnck3_3.20.1.bb | meta-gnome/recipes-gnome/libwnck/libwnck3_3.20.1.bb | SUMMARY = "Window navigation construction toolkit"
LICENSE = "LGPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=5f30f0716dfdd0d91eb439ebec522ec2"
BPN = "libwnck"
SECTION = "x11/libs"
DEPENDS = "intltool-native gtk+3 gdk-pixbuf-native libxres"
PACKAGECONFIG ??= "startup-notification"
PACKAGECONFIG[startup-notification] ... | SUMMARY = "Window navigation construction toolkit"
LICENSE = "LGPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=5f30f0716dfdd0d91eb439ebec522ec2"
BPN = "libwnck"
SECTION = "x11/libs"
DEPENDS = "intltool-native gnome-common-native gtk+3 gdk-pixbuf-native libxres"
PACKAGECONFIG ??= "startup-notification"
PACKAGECONFIG[st... | Add missing dependency on gnome-common-native | libwnck3: Add missing dependency on gnome-common-native
Fixes configure errors
../libwnck-3.20.1/configure: line 13391: syntax error near unexpected token `maximum'
../libwnck-3.20.1/configure: line 13391: `GNOME_COMPILE_WARNINGS(maximum)'
Signed-off-by: Khem Raj <729d64b6f67515e258459a5f6d20ec88b2caf8df@gmail.com>
S... | BitBake | mit | VCTLabs/meta-openembedded,VCTLabs/meta-openembedded,VCTLabs/meta-openembedded,victronenergy/meta-openembedded,moto-timo/meta-openembedded,lgirdk/meta-openembedded,kraj/meta-openembedded,openembedded/meta-openembedded,lgirdk/meta-openembedded,mrchapp/meta-openembedded,VCTLabs/meta-openembedded,schnitzeltony/meta-openemb... |
849a26fbfd0924e65618c522ac7be33d0c0c2c60 | recipes-misc-support/rasqal_git.bb | recipes-misc-support/rasqal_git.bb | LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe"
inherit autotools gtk-doc
DEPENDS = "raptor"
RDEPENDS_${PN} = "raptor"
SRC_URI = "git://github.com/dajobe/rasqal.git;branch=master \
file://No-docs-and-NOCONFIGURE.patch \
file://Fix-cross-compile.patch \
"
SRCREV ... | LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe"
inherit autotools gtk-doc
DEPENDS = "raptor"
RDEPENDS_${PN} = "raptor"
SRC_URI = "git://github.com/dajobe/rasqal.git;branch=master \
file://No-docs-and-NOCONFIGURE.patch \
file://Fix-cross-compile.patch \
"
SRCREV ... | Fix race conditions with PARALLEL_MAKE = "" | rasqal: Fix race conditions with PARALLEL_MAKE = ""
Signed-off-by: Samuel Stirtzel <5e7b27e76d616174d4c71d96463fdd2f7e57e559@googlemail.com>
| BitBake | mit | koenkooi/meta-kde4,koenkooi/meta-kde4,Angstrom-distribution/meta-kde,Angstrom-distribution/meta-kde |
123cca13ab4561dc2e427acf0cf5e7abd1b35ee0 | packages/openmoko-projects/assassin-thumbnail.bb | packages/openmoko-projects/assassin-thumbnail.bb | DESCRIPTION = "Assassin Packages Thumbnails"
HOMEPAGE = "http://assassin.projects.openmoko.org/"
LICENSE = "GPL"
RDEPENDS = "assassin"
PV = "0.1+svnr${SRCPV}"
PR = "r1"
SRC_URI = "svn://svn.openmoko.org/trunk/src/target/thumbnails/;module=result;proto=https"
do_install() {
install -d ${D}${THUMBNAIL_DIR}
... | DESCRIPTION = "Assassin Packages Thumbnails"
HOMEPAGE = "http://assassin.projects.openmoko.org/"
PKG_TAGS_${PN} = "group::unknown"
LICENSE = "GPL"
RDEPENDS = "assassin"
PV = "0.1+svnr${SRCPV}"
PR = "r0"
SRC_URI = "svn://svn.openmoko.org/trunk/src/target/thumbnails/;module=result;proto=https"
do_install() {
in... | Revert "[alias name] Adding alias name tags for packages" | Revert "[alias name] Adding alias name tags for packages"
This reverts commit ac7bec3cdab4ee8b7a4445be166c82c9432e3ac1.
| BitBake | mit | thebohemian/openembedded,giobauermeister/openembedded,scottellis/overo-oe,buglabs/oe-buglabs,hulifox008/openembedded,SIFTeam/openembedded,crystalfontz/openembedded,openembedded/openembedded,dave-billin/overo-ui-moos-auv,sledz/oe,popazerty/openembedded-cuberevo,philb/pbcl-oe-2010,crystalfontz/openembedded,nvl1109/openem... |
5e3ef9fb4e87384031f8fda8c67eaa9c9bb0261b | recipes-platform/packagegroups/packagegroup-agl-sota.bb | recipes-platform/packagegroups/packagegroup-agl-sota.bb | 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 \
"
| Add ota-plus client and provisioning recipe to image | Add ota-plus client and provisioning recipe to image
| BitBake | mit | leon-anavi/meta-ota-plus |
b93cb237995ec804e929f0da815fe76d61a37c14 | meta-refkit-industrial/recipes-image/images/refkit-image-industrial.bb | meta-refkit-industrial/recipes-image/images/refkit-image-industrial.bb | SUMMARY = "IoT Reference OS Kit image for Industrial profile."
DESCRIPTION = "IoT Reference OS Kit image for Industrial profile."
REFKIT_IMAGE_INDUSTRIAL_EXTRA_FEATURES ?= "${REFKIT_IMAGE_FEATURES_COMMON}"
REFKIT_IMAGE_INDUSTRIAL_EXTRA_INSTALL ?= "${REFKIT_IMAGE_INSTALL_COMMON}"
REFKIT_IMAGE_EXTRA_FEATURES += "${REFKI... | SUMMARY = "IoT Reference OS Kit image for Industrial profile."
DESCRIPTION = "IoT Reference OS Kit image for Industrial profile."
REFKIT_IMAGE_INDUSTRIAL_EXTRA_FEATURES ?= "${REFKIT_IMAGE_FEATURES_COMMON}"
REFKIT_IMAGE_INDUSTRIAL_EXTRA_INSTALL ?= "${REFKIT_IMAGE_INSTALL_COMMON}"
REFKIT_IMAGE_EXTRA_FEATURES += "${REFKI... | Revert "rekit-image-industrial.bb: horrendous kludge to avoid usrmerge conflict." | Revert "rekit-image-industrial.bb: horrendous kludge to avoid usrmerge conflict."
This reverts commit 59d6c664bb2619e26376eed1324b3971ddb96561.
Signed-off-by: Dmitry Rozhkov <208d90a35521dcb3e50d907c695d85f9e609147c@linux.intel.com>
| BitBake | mit | ipuustin/intel-iot-refkit,klihub/intel-iot-refkit,klihub/intel-iot-refkit,intel/intel-iot-refkit,klihub/intel-iot-refkit,klihub/intel-iot-refkit,jairglez/intel-iot-refkit,YinThong/intel-iot-refkit,mythi/intel-iot-refkit,YinThong/intel-iot-refkit,mythi/intel-iot-refkit,jairglez/intel-iot-refkit,jairglez/intel-iot-refkit... |
38da315d318704f05f4c14fbd7fe7cd89b0d8f46 | meta-arago-extras/recipes-benchmark/arm-benchmarks/arm-benchmarks_1.3.bb | meta-arago-extras/recipes-benchmark/arm-benchmarks/arm-benchmarks_1.3.bb | DESCRIPTION = "ARM Benchmarks"
HOMEPAGE = "https://gforge.ti.com/gf/project/am_benchmarks/"
LICENSE = "BSD"
LIC_FILES_CHKSUM = "file://COPYING;md5=7aefb5e1cffc7b6a3ef18b803f957922"
SECTION = "system"
PR = "r3"
BRANCH ?= "master"
SRCREV = "e9fbf7990e93d97e7471e509626969d244cca214"
SRC_URI = "git://gitorious.org/arm_b... | DESCRIPTION = "ARM Benchmarks"
HOMEPAGE = "https://gforge.ti.com/gf/project/am_benchmarks/"
LICENSE = "BSD"
LIC_FILES_CHKSUM = "file://COPYING;md5=7aefb5e1cffc7b6a3ef18b803f957922"
SECTION = "system"
PR = "r4"
BRANCH ?= "master"
SRCREV = "9b7b4fbde8fcf796a23da2a464dbf934e550f6c9"
SRC_URI = "git://gitorious.org/arm_b... | Move makefiles into ARCH directory | arm-benchmarks: Move makefiles into ARCH directory
* Moving makefile into Architecture directory making it possible to install
only one ARCH on a target system.
* Update Rules.make relative path
Signed-off-by: Jeff Lance <1f65ae864703160707afde1c899546bb901fc98c@ti.com>
Signed-off-by: Denys Dmytriyenko <d29de71aea3... | BitBake | mit | rcn-ee/meta-arago,MentorEmbedded/meta-arago,rcn-ee/meta-arago,rcn-ee/meta-arago,rcn-ee/meta-arago,rcn-ee/meta-arago,MentorEmbedded/meta-arago,MentorEmbedded/meta-arago,MentorEmbedded/meta-arago |
c6b077d2e4ce95a305fee671f835a89016849711 | recipes/binutils/binutils-canadian-sdk_2.18.bb | recipes/binutils/binutils-canadian-sdk_2.18.bb | SECTION = "devel"
require binutils_${PV}.bb
inherit canadian-sdk
DEPENDS="\
virtual/${HOST_PREFIX}binutils \
virtual/${HOST_PREFIX}gcc \
flex-native bison-native \
"
FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/binutils-${PV}"
EXTRA_OECONF = "--with-sysroot=${prefix}/${TARGET_SYS} \
--program-pref... | SECTION = "devel"
require binutils_${PV}.bb
inherit canadian-sdk
DEPENDS="\
virtual/${HOST_PREFIX}binutils \
virtual/${HOST_PREFIX}gcc \
flex-native bison-native \
"
FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/binutils-${PV}"
# On MinGW hosts we want to prepend a drive letter, in ${SDK_REALPATH_MIN... | Use add SYSROOT, use SDK_REALPATH_MINGW, bump PR | binutils-canadian-sdk: Use add SYSROOT, use SDK_REALPATH_MINGW, bump PR
| BitBake | mit | nvl1109/openembeded,nlebedenco/mini2440,KDAB/OpenEmbedded-Archos,nvl1109/openembeded,nlebedenco/mini2440,nvl1109/openembeded,KDAB/OpenEmbedded-Archos,KDAB/OpenEmbedded-Archos,nlebedenco/mini2440,nvl1109/openembeded,KDAB/OpenEmbedded-Archos,nvl1109/openembeded,nlebedenco/mini2440,KDAB/OpenEmbedded-Archos,nlebedenco/mini... |
09a2eb4701348939d96d403544e082d5a0f9c05e | meta-oe/recipes-extended/openlmi/openlmi-tools_0.10.5.bb | meta-oe/recipes-extended/openlmi/openlmi-tools_0.10.5.bb | SUMMARY = "Set of CLI tools for Openlmi providers"
DESCRIPTION = "openlmi-tools is a set of command line tools for Openlmi providers."
HOMEPAGE = "http://www.openlmi.org/"
LICENSE = "GPLv2+"
LIC_FILES_CHKSUM = "file://COPYING;md5=75859989545e37968a99b631ef42722e"
SECTION = "System/Management"
inherit setuptools
DEPEN... | SUMMARY = "Set of CLI tools for Openlmi providers"
DESCRIPTION = "openlmi-tools is a set of command line tools for Openlmi providers."
HOMEPAGE = "http://www.openlmi.org/"
LICENSE = "GPLv2+"
LIC_FILES_CHKSUM = "file://../COPYING;md5=75859989545e37968a99b631ef42722e"
SECTION = "System/Management"
inherit setuptools
DE... | Fix setup.py clean during build | openlmi-tools: Fix setup.py clean during build
setuptools bbclass now runs clean target before configure
therefore create the setup.py before main configure task
secondly, all action happens inside cli subdir so mark it
default S
Signed-off-by: Khem Raj <729d64b6f67515e258459a5f6d20ec88b2caf8df@gmail.com>
| BitBake | mit | moto-timo/meta-openembedded,lgirdk/meta-openembedded,kraj/meta-openembedded,VCTLabs/meta-openembedded,openembedded/meta-openembedded,kraj/meta-openembedded,rehsack/meta-openembedded,kraj/meta-openembedded,victronenergy/meta-openembedded,lgirdk/meta-openembedded,schnitzeltony/meta-openembedded,moto-timo/meta-openembedde... |
8364cc601b9be02ad09b42c65381b59a0127e2e0 | packages/gpe-contacts/gpe-contacts-hildon_0.40.bb | packages/gpe-contacts/gpe-contacts-hildon_0.40.bb | 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}"
| Change RDEPENDS to make sure gpe-contacts-hildon doesn't pull in gpe-icons. | Change RDEPENDS to make sure gpe-contacts-hildon doesn't pull in gpe-icons.
| BitBake | mit | JrCs/opendreambox,bticino/openembedded,scottellis/overo-oe,mrchapp/arago-oe-dev,xifengchuo/openembedded,thebohemian/openembedded,JamesAng/oe,demsey/openenigma2,nvl1109/openembeded,libo/openembedded,philb/pbcl-oe-2010,demsey/openembedded,philb/pbcl-oe-2010,bticino/openembedded,xifengchuo/openembedded,hulifox008/openembe... |
b7f04b90f5921a5a975768e025cf60580b2ddcd1 | recipes-kernel/linux/linux-nilrt-debug_git.bb | recipes-kernel/linux/linux-nilrt-debug_git.bb | DESCRIPTION = "NILRT linux kernel debug build"
NI_RELEASE_VERSION = "master"
LINUX_VERSION = "5.10"
LINUX_VERSION_xilinx-zynq = "4.14"
LINUX_KERNEL_TYPE = "debug"
require linux-nilrt-alternate.inc
SRC_URI += "\
file://debug.cfg \
"
# This is the place to overwrite the source AUTOREV from linux-nilrt.inc, if
# the k... | DESCRIPTION = "NILRT linux kernel debug build"
NI_RELEASE_VERSION = "master"
LINUX_VERSION = "5.10"
LINUX_VERSION_xilinx-zynq = "4.14"
LINUX_KERNEL_TYPE = "debug"
require linux-nilrt-alternate.inc
SRC_URI += "\
file://debug.cfg \
"
# This is the place to overwrite the source AUTOREV from linux-nilrt.inc, if
# the k... | Move debug vmlinux out of /boot | linux-nilrt-debug: Move debug vmlinux out of /boot
The debug vmlinux file is significantly larger than the entire boot
partition. As a result, installing it was causing errors.
This file is not actually used by the target, but is intended to be
copied to a host machine running gdb. Therefore it does not need to be
in... | BitBake | mit | ni/meta-nilrt,ni/meta-nilrt,ni/meta-nilrt,ni/meta-nilrt,ni/meta-nilrt |
bc7f1ed85496603ef7af098da6948f9f2e487564 | meta-jlime/recipes-core/tasks/task-jlime-apps.bb | meta-jlime/recipes-core/tasks/task-jlime-apps.bb | DESCRIPTION = "Base package set for Jlime images."
SECTION = "x11/wm"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
PR = "r3"
inherit task
PROVIDES = "${PACKAGES}"
PACKAGES = "\
${PN}-cli \
${PN}-gui \
"
RDEPENDS_${PN}-cli = " \
file \
... | DESCRIPTION = "Base package set for Jlime images."
SECTION = "x11/wm"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
PR = "r4"
inherit task
PROVIDES = "${PACKAGES}"
PACKAGES = "\
${PN}-cli \
${PN}-gui \
"
RDEPENDS_${PN}-cli = " \
dropbea... | Add some extra apps to Jlime images. | Add some extra apps to Jlime images.
| BitBake | mit | tworaz/oe-tworaz |
31c3752ee75929187ce45441b7e40ae7229a3b94 | recipes-bsp/u-boot/u-boot-ti-staging_2020.01.bb | recipes-bsp/u-boot/u-boot-ti-staging_2020.01.bb | 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"
| Update to the latest commit | ti-uboot-staging: Update to the latest commit
Update SRCREV to latest commit
Signed-off-by: Praneeth Bajjuri <5cbfdb29322859ed5c637fdb11a8f23fddd8e511@ti.com>
Signed-off-by: Dan Murphy <50b72235ef2106735bf2282950a69d11e6d56bc7@ti.com>
| BitBake | mit | rcn-ee/meta-ti,rcn-ee/meta-ti,rcn-ee/meta-ti,rcn-ee/meta-ti |
2095f5da97635d572a1a8fe343769d2d6b15f996 | meta-resin-common/recipes-core/packagegroups/packagegroup-resin.bb | meta-resin-common/recipes-core/packagegroups/packagegroup-resin.bb | SUMMARY = "Resin Package Groups"
LICENSE = "Apache-2.0"
PR = "r1"
inherit packagegroup
RESIN_INIT_PACKAGE ?= "resin-init"
RDEPENDS_${PN} = "\
${@bb.utils.contains('DISTRO_FEATURES', 'resin-staging', 'nano', '', d)} \
${RESIN_INIT_PACKAGE} \
linux-firmware-ath9k \
linux-firmware-ralink \
linux-firmware-rtl8192c... | SUMMARY = "Resin Package Groups"
LICENSE = "Apache-2.0"
PR = "r1"
inherit packagegroup
RESIN_INIT_PACKAGE ?= "resin-init"
RESIN_STAGING_ADDONS = "iozone3 nano"
RDEPENDS_${PN} = "\
${@bb.utils.contains('DISTRO_FEATURES', 'resin-staging', '${RESIN_STAGING_ADDONS}', '', d)} \
${RESIN_INIT_PACKAGE} \
linux-firmware-... | Add iozone to staging build | Add iozone to staging build
| BitBake | apache-2.0 | resin-os/meta-resin,resin-os/meta-resin,resin-os/meta-resin,resin-os/meta-resin |
be07ccc2b6728a27a1a03a57da3853ae113bcc99 | recipes-core/packagegroups/packagegroup-ni-desirable.bb | recipes-core/packagegroups/packagegroup-ni-desirable.bb | SUMMARY = "Non-critical, but desirable packages. These packages are not \
permitted to fail during build."
LICENSE = "MIT"
inherit packagegroup
# essential packagegroups
RDEPENDS_${PN} += "\
packagegroup-core-tools-debug \
packagegroup-ni-debug-kernel \
packagegroup-ni-ptest \
packagegroup-ni-selinux \
"
RDEPEND... | SUMMARY = "Non-critical, but desirable packages. These packages are not \
permitted to fail during build."
LICENSE = "MIT"
inherit packagegroup
# essential packagegroups
RDEPENDS_${PN} += "\
packagegroup-core-tools-debug \
packagegroup-ni-debug-kernel \
packagegroup-ni-ptest \
packagegroup-ni-selinux \
"
RDEPEND... | Add ptest for NO_HZ_FULL configured kernels to desirable group | kernel-tests: Add ptest for NO_HZ_FULL configured kernels to desirable group
Signed-off-by: Gratian Crisan <17cf39b7426cfdea7dd491f7105a23841aaa302f@ni.com>
| BitBake | mit | ni/meta-nilrt,ni/meta-nilrt,ni/meta-nilrt,ni/meta-nilrt,ni/meta-nilrt |
515c14ef262bf97299b0d70475b5043d6bacb536 | packages/openmoko-projects/diversity-radar_svn.bb | packages/openmoko-projects/diversity-radar_svn.bb | DESCRIPTION = "Diversity_radar - a GPS location based communicative application"
HOMEPAGE = "http://diversity.projects.openmoko.org/"
SECTION = "openmoko/applications"
LICENSE = "GPL"
DEPENDS = "python-evas python-edje python-ecore python-edbus python-dbus python-etk"
RDEPENDS_${PN} = "diversity-daemon"
PV = "0.0.4+svn... | DESCRIPTION = "Diversity_radar - a GPS location based communicative application"
HOMEPAGE = "http://diversity.projects.openmoko.org/"
SECTION = "openmoko/applications"
LICENSE = "GPL"
DEPENDS = "python-evas python-edje python-ecore python-edbus python-dbus python-etk"
RDEPENDS_${PN} = "diversity-daemon"
PV = "0.0.4+svn... | Revert "[alias name] Adding alias name tags for packages" | Revert "[alias name] Adding alias name tags for packages"
This reverts commit 6f6941b677e06410fbae982fe4950bbd55dd187a.
| BitBake | mit | openpli-arm/openembedded,JamesAng/goe,yyli/overo-oe,JrCs/opendreambox,mrchapp/arago-oe-dev,hulifox008/openembedded,nx111/openembeded_openpli2.1_nx111,nzjrs/overo-openembedded,bticino/openembedded,JamesAng/goe,demsey/openembedded,crystalfontz/openembedded,popazerty/openembedded-cuberevo,dellysunnymtech/sakoman-oe,trini/... |
375c6488512942866286fb7b3c0db56342c9984f | recipes-core/packagegroups/packagegroup-cloud-aws_0.6.bb | recipes-core/packagegroups/packagegroup-cloud-aws_0.6.bb | DESCRIPTION = "Packages for Amazon Web Services."
LICENSE = "MIT"
inherit packagegroup
RDEPENDS_${PN} = "\
aws-iot-device-sdk-embedded-c \
aws-iot-device-sdk-embedded-c-dev \
python-aws-iot-device-sdk \
python-aws-iot-device-sdk-samples \
aws-iot-device-sdk-java \
python-awscli \
"
PR = "r0"
PACKAGES = "${PN}... | DESCRIPTION = "Packages for Amazon Web Services."
LICENSE = "MIT"
inherit packagegroup
RDEPENDS_${PN} = "\
aws-iot-device-sdk-embedded-c \
aws-iot-device-sdk-embedded-c-dev \
python-aws-iot-device-sdk \
python-aws-iot-device-sdk-samples \
aws-iot-device-sdk-java \
node-aws-iot-device-sdk-js \
python-awscli \
"... | Add JavaScript package to AWS package group | Add JavaScript package to AWS package group
| BitBake | mit | intel-iot-devkit/meta-iot-cloud,intel-iot-devkit/meta-iot-cloud,intel-iot-devkit/meta-iot-cloud |
9a3f1ad76549f8fe92260ca28353a3328003b2f6 | meta-refkit/recipes-image/images/refkit-image-gateway.bb | meta-refkit/recipes-image/images/refkit-image-gateway.bb | SUMMARY = "IoT Reference OS Kit image for Gateway profile."
DESCRIPTION = "IoT Reference OS Kit image for Gateway profile."
REFKIT_IMAGE_GATEWAY_EXTRA_FEATURES ?= "${REFKIT_IMAGE_FEATURES_COMMON}"
REFKIT_IMAGE_GATEWAY_EXTRA_INSTALL ?= "${REFKIT_IMAGE_INSTALL_COMMON}"
REFKIT_IMAGE_EXTRA_FEATURES += "${REFKIT_IMAGE_GATE... | SUMMARY = "IoT Reference OS Kit image for Gateway profile."
DESCRIPTION = "IoT Reference OS Kit image for Gateway profile."
REFKIT_IMAGE_GATEWAY_EXTRA_FEATURES ?= "${REFKIT_IMAGE_FEATURES_COMMON}"
REFKIT_IMAGE_GATEWAY_EXTRA_INSTALL ?= "${REFKIT_IMAGE_INSTALL_COMMON}"
REFKIT_IMAGE_EXTRA_FEATURES += "${REFKIT_IMAGE_GATE... | Add bluetooth audio feature to gateway profile | Add bluetooth audio feature to gateway profile
Signed-off-by: Jaska Uimonen <c4dccdde272e1daf911f0dfa87751f0519a301c4@intel.com>
| BitBake | mit | jairglez/intel-iot-refkit,ipuustin/intel-iot-refkit,jairglez/intel-iot-refkit,mythi/intel-iot-refkit,YinThong/intel-iot-refkit,intel/intel-iot-refkit,YinThong/intel-iot-refkit,jairglez/intel-iot-refkit,klihub/intel-iot-refkit,ipuustin/intel-iot-refkit,YinThong/intel-iot-refkit,intel/intel-iot-refkit,YinThong/intel-iot-... |
1bb9de8f54d5bcb0e0a47f3494e3b17bb39e714e | meta-python/recipes-devtools/python/python3-langtable_0.0.38.bb | meta-python/recipes-devtools/python/python3-langtable_0.0.38.bb | DESCRIPTION = "langtable is used to guess reasonable defaults for locale,\
keyboard, territory"
HOMEPAGE = "https://github.com/mike-fabian/langtable/"
LICENSE = "GPLv3+"
SECTION = "devel/python"
LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
S = "${WORKDIR}/git"
B = "${S}"
SRCREV = "35687ca... | DESCRIPTION = "langtable is used to guess reasonable defaults for locale,\
keyboard, territory"
HOMEPAGE = "https://github.com/mike-fabian/langtable/"
LICENSE = "GPLv3+"
SECTION = "devel/python"
LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
S = "${WORKDIR}/git"
B = "${S}"
SRCREV = "35687ca... | Remove deprecated python3-signal from the RDEPENDS | Remove deprecated python3-signal from the RDEPENDS
The python3-signal package was removed as part of the migration to the
json manifest file. The signal functionality is now part of core
Signed-off-by: Derek Straka <e1c79a582b6629e6b39e9679f4bb964d25db4aa8@asterius.io>
Signed-off-by: Armin Kuster <525edcd226fb27e7f4... | BitBake | mit | VCTLabs/meta-openembedded,openembedded/meta-openembedded,lgirdk/meta-openembedded,mrchapp/meta-openembedded,VCTLabs/meta-openembedded,moto-timo/meta-openembedded,victronenergy/meta-openembedded,schnitzeltony/meta-openembedded,victronenergy/meta-openembedded,kraj/meta-openembedded,lgirdk/meta-openembedded,sigma-embedded... |
2c21aa8633e4e3538099bcc56d76ab0a594411b4 | meta-oe/recipes-support/libsodium/libsodium_1.0.11.bb | meta-oe/recipes-support/libsodium/libsodium_1.0.11.bb | SUMMARY = "The Sodium crypto library"
HOMEPAGE = "http://libsodium.org/"
LICENSE = "ISC"
LIC_FILES_CHKSUM = "file://LICENSE;md5=c9f00492f01f5610253fde01c3d2e866"
SRC_URI = "https://download.libsodium.org/libsodium/releases/${BPN}-${PV}.tar.gz"
SRC_URI[md5sum] = "b58928d035064b2a46fb564937b83540"
SRC_URI[sha256sum] = "... | SUMMARY = "The Sodium crypto library"
HOMEPAGE = "http://libsodium.org/"
LICENSE = "ISC"
LIC_FILES_CHKSUM = "file://LICENSE;md5=c9f00492f01f5610253fde01c3d2e866"
SRC_URI = "https://download.libsodium.org/libsodium/releases/${BPN}-${PV}.tar.gz"
SRC_URI[md5sum] = "b58928d035064b2a46fb564937b83540"
SRC_URI[sha256sum] = "... | Extend recipe for native and nativesdk usage | libsodium: Extend recipe for native and nativesdk usage
Signed-off-by: Fabio Berton <698e00bc51ed22392b375ef5a2fc95be5c8355a9@ossystems.com.br>
Signed-off-by: Martin Jansa <516df3ff67e1fa5d153800b15fb204c0a1a389dc@gmail.com>
| BitBake | mit | moto-timo/meta-openembedded,lgirdk/meta-openembedded,lgirdk/meta-openembedded,kraj/meta-openembedded,mrchapp/meta-openembedded,moto-timo/meta-openembedded,rehsack/meta-openembedded,schnitzeltony/meta-openembedded,openembedded/meta-openembedded,sigma-embedded/elito-org.openembedded.meta,VCTLabs/meta-openembedded,kraj/me... |
d5697a352909a0146fe2a3931d6ed9ce44f95d95 | recipes-devtools/gdbc6x/gdbserverproxy-module-drv_git.bb | recipes-devtools/gdbc6x/gdbserverproxy-module-drv_git.bb | DESCRIPTION = "Interface for GDB to commincate witha TI C66X DSP"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://COPYING.txt;md5=75859989545e37968a99b631ef42722e"
# This package builds a kernel module, use kernel PR as base and append a local
MACHINE_KERNEL_PR_append = "a"
PR = "${MACHINE_KERNEL_PR}"
PV_append = "+git${... | DESCRIPTION = "Interface for GDB to commincate witha TI C66X DSP"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://COPYING.txt;md5=75859989545e37968a99b631ef42722e"
# This package builds a kernel module, use kernel PR as base and append a local
MACHINE_KERNEL_PR_append = "b"
PR = "${MACHINE_KERNEL_PR}"
PV_append = "+git${... | Fix build issue with fido | gdbserverproxy-module-drv: Fix build issue with fido
Signed-off-by: Jacob Stiffler <0ec61db87821c27ca8ee6f3e24c6f93fdbb785d4@ti.com>
Signed-off-by: Denys Dmytriyenko <d29de71aea38aad3a87d486929cb0aad173ae612@ti.com>
| BitBake | mit | joelagnel/meta-ti,rcn-ee/meta-ti,rcn-ee/meta-ti,joelagnel/meta-ti,RedFIR/meta-ti,rcn-ee/meta-ti,rcn-ee/meta-ti,joelagnel/meta-ti,RedFIR/meta-ti,RedFIR/meta-ti,joelagnel/meta-ti,RedFIR/meta-ti |
fb054db243aae44979dbf8f40be5bf6d1898dde4 | recipes/grub/grub_0.97.bb | recipes/grub/grub_0.97.bb | DESCRIPTION = "GRand Unified Bootloader"
HOMEPAGE = "http://www.gnu.org/software/grub"
SECTION = "bootloaders"
PRIORITY = "optional"
RDEPENDS = "diffutils"
PR = "r4"
SRC_URI = "ftp://alpha.gnu.org/gnu/grub/grub-${PV}.tar.gz \
file://automake-1.10.patch;patch=1 \
file://menu.lst"
inherit autotool... | DESCRIPTION = "GRand Unified Bootloader"
HOMEPAGE = "http://www.gnu.org/software/grub"
SECTION = "bootloaders"
PRIORITY = "optional"
RDEPENDS_${PN}-install = "diffutils"
PR = "r5"
SRC_URI = "ftp://alpha.gnu.org/gnu/grub/grub-${PV}.tar.gz \
file://automake-1.10.patch;patch=1 \
file://menu.lst"
in... | Split the grub-install script and friends into a separate package. | grub: Split the grub-install script and friends into a separate package.
In the main grub package, menu.lst and stage1/2 files will now be
installed in /boot/grub.
stage2_eltorito is split into its own package for bootable ISOs.
Signed-off-by: Michael Smith <3f5005aab17d0ac4ac1327237c53ad461fb34e8a@cbnco.com>
Signed... | BitBake | mit | demsey/openembedded,dave-billin/overo-ui-moos-auv,philb/pbcl-oe-2010,JamesAng/goe,openpli-arm/openembedded,John-NY/overo-oe,BlackPole/bp-openembedded,openembedded/openembedded,Martix/Eonos,JamesAng/oe,SIFTeam/openembedded,libo/openembedded,thebohemian/openembedded,dellysunnymtech/sakoman-oe,buglabs/oe-buglabs,openembed... |
ae40a07d9e61420c1c523ec6ce6fa052e6c485be | layers/b2qt/recipes-core/images/core-image-pelux-qtauto-neptune.bb | layers/b2qt/recipes-core/images/core-image-pelux-qtauto-neptune.bb | #
# 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 "
| Add Qt tools to SDK for QtAuto neptune image | Add Qt tools to SDK for QtAuto neptune image
Inherit populate_sdk_qt5 into the core-image-pelux-qtauto-neptune image.
Signed-off-by: Viktor Sjölind <de9bdef9475b3a1b942c4473840195297b5e2350@pelagicore.com>
| BitBake | mit | Pelagicore/meta-pelux,Pelagicore/meta-pelux,GordanM/meta-pelux,GordanM/meta-pelux,Pelagicore/meta-pelux |
9ae674cb00d75c5be1b64dcda6b1df82d38ea933 | recipes-devtools/libpareon-verify/libpareon-verify_vfs.bb | recipes-devtools/libpareon-verify/libpareon-verify_vfs.bb | require conf/distro/include/pareon.inc
DESCRIPTION = "Pareon Verify shared library"
LICENSE = "Proprietary"
LIC_FILES_CHKSUM = "file://${PAREON_DIR}/EULA.exec;md5=1c43b59db6eab4e68de95551563c708b"
# Sabotage the default dependencies to avoid dependency loops trying to build lowlevel recipes with pareon
INHIBIT_DEFAUL... | require conf/distro/include/pareon.inc
DESCRIPTION = "Pareon Verify shared library"
LICENSE = "Proprietary"
LIC_FILES_CHKSUM = "file://${PAREON_DIR}/EULA.exec;md5=1c43b59db6eab4e68de95551563c708b"
# Sabotage the default dependencies to avoid dependency loops trying to build lowlevel recipes with pareon
INHIBIT_DEFAUL... | Fix FILES variable in libpareon-verify_vs.bb | Fix FILES variable in libpareon-verify_vs.bb
Since we're installing shared libraries in non-standard locations, we need to specify that in the FILES variable in the recipe.
| BitBake | mit | vectorfabrics/meta-pareon,vectorfabrics/meta-pareon,vectorfabrics/meta-pareon |
9d62111de4f7cfdb30be63b99732ed3947b0b08b | meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-ducati_git.bb | meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-ducati_git.bb | DESCRIPTION = "GStreamer elements to use the multimedia accelerators available on some TI parts"
LICENSE = "LGPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=fbc093901857fcd118f065f900982c24"
require gstreamer1.0-plugins-ti.inc
PR = "${INC_PR}.28"
SRCREV = "7f3326b81b838fb6c916acd1d6a3090fda12c772"
BRANCH ?= "master"
... | DESCRIPTION = "GStreamer elements to use the multimedia accelerators available on some TI parts"
LICENSE = "LGPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=fbc093901857fcd118f065f900982c24"
require gstreamer1.0-plugins-ti.inc
PR = "${INC_PR}.29"
SRCREV = "19e911bb45757d8341ffd7819ca783ca04f5e3b1"
BRANCH ?= "master"
... | Update SRCREV with latest commit | gst-ducati: Update SRCREV with latest commit
This update brings in setting display-delay property
for ducati h264decoder.
Signed-off-by: Ramprasad N <9efda854e98f2f9d79e17980f5852c92dd5b0122@ti.com>
Acked-by: Karthik Ramanan <6de1dcae9ab07cd18361f3588c5fcaba210b4a8e@ti.com>
Signed-off-by: Denys Dmytriyenko <d29de71ae... | BitBake | mit | rcn-ee/meta-arago,rcn-ee/meta-arago,rcn-ee/meta-arago,rcn-ee/meta-arago,rcn-ee/meta-arago |
a34768963d6e4acf1a0b440a2411fdd3247947ab | packages/openmoko-projects/openmoko-community-repository.bb | packages/openmoko-projects/openmoko-community-repository.bb | DESCRIPTION = "Configuration files for online package repositories of the Openmoko community repository feeds."
PR = "r0.04"
do_compile() {
mkdir -p ${S}/${sysconfdir}/opkg
for feed in Multiverse; do
echo "src/gz daily-${feed} ${OPENMOKO_URI}/${feed}" > ${S}/${sysconfdir}/opkg/${feed}-feed.conf
don... | DESCRIPTION = "Configuration files for online package repositories of Openmoko community repository feeds"
PR = "r0.03"
do_compile() {
mkdir -p ${S}/${sysconfdir}/opkg
for feed in Multiverse; do
echo "src/gz daily-${feed} ${OPENMOKO_URI}/${feed}" > ${S}/${sysconfdir}/opkg/${feed}-feed.conf
done
}
d... | Revert "[Descriptions] Adding more description to applications" | Revert "[Descriptions] Adding more description to applications"
This reverts commit 921338390cdb38be13451b8c117bb2e27111899f.
| BitBake | mit | dellysunnymtech/sakoman-oe,troth/oe-ts7xxx,SIFTeam/openembedded,buglabs/oe-buglabs,KDAB/OpenEmbedded-Archos,anguslees/openembedded-android,John-NY/overo-oe,trini/openembedded,openembedded/openembedded,hulifox008/openembedded,SIFTeam/openembedded,dellysunnymtech/sakoman-oe,nzjrs/overo-openembedded,philb/pbcl-oe-2010,ope... |
e47b1abb30e4628e09ad378124100a0f7a5d4c6b | meta-xilinx-bsp/recipes-kernel/hdmi/kernel-module-hdmi_git.bb | meta-xilinx-bsp/recipes-kernel/hdmi/kernel-module-hdmi_git.bb | SUMMARY = "Xilinx HDMI Linux Kernel module"
DESCRIPTION = "Out-of-tree HDMI kernel modules provider for MPSoC EG/EV devices"
SECTION = "kernel/modules"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://LICENSE.md;md5=570506b747d768e7802376f932dff926"
XLNX_HDMI_VERSION = "5.4.0"
PV = "${XLNX_HDMI_VERSION}"
S = "${WORKDIR}/... | SUMMARY = "Xilinx HDMI Linux Kernel module"
DESCRIPTION = "Out-of-tree HDMI kernel modules provider for MPSoC EG/EV devices"
SECTION = "kernel/modules"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://LICENSE.md;md5=570506b747d768e7802376f932dff926"
XLNX_HDMI_VERSION = "5.4.0"
PV = "${XLNX_HDMI_VERSION}"
S = "${WORKDIR}/... | Update commit id and branch for 2021 release | hdmi: Update commit id and branch for 2021 release
Signed-off-by: Sai Hari Chandana Kalluri <dcd6f85a7bffd89d026445db0f5113d6d436d06a@xilinx.com>
| BitBake | mit | Xilinx/meta-xilinx,Xilinx/meta-xilinx,Xilinx/meta-xilinx,Xilinx/meta-xilinx,Xilinx/meta-xilinx,Xilinx/meta-xilinx |
3c6858e71e22c466c7d3f9abbb0cea118f8be5b4 | recipes/atk/atk_1.30.0.bb | recipes/atk/atk_1.30.0.bb | DESCRIPTION = "An accessibility toolkit for GNOME."
SECTION = "x11/libs"
PRIORITY = "optional"
LICENSE = "LGPL"
PR = "r1"
inherit gnome
SRC_URI[archive.md5sum] = "548d413775819fef425410739041cac3"
SRC_URI[archive.sha256sum] = "92b9b1213cafc68fe9c3806273b968c26423237d7b1f631dd83dc5270b8c268c"
DEPENDS = "glib-2.0 gtk... | DESCRIPTION = "An accessibility toolkit for GNOME."
SECTION = "x11/libs"
PRIORITY = "optional"
LICENSE = "GPLv2+ LGPLv2+"
PR = "r2"
inherit gnome
SRC_URI[archive.md5sum] = "548d413775819fef425410739041cac3"
SRC_URI[archive.sha256sum] = "92b9b1213cafc68fe9c3806273b968c26423237d7b1f631dd83dc5270b8c268c"
DEPENDS = "gl... | Update LICENSE field version to GPLv2 | atk: Update LICENSE field version to GPLv2
* Update LICENSE field version from generic LGPL to GPLv2+ and
LGPLv2+ to reflect the real license version.
* This change was based on setting in oe-core as well as code
inspection.
Signed-off-by: Chase Maupin <5a5662f468a76e0fc4391e65fb9f536df44d7380@ti.com>
Signed-off-... | BitBake | mit | xifengchuo/openembedded,openembedded/openembedded,openembedded/openembedded,giobauermeister/openembedded,openembedded/openembedded,xifengchuo/openembedded,hulifox008/openembedded,giobauermeister/openembedded,openembedded/openembedded,hulifox008/openembedded,giobauermeister/openembedded,giobauermeister/openembedded,giob... |
d1ba359173f7e00b239a8670eb7bb0b3096a54da | meta-oe/recipes-extended/openlmi/openlmi-tools_0.10.5.bb | meta-oe/recipes-extended/openlmi/openlmi-tools_0.10.5.bb | SUMMARY = "Set of CLI tools for Openlmi providers"
DESCRIPTION = "openlmi-tools is a set of command line tools for Openlmi providers."
HOMEPAGE = "http://www.openlmi.org/"
LICENSE = "GPLv2+"
LIC_FILES_CHKSUM = "file://../COPYING;md5=75859989545e37968a99b631ef42722e"
SECTION = "System/Management"
inherit setuptools3
D... | SUMMARY = "Set of CLI tools for Openlmi providers"
DESCRIPTION = "openlmi-tools is a set of command line tools for Openlmi providers."
HOMEPAGE = "http://www.openlmi.org/"
LICENSE = "GPLv2+"
LIC_FILES_CHKSUM = "file://../COPYING;md5=75859989545e37968a99b631ef42722e"
SECTION = "System/Management"
inherit setuptools3
D... | Use S to access setup.py | openlmi-tools: Use S to access setup.py
Depend on py2 modules
Signed-off-by: Khem Raj <729d64b6f67515e258459a5f6d20ec88b2caf8df@gmail.com>
| BitBake | mit | moto-timo/meta-openembedded,VCTLabs/meta-openembedded,victronenergy/meta-openembedded,lgirdk/meta-openembedded,rehsack/meta-openembedded,moto-timo/meta-openembedded,moto-timo/meta-openembedded,openembedded/meta-openembedded,openembedded/meta-openembedded,schnitzeltony/meta-openembedded,rehsack/meta-openembedded,VCTLabs... |
1e22c595a653e8edbd5fde71739e043383db6f31 | meta-xilinx-core/recipes-bsp/u-boot/u-boot-xlnx_2022.1.bb | meta-xilinx-core/recipes-bsp/u-boot/u-boot-xlnx_2022.1.bb | UBOOT_VERSION = "v2021.01"
UBRANCH ?= "xlnx_rebase_v2022.01"
SRCREV = "c50d6c48f4e1368cd38699278e35563cb4b0e444"
include u-boot-xlnx.inc
include u-boot-spl-zynq-init.inc
LICENSE = "GPLv2+"
LIC_FILES_CHKSUM = "file://README;beginline=1;endline=4;md5=744e7e3bb0c94b4b9f6b3db3bf893897"
# u-boot-xlnx has support for th... | UBOOT_VERSION = "v2021.01"
UBRANCH ?= "xlnx_rebase_v2022.01_2022.1_update"
SRCREV = "a807cf8f6ce03ef1441c246a90aefbc8b6ea4c43"
include u-boot-xlnx.inc
include u-boot-spl-zynq-init.inc
LICENSE = "GPLv2+"
LIC_FILES_CHKSUM = "file://README;beginline=1;endline=4;md5=744e7e3bb0c94b4b9f6b3db3bf893897"
# u-boot-xlnx has ... | Update branch and SRCREV for update release | u-boot-xlnx: Update branch and SRCREV for update release
Update the u-boot branch and commit ID for the 2022.1_update1 release.
Signed-off-by: Christian Kohn <cddab1f837c400ff9c3b002761e2cb74669ec6d1@xilinx.com>
| BitBake | mit | Xilinx/meta-xilinx,Xilinx/meta-xilinx,Xilinx/meta-xilinx,Xilinx/meta-xilinx,Xilinx/meta-xilinx,Xilinx/meta-xilinx |
570525e79d97fa0bc41af218d994311e4b631c16 | recipes/hicolor-icon-theme/hicolor-icon-theme_0.11.bb | recipes/hicolor-icon-theme/hicolor-icon-theme_0.11.bb | SECTION = "unknown"
LICENSE = "GPL"
inherit autotools gtk-icon-cache
# Override RDEPENDS_${PN} = hicolor-icon-theme from gtk-icon-cache
RDEPENDS_${PN} = ""
RDEPENDS_${PN} = ""
PR = "r1"
SRC_URI = "http://icon-theme.freedesktop.org/releases/${P}.tar.gz"
PACKAGE_ARCH = "all"
FILES_${PN} += "${datadir}/icons"
SRC_URI... | SECTION = "unknown"
LICENSE = "GPLv2"
inherit autotools gtk-icon-cache
# Override RDEPENDS_${PN} = hicolor-icon-theme from gtk-icon-cache
RDEPENDS_${PN} = ""
RDEPENDS_${PN} = ""
PR = "r2"
SRC_URI = "http://icon-theme.freedesktop.org/releases/${P}.tar.gz"
PACKAGE_ARCH = "all"
FILES_${PN} += "${datadir}/icons"
SRC_U... | Update LICENSE field version to GPLv2 | hicolor-icon-theme: Update LICENSE field version to GPLv2
* Updated LICENSE field version from generic GPL to GPLv2 to
reflect the real license version.
* This change was based on setting in oe-core as well as code
inspection
Signed-off-by: Chase Maupin <5a5662f468a76e0fc4391e65fb9f536df44d7380@ti.com>
Signed-off... | BitBake | mit | giobauermeister/openembedded,giobauermeister/openembedded,hulifox008/openembedded,xifengchuo/openembedded,openembedded/openembedded,openembedded/openembedded,giobauermeister/openembedded,hulifox008/openembedded,giobauermeister/openembedded,giobauermeister/openembedded,giobauermeister/openembedded,openembedded/openembed... |
e9fdc5acb4dca61f33575ae176a373b01f8323fc | meta-oe/recipes-core/safec/safec_3.5.bb | meta-oe/recipes-core/safec/safec_3.5.bb | SUMMARY = "Safe C Library"
LICENSE = "safec"
LIC_FILES_CHKSUM = "file://COPYING;md5=6d0eb7dfc57806a006fcbc4e389cf164"
SECTION = "lib"
inherit autotools pkgconfig
S = "${WORKDIR}/git"
SRCREV = "a99a052a56da409638c9fe7e096a5ae6661ca7cb"
SRC_URI = "git://github.com/rurban/safeclib.git \
file://0001-memrchr... | SUMMARY = "Safe C Library"
LICENSE = "safec"
LIC_FILES_CHKSUM = "file://COPYING;md5=6d0eb7dfc57806a006fcbc4e389cf164"
SECTION = "lib"
inherit autotools pkgconfig
S = "${WORKDIR}/git"
SRCREV = "a99a052a56da409638c9fe7e096a5ae6661ca7cb"
SRC_URI = "git://github.com/rurban/safeclib.git \
file://0001-memrchr... | Put perl requiring tools into separate package | safec: Put perl requiring tools into separate package
There is one script - a check tool that needs perl on
target, which perhaps is only needed during development and testing
therefore move that to a separate package. Rest of safec is then
independent of perl runtime requirement.
Signed-off-by: Khem Raj <729d64b6f67... | BitBake | mit | moto-timo/meta-openembedded,schnitzeltony/meta-openembedded,moto-timo/meta-openembedded,rehsack/meta-openembedded,openembedded/meta-openembedded,lgirdk/meta-openembedded,lgirdk/meta-openembedded,moto-timo/meta-openembedded,rehsack/meta-openembedded,VCTLabs/meta-openembedded,rehsack/meta-openembedded,lgirdk/meta-openemb... |
1090abe5b637f84f6112848e0055f6ce9758c49f | recipes-kde-apps/kde-baseapps_git.bb | recipes-kde-apps/kde-baseapps_git.bb | LICENSE = "LGPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=5c213a7de3f013310bd272cdb6eb7a24"
DEPENDS = "kdelibs4 soprano"
inherit kde_without_docs kde_rdepends kde_cmake
SRC_URI = "git://anongit.kde.org/kde-baseapps;protocol=git;branch=master \
file://Convert-Phonon-to-phonon.patch"
SRCREV = "37a52f48ebd4850d07cd... | LICENSE = "LGPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=5c213a7de3f013310bd272cdb6eb7a24"
DEPENDS = "kdelibs4 soprano"
inherit kde_without_docs kde_rdepends kde_cmake
SRC_URI = "git://anongit.kde.org/kde-baseapps;protocol=git;branch=master \
file://Convert-Phonon-to-phonon.patch"
## Tag v4.8.0
SRCREV = "a7a12... | Fix build, use the right git version. | kde-baseapps: Fix build, use the right git version.
* Pasted the wrong git commit id
Signed-off-by: Samuel Stirtzel <5e7b27e76d616174d4c71d96463fdd2f7e57e559@googlemail.com>
| BitBake | mit | Angstrom-distribution/meta-kde,koenkooi/meta-kde4,koenkooi/meta-kde4,Angstrom-distribution/meta-kde |
7ee5a737dcfcfb14d4a45ec9f318acc1c6ceeb44 | recipes/libgpg-error/libgpg-error_1.4.bb | recipes/libgpg-error/libgpg-error_1.4.bb | 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"
| Update LICENSE field version to GPLv2 and LGPLv2.1 | libgpg-error: Update LICENSE field version to GPLv2 and LGPLv2.1
* Updated LICENSE field version from generic GPL/LGPL/FDL to
GPLv2 and LGPLv2.1 to reflect the real license version.
* This change was based on setting in oe-core as well as code
inspection.
Signed-off-by: Chase Maupin <5a5662f468a76e0fc4391e65fb9f5... | BitBake | mit | sledz/oe,mrchapp/arago-oe-dev,mrchapp/arago-oe-dev,mrchapp/arago-oe-dev,mrchapp/arago-oe-dev,sledz/oe,sledz/oe,mrchapp/arago-oe-dev,sledz/oe,mrchapp/arago-oe-dev,sledz/oe,sledz/oe,mrchapp/arago-oe-dev,sledz/oe |
47980f05d3fa7c8a46b297431e0398b2da03e22e | meta-resin-common/recipes-containers/tini/tini_0.14.0.bb | meta-resin-common/recipes-containers/tini/tini_0.14.0.bb | HOMEPAGE = "http://github.com/krallin/tini"
SUMMARY = "Minimal init for containers"
DESCRIPTION = "Tini is the simplest init you could think of. All Tini does is \
spawn a single child (Tini is meant to be run in a container), and wait for \
it to exit all the while reaping zombies and performing signal forwarding. "
... | HOMEPAGE = "http://github.com/krallin/tini"
SUMMARY = "Minimal init for containers"
DESCRIPTION = "Tini is the simplest init you could think of. All Tini does is \
spawn a single child (Tini is meant to be run in a container), and wait for \
it to exit all the while reaping zombies and performing signal forwarding. "
... | Fix tini filename after balena-engine rename | tini: Fix tini filename after balena-engine rename
Since balena-engine rename, the daemon is looking for
`balena-engine-init` when running containers with `--init`. Fix the tini
filename to comply with this.
Fixes #1368
Change-type: patch
Changelog-entry: Fix tini filename after balena-engine rename
Signed-off-by: A... | BitBake | apache-2.0 | resin-os/meta-resin,resin-os/meta-resin,resin-os/meta-resin,resin-os/meta-resin |
0d0955a765f32e1d3f0ff42ff1aa522247a1e93b | meta-python/recipes-connectivity/python-txws/python3-txws_0.9.1.bb | meta-python/recipes-connectivity/python-txws/python3-txws_0.9.1.bb | SUMMARY = "Twisted Web Sockets"
HOMEPAGE = "https://github.com/MostAwesomeDude/txWS"
LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://LICENSE;md5=76699830db7fa9e897f6a1ad05f98ec8"
DEPENDS = "python-twisted python-six python-vcversioner python-six-native python-vcversioner-native"
SRC_URI = "git://github.com/MostAwe... | SUMMARY = "Twisted Web Sockets"
HOMEPAGE = "https://github.com/MostAwesomeDude/txWS"
LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://LICENSE;md5=76699830db7fa9e897f6a1ad05f98ec8"
DEPENDS = "python3-twisted python3-six python3-vcversioner python3-six-native python3-vcversioner-native"
SRC_URI = "git://github.com/Mo... | Fix deps to py3 modules | python3-txws: Fix deps to py3 modules
Signed-off-by: Khem Raj <729d64b6f67515e258459a5f6d20ec88b2caf8df@gmail.com>
| BitBake | mit | victronenergy/meta-openembedded,lgirdk/meta-openembedded,moto-timo/meta-openembedded,moto-timo/meta-openembedded,VCTLabs/meta-openembedded,schnitzeltony/meta-openembedded,schnitzeltony/meta-openembedded,victronenergy/meta-openembedded,schnitzeltony/meta-openembedded,lgirdk/meta-openembedded,victronenergy/meta-openembed... |
4ade1cc4be52a0c8ab75dcdeb4364f474c22b4e0 | meta-WISE-PaaS/recipes-core/packagegroups/packagegroup-wise-paas.bb | meta-WISE-PaaS/recipes-core/packagegroups/packagegroup-wise-paas.bb | DESCRIPTION = "Package groups for Advantech WISE-PaaS"
LICENSE = "MIT"
inherit packagegroup
PACKAGES = "\
${PN} \
${PN}-base \
${PN}-addon \
"
RDEPENDS_${PN} = "\
${PN}-base \
${PN}-addon \
"
SUMMARY_${PN}-base = "Yocto native packages"
RDEPENDS_${PN}-base = "\
sqlite3 lua uci \
curl curl... | DESCRIPTION = "Package groups for Advantech WISE-PaaS"
LICENSE = "MIT"
inherit packagegroup
PACKAGES = "\
${PN} \
${PN}-base \
${PN}-addon \
"
RDEPENDS_${PN} = "\
${PN}-base \
${PN}-addon \
"
SUMMARY_${PN}-base = "Yocto native packages"
RDEPENDS_${PN}-base = "\
sqlite3 lua uci \
curl curl... | Add additional mosquitto programs & libraries | Add additional mosquitto programs & libraries
After upgraded mosquitto to v1.4.14, some files are missing.
We need to add additional packages into package group.
| BitBake | apache-2.0 | timliangtw/meta-advantech,timliangtw/meta-advantech,timliangtw/meta-advantech,timliangtw/meta-advantech,ADVANTECH-Corp/meta-advantech,ADVANTECH-Corp/meta-advantech,timliangtw/meta-advantech,ADVANTECH-Corp/meta-advantech,ADVANTECH-Corp/meta-advantech,ADVANTECH-Corp/meta-advantech |
001eaa5844c0776936d329928f5b93839b9e600d | meta-networking/recipes-support/stunnel/stunnel_5.35.bb | meta-networking/recipes-support/stunnel/stunnel_5.35.bb | SUMMARY = "Program for providing universal TLS/SSL tunneling service"
DESCRIPTION = "SSL encryption wrapper between remote client and local (inetd-startable) or remote server."
SECTION = "net"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=866cdc7459d91e092b174388fab8d283"
DEPENDS = "openssl zlib tcp-wrappers... | SUMMARY = "Program for providing universal TLS/SSL tunneling service"
HOMEPAGE = "http://www.stunnel.org/"
DESCRIPTION = "SSL encryption wrapper between remote client and local (inetd-startable) or remote server."
SECTION = "net"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=866cdc7459d91e092b174388fab8d283"... | Add HOMEPAGE info into recipe file. | stunnel: Add HOMEPAGE info into recipe file.
Signed-off-by: Huang Qiyu <060dc3455c813f5d15992ec14d09e1bb6c02b64d@cn.fujitsu.com>
Signed-off-by: Martin Jansa <516df3ff67e1fa5d153800b15fb204c0a1a389dc@gmail.com>
Signed-off-by: Joe MacDonald <fbe30f12b401d02c5cf3f5c053fced92c546e3de@mentor.com>
| BitBake | mit | victronenergy/meta-openembedded,lgirdk/meta-openembedded,schnitzeltony/meta-openembedded,amery/meta-openembedded,amery/meta-openembedded,sigma-embedded/elito-org.openembedded.meta,lgirdk/meta-openembedded,rehsack/meta-openembedded,moto-timo/meta-openembedded,lgirdk/meta-openembedded,amery/meta-openembedded,VCTLabs/meta... |
60716ed7904ec3d4d0efd7a6e55c42f6b153b789 | recipes/valerie/enigma2-plugin-extensions-project-valerie.bb | recipes/valerie/enigma2-plugin-extensions-project-valerie.bb | DESCRIPTION = "Project Valerie - Media Center"
DEPENDS = "python"
PACKAGES = "${PN}"
PACKAGE_ARCH = "all"
MODULE = "ValerieMediaCenter"
require valerie.inc
RDEPENDS_${PN} = "python-ctypes valerie-libshowiframe valerie-sync valerie-e2control"
RREPLACES_${PN} = "project-valerie"
RCONFLICTS_${PN} = "project-valerie"
do_... | DESCRIPTION = "Project Valerie - Media Center"
DEPENDS = "python"
PACKAGES = "${PN}"
PACKAGE_ARCH = "all"
MODULE = "ValerieMediaCenter"
require valerie.inc
PR = "r1"
RDEPENDS_${PN} = "python-ctypes valerie-libshowiframe valerie-sync valerie-e2control"
RREPLACES_${PN} = "project-valerie"
RCONFLICTS_${PN} = "project-val... | Change recipe to cope with extra subdirectories | valerie: Change recipe to cope with extra subdirectories
see:
http://www.pli-images.org/forum/viewthread.php?forum_id=64&thread_id=17634&pid=190690#post_190690
| BitBake | mit | BlackPole/bp-openembedded,SIFTeam/openembedded,SIFTeam/openembedded,nx111/openembeded_openpli2.1_nx111,BlackPole/bp-openembedded,SIFTeam/openembedded,BlackPole/bp-openembedded,BlackPole/bp-openembedded,BlackPole/bp-openembedded,nx111/openembeded_openpli2.1_nx111,SIFTeam/openembedded,SIFTeam/openembedded,SIFTeam/openemb... |
5a32c2a86bc59bc6a1bd3abde5c771d7996cce62 | recipes/navit/navit_svn.bb | recipes/navit/navit_svn.bb | 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 "
| Upgrade to SVN snapshot 4495. Changed SVN URI to http (https does not work). | mavit-svn: Upgrade to SVN snapshot 4495. Changed SVN URI to http (https does not work).
Signed-off-by: Stanislav Brabec <59b41f121ce1a0e9e44fd67be2eb55a800e72650@penguin.cz>
| BitBake | mit | openembedded/openembedded,JamesAng/goe,openembedded/openembedded,openembedded/openembedded,JamesAng/oe,xifengchuo/openembedded,dellysunnymtech/sakoman-oe,openembedded/openembedded,JamesAng/goe,openembedded/openembedded,giobauermeister/openembedded,openembedded/openembedded,dellysunnymtech/sakoman-oe,sentient-energy/ems... |
f39a168e38876295dd52392cee91dff6efc937b2 | meta-python/recipes-devtools/python/python3-pyinotify_0.9.6.bb | meta-python/recipes-devtools/python/python3-pyinotify_0.9.6.bb | DESCRIPTION = "Python pyinotify: Linux filesystem events monitoring"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://COPYING;md5=ab173cade7965b411528464589a08382"
RDEPENDS:${PN} += "\
${PYTHON_PN}-ctypes \
${PYTHON_PN}-io \
${PYTHON_PN}-misc \
${PYTHON_PN}-shell \
${PYTHON_PN}-smtpd \
${PYTHON_PN}-t... | DESCRIPTION = "Python pyinotify: Linux filesystem events monitoring"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://COPYING;md5=ab173cade7965b411528464589a08382"
RDEPENDS:${PN} += "\
${PYTHON_PN}-ctypes \
${PYTHON_PN}-fcntl \
${PYTHON_PN}-io \
${PYTHON_PN}-logging \
${PYTHON_PN}-misc \
${PYTHON_PN}... | Add fcntl, logging to RDEPENDS | python3-pyinotify: Add fcntl, logging to RDEPENDS
"import pyinotify" throws an error for these modules if they are not
included.
Signed-off-by: Trevor Gamblin <fb8c09b3db10148c84dac072f39fc5dba3573139@windriver.com>
Signed-off-by: Khem Raj <729d64b6f67515e258459a5f6d20ec88b2caf8df@gmail.com>
| BitBake | mit | openembedded/meta-openembedded,moto-timo/meta-openembedded,rehsack/meta-openembedded,rehsack/meta-openembedded,schnitzeltony/meta-openembedded,moto-timo/meta-openembedded,openembedded/meta-openembedded,openembedded/meta-openembedded,schnitzeltony/meta-openembedded,schnitzeltony/meta-openembedded,rehsack/meta-openembedd... |
837b491486bc1e73b619354a19db371bcbb46046 | meta-xilinx-core/recipes-kernel/linux/linux-xlnx_2022.2.bb | meta-xilinx-core/recipes-kernel/linux/linux-xlnx_2022.2.bb | 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}:"
| Update SRCREV and Version to 5.15.36 | linux-xlnx: Update SRCREV and Version to 5.15.36
Signed-off-by: Mark Hatle <be057b093809b31d6ddb901f1e230b30cb348714@xilinx.com>
| BitBake | mit | Xilinx/meta-xilinx,Xilinx/meta-xilinx,Xilinx/meta-xilinx,Xilinx/meta-xilinx,Xilinx/meta-xilinx,Xilinx/meta-xilinx |
ad3c964869e9fae4291cc8be90b146809d6611ac | recipes-kernel/kernel-module-sitec-lp/kernel-module-sitec-lp_1.0.0.bb | recipes-kernel/kernel-module-sitec-lp/kernel-module-sitec-lp_1.0.0.bb | SUMMARY = "Module for Low Power Actions on sitec systems S4 Comm Pro X"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=12f884d2ae1ff87c09e5b7ccc2c4ca7e"
MAINTAINER = "Robert Lehmann <robert.lehmann@sitec-systems.de>"
inherit module
PR = "r1"
PV = "${KERNEL_VERSION}"
SRC_URI = "file://Makefile \
... | SUMMARY = "Module for Low Power Actions on sitec systems S4 Comm Pro X"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/GPL-2.0;md5=801f80980d171dd6425610833a22dbe6"
MAINTAINER = "Robert Lehmann <robert.lehmann@sitec-systems.de>"
inherit module
PR = "r1"
PV = "${KERNEL_VERSION}"
S... | Change license file to COREBASE file | sitec-lp: Change license file to COREBASE file
Use the License file in the poky core base for the bitbake file.
Ticket #1880
| BitBake | lgpl-2.1 | sitec-systems/meta-sitec-s4,sitec-systems/meta-sitec-s4 |
4ff1ac6fe3f8868525ca93b6d4048014855ca224 | meta-linaro/recipes-extra/dwarfutils/libdwarf_20121130.bb | meta-linaro/recipes-extra/dwarfutils/libdwarf_20121130.bb | 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"
| Revert "libdwarf: ship header in /usr/include/ like in other distros" | Revert "libdwarf: ship header in /usr/include/ like in other distros"
This reverts commit 06cc74580f9a65f3c0f91493bacba39391a4a63f.
HipHopVM was patched to work fine with /usr/include/libdwarf/
| BitBake | mit | xleng/meta-linaro,xleng/meta-linaro,linaro-home/meta-linaro,linaro-home/meta-linaro,xleng/meta-linaro,linaro-home/meta-linaro,linaro-home/meta-linaro,linaro-home/meta-linaro,xleng/meta-linaro,xleng/meta-linaro,linaro-home/meta-linaro |
608e9b89f16e303ae2b9c5f6c19947995a2a9f6e | meta-arago-extras/recipes-benchmark/arm-benchmarks/arm-benchmarks_1.3.bb | meta-arago-extras/recipes-benchmark/arm-benchmarks/arm-benchmarks_1.3.bb | DESCRIPTION = "ARM Benchmarks"
HOMEPAGE = "https://gforge.ti.com/gf/project/am_benchmarks/"
LICENSE = "BSD"
LIC_FILES_CHKSUM = "file://COPYING;md5=7aefb5e1cffc7b6a3ef18b803f957922"
SECTION = "system"
SRCREV = "76"
PR = "r0+svnr${SRCPV}"
SRC_URI = "svn://gforge.ti.com/svn/am_benchmarks/;module=trunk;proto=https;user=a... | DESCRIPTION = "ARM Benchmarks"
HOMEPAGE = "https://gforge.ti.com/gf/project/am_benchmarks/"
LICENSE = "BSD"
LIC_FILES_CHKSUM = "file://COPYING;md5=7aefb5e1cffc7b6a3ef18b803f957922"
SECTION = "system"
SRCREV = "76"
PR = "r1+svnr${SRCPV}"
SRC_URI = "svn://gforge.ti.com/svn/am_benchmarks/;module=trunk;protocol=https;use... | Fix compile and install issues | arm-benchmarks: Fix compile and install issues
* The TUNE_PKGARCH variable isn't providing the expected arch value. Switch to
ARMPKGARCH since it returns the expected value.
* Spell out protocol to get rid of warning.
Signed-off-by: Franklin S Cooper Jr <b8c01a1703dc362919183054a071c1f348818c23@ti.com>
Acked-by: Ch... | BitBake | mit | mrchapp/meta-arago,rcn-ee/meta-arago,MentorEmbedded/meta-arago,MentorEmbedded/meta-arago,MentorEmbedded/meta-arago,rcn-ee/meta-arago,rcn-ee/meta-arago,mrchapp/meta-arago,rcn-ee/meta-arago,mrchapp/meta-arago,rcn-ee/meta-arago,MentorEmbedded/meta-arago |
bf209dbf116a958689d82a73b7e1f4f1abfd5353 | meta-python/recipes-devtools/python/python3-redis_2.10.6.bb | meta-python/recipes-devtools/python/python3-redis_2.10.6.bb | SUMMARY = "Python client for Redis key-value store"
DESCRIPTION = "The Python interface to the Redis key-value store."
HOMEPAGE = "http://github.com/andymccurdy/redis-py"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://LICENSE;md5=51d9ad56299ab60ba7be65a621004f27"
SRC_URI[md5sum] = "048348d8cfe0b5d0bba2f4d835005c3b"
SRC_UR... | SUMMARY = "Python client for Redis key-value store"
DESCRIPTION = "The Python interface to the Redis key-value store."
HOMEPAGE = "http://github.com/andymccurdy/redis-py"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://LICENSE;md5=51d9ad56299ab60ba7be65a621004f27"
SRC_URI[md5sum] = "048348d8cfe0b5d0bba2f4d835005c3b"
SRC_UR... | Add python3-cryptography to RDEPENDS for python3-redis | python3: Add python3-cryptography to RDEPENDS for python3-redis
Signed-off-by: Khem Raj <729d64b6f67515e258459a5f6d20ec88b2caf8df@gmail.com>
| BitBake | mit | moto-timo/meta-openembedded,moto-timo/meta-openembedded,moto-timo/meta-openembedded,schnitzeltony/meta-openembedded,openembedded/meta-openembedded,VCTLabs/meta-openembedded,openembedded/meta-openembedded,VCTLabs/meta-openembedded,schnitzeltony/meta-openembedded,schnitzeltony/meta-openembedded,schnitzeltony/meta-openemb... |
b71d6cc34c38d787a1f02f3fde7f44c08ed1fc2f | recipes-misc/recipes-hardhelper/qtiohelper/qtiohelper_git.bb | recipes-misc/recipes-hardhelper/qtiohelper/qtiohelper_git.bb | SUMMARY = "A Qt5 library with input/output helpers"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://LICENSE;md5=bd7b2c994af21d318bd2cd3b3f80c2d5"
require recipes-qt/qt5/qt5.inc
SRC_URI = "git://github.com/schnitzeltony/${BPN}.git;branch=master"
DEPENDS += "qtbase qtserialport"
PV = "0.4.0+git${SRCPV}"
SRCREV = "4edd9... | SUMMARY = "A Qt5 library with input/output helpers"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://LICENSE;md5=bd7b2c994af21d318bd2cd3b3f80c2d5"
inherit cmake_qt5
SRC_URI = "git://github.com/ZeraGmbH/qtiohelper.git"
DEPENDS += "qtbase qtserialport"
PV = "0.4.0+git${SRCPV}"
SRCREV = "5c28d4765ce7de57702f4f529fed7da80... | Upgrade to latest / change source location / cmake build | qtiohelper: Upgrade to latest / change source location / cmake build
Signed-off-by: Andreas Müller <d72a15aaaca3a7afa855175c72dc8d2e05931e32@gmail.com>
| BitBake | mit | schnitzeltony/meta-qt5-extra,schnitzeltony/meta-qt5-extra,schnitzeltony/meta-qt5-extra |
7568b1be76de00d1d007313018e7595bc7bb747d | layers/meta-magos/recipes-core/packagegroups/packagegroup-magos-support.bb | layers/meta-magos/recipes-core/packagegroups/packagegroup-magos-support.bb | 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 bluez-noinst-tools to the image. | Add bluez-noinst-tools to the image.
| BitBake | mit | madisongh/magos-distro,madisongh/magos-distro,madisongh/magos-distro |
6ba48fb9cc88b30d91ba1c0c8cbfd496e108a72f | meta-python/recipes-devtools/python/python3-supervisor_4.2.4.bb | meta-python/recipes-devtools/python/python3-supervisor_4.2.4.bb | SUMMARY = "Supervisor: A Process Control System"
DESCRIPTION = "\
Supervisor is a client/server system that allows its users \
to monitorand control a number of processes on UNIX-like \
operating systems."
HOMEPAGE = "https://github.com/Supervisor/supervisor"
LICENSE = "BSD-4-Clause"
LIC_FILES_CHKSUM = "file://LICENSES... | SUMMARY = "Supervisor: A Process Control System"
DESCRIPTION = "\
Supervisor is a client/server system that allows its users \
to monitorand control a number of processes on UNIX-like \
operating systems."
HOMEPAGE = "https://github.com/Supervisor/supervisor"
LICENSE = "BSD-4-Clause"
LIC_FILES_CHKSUM = "file://LICENSES... | Add runtime dependencies for python3-supervisor | Add runtime dependencies for python3-supervisor
Running supervisord without these fails with import errors. smtpd might look strange, but provides required asynchat.py.
Replaced PYTHON_PN with python3 as suggested in previous thread.
Signed-off-by: Martin Großhauser <9a20ebbb3a2ff1b831db7a29e3da169dd10e515a@gmx.net>... | BitBake | mit | openembedded/meta-openembedded,openembedded/meta-openembedded,openembedded/meta-openembedded,openembedded/meta-openembedded,openembedded/meta-openembedded,openembedded/meta-openembedded,openembedded/meta-openembedded,openembedded/meta-openembedded |
10f500da68296183d73f7a5adf26899f370b551f | mender/recipes-mender/drew-state-scripts/drew-state-scripts_1.0.bb | mender/recipes-mender/drew-state-scripts/drew-state-scripts_1.0.bb | FILESEXTRAPATHS_prepend := "${THISDIR}/files:"
SRC_URI = "file://ArtifactRollback_Enter_00;subdir=${PN}-${PV} \
file://Download_Enter_00;subdir=${PN}-${PV} \
file://LICENSE;subdir=${PN}-${PV} \
file://ArtifactCommit_Enter_00;subdir=${PN}-${PV} \
file://Sync_Enter_00;subdir=$... | FILESEXTRAPATHS_prepend := "${THISDIR}/files:"
SRC_URI = "file://ArtifactRollback_Enter_00;subdir=${BPN}-${PV} \
file://Download_Enter_00;subdir=${BPN}-${PV} \
file://LICENSE;subdir=${BPN}-${PV} \
file://ArtifactCommit_Enter_00;subdir=${BPN}-${PV} \
file://Sync_Enter_00;subd... | Use BPN rather than PN in master branch. | Use BPN rather than PN in master branch.
Signed-off-by: Drew Moseley <478ab6677b1bea404266cbf056683e99e5c5f252@northern.tech>
| BitBake | mit | drewmoseley/meta-dmoseley-local-config,drewmoseley/meta-dmoseley-local-config,drewmoseley/meta-dmoseley-local-config,drewmoseley/meta-dmoseley-local-config,drewmoseley/meta-dmoseley-local-config |
ce49ea181b78ba69e699eacceae29d8035349c8f | recipes-core/gnss-simulator/gnss-simulator_git.bb | recipes-core/gnss-simulator/gnss-simulator_git.bb | SUMMARY = "A GNSS signal generator"
AUTHOR = "Javier Arribas <jarribas@cttc.es>"
HOMEPAGE = "https://bitbucket.org/jarribas/gnss-simulator/"
LICENSE = "GPLv3"
LIC_FILES_CHKSUM = "file://COPYING;md5=31f43bdb1ab7b19dae6e891241ca0568"
PR = "r0"
DEPENDS = "volk boost armadillo gflags glog "
PV = "1.0.git"
SRCREV = "86da... | SUMMARY = "A GNSS signal generator"
AUTHOR = "Javier Arribas <jarribas@cttc.es>"
HOMEPAGE = "https://bitbucket.org/jarribas/gnss-simulator/"
LICENSE = "GPLv3"
LIC_FILES_CHKSUM = "file://COPYING;md5=31f43bdb1ab7b19dae6e891241ca0568"
PR = "r0"
DEPENDS = "volk boost armadillo gflags glog "
PV = "1.0.git"
SRCREV = "86da... | Use standard target filesystem paths | Use standard target filesystem paths
| BitBake | mit | carlesfernandez/meta-gnss-sdr,carlesfernandez/meta-gnss-sdr,carlesfernandez/meta-gnss-sdr |
0473957a75c83788454d5966e013399c658802c3 | recipes/gnome/orbit2_2.14.17.bb | recipes/gnome/orbit2_2.14.17.bb | require orbit2.inc
SRC_URI += "file://disable-ipv6.patch"
noipv6 = "${@base_contains('DISTRO_FEATURES', 'ipv6', '', '-DDISABLE_IPV6', d)}"
EXTRA_OEMAKE_append = " 'CFLAGS=${CFLAGS} ${noipv6}'"
SRC_URI[md5sum] = "10bfb957fa4a8935a0b4afaee7d71df7"
SRC_URI[sha256sum] = "62bfce3f678f9347a19c766944e8aef7b89bc32b25ac23eb3e... | require orbit2.inc
LICENSE = "GPLv2+"
PR = "r1"
SRC_URI += "file://disable-ipv6.patch"
noipv6 = "${@base_contains('DISTRO_FEATURES', 'ipv6', '', '-DDISABLE_IPV6', d)}"
EXTRA_OEMAKE_append = " 'CFLAGS=${CFLAGS} ${noipv6}'"
SRC_URI[md5sum] = "10bfb957fa4a8935a0b4afaee7d71df7"
SRC_URI[sha256sum] = "62bfce3f678f9347a19... | Update LICENSE field version to GPLv2 | orbit2: Update LICENSE field version to GPLv2
* Updated LICENSE field version from generic GPL to GPLv2+ to
reflect the real license version.
* This change was based on setting in oe-core as well as code
inspection.
* Update submitted to oe-core as well.
Signed-off-by: Chase Maupin <5a5662f468a76e0fc4391e65fb9f53... | BitBake | mit | xifengchuo/openembedded,hulifox008/openembedded,openembedded/openembedded,openembedded/openembedded,openembedded/openembedded,giobauermeister/openembedded,hulifox008/openembedded,xifengchuo/openembedded,openembedded/openembedded,giobauermeister/openembedded,giobauermeister/openembedded,openembedded/openembedded,giobaue... |
f35d7c584914b493a381f5a1e0c9bc87d8a2a403 | recipes-bsp/u-boot/u-boot-am33x_2013.01.01.bb | recipes-bsp/u-boot/u-boot-am33x_2013.01.01.bb | require u-boot-ti.inc
DESCRIPTION = "u-boot bootloader for ARM MPU devices"
COMPATIBLE_MACHINE = "ti33x"
DEFAULT_PREFERENCE = "-1"
PR = "r5+gitr${SRCPV}"
SRC_URI = "git://git.ti.com/ti-u-boot/ti-u-boot.git;protocol=git;branch=${BRANCH}"
# This version of u-boot is meant for 3.2 kernel which doesn't support device... | require u-boot-ti.inc
DESCRIPTION = "u-boot bootloader for ARM MPU devices"
COMPATIBLE_MACHINE = "ti33x"
DEFAULT_PREFERENCE = "-1"
PR = "r6+gitr${SRCPV}"
SRC_URI = "git://git.ti.com/ti-u-boot/ti-u-boot.git;protocol=git;branch=${BRANCH}"
# This version of u-boot is meant for 3.2 kernel which doesn't support device... | Update am335x to use latest u-boot for 3.2 kernel | u-boot-am33x: Update am335x to use latest u-boot for 3.2 kernel
Latest commit includes the following:
* Add support for Beaglebone Black
* Add fix for Linaro toolchain to insure NOR and RNDIS works.
* Add workaround for Errata 1.0.24
* Enable DDR3 power down for BBB and GP evm.
Signed-off-by: Franklin S. Cooper Jr <b... | BitBake | mit | floft/meta-ti,floft/meta-ti |
abea11781a677011cbebb42582b2cde8e527bdfe | meta-gnome/recipes-gnome/yelp/yelp_41.1.bb | meta-gnome/recipes-gnome/yelp/yelp_41.1.bb | SUMMARY = "Help browser for the GNOME desktop"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = " \
file://COPYING;md5=6e1b9cb787e76d7e6946887a65caa754 \
"
inherit gnomebase itstool autotools-brokensep gsettings gettext gtk-doc features_check mime-xdg
# for webkitgtk
REQUIRED_DISTRO_FEATURES = "x11"
SRC_URI[archive.sha256su... | SUMMARY = "Help browser for the GNOME desktop"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = " \
file://COPYING;md5=6e1b9cb787e76d7e6946887a65caa754 \
"
inherit gnomebase itstool autotools-brokensep gsettings gettext gtk-doc features_check mime-xdg
# for webkitgtk
REQUIRED_DISTRO_FEATURES = "x11"
SRC_URI[archive.sha256su... | Add option to support webkit2gtk-4-0 | yelp: Add option to support webkit2gtk-4-0
Signed-off-by: Khem Raj <729d64b6f67515e258459a5f6d20ec88b2caf8df@gmail.com>
Cc: Joshua Watt <a9203822f8e5fd5efed99f9b90edb711b0bebce2@gmail.com>
| BitBake | mit | schnitzeltony/meta-openembedded,rehsack/meta-openembedded,openembedded/meta-openembedded,schnitzeltony/meta-openembedded,openembedded/meta-openembedded,rehsack/meta-openembedded,openembedded/meta-openembedded,schnitzeltony/meta-openembedded,openembedded/meta-openembedded,openembedded/meta-openembedded,moto-timo/meta-op... |
be8575e73feeeeb358f127351e38cfe4eb9b7ba2 | meta-xilinx-standalone-experimental/recipes-drivers/xxvethernet_git.bb | meta-xilinx-standalone-experimental/recipes-drivers/xxvethernet_git.bb | inherit features_check
REQUIRED_DISTRO_FEATURES = "canps"
inherit esw python3native
DEPENDS += "xilstandalone "
ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/canps/src/"
ESW_COMPONENT_NAME = "libcanps.a"
addtask do_generate_driver_data before do_configure after do_prepare_recipe_sysroot
do_prepare_recipe_sysr... | inherit features_check
REQUIRED_DISTRO_FEATURES = "xxvethernet"
inherit esw python3native
DEPENDS += "xilstandalone"
ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/xxvethernet/src/"
ESW_COMPONENT_NAME = "libxxvethernet.a"
addtask do_generate_driver_data before do_configure after do_prepare_recipe_sysroot
do_pr... | Fix naming in the recipe | xxvethernet: Fix naming in the recipe
This commit fixes the naming of the features check and
ESW_COMPONENT_NAME and ESW_COMPONENT_SRC variables.
Signed-off-by: Appana Durga Kedareswara rao <9bacd21e47fc2ddea630100ed3197df31a57b144@xilinx.com>
| BitBake | mit | Xilinx/meta-xilinx,Xilinx/meta-xilinx,Xilinx/meta-xilinx,Xilinx/meta-xilinx,Xilinx/meta-xilinx,Xilinx/meta-xilinx |
f3a5603917157dc816d1936a9551eb578964fd27 | recipes-qt/qt5/qtwayland_git.bb | recipes-qt/qt5/qtwayland_git.bb | require recipes-qt/qt5/qt5-git.inc
require recipes-qt/qt5/${PN}.inc
# qtwayland wasn't released yet, last tag before this SRCREV is 5.0.0-beta1
# qt5-git PV is only to indicate that this recipe is compatible with qt5 5.2.1
SRC_URI = "git://github.com/webOS-ports/qtwayland;branch=webOS-ports/master;protocol=git"
SRCRE... | require recipes-qt/qt5/qt5-git.inc
require recipes-qt/qt5/${PN}.inc
# qtwayland wasn't released yet, last tag before this SRCREV is 5.0.0-beta1
# qt5-git PV is only to indicate that this recipe is compatible with qt5 5.2.1
SRC_URI = "git://github.com/webOS-ports/qtwayland;branch=webOS-ports/master-next;protocol=git"
... | Revert "qtwayland: reverting back to old version" | Revert "qtwayland: reverting back to old version"
This reverts commit 9d8e7c7077fa78d81ba78d749f3a4d67c2addb60.
| BitBake | mit | nizovn/meta-webos-ports,nizovn/meta-webos-ports |
1efd77dda2be19d23c789e8fe3fa3d928b0cc368 | linux/linux-raspberrypi_3.1.9.bb | linux/linux-raspberrypi_3.1.9.bb | COMPATIBLE_MACHINE = "raspberrypi"
require linux.inc
DESCRIPTION = "Linux kernel for the RaspberryPi board"
PR = "r1"
# Bump MACHINE_KERNEL_PR in the machine config if you update the kernel.
# This is on the rpi-patches branch
SRCREV = "0ec4154d64ebba48ca2446cde60a90546311defc"
SRC_URI = "git://github.com/raspberr... | COMPATIBLE_MACHINE = "raspberrypi"
require linux.inc
DESCRIPTION = "Linux kernel for the RaspberryPi board"
PR = "r1"
# Bump MACHINE_KERNEL_PR in the machine config if you update the kernel.
# This is on the rpi-patches branch
SRCREV = "0ec4154d64ebba48ca2446cde60a90546311defc"
SRC_URI = "git://github.com/raspberr... | Fix build issue with make 3.82 | linux-raspberrypi: Fix build issue with make 3.82
Signed-off-by: Gary Thomas <f9023000f29773649f3850298becb9544b5fd6a9@mlbassoc.com>
| BitBake | mit | sarnold/meta-alt-desktop-extras,sarnold/meta-alt-desktop-extras,sarnold/meta-alt-desktop-extras |
8dab3a0eb79930fd5b7f758ca8607867c1013054 | packages/efl/edje_0.5.0.023.bb | packages/efl/edje_0.5.0.023.bb | DESCRIPTION = "Edje is a complex graphical design & layout library."
# can also install vim data files
DEPENDS = "virtual/evas virtual/ecore eet embryo edje-native virtual/imlib2"
LICENSE = "MIT"
PR = "r3"
PACKAGES += "edje-utils"
FILES_edje-utils += "${bindir} ${datadir}/edje/data/template ${datadir}/edje/include"
RD... | DESCRIPTION = "Edje is a complex graphical design & layout library."
# can also install vim data files
DEPENDS = "virtual/evas virtual/ecore eet embryo edje-native virtual/imlib2"
LICENSE = "MIT"
PR = "r4"
PACKAGES = "edje-utils"
FILES_edje-utils = "${bindir}/edje ${bindir}/edje_* ${datadir}/edje/data/template ${datad... | Remove unneeded files from edje-utils, add dependency on embryo-utils | edje: Remove unneeded files from edje-utils, add dependency on embryo-utils | BitBake | mit | anguslees/openembedded-android,bticino/openembedded,bticino/openembedded,mrchapp/arago-oe-dev,yyli/overo-oe,demsey/openembedded,xifengchuo/openembedded,philb/pbcl-oe-2010,yyli/overo-oe,nx111/openembeded_openpli2.1_nx111,nzjrs/overo-openembedded,philb/pbcl-oe-2010,YtvwlD/od-oe,yyli/overo-oe,crystalfontz/openembedded,sen... |
581e8f6eafb9dcd944a1c00c4e975f4223a42ecb | recipes-images/packagegroups/packagegroup-gnss-sdr.bb | recipes-images/packagegroups/packagegroup-gnss-sdr.bb | # packagegroup definitions to help the GNSS-SDR community build images
# they like.
LICENSE = "MIT"
inherit packagegroup
PACKAGES = " \
packagegroup-gnss-sdr-base \
packagegroup-gnss-sdr-bin \
packagegroup-gnss-sdr-drivers \
"
PROVIDES = "${PACKAGES}"
SUMMARY_packagegroup-gnss-sdr-base = "Required pack... | # packagegroup definitions to help the GNSS-SDR community build images
# they like.
LICENSE = "MIT"
inherit packagegroup
PACKAGES = " \
packagegroup-gnss-sdr-base \
packagegroup-gnss-sdr-bin \
packagegroup-gnss-sdr-drivers \
"
PROVIDES = "${PACKAGES}"
SUMMARY_packagegroup-gnss-sdr-base = "Required pack... | Add libiio and gr-iio to target | Add libiio and gr-iio to target
| BitBake | mit | carlesfernandez/meta-gnss-sdr,carlesfernandez/meta-gnss-sdr,carlesfernandez/meta-gnss-sdr |
0eb4231eab98ddb728119180c54f1f1a955f4cab | recipes-images/images/gnss-sdr-demo-image.bb | recipes-images/images/gnss-sdr-demo-image.bb | require version-image.inc
SUMMARY = "An image with the GNSS-SDR binary and the Xfce desktop environment"
LICENSE = "MIT"
PR = "r6"
inherit core-image image-buildinfo
require recipes-images/images/geniux-users.inc
IMAGE_FEATURES += " \
ssh-server-openssh \
splash \
"
EXTRA_IMAGE_FEATURES += " \
package-... | require version-image.inc
SUMMARY = "An image with the GNSS-SDR binary and the Xfce desktop environment"
LICENSE = "MIT"
PR = "r6"
inherit core-image image-buildinfo
require recipes-images/images/geniux-users.inc
IMAGE_FEATURES += " \
ssh-server-openssh \
splash \
"
EXTRA_IMAGE_FEATURES += " \
package-... | Add u-boot-zynq-uenv to zedboard-zynq7, so the wic image can be built | Add u-boot-zynq-uenv to zedboard-zynq7, so the wic image can be built
| BitBake | mit | carlesfernandez/meta-gnss-sdr,carlesfernandez/meta-gnss-sdr,carlesfernandez/meta-gnss-sdr |
c4a84c511b0657abf8580002def52e3b6428670e | packages/libtiff/tiff_3.7.2.bb | packages/libtiff/tiff_3.7.2.bb | DESCRIPTION = "This software provides support for the Tag Image File Format (TIFF)"
LICENSE = ""
HOMEPAGE = "http://www.remotesensing.org/libtiff/"
DEPENDS = "zlib jpeg"
PR = "r3"
SRC_URI = "http://dl.maptools.org/dl/libtiff/old/tiff-${PV}.tar.gz \
file://configure.patch;patch=1"
inherit autotools
do_stage() {
a... | DESCRIPTION = "This software provides support for the Tag Image File Format (TIFF)"
LICENSE = ""
HOMEPAGE = "http://www.remotesensing.org/libtiff/"
DEPENDS = "zlib jpeg lzo"
PR = "r4"
SRC_URI = "http://dl.maptools.org/dl/libtiff/old/tiff-${PV}.tar.gz \
file://configure.patch;patch=1"
inherit autotools
do_stage() ... | Add lzo to dependencies, otherwise it will try to link against a build host lzo. | tiff: Add lzo to dependencies, otherwise it will try to link against a build host lzo.
| BitBake | mit | anguslees/openembedded-android,JrCs/opendreambox,rascalmicro/openembedded-rascal,sledz/oe,openembedded/openembedded,sledz/oe,scottellis/overo-oe,John-NY/overo-oe,xifengchuo/openembedded,nvl1109/openembeded,demsey/openembedded,John-NY/overo-oe,xifengchuo/openembedded,troth/oe-ts7xxx,xifengchuo/openembedded,nzjrs/overo-o... |
cbba1a89dd01b4c06174cc168147c8de94a33043 | recipes-kde-apps/gwenview_git.bb | recipes-kde-apps/gwenview_git.bb | SUMMARY = "KDE standard image viewer"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=5a3169a2d39a757efd8b7aa66a69d97b"
DEPENDS = "kdelibs4 automoc4-native exiv2"
# for videos?
RDEPENDS = "libqtphonon4"
inherit kde_cmake kde_rdepends kde_without_docs
SRC_URI = "git://anongit.kde.org/gwenview.git;branch=mas... | SUMMARY = "KDE standard image viewer"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=5a3169a2d39a757efd8b7aa66a69d97b"
DEPENDS = "kdelibs4 automoc4-native exiv2 kde-baseapps"
# for videos?
RDEPENDS = "libqtphonon4"
inherit kde_cmake kde_rdepends kde_without_docs
SRC_URI = "git://anongit.kde.org/gwenview.g... | Add missing depends to kde-baseapps | gwenview: Add missing depends to kde-baseapps
libkonq is needed.
Signed-off-by: Samuel Stirtzel <5e7b27e76d616174d4c71d96463fdd2f7e57e559@googlemail.com>
| BitBake | mit | koenkooi/meta-kde4,koenkooi/meta-kde4,Angstrom-distribution/meta-kde,Angstrom-distribution/meta-kde |
3e6e8fd362124040293e851dd236ee19ed9261f8 | recipes-core/uqmi/uqmi_git.bb | recipes-core/uqmi/uqmi_git.bb | # Copyright (C) 2015 Khem Raj <raj.khem@gmail.com>
# Released under the MIT license (see COPYING.MIT for the terms)
DESCRIPTION = "OpenWrt uqmi utility"
HOMEPAGE = "http://git.openwrt.org/?p=project/uqmi.git;a=summary"
LICENSE = "GPL-2.0"
LIC_FILES_CHKSUM = "file://main.c;beginline=1;endline=20;md5=3f7041e5710007661d7... | # Copyright (C) 2015 Khem Raj <raj.khem@gmail.com>
# Released under the MIT license (see COPYING.MIT for the terms)
DESCRIPTION = "OpenWrt uqmi utility"
HOMEPAGE = "http://git.openwrt.org/?p=project/uqmi.git;a=summary"
LICENSE = "GPL-2.0"
LIC_FILES_CHKSUM = "file://main.c;beginline=1;endline=20;md5=3f7041e5710007661d7... | Set build dir as same source dir | uqmi: Set build dir as same source dir
Fix error:
/bin/sh: 1: ./data/gen-header.pl: not found
Signed-off-by: Fabio Berton <698e00bc51ed22392b375ef5a2fc95be5c8355a9@ossystems.com.br>
| BitBake | mit | kraj/meta-openwrt |
07eecb0871d6808ca5cdd3aeb8e39232f1d04fd6 | recipes/gnome/orbit2_2.14.17.bb | recipes/gnome/orbit2_2.14.17.bb | require orbit2.inc
SRC_URI += "file://disable-ipv6.patch"
noipv6 = "${@base_contains('DISTRO_FEATURES', 'ipv6', '', '-DDISABLE_IPV6', d)}"
EXTRA_OEMAKE_append = " 'CFLAGS=${CFLAGS} ${noipv6}'"
SRC_URI[md5sum] = "10bfb957fa4a8935a0b4afaee7d71df7"
SRC_URI[sha256sum] = "62bfce3f678f9347a19c766944e8aef7b89bc32b25ac23eb3e... | require orbit2.inc
LICENSE = "GPLv2+"
PR = "r1"
SRC_URI += "file://disable-ipv6.patch"
noipv6 = "${@base_contains('DISTRO_FEATURES', 'ipv6', '', '-DDISABLE_IPV6', d)}"
EXTRA_OEMAKE_append = " 'CFLAGS=${CFLAGS} ${noipv6}'"
SRC_URI[md5sum] = "10bfb957fa4a8935a0b4afaee7d71df7"
SRC_URI[sha256sum] = "62bfce3f678f9347a19... | Update LICENSE field version to GPLv2 | orbit2: Update LICENSE field version to GPLv2
* Updated LICENSE field version from generic GPL to GPLv2+ to
reflect the real license version.
* This change was based on setting in oe-core as well as code
inspection.
* Update submitted to oe-core as well.
Signed-off-by: Chase Maupin <5a5662f468a76e0fc4391e65fb9f53... | BitBake | mit | mrchapp/arago-oe-dev,mrchapp/arago-oe-dev,mrchapp/arago-oe-dev,mrchapp/arago-oe-dev,sledz/oe,mrchapp/arago-oe-dev,mrchapp/arago-oe-dev,sledz/oe,mrchapp/arago-oe-dev,sledz/oe,sledz/oe,sledz/oe,sledz/oe,sledz/oe |
f0f72d8aa5de6a41796117c6e781e150bbacbe47 | packages/fastcgi/fastcgi_2.4.0.bb | packages/fastcgi/fastcgi_2.4.0.bb | 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() {
}
| Disable parallel build, it's broken | fastcgi: Disable parallel build, it's broken
| BitBake | mit | sentient-energy/emsw-oe-mirror,Martix/Eonos,anguslees/openembedded-android,sampov2/audio-openembedded,mrchapp/arago-oe-dev,demsey/openenigma2,JrCs/opendreambox,giobauermeister/openembedded,nvl1109/openembeded,bticino/openembedded,YtvwlD/od-oe,openembedded/openembedded,crystalfontz/openembedded,crystalfontz/openembedded... |
9fd0651c22d09d5233b6019156e5c2c8b8c7dd46 | meta-efl/recipes-efl/efl/engrave_svn.bb | meta-efl/recipes-efl/efl/engrave_svn.bb | SUMMARY = "Engrave is an Edje Editing Library"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://COPYING;md5=edf2d968b9eb026bfa82cccbd0e6f9f5"
# also requires yacc and lex on host
DEPENDS = "evas ecore"
PV = "0.0.0+svnr${SRCPV}"
SRCREV = "${EFL_SRCREV}"
inherit efl
SRC_URI = "${E_SVN}/OLD;module=${SRCNAME};protocol=http;scmd... | SUMMARY = "Engrave is an Edje Editing Library"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://COPYING;md5=edf2d968b9eb026bfa82cccbd0e6f9f5"
# also requires yacc and lex on host
DEPENDS = "evas ecore"
PV = "0.0.0+svnr${SRCPV}"
SRCREV = "${EFL_SRCREV}"
inherit efl autotools-brokensep
SRC_URI = "${E_SVN}/OLD;module=${SRCNAME... | Use autotools-brokensep to avoid build failures | engrave: Use autotools-brokensep to avoid build failures
Signed-off-by: Richard Purdie <3b7a1db6efedd40440bc6443bf377195011524e5@linuxfoundation.org>
| BitBake | mit | RealVNC/yocto_imx6sabreauto_meta-openembedded,VCTLabs/meta-openembedded,shr-distribution/meta-oe,rofehr/meta-openembedded,dongkc/meta-openembedded,dongkc/meta-openembedded,rehsack/meta-openembedded,rehsack/meta-openembedded,lixinfnst/meta-openembedded,joelagnel/meta-openembedded,shr-distribution/meta-oe,MCherifiOSS/met... |
d452759749679343a90207e924bad48fb936c8bc | multimedia-layer/recipes-multimedia/dleyna/dleyna-server_git.bb | multimedia-layer/recipes-multimedia/dleyna/dleyna-server_git.bb | #
# Copyright (C) 2015 Pelagicore AB
# All rights reserved.
#
DESCRIPTION = "dLeyna Server"
DEPENDS = "dleyna-core"
EXTRA_OECONF += " --enable-never-quit "
require dleyna-git.inc
inherit systemd
SRCREV = "b5394e2be1cfaefe1f442a7cacc1c3a1f0c1c1ff"
SRC_URI += "file://dleyna.service"
SYSTEMD_SERVICE_${PN} = "dleyna.... | #
# Copyright (C) 2015 Pelagicore AB
# All rights reserved.
#
DESCRIPTION = "dLeyna Server"
DEPENDS = "dleyna-core"
EXTRA_OECONF += " --enable-never-quit --enable-debug"
require dleyna-git.inc
inherit systemd
SRCREV = "b5394e2be1cfaefe1f442a7cacc1c3a1f0c1c1ff"
SRC_URI += "file://dleyna.service"
SYSTEMD_SERVICE_${... | Enable debug output (defaults to syslog) | dleyna-server: Enable debug output (defaults to syslog)
| BitBake | mit | thenor/meta-bistro,Pelagicore/meta-bistro,thenor/meta-bistro,jonte/meta-bistro,thenor/meta-bistro,thenor/meta-bistro,socec/meta-bistro,jonte/meta-bistro,thenor/meta-bistro,frznlogic/meta-bistro,Pelagicore/meta-bistro,Pelagicore/meta-bistro,GordanM/meta-bistro,frznlogic/meta-bistro,socec/meta-bistro,Pelagicore/meta-bist... |
1e0e638e02ec0aa610a4e5d728b9d10a2d42c485 | recipes-kde-active/contour_git.bb | recipes-kde-active/contour_git.bb | LICENSE = "LGPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=5c213a7de3f013310bd272cdb6eb7a24"
inherit kde_cmake kde_rdepends
DEPENDS = "kde-workspace kde-runtime soprano shared-desktop-ontologies kdelibs4 libkactivities4"
RDEPENDS_${PN} = " kde-workspace libkactivities4 plasma-active shared-desktop-ontologies"
RRECOM... | LICENSE = "LGPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=5c213a7de3f013310bd272cdb6eb7a24"
inherit kde_cmake kde_rdepends
DEPENDS = "kde-workspace kde-runtime soprano shared-desktop-ontologies kdelibs4 libkactivities4"
RDEPENDS_${PN} = " kde-workspace libkactivities4 plasma-active shared-desktop-ontologies"
RRECOM... | Remove virtual/plasma-active-startscript this will be handled by the image | contour: Remove virtual/plasma-active-startscript this will be handled by the image
Also fix tab / space indention
Signed-off-by: Samuel Stirtzel <5e7b27e76d616174d4c71d96463fdd2f7e57e559@googlemail.com>
| BitBake | mit | Angstrom-distribution/meta-kde,Angstrom-distribution/meta-kde,koenkooi/meta-kde4,koenkooi/meta-kde4 |
7d42c84443f52ac66adf8d7138a9aea936e475ba | meta-mender-core/recipes-mender/mender-artifact/mender-artifact.bb | meta-mender-core/recipes-mender/mender-artifact/mender-artifact.bb | DESCRIPTION = "Mender artifact information"
HOMEPAGE = "https://mender.io"
LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10"
FILESPATH = "${COMMON_LICENSE_DIR}"
SRC_URI = "file://Apache-2.0"
S = "${WORKDIR}"
inherit allarch
PV = "0.1"
do_compile() {
if [ -z "${M... | DESCRIPTION = "Mender artifact information"
HOMEPAGE = "https://mender.io"
LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10"
FILESPATH = "${COMMON_LICENSE_DIR}"
SRC_URI = "file://Apache-2.0"
S = "${WORKDIR}"
inherit allarch
PV = "0.1"
do_compile() {
if [ -z "${M... | Add missing exit command on error. | Add missing exit command on error.
Signed-off-by: Kristian Amlie <505e66ae45028a0596c853559221f0b72c1cee21@mender.io>
| BitBake | apache-2.0 | bboozzoo/meta-mender,bboozzoo/meta-mender,bboozzoo/meta-mender,bboozzoo/meta-mender |
02422135f345d73b10fdb7057b1daa1401c346f0 | meta-oe/recipes-graphics/libsdl/libsdl2-ttf_2.0.18.bb | meta-oe/recipes-graphics/libsdl/libsdl2-ttf_2.0.18.bb | SUMMARY = "Simple DirectMedia Layer truetype font library"
SECTION = "libs"
DEPENDS = "virtual/libsdl2 freetype virtual/libgl"
LICENSE = "Zlib"
LIC_FILES_CHKSUM = "file://COPYING.txt;md5=e98cfd01ca78f683e9d035795810ce87"
SRC_URI = "http://www.libsdl.org/projects/SDL_ttf/release/SDL2_ttf-${PV}.tar.gz \
file:... | SUMMARY = "Simple DirectMedia Layer truetype font library"
SECTION = "libs"
DEPENDS = "virtual/libsdl2 freetype virtual/egl"
LICENSE = "Zlib"
LIC_FILES_CHKSUM = "file://COPYING.txt;md5=e98cfd01ca78f683e9d035795810ce87"
SRC_URI = "http://www.libsdl.org/projects/SDL_ttf/release/SDL2_ttf-${PV}.tar.gz \
file://... | Change depenendency from virtual/libgl to virtual/egl | libsdl2-ttf: Change depenendency from virtual/libgl to virtual/egl
Fixes build on graphics drivers not providing GL implementation
Signed-off-by: Khem Raj <729d64b6f67515e258459a5f6d20ec88b2caf8df@gmail.com>
| BitBake | mit | openembedded/meta-openembedded,openembedded/meta-openembedded,openembedded/meta-openembedded,openembedded/meta-openembedded,openembedded/meta-openembedded,openembedded/meta-openembedded,openembedded/meta-openembedded,openembedded/meta-openembedded |
43f5811017c01b2173756951b6d269b9b9324467 | meta-oe/recipes-support/usb-modeswitch/usb-modeswitch-data_20170205.bb | meta-oe/recipes-support/usb-modeswitch/usb-modeswitch-data_20170205.bb | SUMMARY = "Data files for usbmodeswitch"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
inherit allarch
SRC_URI = "http://www.draisberghof.de/usb_modeswitch/${BP}.tar.bz2"
SRC_URI[md5sum] = "0cc107cd0c4c83df0d9400c999e21dfd"
SRC_URI[sha256sum] = "e2dcfd9d28928d8d8f03381571a... | SUMMARY = "Data files for usbmodeswitch"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
inherit allarch
DEPENDS += "tcl-native"
SRC_URI = "http://www.draisberghof.de/usb_modeswitch/${BP}.tar.bz2"
SRC_URI[md5sum] = "0cc107cd0c4c83df0d9400c999e21dfd"
SRC_URI[sha256sum] = "e2... | Add dep on native tcl | usb-modeswitch-data: Add dep on native tcl
it has a tclsh need for executing a script during build
Fixes
| ./gen-rules.tcl
| /usr/bin/env: ‘tclsh’: No such file or directory
| make: *** [Makefile:26: 40-usb_modeswitch.rules] Error 127
| WARNING: /mnt/b/build/tmp-musl/work/all-oe-linux/usb-modeswitch-data/20170205-r0/... | BitBake | mit | VCTLabs/meta-openembedded,amery/meta-openembedded,lgirdk/meta-openembedded,victronenergy/meta-openembedded,lgirdk/meta-openembedded,moto-timo/meta-openembedded,rehsack/meta-openembedded,victronenergy/meta-openembedded,mrchapp/meta-openembedded,mrchapp/meta-openembedded,victronenergy/meta-openembedded,kraj/meta-openembe... |
d6e91960775223e6c2140e9c5972b405879604e3 | recipes-tvp5151/images/tvp5151-dsp-image.bb | recipes-tvp5151/images/tvp5151-dsp-image.bb | # Add DSP and gstreamer packages to console image
require tvp5151-console-image.bb
PR = "1"
DSP_INSTALL += " \
gstreamer-ti \
gst-plugins-good-meta \
gst-plugins-bad-meta \
"
QT_TOOLS = " \
qt4-embedded-dev\
qt4-embedded \
"
IMAGE_INSTALL += " \
${DSP_INSTALL} \
${QT_TOOLS} \
"
expo... | # Add DSP and gstreamer packages to console image
require tvp5151-console-image.bb
PR = "1"
DSP_INSTALL += " \
gstreamer-ti \
gst-plugins-base-meta \
gst-plugins-good-meta \
gst-plugins-bad-meta \
"
QT_TOOLS = " \
qt4-embedded-dev\
qt4-embedded \
"
IMAGE_INSTALL += " \
${DSP_INSTALL} ... | Add gstreamer base plugins to dsp image (for videotestsrc) | Add gstreamer base plugins to dsp image (for videotestsrc)
| BitBake | mit | gbaker386/meta-tvp5151,gbaker386/meta-tvp5151,gbaker386/meta-tvp5151 |
03123a796c3e4472f8be381ca6d8d7d00a04080e | meta-plos/recipes-core/packagegroups/packagegroup-plos-tools-testapps.bb | meta-plos/recipes-core/packagegroups/packagegroup-plos-tools-testapps.bb | SUMMMARY = "PLOS Testing tools/applications"
LICENSE = "MIT"
PR = "r1"
inherit packagegroup
# Requires touchscreen in machine features to work
USE_TS = " \
evtest \
"
# Different touchscreen tools
TSTOOLS = " \
${@base_contains('MACHINE_FEATURES', 'touchscreen', '${USE_TS}', '',d)} \
"
# Different simple se... | SUMMMARY = "PLOS Testing tools/applications"
LICENSE = "MIT"
PR = "r1"
inherit packagegroup
# Requires touchscreen in machine features to work
USE_TS = " \
evtest \
"
# Different touchscreen tools
#TSTOOLS = " \
# ${@base_contains('MACHINE_FEATURES', 'touchscreen', '${USE_TS}', '',d)} \
#"
# Different simple... | Update tools testapp package group | Update tools testapp package group
| BitBake | mit | pixmeter/plos |
c66eb1b1d102a9a4d886d0563223e8733549a532 | packages/zd1211/zd1211_20050822.bb | packages/zd1211/zd1211_20050822.bb | DESCRIPTION = "Driver for zd1211 family of wireless USB Dongles"
PRIORITY = "optional"
SECTION = "kernel/modules"
MAINTAINER = "dyoung <dyoung8888@yahoo.com>"
LICENSE = "GPL"
PR = "r1"
DEPENDS = "wireless-tools"
SRC_URI = "http://download.sourceforge.net/zd1211/sf_zd1211_${PV}_src.tar.gz \
file://makefile.patch;patch... | DESCRIPTION = "Driver for zd1211 family of wireless USB Dongles"
PRIORITY = "optional"
SECTION = "kernel/modules"
MAINTAINER = "dyoung <dyoung8888@yahoo.com>"
LICENSE = "GPL"
PR = "r2"
RDEPENDS = "wireless-tools"
SRC_URI = "http://download.sourceforge.net/zd1211/sf_zd1211_${PV}_src.tar.gz \
file://makefile.patch;patc... | Change DEPENDS to RDEPENDS for wireless-tools | zd1211: Change DEPENDS to RDEPENDS for wireless-tools | BitBake | mit | JamesAng/goe,mrchapp/arago-oe-dev,sledz/oe,sutajiokousagi/openembedded,xifengchuo/openembedded,philb/pbcl-oe-2010,yyli/overo-oe,dave-billin/overo-ui-moos-auv,JrCs/opendreambox,mrchapp/arago-oe-dev,troth/oe-ts7xxx,JrCs/opendreambox,popazerty/openembedded-cuberevo,libo/openembedded,JamesAng/oe,sentient-energy/emsw-oe-mir... |
1d55eab3e18dae45c38e436e9dcb9de7a2819bfa | recipes/kde-artwork-active_svn.bb | recipes/kde-artwork-active_svn.bb | LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://splash/main.qml;beginline=2;endline=18;md5=ab5c18ec5cfda84f5423a5ebe94dcb01"
inherit kde-workaround-tmp
require kde4.inc
SRC_URI = "svn://anonsvn.kde.org/home/kde;module=trunk/playground/base/plasma/kde-artwork-active;proto=svn"
SRCREV = "1266939"
PV = "0.2+svnr${SRCPV}"
... | LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://splash/main.qml;beginline=2;endline=18;md5=ab5c18ec5cfda84f5423a5ebe94dcb01"
DEPENDS = "kdelibs4"
require kde4.inc
SRC_URI = "svn://anonsvn.kde.org/home/kde;module=trunk/playground/base/plasma/kde-artwork-active;proto=svn"
SRCREV = "1266939"
PV = "0.2+svnr${SRCPV}"
S = ... | Fix cross compiling issue gracefully | kde-artworks-active: Fix cross compiling issue gracefully
Signed-off-by: Samuel Stirtzel <5e7b27e76d616174d4c71d96463fdd2f7e57e559@googlemail.com>
| BitBake | mit | Angstrom-distribution/meta-kde,koenkooi/meta-kde4,Angstrom-distribution/meta-kde,koenkooi/meta-kde4 |
b4fb9e519c271610c37707125b198487cef6b655 | recipes-debian/popt/popt_debian.bb | recipes-debian/popt/popt_debian.bb | #
# Base recipe: meta/recipes-support/popt/popt_1.16.bb
# Base branch: daisy
#
SUMMARY = "Library for parsing command line options"
HOMEPAGE = "http://rpm5.org/"
PR = "r0"
inherit debian-package
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://COPYING;md5=cb0613c30af2a8249b8dcc67d3edb06d"
inherit autotools gettext
# pop... | #
# Base recipe: meta/recipes-support/popt/popt_1.16.bb
# Base branch: daisy
#
SUMMARY = "Library for parsing command line options"
HOMEPAGE = "http://rpm5.org/"
PR = "r0"
inherit debian-package
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://COPYING;md5=cb0613c30af2a8249b8dcc67d3edb06d"
inherit autotools gettext
# pop... | Add native and nativesdk to BBCLASSEXTEND | popt: Add native and nativesdk to BBCLASSEXTEND
Signed-off-by: Trung Do <64081e6b7eb2b24289b8a4e51cef9836ddf28af2@toshiba-tsdv.com>
| BitBake | mit | meta-debian/meta-debian,nghiaht-tsdv/meta-debian,meta-debian/meta-debian,tienlee/meta-debian,nghiaht-tsdv/meta-debian,tienlee/meta-debian,meta-debian/meta-debian,tienlee/meta-debian,tienlee/meta-debian,meta-debian/meta-debian,nghiaht-tsdv/meta-debian,meta-debian/meta-debian,nghiaht-tsdv/meta-debian,nghiaht-tsdv/meta-de... |
e71f2b87d081b627e8395bf553203bd3e7c9f7f5 | recipes/u-boot/u-boot-omap3_git.bb | recipes/u-boot/u-boot-omap3_git.bb | require u-boot.inc
FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/u-boot-omap3-git/"
SRCREV = "060955e39770b68b3cc0516b3641ca98e58d2d4a"
PV = "2009.08+${PR}+git${SRCREV}"
PR = "r10"
PE = "1"
SRC_URI = "git://git.denx.de/u-boot-ti.git;protocol=git \
file://fw_env.config \
file://ti... | require u-boot.inc
FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/u-boot-omap3-git/"
SRCREV = "1590f84007e2b50ad346a482fff89195cb04ff4e"
PV = "2009.08+${PR}+git${SRCREV}"
PR = "r11"
PE = "1"
SRC_URI = "git://git.denx.de/u-boot-ti.git;protocol=git \
file://fw_env.config \
file://ti... | Change SRCREV to commit prior to SDRC init breakage | u-boot-omap3: Change SRCREV to commit prior to SDRC init breakage
| BitBake | mit | scottellis/overo-oe,yyli/overo-oe,scottellis/overo-oe,scottellis/overo-oe,yyli/overo-oe,John-NY/overo-oe,yyli/overo-oe,scottellis/overo-oe,yyli/overo-oe,yyli/overo-oe,John-NY/overo-oe,yyli/overo-oe,John-NY/overo-oe,John-NY/overo-oe,scottellis/overo-oe,yyli/overo-oe,scottellis/overo-oe,John-NY/overo-oe,yyli/overo-oe,Joh... |
f048a1b2ea01781e1c35c57f0ce52e60f8ba8710 | packages/portmap/portmap_5-9.bb | packages/portmap/portmap_5-9.bb | DESCRIPTION = "RPC program number mapper."
SECTION = "console/network"
LICENSE = "GPL"
RDEPENDS = "portmap-utils"
PR = "r4"
SRC_URI = "http://www.uk.debian.org/debian/pool/main/p/portmap/portmap_5.orig.tar.gz \
http://www.uk.debian.org/debian/pool/main/p/portmap/portmap_${PV}.diff.gz;patch=1 \
file://no-libwrap.patc... | DESCRIPTION = "RPC program number mapper."
SECTION = "console/network"
LICENSE = "GPL"
PR = "r5"
SRC_URI = "http://www.uk.debian.org/debian/pool/main/p/portmap/portmap_5.orig.tar.gz \
http://www.uk.debian.org/debian/pool/main/p/portmap/portmap_${PV}.diff.gz;patch=1 \
file://no-libwrap.patch;patch=1;pnum=0 \
file://... | Correct commit. Back out the RDEPENDS from portmap | Correct commit. Back out the RDEPENDS from portmap | BitBake | mit | JamesAng/oe,buglabs/oe-buglabs,troth/oe-ts7xxx,John-NY/overo-oe,openpli-arm/openembedded,nvl1109/openembeded,buglabs/oe-buglabs,giobauermeister/openembedded,yyli/overo-oe,BlackPole/bp-openembedded,demsey/openembedded,BlackPole/bp-openembedded,KDAB/OpenEmbedded-Archos,yyli/overo-oe,JrCs/opendreambox,SIFTeam/openembedded... |
a836dd26427df047fbf14daef42fb971b6f464d4 | packages/rt-tests/rt-tests_0.21.bb | packages/rt-tests/rt-tests_0.21.bb | ## Reminder: Tabs should not be used (use spaces instead) in : install -d ${D}${bindir}
## Reminder: Tabs should not be used (use spaces instead) in : for binary in `find . -perm 0755 -type f`
## Reminder: Tabs should not be used (use spaces instead) in : do
## Reminder: Tabs should not be used (use spaces in... | DESCRIPTION = "Real-time tests, such as cyclictest, for real-time linux PREEMPT RT kernels"
HOMEPAGE = "http://rt.wiki.kernel.org/index.php/Cyclictest"
LICENSE = "GPL"
PR = "r2"
SRC_URI = "http://www.kernel.org/pub/linux/kernel/people/tglx/rt-tests/rt-tests-${PV}.tar.bz2"
S = "${WORKDIR}/rt-tests"
# Limit to cyclict... | Fix detection of executables in do_install(). | rt-tests: Fix detection of executables in do_install().
| BitBake | mit | SIFTeam/openembedded,KDAB/OpenEmbedded-Archos,libo/openembedded,sampov2/audio-openembedded,giobauermeister/openembedded,nvl1109/openembeded,sentient-energy/emsw-oe-mirror,anguslees/openembedded-android,openembedded/openembedded,dave-billin/overo-ui-moos-auv,dellysunnymtech/sakoman-oe,dellysunnymtech/sakoman-oe,thebohem... |
d003b363ab2fb8c22ef26b300bfc56d993421a1f | packages/linux/linux-x86_2.6.20.bb | packages/linux/linux-x86_2.6.20.bb | DESCRIPTION = "Linux Kernel for x86 compatible machines"
SECTION = "kernel"
LICENSE = "GPL"
PR = "r1"
SRC_URI = "${KERNELORG_MIRROR}/pub/linux/kernel/v2.6/linux-${PV}.tar.bz2 "
SRC_URI_append_x86 = "file://i486-defconfig"
SRC_URI_append_i586-generic = "file://i586-defconfig"
SRC_URI_append_i686-generic = "file://i68... | DESCRIPTION = "Linux Kernel for x86 compatible machines"
SECTION = "kernel"
LICENSE = "GPL"
PR = "r2"
SRC_URI = "${KERNELORG_MIRROR}/pub/linux/kernel/v2.6/linux-${PV}.tar.bz2 "
SRC_URI_append_x86 = "file://i486-defconfig"
SRC_URI_append_i586-generic = "file://i586-defconfig"
SRC_URI_append_i686-generic = "file://i68... | Add deploying of kernel image again. | linux-x86: Add deploying of kernel image again.
| BitBake | mit | troth/oe-ts7xxx,nlebedenco/mini2440,JrCs/opendreambox,sentient-energy/emsw-oe-mirror,JrCs/opendreambox,popazerty/openembedded-cuberevo,YtvwlD/od-oe,philb/pbcl-oe-2010,mrchapp/arago-oe-dev,KDAB/OpenEmbedded-Archos,popazerty/openembedded-cuberevo,Martix/Eonos,rascalmicro/openembedded-rascal,YtvwlD/od-oe,sutajiokousagi/op... |
ce31212afee49c3cc90b14d52b191b57cc417a89 | recipes/libdaemon/libdaemon_0.13.bb | recipes/libdaemon/libdaemon_0.13.bb | DESCRIPTION = "libdaemon is a lightweight C library that eases the writing of UNIX daemons."
SECTION = "libs"
AUTHOR = "Lennart Poettering <lennart@poettering.net>"
HOMEPAGE = "http://0pointer.de/lennart/projects/libdaemon/"
LICENSE = "LGPL"
PR = "r0"
SRC_URI = "http://0pointer.de/lennart/projects/libdaemon/libdaemon-... | DESCRIPTION = "libdaemon is a lightweight C library that eases the writing of UNIX daemons."
SECTION = "libs"
AUTHOR = "Lennart Poettering <lennart@poettering.net>"
HOMEPAGE = "http://0pointer.de/lennart/projects/libdaemon/"
LICENSE = "LGPLv2.1+"
PR = "r1"
SRC_URI = "http://0pointer.de/lennart/projects/libdaemon/libda... | Update LICENSE field version to LGPLv2.1 | libdaemon: Update LICENSE field version to LGPLv2.1
* Updated LICENSE field version from generic LGPL to LGPLv2.1+ to
reflect the real license version.
* This change was back-ported from oe-core.
Signed-off-by: Chase Maupin <5a5662f468a76e0fc4391e65fb9f536df44d7380@ti.com>
| BitBake | mit | mrchapp/arago-oe-dev,mrchapp/arago-oe-dev,sledz/oe,sledz/oe,mrchapp/arago-oe-dev,sledz/oe,mrchapp/arago-oe-dev,mrchapp/arago-oe-dev,sledz/oe,sledz/oe,mrchapp/arago-oe-dev,mrchapp/arago-oe-dev,sledz/oe,sledz/oe |
b192805879489d79fe00e9dc9483671fdc9da4b8 | meta-oe/recipes-multimedia/libav/libav_git.bb | meta-oe/recipes-multimedia/libav/libav_git.bb | require libav.inc
LIC_FILES_CHKSUM = "file://COPYING.GPLv2;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
file://COPYING.GPLv3;md5=d32239bcb673463ab874e80d47fae504 \
file://COPYING.LGPLv2.1;md5=e344c8fa836c3a41c4cbd79d7bd3a379 \
file://COPYING.LGPLv3;md5=e6a600fd5e1d... | require libav.inc
LIC_FILES_CHKSUM = "file://COPYING.GPLv2;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
file://COPYING.GPLv3;md5=d32239bcb673463ab874e80d47fae504 \
file://COPYING.LGPLv2.1;md5=bd7a443320af8c812e4c18d1b79df004 \
file://COPYING.LGPLv3;md5=e6a600fd5e1d... | Update git version to 2012-10-04 snapshot | libav: Update git version to 2012-10-04 snapshot
This package depends on libpostproc to ensure same set of libraries is
provided for runtime.
Signed-off-by: Otavio Salvador <1d31b11c1b92bf5d043d36edfe7174db39a6b891@ossystems.com.br>
| BitBake | mit | OSSystems/meta-oe,OSSystems/meta-oe,OSSystems/meta-oe,OSSystems/meta-oe,OSSystems/meta-oe |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.