diff options
author | Holger Hans Peter Freyther <zecke@selfish.org> | 2008-10-15 10:56:42 +0200 |
---|---|---|
committer | Holger Hans Peter Freyther <zecke@selfish.org> | 2008-10-15 21:41:43 +0200 |
commit | aa03004ace2fabb135a6208ef8c2d2b312aa7b0b (patch) | |
tree | 422c1d0883e7a5b9fd5ac111f39baf22aceb31a3 /packages/squashfs-tools | |
parent | f629930ce8c8e4950e46af9bae5b911ca150e7c7 (diff) |
[PR] Change PR to FILE_PR and intro PR as FILE_PR + DISTRO_PR
Allow a distribution to globally bump the PR of every package
this is useful when there was a change in the toolchain and
every package is going to be different.
find packages/ \( -name '*.bb' -or -name '*.inc' \) -exec sed -i s/"^PR="/"FILE_PR ="/ {} \;
find packages/ \( -name '*.bb' -or -name '*.inc' \) -exec sed -i s/"^PR ="/"FILE_PR ="/ {} \;
Acked-By: Koen Kooi <koen@openembedded.org>
Diffstat (limited to 'packages/squashfs-tools')
6 files changed, 6 insertions, 6 deletions
diff --git a/packages/squashfs-tools/squashfs-lzma-tools_3.1r2.bb b/packages/squashfs-tools/squashfs-lzma-tools_3.1r2.bb index 109ac95646..76abae1563 100644 --- a/packages/squashfs-tools/squashfs-lzma-tools_3.1r2.bb +++ b/packages/squashfs-tools/squashfs-lzma-tools_3.1r2.bb @@ -2,7 +2,7 @@ DESCRIPTION = "Squashfs is a highly compressed read-only filesystem for Linux." SECTION = "base" LICENSE = "GPLv2" DEPENDS = "lzma" -PR = "r1" +FILE_PR = "r1" SRC_URI = "${SOURCEFORGE_MIRROR}/squashfs/squashfs${@bb.data.getVar('PV',d,1).replace('r','-r')}.tar.gz \ file://Makefile-3.1.patch;patch=1 \ diff --git a/packages/squashfs-tools/squashfs-tools-native_3.3.bb b/packages/squashfs-tools/squashfs-tools-native_3.3.bb index 87ba761ce4..3f97b6ce36 100644 --- a/packages/squashfs-tools/squashfs-tools-native_3.3.bb +++ b/packages/squashfs-tools/squashfs-tools-native_3.3.bb @@ -1,5 +1,5 @@ require squashfs-tools_${PV}.bb -PR = "r0" +FILE_PR = "r0" inherit native diff --git a/packages/squashfs-tools/squashfs-tools_2.0r2.bb b/packages/squashfs-tools/squashfs-tools_2.0r2.bb index 25be0837d2..4d2bc42a67 100644 --- a/packages/squashfs-tools/squashfs-tools_2.0r2.bb +++ b/packages/squashfs-tools/squashfs-tools_2.0r2.bb @@ -2,7 +2,7 @@ DESCRIPTION = "Squashfs is a highly compressed read-only filesystem for Linux." DEPENDS = "lzma" SECTION = "base" LICENSE = "GPLv2" -PR = "r1" +FILE_PR = "r1" SRC_URI = "${SOURCEFORGE_MIRROR}/squashfs/squashfs${@bb.data.getVar('PV',d,1).replace('r','-r')}.tar.gz \ file://flags.patch;patch=1 \ diff --git a/packages/squashfs-tools/squashfs-tools_2.2r2.bb b/packages/squashfs-tools/squashfs-tools_2.2r2.bb index af1cc17e4f..a2a94fdc04 100644 --- a/packages/squashfs-tools/squashfs-tools_2.2r2.bb +++ b/packages/squashfs-tools/squashfs-tools_2.2r2.bb @@ -2,7 +2,7 @@ DESCRIPTION = "Squashfs is a highly compressed read-only filesystem for Linux." DEPENDS = "lzma" SECTION = "base" LICENSE = "GPLv2" -PR = "r0" +FILE_PR = "r0" SRC_URI = "${SOURCEFORGE_MIRROR}/squashfs/squashfs${@bb.data.getVar('PV',d,1).replace('r','-r')}.tar.gz \ file://Makefile-2.2.patch;patch=1 \ diff --git a/packages/squashfs-tools/squashfs-tools_3.1r2.bb b/packages/squashfs-tools/squashfs-tools_3.1r2.bb index a4edad97b1..00cf1ce56c 100644 --- a/packages/squashfs-tools/squashfs-tools_3.1r2.bb +++ b/packages/squashfs-tools/squashfs-tools_3.1r2.bb @@ -1,7 +1,7 @@ DESCRIPTION = "Squashfs is a highly compressed read-only filesystem for Linux." SECTION = "base" LICENSE = "GPLv2" -PR = "r1" +FILE_PR = "r1" DEPENDS = "zlib" diff --git a/packages/squashfs-tools/squashfs-tools_3.3.bb b/packages/squashfs-tools/squashfs-tools_3.3.bb index 2bf0a98ccb..61d3ca0807 100644 --- a/packages/squashfs-tools/squashfs-tools_3.3.bb +++ b/packages/squashfs-tools/squashfs-tools_3.3.bb @@ -1,5 +1,5 @@ require squashfs-tools.inc -PR = "r0" +FILE_PR = "r0" # some release have .tgz, some have .tar.gz, so keep that outside the .inc file |