diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2012-09-10 07:22:18 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2012-08-16 12:50:06 +0000 |
commit | 04a7dda6a6e34b48dcd5fc98e68dd4751b7ac1b7 (patch) | |
tree | b06a2339c45cecf61670ba1ff8c18db530a254cc /main/abuild/0001-abuild-add-support-for-uncompressed-tar-archives.patch | |
parent | 210db07a31ce1ef69640bd2c0f69aae398762ca2 (diff) | |
download | aports-04a7dda6a6e34b48dcd5fc98e68dd4751b7ac1b7.tar.bz2 aports-04a7dda6a6e34b48dcd5fc98e68dd4751b7ac1b7.tar.xz |
main/abuild: more provides fixes
need special handling when file name is .so (no version number suffix)
and soname has a version number suffix. This is so we dont set provides
version to 0 when it should have been something else.
This fixes issue with libgcj/gcc-java who ships a file libgcj_bc.so with
soname libgcj_bc.so.1 in addition to the libgcj_bc.so.1.0.0 file.
We cannot have 2 provides with same name but with different version.
Diffstat (limited to 'main/abuild/0001-abuild-add-support-for-uncompressed-tar-archives.patch')
-rw-r--r-- | main/abuild/0001-abuild-add-support-for-uncompressed-tar-archives.patch | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/main/abuild/0001-abuild-add-support-for-uncompressed-tar-archives.patch b/main/abuild/0001-abuild-add-support-for-uncompressed-tar-archives.patch deleted file mode 100644 index 6ae675218a..0000000000 --- a/main/abuild/0001-abuild-add-support-for-uncompressed-tar-archives.patch +++ /dev/null @@ -1,26 +0,0 @@ -From a5f67dcf25fae7c0200298623cccb61d9275fd28 Mon Sep 17 00:00:00 2001 -From: Natanael Copa <ncopa@alpinelinux.org> -Date: Wed, 23 May 2012 09:42:27 +0000 -Subject: [PATCH] abuild: add support for uncompressed tar archives - ---- - abuild.in | 3 +++ - 1 file changed, 3 insertions(+) - -diff --git a/abuild.in b/abuild.in -index 2780d2e..32dd153 100755 ---- a/abuild.in -+++ b/abuild.in -@@ -404,6 +404,9 @@ default_unpack() { - for u in $source; do - local s="$SRCDEST/${u##*/}" # $(basename $s) - case "$s" in -+ *.tar) -+ msg "Unpacking $s..." -+ tar -C "$srcdir" -xf "$s" || return 1;; - *.tar.gz|*.tgz) - msg "Unpacking $s..." - tar -C "$srcdir" -zxf "$s" || return 1;; --- -1.7.10.2 - |