commit a62ec2368abf4c2848574055081a2f229a136fb4066acde5bed814493f54d502 Author: Adrian Schröter Date: Fri May 3 11:35:51 2024 +0200 Sync from SUSE:SLFO:Main chrpath revision 0f34c1f94f0517a5f1422fae0fa38b1f diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -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 diff --git a/chrpath-0.16.tar.gz b/chrpath-0.16.tar.gz new file mode 100644 index 0000000..8d6fa19 --- /dev/null +++ b/chrpath-0.16.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb0d4c54bac2990e1bdf8132f2c9477ae752859d523e141e72b3b11a12c26e7b +size 134506 diff --git a/chrpath.changes b/chrpath.changes new file mode 100644 index 0000000..86f0e6d --- /dev/null +++ b/chrpath.changes @@ -0,0 +1,43 @@ +------------------------------------------------------------------- +Tue Mar 17 12:20:29 UTC 2020 - Martin Pluskal + +- Modernise spec file + +------------------------------------------------------------------- +Sat Feb 6 10:02:15 UTC 2016 - mpluskal@suse.com + +- Shorten summary a bit +- Do not build tests + * they are not executed during build + * they fail anyway +- Small spec file cleanup with spec-cleaner + +------------------------------------------------------------------- +Sun May 4 09:51:18 UTC 2014 - i@marguerite.su + +- update version 0.16 + * Fixed all minor bugs discovered by Coverity. + * Updated config.sub and config.guess from the GNU project. + * Mention new project mailing list in the documentation. + +------------------------------------------------------------------- +Wed Oct 5 12:30:19 UTC 2011 - uli@suse.com + +- cross-build fix: use %__cc, %configure macros + +------------------------------------------------------------------- +Fri Oct 27 18:24:00 CEST 2006 - dmueller@suse.de + +- don't build as root + +------------------------------------------------------------------- +Thu Jul 20 16:19:09 CEST 2006 - schwab@suse.de + +- Don't call autoconf. + +------------------------------------------------------------------- +Thu Feb 2 11:43:44 CET 2006 - jw@suse.de + +- initial version 0.13 + used for fixing MainActor-5 + diff --git a/chrpath.spec b/chrpath.spec new file mode 100644 index 0000000..6c2aa7a --- /dev/null +++ b/chrpath.spec @@ -0,0 +1,49 @@ +# +# spec file for package chrpath +# +# Copyright (c) 2020 SUSE LLC +# +# 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 https://bugs.opensuse.org/ +# + + +Name: chrpath +Version: 0.16 +Release: 0 +Summary: Modifies the dynamic library load path of compiled programs and libraries +License: GPL-2.0-or-later +Group: Development/Tools/Building +URL: https://alioth.debian.org/projects/chrpath/ +Source: https://alioth.debian.org/frs/download.php/file/3979/%{name}-%{version}.tar.gz + +%description +Chrpath allows you to modify the dynamic library load path (rpath and +runpath) of compiled programs. Currently, only removing and modifying the +rpath is supported. It cannot extend or add an rpath. + +%prep +%setup -q + +%build +%configure +%make_build + +%install +%make_install doc_DATA="" + +%files +%license COPYING AUTHORS +%doc ChangeLog NEWS README +%{_bindir}/chrpath +%{_mandir}/man1/chrpath.1%{?ext_man} + +%changelog