public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/systemd-readahead/
@ 2018-09-15 12:52 Pacho Ramos
  0 siblings, 0 replies; 5+ messages in thread
From: Pacho Ramos @ 2018-09-15 12:52 UTC (permalink / raw
  To: gentoo-commits

commit:     acfe337d09539ed91c0b34006572ef83c2b7e7b2
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 15 12:33:01 2018 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sat Sep 15 12:52:22 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acfe337d

sys-apps/systemd-readahead: Fix compilation, bug #607068

Package-Manager: Portage-2.3.49, Repoman-2.3.10

 sys-apps/systemd-readahead/systemd-readahead-216.ebuild | 14 +++++++++++---
 1 file changed, 11 insertions(+), 3 deletions(-)

diff --git a/sys-apps/systemd-readahead/systemd-readahead-216.ebuild b/sys-apps/systemd-readahead/systemd-readahead-216.ebuild
index e256882d916..a7580f0a561 100644
--- a/sys-apps/systemd-readahead/systemd-readahead-216.ebuild
+++ b/sys-apps/systemd-readahead/systemd-readahead-216.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -135,8 +135,16 @@ src_configure() {
 }
 
 src_compile() {
-	echo 'BUILT_SOURCES: $(BUILT_SOURCES)' > "${T}"/Makefile.extra
-	emake -f Makefile -f "${T}"/Makefile.extra BUILT_SOURCES
+	echo 'BUILT_SOURCES: $(BUILT_SOURCES)' > ./Makefile.extra
+	emake -f Makefile -f ./Makefile.extra BUILT_SOURCES
+
+	# Fix compilation, bug #607068
+	# From comments at https://aur.archlinux.org/packages/systemd-readahead
+	gperf < src/libsystemd/sd-bus/bus-error-mapping.gperf > src/libsystemd/sd-bus/bus-error-mapping.c || die
+	sed -i -e "/bus_error_mapping_lookup/s/size_t/unsigned int/" src/libsystemd/sd-bus/bus-error-mapping.c || die
+	sed -i -e "/lookup_errno/s/size_t/unsigned int/" src/shared/errno-from-name.h || die
+	sed -i -e "/lookup_af/s/size_t/unsigned int/" src/shared/af-from-name.h || die
+	sed -i -e "/lookup_arphrd/s/size_t/unsigned int/" src/shared/arphrd-from-name.h || die
 
 	emake systemd-readahead
 	emake units/systemd-readahead-{drop,collect,replay,done}.service units/systemd-readahead-done.timer


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-apps/systemd-readahead/
@ 2022-01-15  9:25 Pacho Ramos
  0 siblings, 0 replies; 5+ messages in thread
From: Pacho Ramos @ 2022-01-15  9:25 UTC (permalink / raw
  To: gentoo-commits

commit:     4289f881069f19494e55afad2d9c2ceea729fe10
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 15 09:25:15 2022 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sat Jan 15 09:25:15 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4289f881

sys-apps/systemd-readahead: Fix depends

Closes: https://bugs.gentoo.org/830875
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>

 sys-apps/systemd-readahead/systemd-readahead-216.ebuild | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/sys-apps/systemd-readahead/systemd-readahead-216.ebuild b/sys-apps/systemd-readahead/systemd-readahead-216.ebuild
index 0efc3c3f12f9..d35257f5fe9a 100644
--- a/sys-apps/systemd-readahead/systemd-readahead-216.ebuild
+++ b/sys-apps/systemd-readahead/systemd-readahead-216.ebuild
@@ -16,7 +16,9 @@ IUSE=""
 S="${WORKDIR}/systemd-${PV}"
 
 RDEPEND=">=sys-apps/systemd-217:="
-DEPEND="${RDEPEND}
+DEPEND="${RDEPEND}"
+BDEPEND="
+	app-arch/xz-utils:0
 	dev-util/gperf
 	>=dev-util/intltool-0.50
 	>=sys-apps/coreutils-8.16


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-apps/systemd-readahead/
@ 2022-01-15  9:25 Pacho Ramos
  0 siblings, 0 replies; 5+ messages in thread
From: Pacho Ramos @ 2022-01-15  9:25 UTC (permalink / raw
  To: gentoo-commits

commit:     d27b4cc89e447fde1f891e043df9cb1bc628c2db
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 15 09:23:59 2022 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sat Jan 15 09:23:59 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d27b4cc8

sys-apps/systemd-readahead: Bump EAPI

Closes: https://bugs.gentoo.org/830875
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>

 sys-apps/systemd-readahead/systemd-readahead-216.ebuild | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/sys-apps/systemd-readahead/systemd-readahead-216.ebuild b/sys-apps/systemd-readahead/systemd-readahead-216.ebuild
index 301b757c717d..0efc3c3f12f9 100644
--- a/sys-apps/systemd-readahead/systemd-readahead-216.ebuild
+++ b/sys-apps/systemd-readahead/systemd-readahead-216.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=8
 inherit systemd toolchain-funcs udev
 
 DESCRIPTION="Split of readahead systemd implementation"
@@ -17,7 +17,6 @@ S="${WORKDIR}/systemd-${PV}"
 
 RDEPEND=">=sys-apps/systemd-217:="
 DEPEND="${RDEPEND}
-	app-arch/xz-utils:0
 	dev-util/gperf
 	>=dev-util/intltool-0.50
 	>=sys-apps/coreutils-8.16


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-apps/systemd-readahead/
@ 2025-05-22 15:43 Pacho Ramos
  0 siblings, 0 replies; 5+ messages in thread
From: Pacho Ramos @ 2025-05-22 15:43 UTC (permalink / raw
  To: gentoo-commits

commit:     b1824b4549b032604cb513558de58d222cf81f92
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Thu May 22 15:40:16 2025 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Thu May 22 15:42:44 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1824b45

sys-apps/systemd-readahead: Fix VariableOrderWrong warning

Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>

 sys-apps/systemd-readahead/systemd-readahead-216.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/sys-apps/systemd-readahead/systemd-readahead-216.ebuild b/sys-apps/systemd-readahead/systemd-readahead-216.ebuild
index cd16340fff6b..6659e632cfed 100644
--- a/sys-apps/systemd-readahead/systemd-readahead-216.ebuild
+++ b/sys-apps/systemd-readahead/systemd-readahead-216.ebuild
@@ -7,13 +7,12 @@ inherit systemd toolchain-funcs udev
 DESCRIPTION="Split of readahead systemd implementation"
 HOMEPAGE="https://dev.gentoo.org/~pacho/systemd-readahead.html"
 SRC_URI="https://www.freedesktop.org/software/systemd/systemd-${PV}.tar.xz"
+S="${WORKDIR}/systemd-${PV}"
 
 LICENSE="LGPL-2.1 MIT"
 SLOT="0"
 KEYWORDS="~alpha amd64 ~arm ~ppc ~ppc64 ~sparc x86"
 
-S="${WORKDIR}/systemd-${PV}"
-
 RDEPEND=">=sys-apps/systemd-217:="
 DEPEND="${RDEPEND}"
 BDEPEND="


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-apps/systemd-readahead/
@ 2025-05-22 15:43 Pacho Ramos
  0 siblings, 0 replies; 5+ messages in thread
From: Pacho Ramos @ 2025-05-22 15:43 UTC (permalink / raw
  To: gentoo-commits

commit:     c7bb68e5e220655c406775727bcfb97232e68d00
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Thu May 22 15:39:49 2025 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Thu May 22 15:42:44 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7bb68e5

sys-apps/systemd-readahead: Fix EmptyGlobalAssignment warning

Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>

 sys-apps/systemd-readahead/systemd-readahead-216.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/sys-apps/systemd-readahead/systemd-readahead-216.ebuild b/sys-apps/systemd-readahead/systemd-readahead-216.ebuild
index 37012eef52c4..cd16340fff6b 100644
--- a/sys-apps/systemd-readahead/systemd-readahead-216.ebuild
+++ b/sys-apps/systemd-readahead/systemd-readahead-216.ebuild
@@ -11,7 +11,6 @@ SRC_URI="https://www.freedesktop.org/software/systemd/systemd-${PV}.tar.xz"
 LICENSE="LGPL-2.1 MIT"
 SLOT="0"
 KEYWORDS="~alpha amd64 ~arm ~ppc ~ppc64 ~sparc x86"
-IUSE=""
 
 S="${WORKDIR}/systemd-${PV}"
 


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2025-05-22 15:43 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-05-22 15:43 [gentoo-commits] repo/gentoo:master commit in: sys-apps/systemd-readahead/ Pacho Ramos
  -- strict thread matches above, loose matches on Subject: below --
2025-05-22 15:43 Pacho Ramos
2022-01-15  9:25 Pacho Ramos
2022-01-15  9:25 Pacho Ramos
2018-09-15 12:52 Pacho Ramos

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox