diff options
author | Holger Hans Peter Freyther <zecke@selfish.org> | 2008-11-16 03:07:33 +0100 |
---|---|---|
committer | Holger Hans Peter Freyther <zecke@selfish.org> | 2008-11-16 03:11:09 +0100 |
commit | 39aefb745a42f565c2986b2f8c421ba150471244 (patch) | |
tree | 212f1ae5ad1193ece9cf1b095616250ab6d6363d /packages/gimp | |
parent | 5e27628f3ff4af00bdf28325d3cc7d5901e6e0d1 (diff) |
packages: Fix PV naming of svn/git based recipes to have +gitr/+svnr in the PV
According to the policy add an 'r' if we build a certain SCM
revision. Bump the PE to be sure that the package is bigger, may
alphanumeric math is too bad...
# my failure of shell knowledge...
git grep "^PV" packages/ | grep SRCREV | grep "\(git\\$\)\|\(svn\\$\)"
Diffstat (limited to 'packages/gimp')
-rw-r--r-- | packages/gimp/babl_svn.bb | 3 | ||||
-rw-r--r-- | packages/gimp/gegl_svn.bb | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/packages/gimp/babl_svn.bb b/packages/gimp/babl_svn.bb index a98cb0a057..332595ee6b 100644 --- a/packages/gimp/babl_svn.bb +++ b/packages/gimp/babl_svn.bb @@ -2,8 +2,9 @@ DESCRIPTION = "Babl is a dynamic, any to any, pixel format conversion library." LICENSE = "LGPL" SRCREV = "349" -PV = "0.0.23+svn${SRCREV}" +PV = "0.0.23+svnr${SRCREV}" PR = "r1" +PE = "1" inherit gnome diff --git a/packages/gimp/gegl_svn.bb b/packages/gimp/gegl_svn.bb index 7cdc86ae21..134e699425 100644 --- a/packages/gimp/gegl_svn.bb +++ b/packages/gimp/gegl_svn.bb @@ -3,7 +3,8 @@ LICENSE = "LGPL" DEPENDS = "babl librsvg glib-2.0 gtk+ pango cairo expat zlib libpng jpeg virtual/libsdl" SRCREV = "2543" -PV = "0.0.19+svn${SRCREV}" +PV = "0.0.19+svnr${SRCREV}" +PE = "1" inherit gnome |