Accepting request 125671 from openSUSE:Factory:ARM

required for cross build, please make me maintainer and/or forward it to factory. thanks

OBS-URL: https://build.opensuse.org/request/show/125671
OBS-URL: https://build.opensuse.org/package/show/devel:tools:building/patchelf?expand=0&rev=1
This commit is contained in:
Ismail Dönmez 2012-06-21 15:55:08 +00:00 committed by Git OBS Bridge
commit 228782a159
5 changed files with 90 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

3
patchelf-0.6.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fc7e7fa95f282fc37a591a802629e0e1ed07bc2a8bf162228d9a69dd76127c01
size 113860

6
patchelf.changes Normal file
View File

@ -0,0 +1,6 @@
-------------------------------------------------------------------
Thu Jun 21 15:05:20 UTC 2012 - adrian@suse.de
- initial packaging of patchelf version 0.6
required for accelerated cross build package

57
patchelf.spec Normal file
View File

@ -0,0 +1,57 @@
#
# spec file for package patchelf
#
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: patchelf
Summary: A utility for patching ELF binaries
License: GPL-3.0
Group: Development/Libraries/C and C++
Version: 0.6
Release: 0
Url: http://nixos.org/patchelf.html
Source: %{name}-%{version}.tar.bz2
BuildRequires: gcc-c++
%description
PatchELF is a simple utility for modifing existing ELF executables and
libraries. It can change the dynamic loader ("ELF interpreter") of
executables and change the RPATH of executables and libraries.
%prep
%setup -q
%build
%configure
make
%check
make check
%install
make DESTDIR=$RPM_BUILD_ROOT install
rm $RPM_BUILD_ROOT/usr/share/doc/patchelf/README
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root)
%doc README
/usr/bin/*
%_mandir/man*/patchelf.*
%changelog