~alpine/aports

This thread contains a patchset. You're looking at the original emails, but you may wish to use the patch review UI. Review patch
1

[alpine-aports] [PATCH] testing/innoextract: xz-lib rather than xz is enough as a runtime dep

Michael Koloberdin <koloberdin@gmail.com>
Details
Message ID
<1447322846-1520-1-git-send-email-koloberdin@gmail.com>
Sender timestamp
1447322846
DKIM signature
missing
Download raw message
Patch: +1 -1
---
 testing/innoextract/APKBUILD | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/testing/innoextract/APKBUILD b/testing/innoextract/APKBUILD
index 0857eba..7e12fa8 100644
--- a/testing/innoextract/APKBUILD
+++ b/testing/innoextract/APKBUILD
@@ -7,7 +7,7 @@ pkgdesc="A tool to extract installers created by Inno Setup"
url="http://constexpr.org/innoextract/"
arch="all"
license="ZLIB"
depends="boost xz"
depends="boost xz-libs"
depends_dev="cmake boost-dev xz-dev"
makedepends="$depends_dev"
install=""
-- 
2.4.1



---
Unsubscribe:  alpine-aports+unsubscribe@lists.alpinelinux.org
Help:         alpine-aports+help@lists.alpinelinux.org
---
Natanael Copa <ncopa@alpinelinux.org>
Details
Message ID
<20151112132750.55e832dd@ncopa-desktop.alpinelinux.org>
In-Reply-To
<1447322846-1520-1-git-send-email-koloberdin@gmail.com> (view parent)
Sender timestamp
1447331270
DKIM signature
missing
Download raw message
On Thu, 12 Nov 2015 10:07:26 +0000
Michael Koloberdin <koloberdin@gmail.com> wrote:

> ---
>  testing/innoextract/APKBUILD | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/testing/innoextract/APKBUILD b/testing/innoextract/APKBUILD
> index 0857eba..7e12fa8 100644
> --- a/testing/innoextract/APKBUILD
> +++ b/testing/innoextract/APKBUILD
> @@ -7,7 +7,7 @@ pkgdesc="A tool to extract installers created by Inno Setup"
>  url="http://constexpr.org/innoextract/"
>  arch="all"
>  license="ZLIB"
> -depends="boost xz"
> +depends="boost xz-libs"
>  depends_dev="cmake boost-dev xz-dev"
>  makedepends="$depends_dev"
>  install=""

I don't think you need anything in depends:

$ apk info -R innoextract
innoextract-1.5-r0 depends on:
boost
xz-libs
so:libboost_filesystem-mt.so.1.59.0
so:libboost_iostreams-mt.so.1.59.0
so:libboost_program_options-mt.so.1.59.0
so:libboost_system-mt.so.1.59.0
so:libc.musl-x86.so.1
so:libgcc_s.so.1
so:liblzma.so.5
so:libstdc++.so.6

as you see, abuild will pull in so:liblzma.so.5 as dependency and
xz-libs has a provides=so:liblzma.so.5. The extra depends="boost
xz-libs" are redundant.

I'll clean that up.

Thanks!




---
Unsubscribe:  alpine-aports+unsubscribe@lists.alpinelinux.org
Help:         alpine-aports+help@lists.alpinelinux.org
---
Reply to thread Export thread (mbox)