[gentoo-commits] repo/gentoo:master commit in: app-admin/chrpath/files/, app-admin/chrpath/

2022-07-29 Thread David Seifert
commit: 5d51a5ae2bb3dc3e6d86e8af82ac1c4b247b6571
Author: David Seifert  gentoo  org>
AuthorDate: Fri Jul 29 08:24:19 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Fri Jul 29 08:24:19 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d51a5ae

app-admin/chrpath: drop 0.13-r2

Signed-off-by: David Seifert  gentoo.org>

 app-admin/chrpath/Manifest |   1 -
 app-admin/chrpath/chrpath-0.13-r2.ebuild   |  42 --
 .../chrpath/files/chrpath-0.13-multilib.patch  | 160 -
 .../chrpath/files/chrpath-0.13-testsuite-1.patch   |  19 ---
 app-admin/chrpath/files/chrpath-keepgoing.patch|  20 ---
 5 files changed, 242 deletions(-)

diff --git a/app-admin/chrpath/Manifest b/app-admin/chrpath/Manifest
index 4532e0e45797..e24ed2c8fd6f 100644
--- a/app-admin/chrpath/Manifest
+++ b/app-admin/chrpath/Manifest
@@ -1,2 +1 @@
-DIST chrpath-0.13.tar.gz 125129 BLAKE2B 
004db7e3567ceeb700d018e7e32036843413605466c218bf40252927b169775c5a86f81f8ea355f0d141821313d114ec24654ed62d75443e31739118e31bc497
 SHA512 
9ec2ab2731fb553497996939b421130ae221d478dab8887c184ae91f7d3ae697688e7a30e3bea30cc0cf765f1dc8c7f47d2a1f4369b36079b4033e8d0303d75e
 DIST chrpath-0.16.tar.gz 134506 BLAKE2B 
7003cc1cb2332ffbe6fe0873c6d30cbc3ea696e041be33b39c3d36ae34a2497b8dd40bb373773c546b8d63cfd8534e796fd7d7cbc99d37fb8751fc960907070f
 SHA512 
aa04d490f78bff20a56fe20539cec10218c0772a668909eda8324ca825f51e8ef92001e95d9c316e79a145a043c9c327ec94d1a82e104ab408ca1021832745aa

diff --git a/app-admin/chrpath/chrpath-0.13-r2.ebuild 
b/app-admin/chrpath/chrpath-0.13-r2.ebuild
deleted file mode 100644
index 89d26b3b7e07..
--- a/app-admin/chrpath/chrpath-0.13-r2.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools
-
-DESCRIPTION="Chrpath can modify the rpath and runpath of ELF executables"
-HOMEPAGE="https://directory.fsf.org/wiki/Chrpath;
-# original upstream no longer exists (ftp://ftp.hungry.com/pub/hungry)
-SRC_URI="https://alioth-archive.debian.org/releases/${PN}/${PN}/${PV}/${P}.tar.gz;
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 arm ~mips ppc ppc64 x86 ~amd64-linux ~x86-linux ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="static-libs"
-
-PATCHES=(
-   "${FILESDIR}"/${P}-multilib.patch
-   "${FILESDIR}"/${PN}-keepgoing.patch
-   "${FILESDIR}"/${P}-testsuite-1.patch
-)
-
-src_prepare() {
-   default
-   # disable installing redundant docs in the wrong dir
-   sed -i -e '/doc_DATA/d' Makefile.am || die
-   # fix for automake-1.13, #467538
-   sed -i -e 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/' configure.ac || die
-   eautoreconf
-}
-
-src_configure() {
-   econf $(use_enable static-libs static)
-}
-
-src_install() {
-   default
-   if ! use static-libs; then
-   find "${D}" -name "*.la" -delete || die
-   fi
-}

diff --git a/app-admin/chrpath/files/chrpath-0.13-multilib.patch 
b/app-admin/chrpath/files/chrpath-0.13-multilib.patch
deleted file mode 100644
index e7db0a124053..
--- a/app-admin/chrpath/files/chrpath-0.13-multilib.patch
+++ /dev/null
@@ -1,160 +0,0 @@
-Index: chrpath-0.13/Makefile.am
-===
 chrpath-0.13.orig/Makefile.am
-+++ chrpath-0.13/Makefile.am
-@@ -12,12 +12,19 @@ debs:
-   fakeroot debian/rules binary
- 
- chrpath_SOURCES = \
--  chrpath.c   \
--  killrpath.c \
-   main.c  \
--  elf.c   \
-   protos.h
- 
-+chrpath_LDADD = $(LDLIBS)
-+
-+lib_LTLIBRARIES = libchrpath32.la libchrpath64.la
-+libchrpath32_la_SOURCES = chrpath.c killrpath.c elf.c protos.h
-+libchrpath32_la_CFLAGS = -DSIZEOF_VOID_P=4
-+libchrpath32_la_LDFLAGS = -avoid-version
-+libchrpath64_la_SOURCES = chrpath.c killrpath.c elf.c protos.h
-+libchrpath64_la_CFLAGS = -DSIZEOF_VOID_P=8
-+libchrpath64_la_LDFLAGS = -avoid-version
-+
- EXTRA_DIST = ChangeLog.usermap $(man_MANS)
- 
- CLEANFILES = *.bb *.bbg *.da *.gcov testsuite/*.bb testsuite/*.bbg
-Index: chrpath-0.13/configure.ac
-===
 chrpath-0.13.orig/configure.ac
-+++ chrpath-0.13/configure.ac
-@@ -16,6 +16,7 @@ CHRPATH_LDRPATH_OPTION
- dnl Checks for programs.
- AC_PROG_CC
- AC_PROG_INSTALL
-+AC_PROG_LIBTOOL
- 
- dnl Checks for libraries.
- 
-@@ -26,11 +27,19 @@ AC_CHECK_HEADERS([getopt.h elf.h fcntl.h
- dnl Checks for typedefs, structures, and compiler characteristics.
- AC_C_CONST
- AC_C_BIGENDIAN
--AC_CHECK_SIZEOF(void *)
- 
- dnl Checks for library functions.
- AC_CHECK_FUNCS(getopt_long)
- 
-+dnl See if we need -ldl on this platform for dlopen
-+LDLIBS=
-+save_LIBS="$LIBS"
-+LIBS=
-+AC_SEARCH_LIBS([dlopen], [dl])
-+LDLIBS=${LIBS}
-+LIBS="${save_LIBS}"
-+AC_SUBST([LDLIBS])
-+
- if eval "test x$GCC = xyes"; then
-   for flag in 

[gentoo-commits] repo/gentoo:master commit in: app-admin/chrpath/

2022-07-29 Thread David Seifert
commit: d43bdb4245d6d131e08ea4ee0c7377231a3bbd5c
Author: David Seifert  gentoo  org>
AuthorDate: Fri Jul 29 08:24:20 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Fri Jul 29 08:24:20 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d43bdb42

app-admin/chrpath: update EAPI 7 -> 8

* remove USE="static-libs" since there is no
  rationale given for keeping it.

Signed-off-by: David Seifert  gentoo.org>

 .../chrpath/{chrpath-0.16.ebuild => chrpath-0.16-r1.ebuild}   | 11 ++-
 1 file changed, 2 insertions(+), 9 deletions(-)

diff --git a/app-admin/chrpath/chrpath-0.16.ebuild 
b/app-admin/chrpath/chrpath-0.16-r1.ebuild
similarity index 84%
rename from app-admin/chrpath/chrpath-0.16.ebuild
rename to app-admin/chrpath/chrpath-0.16-r1.ebuild
index 6913b7a27fb8..287cacc4a7d6 100644
--- a/app-admin/chrpath/chrpath-0.16.ebuild
+++ b/app-admin/chrpath/chrpath-0.16-r1.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 inherit autotools
 
@@ -12,7 +12,6 @@ 
SRC_URI="https://alioth-archive.debian.org/releases/${PN}/${PN}/${PV}/${P}.tar.g
 LICENSE="GPL-2+"
 SLOT="0"
 KEYWORDS="amd64 arm ~arm64 ~mips ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="static-libs"
 
 PATCHES=(
"${FILESDIR}"/${P}-multilib.patch
@@ -29,13 +28,7 @@ src_prepare() {
eautoreconf
 }
 
-src_configure() {
-   econf $(use_enable static-libs static)
-}
-
 src_install() {
default
-   if ! use static-libs; then
-   find "${D}" -name "*.la" -delete || die
-   fi
+   find "${ED}" -name '*.la' -delete || die
 }



[gentoo-commits] repo/gentoo:master commit in: app-admin/chrpath/

2022-07-29 Thread Agostino Sarubbo
commit: 5899f6482f7fca282dce2aaadb95824478f88508
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Jul 29 07:59:39 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Jul 29 07:59:39 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5899f648

app-admin/chrpath: arm stable wrt bug #861674

Signed-off-by: Agostino Sarubbo  gentoo.org>

 app-admin/chrpath/chrpath-0.16.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/chrpath/chrpath-0.16.ebuild 
b/app-admin/chrpath/chrpath-0.16.ebuild
index 70462428ff6c..6913b7a27fb8 100644
--- a/app-admin/chrpath/chrpath-0.16.ebuild
+++ b/app-admin/chrpath/chrpath-0.16.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://alioth-archive.debian.org/releases/${PN}/${PN}/${PV}/${P}.tar.g
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~mips ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 arm ~arm64 ~mips ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs"
 
 PATCHES=(



[gentoo-commits] repo/gentoo:master commit in: app-admin/chrpath/

2022-07-28 Thread Sam James
commit: 80366daccbe1e7c5ed7d7e54ac5f6206ae660c1e
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 28 23:05:51 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 28 23:05:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80366dac

app-admin/chrpath: Stabilize 0.16 amd64, #861674

Signed-off-by: Sam James  gentoo.org>

 app-admin/chrpath/chrpath-0.16.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/chrpath/chrpath-0.16.ebuild 
b/app-admin/chrpath/chrpath-0.16.ebuild
index a79b81da9126..70462428ff6c 100644
--- a/app-admin/chrpath/chrpath-0.16.ebuild
+++ b/app-admin/chrpath/chrpath-0.16.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://alioth-archive.debian.org/releases/${PN}/${PN}/${PV}/${P}.tar.g
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~mips ppc ppc64 ~riscv x86 ~amd64-linux 
~x86-linux ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 ~arm ~arm64 ~mips ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs"
 
 PATCHES=(



[gentoo-commits] repo/gentoo:master commit in: app-admin/chrpath/

2022-07-28 Thread Sam James
commit: acd0a8bc665da848e8a8a1778ca0aa9da92faad5
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 28 23:05:19 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 28 23:05:19 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acd0a8bc

app-admin/chrpath: Stabilize 0.16 x86, #861674

Signed-off-by: Sam James  gentoo.org>

 app-admin/chrpath/chrpath-0.16.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/chrpath/chrpath-0.16.ebuild 
b/app-admin/chrpath/chrpath-0.16.ebuild
index 866fae493747..a79b81da9126 100644
--- a/app-admin/chrpath/chrpath-0.16.ebuild
+++ b/app-admin/chrpath/chrpath-0.16.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://alioth-archive.debian.org/releases/${PN}/${PN}/${PV}/${P}.tar.g
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~mips ppc ppc64 ~riscv ~x86 ~amd64-linux 
~x86-linux ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~amd64 ~arm ~arm64 ~mips ppc ppc64 ~riscv x86 ~amd64-linux 
~x86-linux ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs"
 
 PATCHES=(



[gentoo-commits] repo/gentoo:master commit in: app-admin/chrpath/

2022-07-28 Thread Sam James
commit: dd00cce3434f9740832ec5d95ab081db5bdaa143
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 28 11:59:43 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 28 11:59:43 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd00cce3

app-admin/chrpath: Stabilize 0.16 ppc, #861674

Signed-off-by: Sam James  gentoo.org>

 app-admin/chrpath/chrpath-0.16.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/chrpath/chrpath-0.16.ebuild 
b/app-admin/chrpath/chrpath-0.16.ebuild
index db8843d003ad..986bf71683b9 100644
--- a/app-admin/chrpath/chrpath-0.16.ebuild
+++ b/app-admin/chrpath/chrpath-0.16.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://alioth-archive.debian.org/releases/${PN}/${PN}/${PV}/${P}.tar.g
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux 
~x86-linux ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~amd64 ~arm ~arm64 ~mips ppc ~ppc64 ~riscv ~x86 ~amd64-linux 
~x86-linux ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs"
 
 PATCHES=(



[gentoo-commits] repo/gentoo:master commit in: app-admin/chrpath/

2022-07-28 Thread Sam James
commit: af427fd7bd57e854774cc302363e67c8d4f59096
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 28 11:59:55 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 28 11:59:55 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af427fd7

app-admin/chrpath: Stabilize 0.16 ppc64, #861674

Signed-off-by: Sam James  gentoo.org>

 app-admin/chrpath/chrpath-0.16.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/chrpath/chrpath-0.16.ebuild 
b/app-admin/chrpath/chrpath-0.16.ebuild
index 986bf71683b9..866fae493747 100644
--- a/app-admin/chrpath/chrpath-0.16.ebuild
+++ b/app-admin/chrpath/chrpath-0.16.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://alioth-archive.debian.org/releases/${PN}/${PN}/${PV}/${P}.tar.g
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~mips ppc ~ppc64 ~riscv ~x86 ~amd64-linux 
~x86-linux ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~amd64 ~arm ~arm64 ~mips ppc ppc64 ~riscv ~x86 ~amd64-linux 
~x86-linux ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs"
 
 PATCHES=(



[gentoo-commits] repo/gentoo:master commit in: app-admin/chrpath/

2022-07-28 Thread David Seifert
commit: f25362df3ec580b7bdf332d43e1e46dc8f5dfa66
Author: David Seifert  gentoo  org>
AuthorDate: Thu Jul 28 08:22:49 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Thu Jul 28 08:22:49 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f25362df

app-admin/chrpath: reindent metadata.xml

Signed-off-by: David Seifert  gentoo.org>

 app-admin/chrpath/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/chrpath/metadata.xml b/app-admin/chrpath/metadata.xml
index 7b9e1c3f2223..f38edee4ac89 100644
--- a/app-admin/chrpath/metadata.xml
+++ b/app-admin/chrpath/metadata.xml
@@ -4,7 +4,7 @@

grob...@gentoo.org

-
+   
pre...@gentoo.org
Gentoo Prefix




[gentoo-commits] repo/gentoo:master commit in: app-admin/chrpath/

2022-07-22 Thread Yixun Lan
commit: 513e0fe8465f01bf63e950d77f7863c6e141441b
Author: Yixun Lan  gentoo  org>
AuthorDate: Sat Jul 23 01:06:28 2022 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Sat Jul 23 01:08:01 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=513e0fe8

app-admin/chrpath: keyword 0.16 for ~riscv

Signed-off-by: Yixun Lan  gentoo.org>

 app-admin/chrpath/chrpath-0.16.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-admin/chrpath/chrpath-0.16.ebuild 
b/app-admin/chrpath/chrpath-0.16.ebuild
index a985ffe96003..db8843d003ad 100644
--- a/app-admin/chrpath/chrpath-0.16.ebuild
+++ b/app-admin/chrpath/chrpath-0.16.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -11,7 +11,7 @@ 
SRC_URI="https://alioth-archive.debian.org/releases/${PN}/${PN}/${PV}/${P}.tar.g
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux 
~x86-linux ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs"
 
 PATCHES=(



[gentoo-commits] repo/gentoo:master commit in: app-admin/chrpath/

2021-03-05 Thread Sam James
commit: 3bd9166846893ffb423361efba8afe2d60c9863d
Author: Sam James  gentoo  org>
AuthorDate: Fri Mar  5 18:38:42 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Mar  5 18:38:42 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3bd91668

app-admin/chrpath: Keyword 0.16 arm64, #556758

Signed-off-by: Sam James  gentoo.org>

 app-admin/chrpath/chrpath-0.16.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-admin/chrpath/chrpath-0.16.ebuild 
b/app-admin/chrpath/chrpath-0.16.ebuild
index 5174d593ad4..a985ffe9600 100644
--- a/app-admin/chrpath/chrpath-0.16.ebuild
+++ b/app-admin/chrpath/chrpath-0.16.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -11,7 +11,7 @@ 
SRC_URI="https://alioth-archive.debian.org/releases/${PN}/${PN}/${PV}/${P}.tar.g
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs"
 
 PATCHES=(



[gentoo-commits] repo/gentoo:master commit in: app-admin/chrpath/files/, app-admin/chrpath/

2019-06-17 Thread Fabian Groffen
commit: b18f34b68c3e2e99a3b4472564c519873099f894
Author: Fabian Groffen  gentoo  org>
AuthorDate: Mon Jun 17 18:35:27 2019 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Mon Jun 17 18:37:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b18f34b6

app-admin/chrpath: add fix for Solaris

Signed-off-by: Fabian Groffen  gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11

 app-admin/chrpath/chrpath-0.16.ebuild  |  1 +
 app-admin/chrpath/files/chrpath-0.16-solaris.patch | 19 +++
 2 files changed, 20 insertions(+)

diff --git a/app-admin/chrpath/chrpath-0.16.ebuild 
b/app-admin/chrpath/chrpath-0.16.ebuild
index 51137b39303..323e49a75d9 100644
--- a/app-admin/chrpath/chrpath-0.16.ebuild
+++ b/app-admin/chrpath/chrpath-0.16.ebuild
@@ -17,6 +17,7 @@ IUSE="static-libs"
 PATCHES=(
"${FILESDIR}"/${P}-multilib.patch
"${FILESDIR}"/${P}-testsuite-1.patch
+   "${FILESDIR}"/${P}-solaris.patch
 )
 
 src_prepare() {

diff --git a/app-admin/chrpath/files/chrpath-0.16-solaris.patch 
b/app-admin/chrpath/files/chrpath-0.16-solaris.patch
new file mode 100644
index 000..5e1dd1957e8
--- /dev/null
+++ b/app-admin/chrpath/files/chrpath-0.16-solaris.patch
@@ -0,0 +1,19 @@
+protos: add bswap macros for Solaris
+
+--- a/protos.h
 b/protos.h
+@@ -1,7 +1,14 @@
+ #ifndef PROTOS_H
+ #define PROTOS_H
+ 
++#if defined(__sun)
++#include 
++#define bswap_16(x) BSWAP_16(x)
++#define bswap_32(x) BSWAP_32(x)
++#define bswap_64(x) BSWAP_64(x)
++#else
+ #include 
++#endif
+ #include 
+ #include "config.h"
+ 



[gentoo-commits] repo/gentoo:master commit in: app-admin/chrpath/

2019-06-17 Thread Fabian Groffen
commit: dbcd94e77e7f82e73cd21ebf6bbbab57719f29ab
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sun May 19 08:56:31 2019 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Mon Jun 17 18:37:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dbcd94e7

app-admin/chrpath: use HTTPS, fix SRC_URI and LICENSE

Signed-off-by: Michael Mair-Keimberger  gmail.com>
Signed-off-by: Fabian Groffen  gentoo.org>

 app-admin/chrpath/chrpath-0.13-r2.ebuild | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/app-admin/chrpath/chrpath-0.13-r2.ebuild 
b/app-admin/chrpath/chrpath-0.13-r2.ebuild
index ae32d8001b8..0aeb65d4f64 100644
--- a/app-admin/chrpath/chrpath-0.13-r2.ebuild
+++ b/app-admin/chrpath/chrpath-0.13-r2.ebuild
@@ -1,16 +1,16 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
 inherit autotools
 
-DESCRIPTION="chrpath can modify the rpath and runpath of ELF executables"
-HOMEPAGE="http://directory.fsf.org/project/chrpath/;
+DESCRIPTION="Chrpath can modify the rpath and runpath of ELF executables"
+HOMEPAGE="https://directory.fsf.org/wiki/Chrpath;
 # original upstream no longer exists (ftp://ftp.hungry.com/pub/hungry)
-SRC_URI="http://ftp.tux.org/pub/X-Windows/ftp.hungry.com/chrpath/${P}.tar.gz;
+SRC_URI="https://alioth-archive.debian.org/releases/${PN}/${PN}/${PV}/${P}.tar.gz;
 
-LICENSE="GPL-2"
+LICENSE="GPL-2+"
 SLOT="0"
 KEYWORDS="amd64 arm ~mips ppc ppc64 x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~x86-linux ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs"



[gentoo-commits] repo/gentoo:master commit in: app-admin/chrpath/, app-admin/chrpath/files/

2019-06-17 Thread Fabian Groffen
commit: 624185ebb5dae086cf83da16c6430f8442be9627
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sun May 19 09:51:39 2019 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Mon Jun 17 18:37:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=624185eb

app-admin/chrpath: EAPI=7, version bump (0.16)

Closes: https://bugs.gentoo.org/686298
Signed-off-by: Michael Mair-Keimberger  gmail.com>
Signed-off-by: Fabian Groffen  gentoo.org>

 app-admin/chrpath/Manifest |   1 +
 app-admin/chrpath/chrpath-0.16.ebuild  |  40 ++
 .../chrpath/files/chrpath-0.16-multilib.patch  | 155 +
 .../chrpath/files/chrpath-0.16-testsuite-1.patch   |  19 +++
 4 files changed, 215 insertions(+)

diff --git a/app-admin/chrpath/Manifest b/app-admin/chrpath/Manifest
index cccd27b5895..4532e0e4579 100644
--- a/app-admin/chrpath/Manifest
+++ b/app-admin/chrpath/Manifest
@@ -1 +1,2 @@
 DIST chrpath-0.13.tar.gz 125129 BLAKE2B 
004db7e3567ceeb700d018e7e32036843413605466c218bf40252927b169775c5a86f81f8ea355f0d141821313d114ec24654ed62d75443e31739118e31bc497
 SHA512 
9ec2ab2731fb553497996939b421130ae221d478dab8887c184ae91f7d3ae697688e7a30e3bea30cc0cf765f1dc8c7f47d2a1f4369b36079b4033e8d0303d75e
+DIST chrpath-0.16.tar.gz 134506 BLAKE2B 
7003cc1cb2332ffbe6fe0873c6d30cbc3ea696e041be33b39c3d36ae34a2497b8dd40bb373773c546b8d63cfd8534e796fd7d7cbc99d37fb8751fc960907070f
 SHA512 
aa04d490f78bff20a56fe20539cec10218c0772a668909eda8324ca825f51e8ef92001e95d9c316e79a145a043c9c327ec94d1a82e104ab408ca1021832745aa

diff --git a/app-admin/chrpath/chrpath-0.16.ebuild 
b/app-admin/chrpath/chrpath-0.16.ebuild
new file mode 100644
index 000..51137b39303
--- /dev/null
+++ b/app-admin/chrpath/chrpath-0.16.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+DESCRIPTION="Chrpath can modify the rpath and runpath of ELF executables"
+HOMEPAGE="https://directory.fsf.org/wiki/Chrpath;
+SRC_URI="https://alioth-archive.debian.org/releases/${PN}/${PN}/${PV}/${P}.tar.gz;
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd 
~amd64-linux ~x86-linux ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+IUSE="static-libs"
+
+PATCHES=(
+   "${FILESDIR}"/${P}-multilib.patch
+   "${FILESDIR}"/${P}-testsuite-1.patch
+)
+
+src_prepare() {
+   default
+   # disable installing redundant docs in the wrong dir
+   sed -i -e '/doc_DATA/d' Makefile.am || die
+   # fix for automake-1.13, #467538
+   sed -i -e 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/' configure.ac || die
+   eautoreconf
+}
+
+src_configure() {
+   econf $(use_enable static-libs static)
+}
+
+src_install() {
+   default
+   if ! use static-libs; then
+   find "${D}" -name "*.la" -delete || die
+   fi
+}

diff --git a/app-admin/chrpath/files/chrpath-0.16-multilib.patch 
b/app-admin/chrpath/files/chrpath-0.16-multilib.patch
new file mode 100644
index 000..075266d5cd9
--- /dev/null
+++ b/app-admin/chrpath/files/chrpath-0.16-multilib.patch
@@ -0,0 +1,155 @@
+--- chrpath-0.16/Makefile.am   2014-01-12 08:52:21.0 +0100
 chrpath-0.16-ng/Makefile.am2019-05-19 11:23:48.352936406 +0200
+@@ -12,11 +12,18 @@
+   fakeroot debian/rules binary
+ 
+ chrpath_SOURCES = \
+-  chrpath.c   \
+-  killrpath.c \
+   main.c  \
+-  elf.c   \
+   protos.h
++  
++chrpath_LDADD = $(LDLIBS)
++
++lib_LTLIBRARIES = libchrpath32.la libchrpath64.la
++libchrpath32_la_SOURCES = chrpath.c killrpath.c elf.c protos.h
++libchrpath32_la_CFLAGS = -DSIZEOF_VOID_P=4
++libchrpath32_la_LDFLAGS = -avoid-version
++libchrpath64_la_SOURCES = chrpath.c killrpath.c elf.c protos.h
++libchrpath64_la_CFLAGS = -DSIZEOF_VOID_P=8
++libchrpath64_la_LDFLAGS = -avoid-version
+ 
+ EXTRA_DIST = $(man_MANS)
+ 
+--- chrpath-0.16/configure.ac  2014-01-12 09:01:52.0 +0100
 chrpath-0.16-ng/configure.ac   2019-05-19 11:25:07.158665075 +0200
+@@ -16,6 +16,7 @@
+ dnl Checks for programs.
+ AC_PROG_CC
+ AC_PROG_INSTALL
++AC_PROG_LIBTOOL
+ 
+ dnl Checks for libraries.
+ 
+@@ -26,11 +27,19 @@
+ dnl Checks for typedefs, structures, and compiler characteristics.
+ AC_C_CONST
+ AC_C_BIGENDIAN
+-AC_CHECK_SIZEOF(void *)
+ 
+ dnl Checks for library functions.
+ AC_CHECK_FUNCS(getopt_long)
+ 
++dnl See if we need -ldl on this platform for dlopen
++LDLIBS=
++save_LIBS="$LIBS"
++LIBS=
++AC_SEARCH_LIBS([dlopen], [dl])
++LDLIBS=${LIBS}
++LIBS="${save_LIBS}"
++AC_SUBST([LDLIBS])
++
+ if eval "test x$GCC = xyes"; then
+   for flag in \
+   -W \
+--- chrpath-0.16/main.c2014-01-14 10:15:59.0 +0100
 chrpath-0.16-ng/main.c 2019-05-19 11:29:34.648390032 +0200
+@@ -12,13 +12,19 @@
+ #  include "config.h"
+ #endif
+ 
++#include 
++#include 
++#include 
+ #include 

[gentoo-commits] repo/gentoo:master commit in: app-admin/chrpath/

2018-04-23 Thread Mikle Kolyada
commit: a07974088923c8a72d2ba477c5c0c91faf1c5265
Author: Marty E. Plummer  startmail  com>
AuthorDate: Fri Apr 20 14:45:05 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Apr 23 14:53:13 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0797408

app-admin/chrpath: epatch->PATCHES=()

Also dropped eutils as unneeded.

Package-Manager: Portage-2.3.31, Repoman-2.3.9
Closes: https://github.com/gentoo/gentoo/pull/8087

 app-admin/chrpath/chrpath-0.13-r2.ebuild | 22 +-
 1 file changed, 13 insertions(+), 9 deletions(-)

diff --git a/app-admin/chrpath/chrpath-0.13-r2.ebuild 
b/app-admin/chrpath/chrpath-0.13-r2.ebuild
index fe4a867ea64..ae32d8001b8 100644
--- a/app-admin/chrpath/chrpath-0.13-r2.ebuild
+++ b/app-admin/chrpath/chrpath-0.13-r2.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
-inherit eutils autotools
+inherit autotools
 
 DESCRIPTION="chrpath can modify the rpath and runpath of ELF executables"
 HOMEPAGE="http://directory.fsf.org/project/chrpath/;
@@ -15,15 +15,18 @@ SLOT="0"
 KEYWORDS="amd64 arm ~mips ppc ppc64 x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~x86-linux ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs"
 
+PATCHES=(
+   "${FILESDIR}"/${P}-multilib.patch
+   "${FILESDIR}"/${PN}-keepgoing.patch
+   "${FILESDIR}"/${P}-testsuite-1.patch
+)
+
 src_prepare() {
-   epatch "${FILESDIR}"/${P}-multilib.patch
-   epatch "${FILESDIR}"/${PN}-keepgoing.patch
-   epatch "${FILESDIR}"/${P}-testsuite-1.patch
+   default
# disable installing redundant docs in the wrong dir
sed -i -e '/doc_DATA/d' Makefile.am || die
# fix for automake-1.13, #467538
sed -i -e 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/' configure.ac || die
-   eapply_user
eautoreconf
 }
 
@@ -32,7 +35,8 @@ src_configure() {
 }
 
 src_install() {
-   emake DESTDIR="${D}" install || die
-   dodoc ChangeLog AUTHORS NEWS README
-   use static-libs || find "${D}" -name "*.la" -exec rm '{}' +
+   default
+   if ! use static-libs; then
+   find "${D}" -name "*.la" -delete || die
+   fi
 }



[gentoo-commits] repo/gentoo:master commit in: app-admin/chrpath/

2017-04-14 Thread Fabian Groffen
commit: 4b4f99803deff13170d2471fb5e2b0136919e573
Author: Fabian Groffen  gentoo  org>
AuthorDate: Fri Apr 14 07:43:30 2017 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Fri Apr 14 07:43:30 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b4f9980

app-admin/chrpath: bump from EAPI=2 to EAPI=6

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 app-admin/chrpath/chrpath-0.13-r2.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/app-admin/chrpath/chrpath-0.13-r2.ebuild 
b/app-admin/chrpath/chrpath-0.13-r2.ebuild
index c81e1f1cd9b..fe4a867ea64 100644
--- a/app-admin/chrpath/chrpath-0.13-r2.ebuild
+++ b/app-admin/chrpath/chrpath-0.13-r2.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="2"
+EAPI=6
 
 inherit eutils autotools
 
@@ -23,6 +23,7 @@ src_prepare() {
sed -i -e '/doc_DATA/d' Makefile.am || die
# fix for automake-1.13, #467538
sed -i -e 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/' configure.ac || die
+   eapply_user
eautoreconf
 }