mirror of
https://git.yoctoproject.org/poky
synced 2026-04-26 09:32:14 +02:00
Major layout change to the packages directory
Having one monolithic packages directory makes it hard to find things and is generally overwhelming. This commit splits it into several logical sections roughly based on function, recipes.txt gives more information about the classifications used. The opportunity is also used to switch from "packages" to "recipes" as used in OpenEmbedded as the term "packages" can be confusing to people and has many different meanings. Not all recipes have been classified yet, this is just a first pass at separating things out. Some packages are moved to meta-extras as they're no longer actively used or maintained. Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
19
meta/recipes-devtools/patch/patch.inc
Normal file
19
meta/recipes-devtools/patch/patch.inc
Normal file
@@ -0,0 +1,19 @@
|
||||
DESCRIPTION = "patch takes a patch file containing a difference listing \
|
||||
produced by the diff program and applies those differences to one or more \
|
||||
original files, producing patched versions."
|
||||
LICENSE = "GPL"
|
||||
PRIORITY = "standard"
|
||||
SECTION = "utils"
|
||||
|
||||
SRC_URI = "${GNU_MIRROR}/patch/patch-${PV}.tar.gz"
|
||||
S = "${WORKDIR}/patch-${PV}"
|
||||
|
||||
inherit autotools update-alternatives
|
||||
|
||||
do_install_append () {
|
||||
mv ${D}${bindir}/patch ${D}${bindir}/patch.${PN}
|
||||
}
|
||||
|
||||
ALTERNATIVE_NAME = "patch"
|
||||
ALTERNATIVE_PATH = "patch.${PN}"
|
||||
ALTERNATIVE_PRIORITY = "100"
|
||||
Reference in New Issue
Block a user