From 7576eba58cdfebf0606623c25ae969ef52774099 Mon Sep 17 00:00:00 2001 From: Saul Wold Date: Wed, 6 Apr 2011 15:15:56 -0700 Subject: createrepo: Update to 0.9.9 (From OE-Core rev: ec0a97d918ffac153a5734c54bf9d77eb0ea61b1) Signed-off-by: Saul Wold Signed-off-by: Richard Purdie --- .../createrepo/createrepo/fix-native-install.patch | 88 +++++++++++----------- .../createrepo/createrepo_0.4.11.bb | 20 ----- .../recipes-support/createrepo/createrepo_0.9.9.bb | 19 +++++ 3 files changed, 65 insertions(+), 62 deletions(-) delete mode 100644 meta/recipes-support/createrepo/createrepo_0.4.11.bb create mode 100644 meta/recipes-support/createrepo/createrepo_0.9.9.bb (limited to 'meta/recipes-support/createrepo') diff --git a/meta/recipes-support/createrepo/createrepo/fix-native-install.patch b/meta/recipes-support/createrepo/createrepo/fix-native-install.patch index 2ed2202e77..53266b5444 100644 --- a/meta/recipes-support/createrepo/createrepo/fix-native-install.patch +++ b/meta/recipes-support/createrepo/createrepo/fix-native-install.patch @@ -4,19 +4,24 @@ There are two fixes: 1. -native needs to customize prefix 2. needs to change python reference in binaries +Upstream-Status: Inappropriate [native] + Signed-off-by: Qing He +Signed-off-by: Saul Wold -diff --git a/Makefile b/Makefile -index b2d1a32..3c3639f 100644 ---- a/Makefile -+++ b/Makefile -@@ -3,22 +3,22 @@ VERSION = 0.4.11 +Index: createrepo-0.9.9/Makefile +=================================================================== +--- createrepo-0.9.9.orig/Makefile 2011-01-26 09:14:30.000000000 -0800 ++++ createrepo-0.9.9/Makefile 2011-04-06 14:12:06.608923997 -0700 +@@ -10,22 +10,22 @@ SHELL = /bin/sh top_srcdir = . srcdir = . -prefix = /usr -exec_prefix = ${prefix} -- ++prefix ?= /usr ++exec_prefix ?= ${prefix} + -bindir = ${exec_prefix}/bin -sbindir = ${exec_prefix}/sbin -libexecdir = ${exec_prefix}/libexec @@ -26,9 +31,6 @@ index b2d1a32..3c3639f 100644 -localstatedir = ${prefix}/var -libdir = ${exec_prefix}/lib -infodir = ${prefix}/info -+prefix ?= /usr -+exec_prefix ?= ${prefix} -+ +bindir ?= ${exec_prefix}/bin +sbindir ?= ${exec_prefix}/sbin +libexecdir ?= ${exec_prefix}/libexec @@ -45,19 +47,21 @@ index b2d1a32..3c3639f 100644 -mandir = ${prefix}/share/man +mandir ?= ${prefix}/share/man - pkgdatadir = $(datadir)/$(PACKAGE) - pkglibdir = $(libdir)/$(PACKAGE) -diff --git a/bin/Makefile b/bin/Makefile -index 52c1f50..e30610e 100644 ---- a/bin/Makefile -+++ b/bin/Makefile + pkgdatadir = $(datadir)/$(PKGNAME) + pkglibdir = $(libdir)/$(PKGNAME) +Index: createrepo-0.9.9/bin/Makefile +=================================================================== +--- createrepo-0.9.9.orig/bin/Makefile 2011-01-26 09:14:30.000000000 -0800 ++++ createrepo-0.9.9/bin/Makefile 2011-04-06 14:15:07.212923998 -0700 @@ -1,22 +1,22 @@ SHELL = /bin/sh top_srcdir = .. srcdir = ../bin -prefix = /usr -exec_prefix = ${prefix} -- ++prefix ?= /usr ++exec_prefix ?= ${prefix} + -bindir = ${exec_prefix}/bin -sbindir = ${exec_prefix}/sbin -libexecdir = ${exec_prefix}/libexec @@ -67,9 +71,6 @@ index 52c1f50..e30610e 100644 -localstatedir = ${prefix}/var -libdir = ${exec_prefix}/lib -infodir = ${prefix}/info -+prefix ?= /usr -+exec_prefix ?= ${prefix} -+ +bindir ?= ${exec_prefix}/bin +sbindir ?= ${exec_prefix}/sbin +libexecdir ?= ${exec_prefix}/libexec @@ -86,49 +87,55 @@ index 52c1f50..e30610e 100644 -mandir = ${prefix}/man +mandir ?= ${prefix}/man - pkgdatadir = $(datadir)/$(PACKAGE) - pkglibdir = $(libdir)/$(PACKAGE) -@@ -40,8 +40,11 @@ all: $(srcdir)/$(PACKAGE) + pkgdatadir = $(datadir)/$(PKGNAME) + pkglibdir = $(libdir)/$(PKGNAME) +@@ -41,9 +41,14 @@ install: all installdirs -- $(INSTALL_BIN) $(srcdir)/$(PACKAGE) $(DESTDIR)$(bindir)/$(PACKAGE) +- $(INSTALL_BIN) $(srcdir)/$(PKGNAME) $(DESTDIR)$(bindir)/$(PKGNAME) - $(INSTALL_BIN) $(srcdir)/modifyrepo $(DESTDIR)$(bindir)/modifyrepo +- $(INSTALL_BIN) $(srcdir)/mergerepo $(DESTDIR)$(bindir)/mergerepo + sed -e "s|@DATADIR@|$(datadir)|" $(srcdir)/$(PACKAGE) > $(srcdir)/$(PACKAGE).tmp + sed -e "s|@DATADIR@|$(datadir)|" $(srcdir)/modifyrepo > $(srcdir)/modifyrepo.tmp ++ sed -e "s|@DATADIR@|$(datadir)|" $(srcdir)/mergerepo > $(srcdir)/mergerepo.tmp + $(INSTALL_BIN) $(srcdir)/$(PACKAGE).tmp $(DESTDIR)$(bindir)/$(PACKAGE) + $(INSTALL_BIN) $(srcdir)/modifyrepo.tmp $(DESTDIR)$(bindir)/modifyrepo -+ rm -f $(srcdir)/$(PACKAGE).tmp $(srcdir)/modifyrepo.tmp ++ $(INSTALL_BIN) $(srcdir)/mergerepo.tmp $(DESTDIR)$(bindir)/mergerepo ++ rm -f $(srcdir)/$(PACKAGE).tmp $(srcdir)/modifyrepo.tmp $(srcdir)/mergerepo.tmp ++ uninstall: -diff --git a/bin/createrepo b/bin/createrepo -index b0de515..eaacb39 100755 ---- a/bin/createrepo -+++ b/bin/createrepo +Index: createrepo-0.9.9/bin/createrepo +=================================================================== +--- createrepo-0.9.9.orig/bin/createrepo 2011-01-26 09:14:30.000000000 -0800 ++++ createrepo-0.9.9/bin/createrepo 2011-04-06 14:12:06.608923997 -0700 @@ -1,2 +1,2 @@ #!/bin/sh -exec /usr/share/createrepo/genpkgmetadata.py "$@" +exec @DATADIR@/createrepo/genpkgmetadata.py "$@" -diff --git a/bin/modifyrepo b/bin/modifyrepo -index c9732d8..6f7c1d4 100755 ---- a/bin/modifyrepo -+++ b/bin/modifyrepo +Index: createrepo-0.9.9/bin/modifyrepo +=================================================================== +--- createrepo-0.9.9.orig/bin/modifyrepo 2011-01-26 09:14:30.000000000 -0800 ++++ createrepo-0.9.9/bin/modifyrepo 2011-04-06 14:12:06.608923997 -0700 @@ -1,2 +1,2 @@ #!/bin/sh -exec /usr/share/createrepo/modifyrepo.py "$@" +exec @DATADIR@/createrepo/modifyrepo.py "$@" -diff --git a/docs/Makefile b/docs/Makefile -index 0a41179..e128c85 100644 ---- a/docs/Makefile -+++ b/docs/Makefile +Index: createrepo-0.9.9/docs/Makefile +=================================================================== +--- createrepo-0.9.9.orig/docs/Makefile 2011-01-26 09:14:30.000000000 -0800 ++++ createrepo-0.9.9/docs/Makefile 2011-04-06 14:12:06.608923997 -0700 @@ -1,22 +1,22 @@ SHELL = /bin/sh top_srcdir = .. srcdir = ../docs -prefix = /usr -exec_prefix = ${prefix} -- ++prefix ?= /usr ++exec_prefix ?= ${prefix} + -bindir = ${exec_prefix}/bin -sbindir = ${exec_prefix}/sbin -libexecdir = ${exec_prefix}/libexec @@ -138,9 +145,6 @@ index 0a41179..e128c85 100644 -localstatedir = ${prefix}/var -libdir = ${exec_prefix}/lib -infodir = ${prefix}/info -+prefix ?= /usr -+exec_prefix ?= ${prefix} -+ +bindir ?= ${exec_prefix}/bin +sbindir ?= ${exec_prefix}/sbin +libexecdir ?= ${exec_prefix}/libexec @@ -157,5 +161,5 @@ index 0a41179..e128c85 100644 -mandir = ${datadir}/man +mandir ?= ${datadir}/man - pkgdatadir = $(datadir)/$(PACKAGE) - pkglibdir = $(libdir)/$(PACKAGE) + pkgdatadir = $(datadir)/$(PKGNAME) + pkglibdir = $(libdir)/$(PKGNAME) diff --git a/meta/recipes-support/createrepo/createrepo_0.4.11.bb b/meta/recipes-support/createrepo/createrepo_0.4.11.bb deleted file mode 100644 index ba1d04b2bd..0000000000 --- a/meta/recipes-support/createrepo/createrepo_0.4.11.bb +++ /dev/null @@ -1,20 +0,0 @@ -DESCRIPTION = "createrepo creates rpm-metadata for rpms to build the repository" -HOMEPAGE = "http://createrepo.baseurl.org/" - -LICENSE = "GPLv2+" -LIC_FILES_CHKSUM = "file://COPYING;md5=18810669f13b87348459e611d31ab760" - -PR = "r1" - -SRC_URI= "http://createrepo.baseurl.org/download/${BP}.tar.gz \ - file://fix-native-install.patch \ - " - -SRC_URI[md5sum] = "3e9ccf4abcffe3f49af078c83611eda2" -SRC_URI[sha256sum] = "a73ae11a0dcde8bde36d900bc3f7f8f1083ba752c70a5c61b72d1e1e7608f21b" - -BBCLASSEXTEND = "native" - -do_install () { - oe_runmake -e 'DESTDIR=${D}' install -} diff --git a/meta/recipes-support/createrepo/createrepo_0.9.9.bb b/meta/recipes-support/createrepo/createrepo_0.9.9.bb new file mode 100644 index 0000000000..89f18f4e1c --- /dev/null +++ b/meta/recipes-support/createrepo/createrepo_0.9.9.bb @@ -0,0 +1,19 @@ +DESCRIPTION = "createrepo creates rpm-metadata for rpms to build the repository" +HOMEPAGE = "http://createrepo.baseurl.org/" + +LICENSE = "GPLv2+" +LIC_FILES_CHKSUM = "file://COPYING;md5=18810669f13b87348459e611d31ab760" + +PR = "r0" + +SRC_URI= "http://createrepo.baseurl.org/download/${BP}.tar.gz \ + file://fix-native-install.patch \ + " +SRC_URI[md5sum] = "10641f19a40e9f633b300e23dde00349" +SRC_URI[sha256sum] = "ee897463837b299fb20bf6e970f8c5324cd8b7f26ad3675a9938a2d7ae42ff03" + +BBCLASSEXTEND = "native" + +do_install () { + oe_runmake -e 'DESTDIR=${D}' install +} -- cgit v1.2.3-54-g00ecf