diff options
| author | Yi Zhao <yi.zhao@windriver.com> | 2019-01-09 15:19:37 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-01-11 10:39:09 +0000 |
| commit | 9a54d673dfcf126e7754f617f913108041f98d0e (patch) | |
| tree | cd9e70ca791d4e2cacbeb744cc43937bc4902082 /meta/recipes-devtools/file/file_5.35.bb | |
| parent | 6e7d9c61bf8790ae555ed91455996b0b062a0476 (diff) | |
| download | poky-9a54d673dfcf126e7754f617f913108041f98d0e.tar.gz | |
file: upgrade 5.34 -> 5.35
License-Update: remove trailing whitespace from COPYING
(From OE-Core rev: 3667d548e91e7409b6e572d393cebb920e3926b7)
Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/file/file_5.35.bb')
| -rw-r--r-- | meta/recipes-devtools/file/file_5.35.bb | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/meta/recipes-devtools/file/file_5.35.bb b/meta/recipes-devtools/file/file_5.35.bb new file mode 100644 index 0000000000..2f0589de68 --- /dev/null +++ b/meta/recipes-devtools/file/file_5.35.bb | |||
| @@ -0,0 +1,50 @@ | |||
| 1 | SUMMARY = "File classification tool" | ||
| 2 | DESCRIPTION = "File attempts to classify files depending \ | ||
| 3 | on their contents and prints a description if a match is found." | ||
| 4 | HOMEPAGE = "http://www.darwinsys.com/file/" | ||
| 5 | SECTION = "console/utils" | ||
| 6 | |||
| 7 | # two clause BSD | ||
| 8 | LICENSE = "BSD" | ||
| 9 | LIC_FILES_CHKSUM = "file://COPYING;beginline=2;md5=0251eaec1188b20d9a72c502ecfdda1b" | ||
| 10 | |||
| 11 | DEPENDS = "zlib file-replacement-native" | ||
| 12 | DEPENDS_class-native = "zlib-native" | ||
| 13 | |||
| 14 | # Blacklist a bogus tag in upstream check | ||
| 15 | UPSTREAM_CHECK_GITTAGREGEX = "FILE(?P<pver>(?!6_23).+)" | ||
| 16 | |||
| 17 | SRC_URI = "git://github.com/file/file.git \ | ||
| 18 | file://debian-742262.patch \ | ||
| 19 | " | ||
| 20 | |||
| 21 | SRCREV = "d1ff3af7a2c6b38bdbdde7af26b59e3c50a48fff" | ||
| 22 | S = "${WORKDIR}/git" | ||
| 23 | |||
| 24 | inherit autotools update-alternatives | ||
| 25 | |||
| 26 | ALTERNATIVE_${PN} = "file" | ||
| 27 | ALTERNATIVE_LINK_NAME[file] = "${bindir}/file" | ||
| 28 | |||
| 29 | EXTRA_OEMAKE_append_class-target = "-e FILE_COMPILE=${STAGING_BINDIR_NATIVE}/file-native/file" | ||
| 30 | EXTRA_OEMAKE_append_class-nativesdk = "-e FILE_COMPILE=${STAGING_BINDIR_NATIVE}/file-native/file" | ||
| 31 | |||
| 32 | CFLAGS_append = " -std=c99" | ||
| 33 | |||
| 34 | FILES_${PN} += "${datadir}/misc/*.mgc" | ||
| 35 | |||
| 36 | do_install_append_class-native() { | ||
| 37 | create_cmdline_wrapper ${D}/${bindir}/file \ | ||
| 38 | --magic-file ${datadir}/misc/magic.mgc | ||
| 39 | } | ||
| 40 | |||
| 41 | do_install_append_class-nativesdk() { | ||
| 42 | create_cmdline_wrapper ${D}/${bindir}/file \ | ||
| 43 | --magic-file ${datadir}/misc/magic.mgc | ||
| 44 | } | ||
| 45 | |||
| 46 | BBCLASSEXTEND = "native nativesdk" | ||
| 47 | PROVIDES_append_class-native = " file-replacement-native" | ||
| 48 | # Don't use NATIVE_PACKAGE_PATH_SUFFIX as that hides libmagic from anyone who | ||
| 49 | # depends on file-replacement-native. | ||
| 50 | bindir_append_class-native = "/file-native" | ||
