~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
2 2

[alpine-aports] [PATCH] testing/patchelf: new aport

Michael Koloberdin <koloberdin@gmail.com>
Details
Message ID
<20160709063959.32289-1-koloberdin@gmail.com>
Sender timestamp
1468046399
DKIM signature
missing
Download raw message
Patch: +39 -0
---
 testing/patchelf/APKBUILD | 39 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)
 create mode 100644 testing/patchelf/APKBUILD

diff --git a/testing/patchelf/APKBUILD b/testing/patchelf/APKBUILD
new file mode 100644
index 0000000..735fff3
--- /dev/null
+++ b/testing/patchelf/APKBUILD
@@ -0,0 +1,39 @@
# Contributor:
# Maintainer: Michael Koloberdin <koloberdin@gmail.com>
pkgname=patchelf
pkgver=0.9
pkgrel=0
pkgdesc="Small utility to modify the dynamic linker and RPATH of ELF executables"
url="https://nixos.org/patchelf.html"
arch="all"
license="GPL3"
depends=""
makedepends="autoconf automake"
install=""
subpackages="$pkgname-doc"
source="${pkgname}-${pkgver}.tar.gz::https://github.com/NixOS/patchelf/archive/${pkgver}.tar.gz"
builddir="$srcdir/$pkgname-$pkgver"

prepare() {
	cd "$builddir"
	autoreconf -fiv || return 1
}

build() {
	cd "$builddir"
	./configure --prefix=/usr || return 1
	make || return 1
}

check() {
	make -C tests -j1 check || return 1
}

package() {
	cd "$builddir"
	make DESTDIR="${pkgdir}" install || return 1
}

md5sums="69c94a4400e930f938b754d543705eb9  patchelf-0.9.tar.gz"
sha256sums="cf0693e794229e19edcf2299427b5a352e0f4d4f06f9d3856e30ddb0344d5ce8  patchelf-0.9.tar.gz"
sha512sums="70e615f2f705f413aab5e3eebe20ffe79743bb92381b10a8faa49f16ca24b0f9bd4095c5644f682ec94d75012ffb1b39837933faa9f3c1f1c41bdc5b9d010a30  patchelf-0.9.tar.gz"
-- 
2.9.0



---
Unsubscribe:  alpine-aports+unsubscribe@lists.alpinelinux.org
Help:         alpine-aports+help@lists.alpinelinux.org
---
Bartłomiej Piotrowski <b@bpiotrowski.pl>
Details
Message ID
<9e8170b6-0ac4-9708-b25d-e5ab9119fcb9@bpiotrowski.pl>
In-Reply-To
<20160709063959.32289-1-koloberdin@gmail.com> (view parent)
Sender timestamp
1468053148
DKIM signature
missing
Download raw message
On 2016-07-09 08:39, Michael Koloberdin wrote:
> +check() {
> +	make -C tests -j1 check || return 1
> +}

There is no standalone check function in abuild. I moved it to build(),
where it failed on this test: set-rpath-library.sh

Could you check what's going on?

Bartłomiej
Michael Koloberdin <koloberdin@gmail.com>
Details
Message ID
<CANWB0xuB189YzJu_hrgfaRFxCtLvjwpLhfTgcTr-qSbQrCPxKw@mail.gmail.com>
In-Reply-To
<9e8170b6-0ac4-9708-b25d-e5ab9119fcb9@bpiotrowski.pl> (view parent)
Sender timestamp
1468110845
DKIM signature
missing
Download raw message
That test should not fail. (it should not exit on an expected failure code
but should go on to further checks)
This patch fixes it: http://patchwork.alpinelinux.org/patch/2216/

On Sat, Jul 9, 2016 at 11:32 AM, Bartłomiej Piotrowski <b@bpiotrowski.pl>
wrote:

> On 2016-07-09 08:39, Michael Koloberdin wrote:
> > +check() {
> > +     make -C tests -j1 check || return 1
> > +}
>
> There is no standalone check function in abuild. I moved it to build(),
> where it failed on this test: set-rpath-library.sh
>
> Could you check what's going on?
>
> Bartłomiej
>
>


-- 
Best regards,
Michael
Reply to thread Export thread (mbox)