diff options
author | Mark Hatle <mark.hatle@windriver.com> | 2011-01-15 21:36:23 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-01-28 17:52:55 +0000 |
commit | f6ddba2a9dc15560f639faaba8233c29c0c37e9d (patch) | |
tree | 568c80749bdfd9c005c769bbb49b18a6b1390cff | |
parent | a606ad5022e7c0ca34a5bc086254ac8ec16bc8c7 (diff) | |
download | poky-f6ddba2a9dc15560f639faaba8233c29c0c37e9d.tar.gz |
rpm: Uprev to RPM 5.4.0
Update RPM to the latest release, RPM 5.4.0.
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
-rw-r--r-- | meta/classes/package.bbclass | 2 | ||||
-rw-r--r-- | meta/classes/package_rpm.bbclass | 5 | ||||
-rw-r--r-- | meta/classes/rootfs_rpm.bbclass | 17 | ||||
-rw-r--r-- | meta/conf/distro/include/as-needed.inc | 3 | ||||
-rw-r--r-- | meta/recipes-devtools/rpm/rpm/rpm-autogen.patch | 54 | ||||
-rw-r--r-- | meta/recipes-devtools/rpm/rpm/rpm-libsql-fix.patch | 18 | ||||
-rwxr-xr-x | meta/recipes-devtools/rpm/rpm/rpm2cpio | 51 | ||||
-rw-r--r-- | meta/recipes-devtools/rpm/rpm_5.1.10.bb | 168 | ||||
-rw-r--r-- | meta/recipes-devtools/rpm/rpm_5.4.0.bb | 432 |
9 files changed, 571 insertions, 179 deletions
diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass index 1b950bb617..7e1f3f0325 100644 --- a/meta/classes/package.bbclass +++ b/meta/classes/package.bbclass | |||
@@ -559,7 +559,7 @@ if [ x"$D" = "x" ]; then | |||
559 | fi | 559 | fi |
560 | } | 560 | } |
561 | 561 | ||
562 | RPMDEPS = "${STAGING_LIBDIR_NATIVE}/rpm/rpmdeps" | 562 | RPMDEPS = "${STAGING_LIBDIR_NATIVE}/rpm/bin/rpmdeps" |
563 | 563 | ||
564 | # Collect perfile run-time dependency metadata | 564 | # Collect perfile run-time dependency metadata |
565 | # Output: | 565 | # Output: |
diff --git a/meta/classes/package_rpm.bbclass b/meta/classes/package_rpm.bbclass index fbe0626d6e..7c2cdb0bde 100644 --- a/meta/classes/package_rpm.bbclass +++ b/meta/classes/package_rpm.bbclass | |||
@@ -46,8 +46,7 @@ package_update_index_rpm () { | |||
46 | -D "_dbpath $pkgdir/solvedb" --justdb \ | 46 | -D "_dbpath $pkgdir/solvedb" --justdb \ |
47 | --noaid --nodeps --noorder --noscripts --notriggers --noparentdirs --nolinktos --stats \ | 47 | --noaid --nodeps --noorder --noscripts --notriggers --noparentdirs --nolinktos --stats \ |
48 | --ignoresize --nosignature --nodigest \ | 48 | --ignoresize --nosignature --nodigest \ |
49 | -D "_dbi_tags_3 Packages:Name:Basenames:Providename:Nvra" \ | 49 | -D "__dbi_txn create nofsync" \ |
50 | -D "__dbi_cdb create mp_mmapsize=128Mb mp_size=1Mb nofsync" \ | ||
51 | $pkgdir/solvedb/manifest | 50 | $pkgdir/solvedb/manifest |
52 | echo $pkgdir/solvedb >> ${DEPLOY_DIR_RPM}/solvedb.conf | 51 | echo $pkgdir/solvedb >> ${DEPLOY_DIR_RPM}/solvedb.conf |
53 | fi | 52 | fi |
@@ -530,6 +529,8 @@ python do_package_rpm () { | |||
530 | cmd = cmd + " --define '_use_internal_dependency_generator 0'" | 529 | cmd = cmd + " --define '_use_internal_dependency_generator 0'" |
531 | cmd = cmd + " --define '__find_requires " + outdepends + "'" | 530 | cmd = cmd + " --define '__find_requires " + outdepends + "'" |
532 | cmd = cmd + " --define '__find_provides " + outprovides + "'" | 531 | cmd = cmd + " --define '__find_provides " + outprovides + "'" |
532 | cmd = cmd + " --define '_unpackaged_files_terminate_build 0'" | ||
533 | cmd = cmd + " --define 'debug_package %{nil}'" | ||
533 | cmd = cmd + " -bb " + outspecfile | 534 | cmd = cmd + " -bb " + outspecfile |
534 | 535 | ||
535 | # Build the spec file! | 536 | # Build the spec file! |
diff --git a/meta/classes/rootfs_rpm.bbclass b/meta/classes/rootfs_rpm.bbclass index 8646eec1e1..6be788642f 100644 --- a/meta/classes/rootfs_rpm.bbclass +++ b/meta/classes/rootfs_rpm.bbclass | |||
@@ -79,7 +79,7 @@ fakeroot rootfs_rpm_do_rootfs () { | |||
79 | # Generate an install solution by doing a --justdb install, then recreate it with | 79 | # Generate an install solution by doing a --justdb install, then recreate it with |
80 | # an actual package install! | 80 | # an actual package install! |
81 | ${RPM} -D "_dbpath ${IMAGE_ROOTFS}/install" -D "`cat ${DEPLOY_DIR_RPM}/solvedb.macro`" \ | 81 | ${RPM} -D "_dbpath ${IMAGE_ROOTFS}/install" -D "`cat ${DEPLOY_DIR_RPM}/solvedb.macro`" \ |
82 | -D "__dbi_cdb create mp_mmapsize=128Mb mp_size=1Mb nofsync" \ | 82 | -D "__dbi_txn create nofsync" \ |
83 | -U --justdb --noscripts --notriggers --noparentdirs --nolinktos --ignoresize \ | 83 | -U --justdb --noscripts --notriggers --noparentdirs --nolinktos --ignoresize \ |
84 | ${IMAGE_ROOTFS}/install/install.manifest | 84 | ${IMAGE_ROOTFS}/install/install.manifest |
85 | 85 | ||
@@ -94,7 +94,7 @@ fakeroot rootfs_rpm_do_rootfs () { | |||
94 | fi | 94 | fi |
95 | echo "Attempting $pkg_name..." >> "${WORKDIR}/temp/log.do_rootfs_attemptonly.${PID}" | 95 | echo "Attempting $pkg_name..." >> "${WORKDIR}/temp/log.do_rootfs_attemptonly.${PID}" |
96 | ${RPM} -D "_dbpath ${IMAGE_ROOTFS}/install" -D "`cat ${DEPLOY_DIR_RPM}/solvedb.macro`" \ | 96 | ${RPM} -D "_dbpath ${IMAGE_ROOTFS}/install" -D "`cat ${DEPLOY_DIR_RPM}/solvedb.macro`" \ |
97 | -D "__dbi_cdb create mp_mmapsize=128Mb mp_size=1Mb nofsync private" \ | 97 | -D "__dbi_txn create nofsync private" \ |
98 | -U --justdb --noscripts --notriggers --noparentdirs --nolinktos --ignoresize \ | 98 | -U --justdb --noscripts --notriggers --noparentdirs --nolinktos --ignoresize \ |
99 | $pkg_name >> "${WORKDIR}/temp/log.do_rootfs_attemptonly.${PID}" || true | 99 | $pkg_name >> "${WORKDIR}/temp/log.do_rootfs_attemptonly.${PID}" || true |
100 | done | 100 | done |
@@ -112,6 +112,7 @@ fakeroot rootfs_rpm_do_rootfs () { | |||
112 | while [ $loop -eq 1 ]; do | 112 | while [ $loop -eq 1 ]; do |
113 | # Dump the full set of recommends... | 113 | # Dump the full set of recommends... |
114 | ${RPM} -D "_dbpath ${IMAGE_ROOTFS}/install" -D "`cat ${DEPLOY_DIR_RPM}/solvedb.macro`" \ | 114 | ${RPM} -D "_dbpath ${IMAGE_ROOTFS}/install" -D "`cat ${DEPLOY_DIR_RPM}/solvedb.macro`" \ |
115 | -D "__dbi_txn create nofsync private" \ | ||
115 | -qa --qf "[%{RECOMMENDS}\n]" | sort -u > ${IMAGE_ROOTFS}/install/recommend | 116 | -qa --qf "[%{RECOMMENDS}\n]" | sort -u > ${IMAGE_ROOTFS}/install/recommend |
116 | # Did we add more to the list? | 117 | # Did we add more to the list? |
117 | grep -v -x -F -f ${IMAGE_ROOTFS}/install/recommend.list ${IMAGE_ROOTFS}/install/recommend > ${IMAGE_ROOTFS}/install/recommend.new || true | 118 | grep -v -x -F -f ${IMAGE_ROOTFS}/install/recommend.list ${IMAGE_ROOTFS}/install/recommend > ${IMAGE_ROOTFS}/install/recommend.new || true |
@@ -129,7 +130,7 @@ fakeroot rootfs_rpm_do_rootfs () { | |||
129 | fi | 130 | fi |
130 | echo "Attempting $pkg_name..." >> "${WORKDIR}/temp/log.do_rootfs_recommend.${PID}" | 131 | echo "Attempting $pkg_name..." >> "${WORKDIR}/temp/log.do_rootfs_recommend.${PID}" |
131 | ${RPM} -D "_dbpath ${IMAGE_ROOTFS}/install" -D "`cat ${DEPLOY_DIR_RPM}/solvedb.macro`" \ | 132 | ${RPM} -D "_dbpath ${IMAGE_ROOTFS}/install" -D "`cat ${DEPLOY_DIR_RPM}/solvedb.macro`" \ |
132 | -D "__dbi_cdb create mp_mmapsize=128Mb mp_size=1Mb nofsync private" \ | 133 | -D "__dbi_txn create nofsync private" \ |
133 | -U --justdb --noscripts --notriggers --noparentdirs --nolinktos --ignoresize \ | 134 | -U --justdb --noscripts --notriggers --noparentdirs --nolinktos --ignoresize \ |
134 | $pkg_name >> "${WORKDIR}/temp/log.do_rootfs_recommend.${PID}" 2>&1 || true | 135 | $pkg_name >> "${WORKDIR}/temp/log.do_rootfs_recommend.${PID}" 2>&1 || true |
135 | done | 136 | done |
@@ -142,12 +143,13 @@ fakeroot rootfs_rpm_do_rootfs () { | |||
142 | # Now that we have a solution, pull out a list of what to install... | 143 | # Now that we have a solution, pull out a list of what to install... |
143 | echo "Manifest: ${IMAGE_ROOTFS}/install/install.manifest" | 144 | echo "Manifest: ${IMAGE_ROOTFS}/install/install.manifest" |
144 | ${RPM} -D "_dbpath ${IMAGE_ROOTFS}/install" -qa --yaml \ | 145 | ${RPM} -D "_dbpath ${IMAGE_ROOTFS}/install" -qa --yaml \ |
146 | -D "__dbi_txn create nofsync private" \ | ||
145 | | grep -i 'Packageorigin' | cut -d : -f 2 > ${IMAGE_ROOTFS}/install/install_solution.manifest | 147 | | grep -i 'Packageorigin' | cut -d : -f 2 > ${IMAGE_ROOTFS}/install/install_solution.manifest |
146 | 148 | ||
147 | # Attempt install | 149 | # Attempt install |
148 | ${RPM} --root ${IMAGE_ROOTFS} -D "_dbpath ${rpmlibdir}" \ | 150 | ${RPM} --root ${IMAGE_ROOTFS} -D "_dbpath ${rpmlibdir}" \ |
149 | --noscripts --notriggers --noparentdirs --nolinktos \ | 151 | --noscripts --notriggers --noparentdirs --nolinktos \ |
150 | -D "__dbi_cdb create mp_mmapsize=128Mb mp_size=1Mb nofsync private" \ | 152 | -D "__dbi_txn create nofsync private" \ |
151 | -Uhv ${IMAGE_ROOTFS}/install/install_solution.manifest | 153 | -Uhv ${IMAGE_ROOTFS}/install/install_solution.manifest |
152 | 154 | ||
153 | export D=${IMAGE_ROOTFS} | 155 | export D=${IMAGE_ROOTFS} |
@@ -159,6 +161,7 @@ fakeroot rootfs_rpm_do_rootfs () { | |||
159 | 161 | ||
160 | mkdir -p ${IMAGE_ROOTFS}/etc/rpm-postinsts/ | 162 | mkdir -p ${IMAGE_ROOTFS}/etc/rpm-postinsts/ |
161 | ${RPM} --root ${IMAGE_ROOTFS} -D '_dbpath ${rpmlibdir}' -qa \ | 163 | ${RPM} --root ${IMAGE_ROOTFS} -D '_dbpath ${rpmlibdir}' -qa \ |
164 | -D "__dbi_txn create nofsync private" \ | ||
162 | --qf 'Name: %{NAME}\n%|POSTIN?{postinstall scriptlet%|POSTINPROG?{ (using %{POSTINPROG})}|:\n%{POSTIN}\n}:{%|POSTINPROG?{postinstall program: %{POSTINPROG}\n}|}|' \ | 165 | --qf 'Name: %{NAME}\n%|POSTIN?{postinstall scriptlet%|POSTINPROG?{ (using %{POSTINPROG})}|:\n%{POSTIN}\n}:{%|POSTINPROG?{postinstall program: %{POSTINPROG}\n}|}|' \ |
163 | > ${IMAGE_ROOTFS}/etc/rpm-postinsts/combined | 166 | > ${IMAGE_ROOTFS}/etc/rpm-postinsts/combined |
164 | awk -f ${AWKPOSTINSTSCRIPT} < ${IMAGE_ROOTFS}/etc/rpm-postinsts/combined | 167 | awk -f ${AWKPOSTINSTSCRIPT} < ${IMAGE_ROOTFS}/etc/rpm-postinsts/combined |
@@ -246,7 +249,7 @@ resolve_package() { | |||
246 | pkg="$1" | 249 | pkg="$1" |
247 | pkg_name="" | 250 | pkg_name="" |
248 | for solve in `cat ${DEPLOY_DIR_RPM}/solvedb.conf`; do | 251 | for solve in `cat ${DEPLOY_DIR_RPM}/solvedb.conf`; do |
249 | pkg_name=$(${RPM} -D "_dbpath $solve" -D "_dbi_tags_3 Packages:Name:Basenames:Providename:Nvra" -D "__dbi_cdb create mp_mmapsize=128Mb mp_size=1Mb nofsync" -q --yaml $pkg | grep -i 'Packageorigin' | cut -d : -f 2) | 252 | pkg_name=$(${RPM} -D "_dbpath $solve" -D "__dbi_txn create nofsync" -q --yaml $pkg | grep -i 'Packageorigin' | cut -d : -f 2) |
250 | if [ -n "$pkg_name" ]; then | 253 | if [ -n "$pkg_name" ]; then |
251 | break; | 254 | break; |
252 | fi | 255 | fi |
@@ -260,7 +263,7 @@ install_all_locales() { | |||
260 | # Generate list of installed packages... | 263 | # Generate list of installed packages... |
261 | INSTALLED_PACKAGES=$( \ | 264 | INSTALLED_PACKAGES=$( \ |
262 | ${RPM} --root ${IMAGE_ROOTFS} -D "_dbpath ${rpmlibdir}" \ | 265 | ${RPM} --root ${IMAGE_ROOTFS} -D "_dbpath ${rpmlibdir}" \ |
263 | -D "__dbi_cdb create mp_mmapsize=128Mb mp_size=1Mb nofsync private" \ | 266 | -D "__dbi_txn create nofsync private" \ |
264 | -qa --qf "[%{NAME}\n]" | egrep -v -- "(-locale-|-dev$|-doc$|^kernel|^glibc|^ttf|^task|^perl|^python)" \ | 267 | -qa --qf "[%{NAME}\n]" | egrep -v -- "(-locale-|-dev$|-doc$|^kernel|^glibc|^ttf|^task|^perl|^python)" \ |
265 | ) | 268 | ) |
266 | 269 | ||
@@ -271,8 +274,8 @@ install_all_locales() { | |||
271 | pkg_name=$(resolve_package $pkg-locale-$lang) | 274 | pkg_name=$(resolve_package $pkg-locale-$lang) |
272 | if [ -n "$pkg_name" ]; then | 275 | if [ -n "$pkg_name" ]; then |
273 | ${RPM} --root ${IMAGE_ROOTFS} -D "_dbpath ${rpmlibdir}" \ | 276 | ${RPM} --root ${IMAGE_ROOTFS} -D "_dbpath ${rpmlibdir}" \ |
277 | -D "__dbi_txn create nofsync private" \ | ||
274 | --noscripts --notriggers --noparentdirs --nolinktos \ | 278 | --noscripts --notriggers --noparentdirs --nolinktos \ |
275 | -D "__dbi_cdb create mp_mmapsize=128Mb mp_size=1Mb nofsync private" \ | ||
276 | -Uhv $pkg_name || true | 279 | -Uhv $pkg_name || true |
277 | fi | 280 | fi |
278 | done | 281 | done |
diff --git a/meta/conf/distro/include/as-needed.inc b/meta/conf/distro/include/as-needed.inc index e962619c91..9d2056e17a 100644 --- a/meta/conf/distro/include/as-needed.inc +++ b/meta/conf/distro/include/as-needed.inc | |||
@@ -11,5 +11,6 @@ ASNEEDED_pn-pciutils = "" | |||
11 | ASNEEDED_pn-puzzles = "" | 11 | ASNEEDED_pn-puzzles = "" |
12 | ASNEEDED_pn-dialer = "" | 12 | ASNEEDED_pn-dialer = "" |
13 | ASNEEDED_pn-pulseaudio = "" | 13 | ASNEEDED_pn-pulseaudio = "" |
14 | ASNEEDED_pn-rpm = "" | ||
14 | 15 | ||
15 | TARGET_LDFLAGS += "${ASNEEDED}" \ No newline at end of file | 16 | TARGET_LDFLAGS += "${ASNEEDED}" |
diff --git a/meta/recipes-devtools/rpm/rpm/rpm-autogen.patch b/meta/recipes-devtools/rpm/rpm/rpm-autogen.patch new file mode 100644 index 0000000000..323bb7151e --- /dev/null +++ b/meta/recipes-devtools/rpm/rpm/rpm-autogen.patch | |||
@@ -0,0 +1,54 @@ | |||
1 | Remove the sanity checking from the rpm autogen.sh. This is required because | ||
2 | we may have slightly different, but yet compatible versions. If we do end | ||
3 | up breaking things, we'll deal with it at that time. | ||
4 | |||
5 | Signed-off-by: Mark Hatle <mark.hatle@windriver.com> | ||
6 | |||
7 | diff -ur rpm-5.4.0.orig/autogen.sh rpm-5.4.0/autogen.sh | ||
8 | --- rpm-5.4.0.orig/autogen.sh 2010-11-02 11:55:53.000000000 -0500 | ||
9 | +++ rpm-5.4.0/autogen.sh 2011-01-06 00:15:05.158946295 -0600 | ||
10 | @@ -34,12 +34,6 @@ | ||
11 | eval $_libtoolize $_libtoolize_args | ||
12 | } | ||
13 | |||
14 | -# requirements sanity check | ||
15 | -[ "`automake --version | head -1`" != "$AMV" ] && echo "$USAGE" # && exit 1 | ||
16 | -[ "`autoconf --version | head -1`" != "$ACV" ] && echo "$USAGE" # && exit 1 | ||
17 | -[ "`libtoolize --version | head -1`" != "$LTV" ] && echo "$USAGE" # && exit 1 | ||
18 | -[ "`gettextize --version | head -1 | sed -e 's;^.*/\\(gettextize\\);\\1;'`" != "$GTT" ] && echo "$USAGE" # && exit 1 | ||
19 | - | ||
20 | for dir in bash beecrypt file neon pcre popt rc syck xar xz; do | ||
21 | |||
22 | if [ -d $dir ]; then | ||
23 | diff -ur rpm-5.4.0.orig/neon/autogen.sh rpm-5.4.0/neon/autogen.sh | ||
24 | --- rpm-5.4.0.orig/neon/autogen.sh 2010-10-30 19:11:33.000000000 -0500 | ||
25 | +++ rpm-5.4.0/neon/autogen.sh 2011-01-06 00:15:17.863962139 -0600 | ||
26 | @@ -34,12 +34,6 @@ | ||
27 | eval $_libtoolize $_libtoolize_args | ||
28 | } | ||
29 | |||
30 | -# requirements sanity check | ||
31 | -[ "`automake --version | head -1`" != "$AMV" ] && echo "$USAGE" # && exit 1 | ||
32 | -[ "`autoconf --version | head -1`" != "$ACV" ] && echo "$USAGE" # && exit 1 | ||
33 | -[ "`libtoolize --version | head -1`" != "$LTV" ] && echo "$USAGE" # && exit 1 | ||
34 | -[ "`gettextize --version | head -1 | sed -e 's;^.*/\\(gettextize\\);\\1;'`" != "$GTT" ] && echo "$USAGE" # && exit 1 | ||
35 | - | ||
36 | echo "---> generate files via GNU libtool (libtoolize)" | ||
37 | libtoolize --quiet --copy --force --install | ||
38 | echo "---> generate files via GNU autoconf (aclocal, autoheader)" | ||
39 | diff -ur rpm-5.4.0.orig/syck/autogen.sh rpm-5.4.0/syck/autogen.sh | ||
40 | --- rpm-5.4.0.orig/syck/autogen.sh 2010-11-02 11:55:56.000000000 -0500 | ||
41 | +++ rpm-5.4.0/syck/autogen.sh 2011-01-06 00:15:27.103949601 -0600 | ||
42 | @@ -34,12 +34,6 @@ | ||
43 | eval $_libtoolize $_libtoolize_args | ||
44 | } | ||
45 | |||
46 | -# requirements sanity check | ||
47 | -[ "`automake --version | head -1`" != "$AMV" ] && echo "$USAGE" # && exit 1 | ||
48 | -[ "`autoconf --version | head -1`" != "$ACV" ] && echo "$USAGE" # && exit 1 | ||
49 | -[ "`libtoolize --version | head -1`" != "$LTV" ] && echo "$USAGE" # && exit 1 | ||
50 | -[ "`gettextize --version | head -1 | sed -e 's;^.*/\\(gettextize\\);\\1;'`" != "$GTT" ] && echo "$USAGE" # && exit 1 | ||
51 | - | ||
52 | echo "---> generate files via GNU libtool (libtoolize)" | ||
53 | libtoolize --quiet --copy --force --install | ||
54 | echo "---> generate files via GNU autoconf (aclocal, autoheader)" | ||
diff --git a/meta/recipes-devtools/rpm/rpm/rpm-libsql-fix.patch b/meta/recipes-devtools/rpm/rpm/rpm-libsql-fix.patch new file mode 100644 index 0000000000..829399c95e --- /dev/null +++ b/meta/recipes-devtools/rpm/rpm/rpm-libsql-fix.patch | |||
@@ -0,0 +1,18 @@ | |||
1 | During installation, the libtool relink attempts to link to -lrpm... | ||
2 | The problem is that it hasn't been installed yet! So small change causes | ||
3 | the libtool to instead use the build version. | ||
4 | |||
5 | Signed-off-by: Mark Hatle <mark.hatle@windriver.com> | ||
6 | |||
7 | --- rpm-5.4.0/lib/Makefile.am.orig | ||
8 | +++ rpm-5.4.0/lib/Makefile.am | ||
9 | @@ -90,6 +90,9 @@ | ||
10 | libsql_la_SOURCES = libsql.c | ||
11 | libsql_la_LIBADD = librpm.la $(RPMDB_LDADD_COMMON) | ||
12 | |||
13 | +# pkglib libraries needs to have usrlib libraries already installed! | ||
14 | +install-pkglibLTLIBRARIES: install-usrlibLTLIBRARIES | ||
15 | + | ||
16 | install-data-hook: | ||
17 | if !ENABLE_BUILD_LAFILES | ||
18 | -for l in $(usrlib_LTLIBRARIES); do \ | ||
diff --git a/meta/recipes-devtools/rpm/rpm/rpm2cpio b/meta/recipes-devtools/rpm/rpm/rpm2cpio new file mode 100755 index 0000000000..00c4ec549e --- /dev/null +++ b/meta/recipes-devtools/rpm/rpm/rpm2cpio | |||
@@ -0,0 +1,51 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | pkg=$1 | ||
4 | if [ "$pkg" = "" -o ! -e "$pkg" ]; then | ||
5 | echo "no package supplied" 1>&2 | ||
6 | exit 1 | ||
7 | fi | ||
8 | |||
9 | leadsize=96 | ||
10 | o=`expr $leadsize + 8` | ||
11 | set `od -j $o -N 8 -t u1 $pkg` | ||
12 | il=`expr 256 \* \( 256 \* \( 256 \* $2 + $3 \) + $4 \) + $5` | ||
13 | dl=`expr 256 \* \( 256 \* \( 256 \* $6 + $7 \) + $8 \) + $9` | ||
14 | # echo "sig il: $il dl: $dl" | ||
15 | |||
16 | sigsize=`expr 8 + 16 \* $il + $dl` | ||
17 | o=`expr $o + $sigsize + \( 8 - \( $sigsize \% 8 \) \) \% 8 + 8` | ||
18 | set `od -j $o -N 8 -t u1 $pkg` | ||
19 | il=`expr 256 \* \( 256 \* \( 256 \* $2 + $3 \) + $4 \) + $5` | ||
20 | dl=`expr 256 \* \( 256 \* \( 256 \* $6 + $7 \) + $8 \) + $9` | ||
21 | # echo "hdr il: $il dl: $dl" | ||
22 | |||
23 | hdrsize=`expr 8 + 16 \* $il + $dl` | ||
24 | o=`expr $o + $hdrsize` | ||
25 | EXTRACTOR="dd if=$pkg ibs=$o skip=1" | ||
26 | |||
27 | COMPRESSION=`($EXTRACTOR |file -) 2>/dev/null` | ||
28 | if echo $COMPRESSION |grep -q gzip; then | ||
29 | DECOMPRESSOR=gunzip | ||
30 | elif echo $COMPRESSION |grep -q bzip2; then | ||
31 | DECOMPRESSOR=bunzip2 | ||
32 | elif echo $COMPRESSION |grep -q xz; then | ||
33 | DECOMPRESSOR=unxz | ||
34 | elif echo $COMPRESSION |grep -q cpio; then | ||
35 | DECOMPRESSOR=cat | ||
36 | else | ||
37 | # Most versions of file don't support LZMA, therefore we assume | ||
38 | # anything not detected is LZMA | ||
39 | DECOMPRESSOR=`which unlzma 2>/dev/null` | ||
40 | case "$DECOMPRESSOR" in | ||
41 | /* ) ;; | ||
42 | * ) DECOMPRESSOR=`which lzmash 2>/dev/null` | ||
43 | case "$DECOMPRESSOR" in | ||
44 | /* ) DECOMPRESSOR="lzmash -d -c" ;; | ||
45 | * ) DECOMPRESSOR=cat ;; | ||
46 | esac | ||
47 | ;; | ||
48 | esac | ||
49 | fi | ||
50 | |||
51 | $EXTRACTOR 2>/dev/null | $DECOMPRESSOR | ||
diff --git a/meta/recipes-devtools/rpm/rpm_5.1.10.bb b/meta/recipes-devtools/rpm/rpm_5.1.10.bb deleted file mode 100644 index b9ba8dbb4c..0000000000 --- a/meta/recipes-devtools/rpm/rpm_5.1.10.bb +++ /dev/null | |||
@@ -1,168 +0,0 @@ | |||
1 | DESCRIPTION = "The RPM Package Manager - relaunched" | ||
2 | DESCRIPTION_rpm-build = "The RPM Package Manager rpmbuild and related commands." | ||
3 | HOMEPAGE = "http://rpm5.org/" | ||
4 | LICENSE = "LGPL 2.1" | ||
5 | LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=2d5025d4aa3495befef8f17206a5b0a1" | ||
6 | |||
7 | DEPENDS = "zlib perl popt beecrypt python libpcre elfutils" | ||
8 | PR = "r8" | ||
9 | |||
10 | SRC_URI = "http://www.rpm5.org/files/rpm/rpm-5.1/POKY/${BPN}-${PV}.tar.gz \ | ||
11 | file://hdraddorappend.patch \ | ||
12 | file://export-rpmbag-h.patch \ | ||
13 | file://rpm-nrescan.patch \ | ||
14 | file://rpm-autoconf.patch \ | ||
15 | file://remove-compiled-tests.patch;apply=no \ | ||
16 | file://perfile_rpmdeps.sh \ | ||
17 | file://rpm-no-loop.patch \ | ||
18 | " | ||
19 | |||
20 | SRC_URI[md5sum] = "a5deb83b451f11c04461c630937b1189" | ||
21 | SRC_URI[sha256sum] = "701726a6ae8283fcabc308dae523ad9599388296a562db1b3d7d7c871641af7e" | ||
22 | inherit autotools gettext | ||
23 | |||
24 | acpaths = "-I ${S}/db/dist/aclocal -I ${S}/db/dist/aclocal_java" | ||
25 | |||
26 | # Specify the default rpm macros in terms of adjustable variables | ||
27 | rpm_macros = "%{_usrlibrpm}/macros:%{_usrlibrpm}/poky/macros:%{_usrlibrpm}/poky/%{_target}/macros:~/.oerpmmacros" | ||
28 | |||
29 | EXTRA_OECONF = "--with-python=${PYTHON_BASEVERSION} \ | ||
30 | --with-python-inc-dir=${STAGING_INCDIR}/python${PYTHON_BASEVERSION} \ | ||
31 | --with-python-lib-dir=${libdir}/python${PYTHON_BASEVERSION} \ | ||
32 | --with-db=internal \ | ||
33 | --with-db-tools-integrated \ | ||
34 | --with-libelf \ | ||
35 | --with-file=internal \ | ||
36 | --without-apidocs \ | ||
37 | --without-selinux \ | ||
38 | --without-lua \ | ||
39 | --without-dmalloc \ | ||
40 | --without-efence \ | ||
41 | --without-neon \ | ||
42 | --with-pcre=internal \ | ||
43 | --with-path-macros=${rpm_macros} \ | ||
44 | --with-bugreport=http://bugzilla.pokylinux.org" | ||
45 | |||
46 | CFLAGS_append = " -DRPM_VENDOR_WINDRIVER" | ||
47 | |||
48 | PACKAGES =+ "rpm-build python-rpm python-rpm-dbg" | ||
49 | |||
50 | SOLIBS = "5.0.so" | ||
51 | |||
52 | FILES_rpm-build = "${bindir}/*-rpmbuild \ | ||
53 | ${bindir}/*-gendiff \ | ||
54 | ${bindir}/*-rpmspecdump \ | ||
55 | ${libdir}/rpm/helpers/* \ | ||
56 | ${libdir}/rpm/*brp* \ | ||
57 | ${libdir}/rpm/*check-files \ | ||
58 | ${libdir}/rpm/*cross-build \ | ||
59 | ${libdir}/rpm/*debugedit \ | ||
60 | ${libdir}/rpm/*dep* \ | ||
61 | ${libdir}/rpm/*prov* \ | ||
62 | ${libdir}/rpm/*req* \ | ||
63 | ${libdir}/rpm/*find* \ | ||
64 | ${libdir}/rpm/qf/* \ | ||
65 | " | ||
66 | |||
67 | FILES_python-rpm = "${libdir}/python*/rpm/_*" | ||
68 | FILES_python-rpm-dbg = "${libdir}/python*/rpm/.debug/_*" | ||
69 | |||
70 | # The mutex needs to be POSIX/pthreads/library or we can't | ||
71 | # share a database between host and target environments | ||
72 | # (there is a minor performance penalty, but not one great enough | ||
73 | # to justify the pain of a more optimized approach!) | ||
74 | EXTRA_OECONF += "--with-mutex=POSIX/pthreads/library" | ||
75 | |||
76 | do_configure() { | ||
77 | # Manually run through the steps of the autogen.sh | ||
78 | ( cd pcre | ||
79 | libtoolize --quiet --copy --force --install | ||
80 | aclocal | ||
81 | autoheader | ||
82 | automake -Wall -Wno-override -a -c | ||
83 | autoconf | ||
84 | ) | ||
85 | |||
86 | ( cd xz | ||
87 | autopoint -f | ||
88 | rm -f \ | ||
89 | codeset.m4 \ | ||
90 | glibc2.m4 \ | ||
91 | glibc21.m4 \ | ||
92 | intdiv0.m4 \ | ||
93 | intl.m4 \ | ||
94 | intldir.m4 \ | ||
95 | intmax.m4 \ | ||
96 | inttypes-pri.m4 \ | ||
97 | inttypes_h.m4 \ | ||
98 | lcmessage.m4 \ | ||
99 | lock.m4 \ | ||
100 | longdouble.m4 \ | ||
101 | longlong.m4 \ | ||
102 | printf-posix.m4 \ | ||
103 | size_max.m4 \ | ||
104 | stdint_h.m4 \ | ||
105 | uintmax_t.m4 \ | ||
106 | ulonglong.m4 \ | ||
107 | visibility.m4 \ | ||
108 | wchar_t.m4 \ | ||
109 | wint_t.m4 \ | ||
110 | xsize.m4 | ||
111 | libtoolize -c -f || glibtoolize -c -f | ||
112 | aclocal -I m4 | ||
113 | autoconf | ||
114 | autoheader | ||
115 | automake -acf --foreign | ||
116 | ) | ||
117 | |||
118 | ( cd file | ||
119 | libtoolize --quiet --copy --force --install | ||
120 | aclocal | ||
121 | autoheader | ||
122 | automake -Wall -Wno-override -a -c | ||
123 | autoconf | ||
124 | ) | ||
125 | |||
126 | (cd syck | ||
127 | libtoolize --quiet --copy --force --install | ||
128 | aclocal | ||
129 | autoheader | ||
130 | automake -Wall -Wno-override -a -c | ||
131 | autoconf | ||
132 | ) | ||
133 | |||
134 | (cd xar | ||
135 | libtoolize --quiet --copy --force --install | ||
136 | aclocal | ||
137 | autoheader | ||
138 | automake -Wall -Wno-override -a -c | ||
139 | autoconf | ||
140 | ) | ||
141 | |||
142 | rm -rf autom4te.cache || true | ||
143 | libtoolize --quiet --copy --force --install | ||
144 | autopoint --force | ||
145 | rm -f aclocal.m4 | ||
146 | aclocal -I m4 | ||
147 | autoheader -I m4 | ||
148 | automake -Wall -Wno-override -a -c | ||
149 | autoconf -I m4 | ||
150 | # end of autogen.sh steps | ||
151 | |||
152 | export ac_cv_va_copy=C99 | ||
153 | oe_runconf | ||
154 | } | ||
155 | |||
156 | do_install_append() { | ||
157 | sed -i -e 's,%__check_files,#%%__check_files,' ${D}/${libdir}/rpm/macros | ||
158 | sed -i -e 's,%__scriptlet_requires,#%%__scriptlet_requires,' ${D}/${libdir}/rpm/macros | ||
159 | sed -i -e 's,%__perl_provides,#%%__perl_provides,' ${D}/${libdir}/rpm/macros | ||
160 | sed -i -e 's,%__perl_requires,#%%__perl_requires,' ${D}/${libdir}/rpm/macros | ||
161 | |||
162 | # Enable Debian style arbitrary tags... | ||
163 | sed -i -e 's,%_arbitrary_tags[^_].*,%_arbitrary_tags %{_arbitrary_tags_debian},' ${D}/${libdir}/rpm/macros | ||
164 | |||
165 | install -m 0755 ${WORKDIR}/perfile_rpmdeps.sh ${D}/${libdir}/rpm/perfile_rpmdeps.sh | ||
166 | } | ||
167 | |||
168 | BBCLASSEXTEND = "native" | ||
diff --git a/meta/recipes-devtools/rpm/rpm_5.4.0.bb b/meta/recipes-devtools/rpm/rpm_5.4.0.bb new file mode 100644 index 0000000000..541fb6078b --- /dev/null +++ b/meta/recipes-devtools/rpm/rpm_5.4.0.bb | |||
@@ -0,0 +1,432 @@ | |||
1 | SUMMARY = "The RPM package management system" | ||
2 | DESCRIPTION = "The RPM Package Manager (RPM) is a powerful command line driven \ | ||
3 | package management system capable of installing, uninstalling, \ | ||
4 | verifying, querying, and updating software packages. Each software \ | ||
5 | package consists of an archive of files along with information about \ | ||
6 | the package like its version, a description, etc." | ||
7 | |||
8 | SUMMARY_${PN}-libs = "Libraries for manipulating RPM packages." | ||
9 | DESCRIPTION_${PN}-libs = "This package contains the RPM shared libraries." | ||
10 | |||
11 | SUMMARY_${PN}-dev = "Development files for manipulating RPM packages." | ||
12 | DESCRIPTION_${PN}-dev = "This package contains the RPM C library and header files. These \ | ||
13 | development files will simplify the process of writing programs that \ | ||
14 | manipulate RPM packages and databases. These files are intended to \ | ||
15 | simplify the process of creating graphical package managers or any \ | ||
16 | other tools that need an intimate knowledge of RPM packages in order \ | ||
17 | to function." | ||
18 | |||
19 | SUMMARY_${PN}-common = "Common RPM paths, scripts, documentation and configuration." | ||
20 | DESCRIPTION_${PN}-common = "The rpm-common package contains paths, scripts, documentation \ | ||
21 | and configuration common between RPM Package Manager." | ||
22 | |||
23 | SUMMARY_${PN}-build = "Scripts and executable programs used to build packages." | ||
24 | DESCRIPTION_${PN}-build = "The rpm-build packagec ontains the scripts and executable programs \ | ||
25 | that are used to build packages using the RPM Package Manager." | ||
26 | |||
27 | SUMMARY_python-rpm = "Python bindings for apps which will manupulate RPM packages." | ||
28 | DESCRIPTION_python-rpm = "The rpm-python package contains a module that permits applications \ | ||
29 | written in the Python programming language to use the interface \ | ||
30 | supplied by the RPM Package Manager libraries." | ||
31 | |||
32 | SUMMARY_perl-module-rpm = "Perl bindings for apps which will manipulate RPM packages." | ||
33 | DESCRIPTION_perl-modules-rpm = "The perl-modules-rpm package contains a module that permits applications \ | ||
34 | written in the Perl programming language to use the interface \ | ||
35 | supplied by the RPM Package Manager libraries." | ||
36 | |||
37 | SUMMARY_perl-module-rpm-dev = "Development components for perl bindings" | ||
38 | DESCRIPTION_perl-modules-rpm-dev = "Development items such as man pages for use with the Perl \ | ||
39 | language bindings." | ||
40 | |||
41 | HOMEPAGE = "http://rpm5.org/" | ||
42 | LICENSE = "LGPL 2.1" | ||
43 | LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=2d5025d4aa3495befef8f17206a5b0a1" | ||
44 | |||
45 | DEPENDS = "bzip2 zlib python perl db openssl elfutils expat libpcre attr acl popt" | ||
46 | PR = "r9" | ||
47 | |||
48 | # rpm2cpio is a shell script, which is part of the rpm src.rpm. It is needed | ||
49 | # in order to extract the distribution SRPM into a format we can extract... | ||
50 | SRC_URI = "http://www.rpm5.org/files/rpm/rpm-5.4/rpm-5.4.0-0.20101229.src.rpm \ | ||
51 | file://rpm2cpio;md5=1850f9872a4803f5165bfd5816274275 \ | ||
52 | file://perfile_rpmdeps.sh \ | ||
53 | file://rpm-autogen.patch \ | ||
54 | file://rpm-libsql-fix.patch \ | ||
55 | " | ||
56 | |||
57 | # file://hdraddorappend.patch \ | ||
58 | # file://export-rpmbag-h.patch \ | ||
59 | # file://rpm-nrescan.patch \ | ||
60 | # file://rpm-autoconf.patch \ | ||
61 | # file://remove-compiled-tests.patch;apply=no \ | ||
62 | # file://rpm-no-loop.patch \ | ||
63 | # " | ||
64 | |||
65 | SRC_URI[md5sum] = "19c1a7f68d7765eeb7615c9c4e54e380" | ||
66 | SRC_URI[sha256sum] = "887e76218308b570c33c8c2fb10b5298b3afd5d602860d281befc85357b3b923" | ||
67 | |||
68 | SRPM_UNPACK = "rpm-5.4.0.tar.gz" | ||
69 | |||
70 | inherit autotools gettext | ||
71 | |||
72 | acpaths = "-I ${S}/db/dist/aclocal -I ${S}/db/dist/aclocal_java" | ||
73 | |||
74 | # Specify the default rpm macros in terms of adjustable variables | ||
75 | rpm_macros = "%{_usrlibrpm}/macros:%{_usrlibrpm}/poky/macros:%{_usrlibrpm}/poky/%{_target}/macros:~/.oerpmmacros" | ||
76 | |||
77 | # Configure values taken from rpm.spec | ||
78 | WITH_BZIP2 = "--with-bzip2" | ||
79 | |||
80 | WITH_XZ = "--without-xz" | ||
81 | |||
82 | WITH_Z = "--with-zlib $WITH_BZIP2 $WITH_XZ" | ||
83 | |||
84 | WITH_PYTHON = " --with-python=${PYTHON_BASEVERSION} \ | ||
85 | --with-python-inc-dir=${STAGING_INCDIR}/python${PYTHON_BASEVERSION} \ | ||
86 | --with-python-lib-dir=${libdir}/python${PYTHON_BASEVERSION} \ | ||
87 | --without-pythonembed \ | ||
88 | " | ||
89 | |||
90 | WITH_PYTHON_native = " --without-python" | ||
91 | |||
92 | # Perl modules are not built, but they could be enabled fairly easily | ||
93 | # the perl module creation and installation would need to be patched. | ||
94 | # (currently has host perl contamination issues) | ||
95 | #WITH_PERL = " --with-perl --without-perlembed" | ||
96 | WITH_PERL = " --without-perl" | ||
97 | |||
98 | WITH_PERL_native = " --without-perl" | ||
99 | |||
100 | WITH_DB = "--with-db --with-dbsql --without-db-tools-integrated --without-sqlite" | ||
101 | |||
102 | WITH_CRYPTO = "--with-beecrypt=internal --with-openssl --without-nss --without-gcrypt" | ||
103 | |||
104 | WITH_KEYUTILS = "--without-keyutils" | ||
105 | WITH_LIBELF = "--with-libelf" | ||
106 | WITH_SELINUX = "--without-selinux --without-sepol --without-semanage" | ||
107 | #WITH_NEON = "--with-neon=internal --without-libproxy --with-expat --without-gssapi" | ||
108 | WITH_NEON = "--without-neon --without-libproxy --without-expat --without-gssapi" | ||
109 | |||
110 | EXTRA_OECONF = "--verbose \ | ||
111 | --sysconfdir=/etc \ | ||
112 | ${WITH_DB} \ | ||
113 | ${WITH_Z} \ | ||
114 | --with-file \ | ||
115 | --with-path-magic=/usr/share/misc/magic \ | ||
116 | --without-lua \ | ||
117 | --without-tcl \ | ||
118 | --with-syck=internal \ | ||
119 | --without-readline \ | ||
120 | --without-augeas \ | ||
121 | ${WITH_CRYPTO} \ | ||
122 | --without-libtasn1 \ | ||
123 | --without-pakchois \ | ||
124 | --without-gnutls \ | ||
125 | ${WITH_NEON} \ | ||
126 | --with-pcre \ | ||
127 | --enable-utf8 \ | ||
128 | --without-uuid \ | ||
129 | --with-attr \ | ||
130 | --with-acl \ | ||
131 | --without-xar \ | ||
132 | --with-popt=external \ | ||
133 | ${WITH_KEYUTILS} \ | ||
134 | --with-pthreads \ | ||
135 | ${WITH_LIBELF} \ | ||
136 | --without-cudf \ | ||
137 | --without-ficl \ | ||
138 | --without-aterm \ | ||
139 | --without-nix \ | ||
140 | --without-bash \ | ||
141 | --without-rc \ | ||
142 | --without-js \ | ||
143 | --without-gpsee \ | ||
144 | ${WITH_PYTHON} \ | ||
145 | ${WITH_PERL} \ | ||
146 | --without-ruby \ | ||
147 | --without-squirrel \ | ||
148 | --with-build-extlibdep \ | ||
149 | --with-build-maxextlibdep \ | ||
150 | --without-valgrind \ | ||
151 | --disable-openmp \ | ||
152 | --enable-build-pic \ | ||
153 | --enable-build-versionscript \ | ||
154 | --enable-build-warnings \ | ||
155 | --enable-build-debug \ | ||
156 | --enable-maintainer-mode \ | ||
157 | --with-path-macros=${rpm_macros} \ | ||
158 | --with-bugreport=http://bugzilla.pokylinux.org" | ||
159 | |||
160 | CFLAGS_append = " -DRPM_VENDOR_WINDRIVER" | ||
161 | |||
162 | PACKAGES = "${PN}-dbg ${PN} ${PN}-doc ${PN}-libs ${PN}-dev ${PN}-common ${PN}-build python-rpm-dbg python-rpm perl-module-rpm perl-module-rpm-dev ${PN}-locale" | ||
163 | |||
164 | SOLIBS = "5.4.so" | ||
165 | |||
166 | # Based on %files section in the rpm.spec | ||
167 | |||
168 | FILES_${PN} = "${bindir}/rpm \ | ||
169 | ${bindir}/rpmconstant \ | ||
170 | ${libdir}/rpm/rpm.* \ | ||
171 | ${libdir}/rpm/tgpg \ | ||
172 | ${libdir}/rpm/macros \ | ||
173 | ${libdir}/rpm/rpmpopt \ | ||
174 | ${libdir}/rpm/rpmdb_loadcvt \ | ||
175 | ${libdir}/rpm/rpm2cpio \ | ||
176 | ${libdir}/rpm/vcheck \ | ||
177 | ${libdir}/rpm/helpers \ | ||
178 | ${libdir}/rpm/qf \ | ||
179 | ${libdir}/rpm/cpuinfo.yaml \ | ||
180 | ${libdir}/rpm/bin/mtree \ | ||
181 | ${libdir}/rpm/bin/rpmkey \ | ||
182 | ${libdir}/rpm/bin/rpmrepo \ | ||
183 | ${libdir}/rpm/bin/rpmspecdump \ | ||
184 | ${libdir}/rpm/bin/wget \ | ||
185 | " | ||
186 | |||
187 | # ${libdir}/rpm/magic \ | ||
188 | # ${libdir}/rpm/magic.mgc \ | ||
189 | # ${libdir}/rpm/magic.mime \ | ||
190 | # ${libdir}/rpm/magic.mime.mgc \ | ||
191 | # ${libdir}/rpm/bin/db_* \ | ||
192 | # ${libdir}/rpm/bin/grep \ | ||
193 | |||
194 | FILES_${PN}-dbg = "${bindir}/.debug \ | ||
195 | ${libdir}/.debug \ | ||
196 | ${libdir}/rpm/.debug \ | ||
197 | ${libdir}/rpm/bin/.debug \ | ||
198 | " | ||
199 | |||
200 | FILES_${PN}-common = "${bindir}/rpm2cpio \ | ||
201 | ${bindir}/gendiff \ | ||
202 | /etc/rpm \ | ||
203 | /var/lib/rpm \ | ||
204 | /var/spool/repackage \ | ||
205 | " | ||
206 | |||
207 | FILES_${PN}-libs = "${libdir}/librpm-*.so \ | ||
208 | ${libdir}/librpmconstant-*.so \ | ||
209 | ${libdir}/librpmdb-*.so \ | ||
210 | ${libdir}/librpmio-*.so \ | ||
211 | ${libdir}/librpmmisc-*.so \ | ||
212 | ${libdir}/librpmbuild-*.so \ | ||
213 | " | ||
214 | |||
215 | ###%{_rpmhome}/lib/libxar.so.* | ||
216 | ###%{_rpmhome}/lib/libjs.so.* | ||
217 | ###%{_rpmhome}/lib/librpmjsm.so.* | ||
218 | ###%{_rpmhome}/lib/rpmjsm.so | ||
219 | |||
220 | |||
221 | FILES_${PN}-build = "${prefix}/src/rpm \ | ||
222 | ${bindir}/rpmbuild \ | ||
223 | ${libdir}/rpm/brp-* \ | ||
224 | ${libdir}/rpm/check-files \ | ||
225 | ${libdir}/rpm/cross-build \ | ||
226 | ${libdir}/rpm/find-debuginfo.sh \ | ||
227 | ${libdir}/rpm/find-lang.sh \ | ||
228 | ${libdir}/rpm/find-prov.pl \ | ||
229 | ${libdir}/rpm/find-provides.perl \ | ||
230 | ${libdir}/rpm/find-req.pl \ | ||
231 | ${libdir}/rpm/find-requires.perl \ | ||
232 | ${libdir}/rpm/getpo.sh \ | ||
233 | ${libdir}/rpm/http.req \ | ||
234 | ${libdir}/rpm/javadeps.sh \ | ||
235 | ${libdir}/rpm/mono-find-provides \ | ||
236 | ${libdir}/rpm/mono-find-requires \ | ||
237 | ${libdir}/rpm/executabledeps.sh \ | ||
238 | ${libdir}/rpm/libtooldeps.sh \ | ||
239 | ${libdir}/rpm/osgideps.pl \ | ||
240 | ${libdir}/rpm/perldeps.pl \ | ||
241 | ${libdir}/rpm/perl.prov \ | ||
242 | ${libdir}/rpm/perl.req \ | ||
243 | ${libdir}/rpm/php.prov \ | ||
244 | ${libdir}/rpm/php.req \ | ||
245 | ${libdir}/rpm/pkgconfigdeps.sh \ | ||
246 | ${libdir}/rpm/pythondeps.sh \ | ||
247 | ${libdir}/rpm/bin/debugedit \ | ||
248 | ${libdir}/rpm/bin/rpmcache \ | ||
249 | ${libdir}/rpm/bin/rpmcmp \ | ||
250 | ${libdir}/rpm/bin/rpmdeps \ | ||
251 | ${libdir}/rpm/bin/rpmdigest \ | ||
252 | ${libdir}/rpm/bin/abi-compliance-checker.pl \ | ||
253 | ${libdir}/rpm/bin/api-sanity-autotest.pl \ | ||
254 | ${libdir}/rpm/bin/chroot \ | ||
255 | ${libdir}/rpm/bin/cp \ | ||
256 | ${libdir}/rpm/bin/dbsql \ | ||
257 | ${libdir}/rpm/bin/find \ | ||
258 | ${libdir}/rpm/bin/install-sh \ | ||
259 | ${libdir}/rpm/bin/lua \ | ||
260 | ${libdir}/rpm/bin/luac \ | ||
261 | ${libdir}/rpm/bin/mkinstalldirs \ | ||
262 | ${libdir}/rpm/bin/rpmlua \ | ||
263 | ${libdir}/rpm/bin/rpmluac \ | ||
264 | ${libdir}/rpm/bin/sqlite3 \ | ||
265 | ${libdir}/rpm/lib/liblua.a \ | ||
266 | ${libdir}/rpm/lib/liblua.la \ | ||
267 | ${libdir}/rpm/macros.d/cmake \ | ||
268 | ${libdir}/rpm/macros.d/java \ | ||
269 | ${libdir}/rpm/macros.d/libtool \ | ||
270 | ${libdir}/rpm/macros.d/mandriva \ | ||
271 | ${libdir}/rpm/macros.d/mono \ | ||
272 | ${libdir}/rpm/macros.d/perl \ | ||
273 | ${libdir}/rpm/macros.d/php \ | ||
274 | ${libdir}/rpm/macros.d/pkgconfig \ | ||
275 | ${libdir}/rpm/macros.d/python \ | ||
276 | ${libdir}/rpm/macros.d/ruby \ | ||
277 | ${libdir}/rpm/macros.d/selinux \ | ||
278 | ${libdir}/rpm/macros.d/tcl \ | ||
279 | ${libdir}/rpm/macros.rpmbuild \ | ||
280 | ${libdir}/rpm/u_pkg.sh \ | ||
281 | ${libdir}/rpm/vpkg-provides.sh \ | ||
282 | ${libdir}/rpm/vpkg-provides2.sh \ | ||
283 | ${libdir}/rpm/perfile_rpmdeps.sh \ | ||
284 | " | ||
285 | |||
286 | #%rpmattr %{_rpmhome}/gem_helper.rb | ||
287 | #%rpmattr %{_rpmhome}/symclash.* | ||
288 | |||
289 | FILES_python-rpm-dbg = "${libdir}/python*/rpm/.debug/_*" | ||
290 | FILES_python-rpm = "${libdir}/python*/rpm" | ||
291 | |||
292 | FILES_perl-module-rpm = "${libdir}/perl/*/* \ | ||
293 | " | ||
294 | |||
295 | FILES_perl-module-rpm-dev = "${prefix}/share/man/man3/RPM* \ | ||
296 | " | ||
297 | |||
298 | FILE_${PN}-dev = "${includedir}/rpm \ | ||
299 | ${libdir}/librpm.a \ | ||
300 | ${libdir}/librpm.la \ | ||
301 | ${libdir}/librpm.so \ | ||
302 | ${libdir}/librpmconstant.a \ | ||
303 | ${libdir}/librpmconstant.la \ | ||
304 | ${libdir}/librpmconstant.so \ | ||
305 | ${libdir}/librpmdb.a \ | ||
306 | ${libdir}/librpmdb.la \ | ||
307 | ${libdir}/librpmdb.so \ | ||
308 | ${libdir}/librpmio.a \ | ||
309 | ${libdir}/librpmio.la \ | ||
310 | ${libdir}/librpmio.so \ | ||
311 | ${libdir}/librpmmisc.a \ | ||
312 | ${libdir}/librpmmisc.la \ | ||
313 | ${libdir}/librpmmisc.so \ | ||
314 | ${libdir}/librpmbuild.a \ | ||
315 | ${libdir}/librpmbuild.la \ | ||
316 | ${libdir}/librpmbuild.so \ | ||
317 | ${libdir}/pkgconfig/rpm.pc \ | ||
318 | " | ||
319 | |||
320 | ###%{_rpmhome}/lib/libxar.a | ||
321 | ###%{_rpmhome}/lib/libxar.la | ||
322 | ###%{_rpmhome}/lib/libxar.so | ||
323 | ###%{_rpmhome}/lib/libjs.a | ||
324 | ###%{_rpmhome}/lib/libjs.la | ||
325 | ###%{_rpmhome}/lib/libjs.so | ||
326 | ###%{_rpmhome}/lib/librpmjsm.a | ||
327 | ###%{_rpmhome}/lib/librpmjsm.la | ||
328 | ###%{_rpmhome}/lib/librpmjsm.so | ||
329 | |||
330 | # If base_do_unpack is refactored this may have to be adjusted | ||
331 | python base_do_unpack_append() { | ||
332 | import subprocess | ||
333 | |||
334 | for url in src_uri.split(): | ||
335 | try: | ||
336 | local = bb.data.expand(bb.fetch.localpath(url, localdata), localdata) | ||
337 | except bb.MalformedUrl, e: | ||
338 | raise FuncFailed('Unable to generate local path for malformed uri: %s' % e) | ||
339 | if local is None: | ||
340 | continue | ||
341 | local = os.path.realpath(local) | ||
342 | |||
343 | if local.endswith('.src.rpm') or local.endswith('.srpm'): | ||
344 | cmdname = os.path.join(bb.data.getVar('WORKDIR', localdata, 1),'rpm2cpio') | ||
345 | efile = os.path.join(bb.data.getVar('WORKDIR', localdata, 1),os.path.basename(local)) | ||
346 | cmd = "%s %s | cpio -i" % (cmdname, efile) | ||
347 | cmd = "PATH=\"%s\" %s" % (bb.data.getVar('PATH', localdata, 1), cmd) | ||
348 | old_cwd = os.getcwd() | ||
349 | newdir = ("%s/%s" % (old_cwd, 'srpm-unpack')) | ||
350 | bb.mkdirhier(newdir) | ||
351 | os.chdir(newdir) | ||
352 | ret = subprocess.call(cmd, preexec_fn=subprocess_setup, shell=True) | ||
353 | os.chdir(old_cwd) | ||
354 | if ret != 0: | ||
355 | raise bb.build.FuncFailed('Unpack command failed: %s (%s)' % (cmd, ret)) | ||
356 | |||
357 | srpm_uri = bb.data.getVar('SRPM_UNPACK', localdata, True) | ||
358 | if not srpm_uri: | ||
359 | return | ||
360 | |||
361 | # Note, not really URI's! Just a list of files | ||
362 | for url in srpm_uri.split(): | ||
363 | local = os.path.join(bb.data.getVar('WORKDIR', localdata, 1), "srpm-unpack/" + url) | ||
364 | ret = oe_unpack_file(local, localdata, 'file://' + url) | ||
365 | if not ret: | ||
366 | raise bb.build.FuncFailed("oe_unpack_file failed with return value %s" % ret) | ||
367 | } | ||
368 | |||
369 | do_configure() { | ||
370 | # Disable tests! | ||
371 | echo "all:" > tests/Makefile.am | ||
372 | |||
373 | ./autogen.sh | ||
374 | |||
375 | oe_runconf | ||
376 | } | ||
377 | |||
378 | do_install_append() { | ||
379 | sed -i -e 's,%__check_files,#%%__check_files,' ${D}/${libdir}/rpm/macros | ||
380 | sed -i -e 's,%__scriptlet_requires,#%%__scriptlet_requires,' ${D}/${libdir}/rpm/macros | ||
381 | sed -i -e 's,%__perl_provides,#%%__perl_provides,' ${D}/${libdir}/rpm/macros | ||
382 | sed -i -e 's,%__perl_requires,#%%__perl_requires,' ${D}/${libdir}/rpm/macros | ||
383 | |||
384 | # Enable Debian style arbitrary tags... | ||
385 | sed -i -e 's,%_arbitrary_tags[^_].*,%_arbitrary_tags %{_arbitrary_tags_debian},' ${D}/${libdir}/rpm/macros | ||
386 | |||
387 | install -m 0755 ${WORKDIR}/perfile_rpmdeps.sh ${D}/${libdir}/rpm/perfile_rpmdeps.sh | ||
388 | |||
389 | # Remove unpackaged files (based on list in rpm.spec) | ||
390 | rm -f ${D}/${libdir}/rpm/{Specfile.pm,cpanflute,cpanflute2,rpmdiff,rpmdiff.cgi,sql.prov,sql.req,tcl.req,trpm} | ||
391 | |||
392 | rm -f ${D}/${mandir}/man8/rpmcache.8* | ||
393 | rm -f ${D}/${mandir}/man8/rpmgraph.8* | ||
394 | rm -f ${D}/${mandir}/*/man8/rpmcache.8* | ||
395 | rm -f ${D}/${mandir}/*/man8/rpmgraph.8* | ||
396 | rm -rf ${D}/${mandir}/{fr,ko} | ||
397 | |||
398 | rm -f ${D}/${includedir}/popt.h | ||
399 | rm -f ${D}/${libdir}/libpopt.* | ||
400 | rm -f ${D}/${libdir}/pkgconfig/popt.pc | ||
401 | rm -f ${D}/${datadir}/locale/*/LC_MESSAGES/popt.mo | ||
402 | rm -f ${D}/${mandir}/man3/popt.3 | ||
403 | |||
404 | rm -f ${D}/${mandir}/man1/xar.1* | ||
405 | rm -f ${D}/${bindir}/xar | ||
406 | rm -rf ${D}/${includedir}/xar | ||
407 | rm -f ${D}/${libdir}/libxar* | ||
408 | |||
409 | rm -f ${D}/${bindir}/lz* | ||
410 | rm -f ${D}/${bindir}/unlzma | ||
411 | rm -f ${D}/${bindir}/unxz | ||
412 | rm -f ${D}/${bindir}/xz* | ||
413 | rm -rf ${D}/${includedir}/lzma* | ||
414 | rm -f ${D}/${mandir}/man1/lz*.1 | ||
415 | rm -f ${D}/${libdir}/pkgconfig/liblzma* | ||
416 | |||
417 | rm -f ${D}/${libdir}/python%{with_python_version}/site-packages/*.{a,la} | ||
418 | rm -f ${D}/${libdir}/python%{with_python_version}/site-packages/rpm/*.{a,la} | ||
419 | |||
420 | #find ${D}/${libdir}/perl5 -type f -a \( -name perllocal.pod -o -name .packlist \ | ||
421 | # -o \( -name '*.bs' -a -empty \) \) -exec rm -f {} ';' | ||
422 | #find ${D}/${libdir}/perl5 -type d -depth -exec rmdir {} 2>/dev/null ';' | ||
423 | |||
424 | # We don't want the default macro set | ||
425 | rm -rf ${D}/${libdir}/rpm/{i[3456]86*,athlon*,pentium*,x86_64*,alpha*,sparc*,ia64*,ppc*,s390*,armv[34][lb]*,armv[345]*,mips*,noarch*} | ||
426 | |||
427 | rm -f ${D}/${libdir}/rpm/dbconvert.sh | ||
428 | |||
429 | rm -f ${D}/${libdir}/rpm/libsqldb.* | ||
430 | } | ||
431 | |||
432 | BBCLASSEXTEND = "native" | ||