public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-apps/einit: ChangeLog einit-0.40.0.ebuild
@ 2008-03-03 21:37 Christian Faulhammer (opfer)
  0 siblings, 0 replies; 3+ messages in thread
From: Christian Faulhammer (opfer) @ 2008-03-03 21:37 UTC (permalink / raw
  To: gentoo-commits

opfer       08/03/03 21:37:45

  Modified:             ChangeLog
  Added:                einit-0.40.0.ebuild
  Log:
  version bump
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.8                  sys-apps/einit/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/einit/ChangeLog?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/einit/ChangeLog?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/einit/ChangeLog?r1=1.7&r2=1.8

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/einit/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog	3 Mar 2008 21:06:04 -0000	1.7
+++ ChangeLog	3 Mar 2008 21:37:44 -0000	1.8
@@ -1,6 +1,11 @@
 # ChangeLog for sys-apps/einit
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/einit/ChangeLog,v 1.7 2008/03/03 21:06:04 opfer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/einit/ChangeLog,v 1.8 2008/03/03 21:37:44 opfer Exp $
+
+*einit-0.40.0 (03 Mar 2008)
+
+  03 Mar 2008; Christian Faulhammer <opfer@gentoo.org> +einit-0.40.0.ebuild:
+  version bump
 
   03 Mar 2008; Christian Faulhammer <opfer@gentoo.org> metadata.xml:
   add myself as maintainer



1.1                  sys-apps/einit/einit-0.40.0.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/einit/einit-0.40.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/einit/einit-0.40.0.ebuild?rev=1.1&content-type=text/plain

Index: einit-0.40.0.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/einit/einit-0.40.0.ebuild,v 1.1 2008/03/03 21:37:44 opfer Exp $

EAPI="1"

inherit eutils python

DESCRIPTION="An alternate /sbin/init implementation"
SRC_URI="http://einit.org/files/${P}.tar.bz2"
HOMEPAGE="http://einit.org/"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~x86"

IUSE="debug doc +relaxng"

DEPEND="doc? ( app-text/docbook-sgml app-doc/doxygen )
		dev-util/scons"
PDEPEND=">=sys-apps/einit-modules-xml-2.0.0.0
		 >=sys-apps/einit-modules-scheme-1.0.0.0
		 relaxng? ( app-text/rnv )"

pkg_setup() {
	enewgroup einit || die
	if [ $(getconf GNU_LIBPTHREAD_VERSION | cut -d " " -f 1) != "NPTL" ]; then
		break;
	fi
}

src_unpack() {
	unpack ${A} || die
	python_version || die
}

src_compile() {

	scons ${MAKEOPTS:--j2} libdir="$(get_libdir)" destdir="${D}/${ROOT}/" prefix="${ROOT}" || die
}

src_install() {
	scons libdir="$(get_libdir)" destdir="${D}/${ROOT}/" prefix="${ROOT}" install || die

	mkdir -p "${D}/${ROOT}/bin"
	ln -s ../sbin/einit "${D}/${ROOT}/bin/einit"
	ln -s ../"$(get_libdir)"/einit/bin/einit-log "${D}/${ROOT}/bin/einit-log"
	ln -s ../$(get_libdir)/einit/bin/einit-feedback "${D}/${ROOT}/bin/einit-feedback"

	doman documentation/man/*.8
}

pkg_postinst() {
	elog "eINIT is now installed, but you will still need to configure it."
	elog
	elog "To use einit as a non-root user, add that user to the group 'einit'."
	elog
	elog "You can always find the latest documentation at"
	elog "http://einit.org/"
	elog
}



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in sys-apps/einit: ChangeLog einit-0.40.0.ebuild
@ 2009-02-19  9:35 Christian Faulhammer (fauli)
  0 siblings, 0 replies; 3+ messages in thread
From: Christian Faulhammer (fauli) @ 2009-02-19  9:35 UTC (permalink / raw
  To: gentoo-commits

fauli       09/02/19 09:35:30

  Modified:             ChangeLog einit-0.40.0.ebuild
  Log:
  don't use fixed string but use the HOMEPAGE variable in pkg_postinst message
  (Portage version: 2.1.6.4/cvs/Linux 2.6.27-gentoo-r8 i686)

Revision  Changes    Path
1.18                 sys-apps/einit/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/einit/ChangeLog?rev=1.18&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/einit/ChangeLog?rev=1.18&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/einit/ChangeLog?r1=1.17&r2=1.18

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/einit/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog	28 Nov 2008 12:45:33 -0000	1.17
+++ ChangeLog	19 Feb 2009 09:35:30 -0000	1.18
@@ -1,6 +1,10 @@
 # ChangeLog for sys-apps/einit
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/einit/ChangeLog,v 1.17 2008/11/28 12:45:33 fauli Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/einit/ChangeLog,v 1.18 2009/02/19 09:35:30 fauli Exp $
+
+  19 Feb 2009; Christian Faulhammer <fauli@gentoo.org> einit-0.40.0.ebuild:
+  don't use fixed string but use the HOMEPAGE variable in pkg_postinst
+  message
 
   28 Nov 2008; Christian Faulhammer <fauli@gentoo.org> metadata.xml:
   Change my email address



1.7                  sys-apps/einit/einit-0.40.0.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/einit/einit-0.40.0.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/einit/einit-0.40.0.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/einit/einit-0.40.0.ebuild?r1=1.6&r2=1.7

Index: einit-0.40.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/einit/einit-0.40.0.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- einit-0.40.0.ebuild	11 Jun 2008 16:36:53 -0000	1.6
+++ einit-0.40.0.ebuild	19 Feb 2009 09:35:30 -0000	1.7
@@ -1,6 +1,6 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/einit/einit-0.40.0.ebuild,v 1.6 2008/06/11 16:36:53 dertobi123 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/einit/einit-0.40.0.ebuild,v 1.7 2009/02/19 09:35:30 fauli Exp $
 
 EAPI="1"
 
@@ -59,6 +59,6 @@
 	elog "To use einit as a non-root user, add that user to the group 'einit'."
 	elog
 	elog "You can always find the latest documentation at"
-	elog "http://einit.org/"
+	elog "${HOMEPAGE}"
 	elog
 }






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

* [gentoo-commits] gentoo-x86 commit in sys-apps/einit: ChangeLog einit-0.40.0.ebuild
@ 2009-03-12  0:50 Christian Faulhammer (fauli)
  0 siblings, 0 replies; 3+ messages in thread
From: Christian Faulhammer (fauli) @ 2009-03-12  0:50 UTC (permalink / raw
  To: gentoo-commits

fauli       09/03/12 00:50:05

  Modified:             ChangeLog einit-0.40.0.ebuild
  Log:
  fix compile failure with _FORTIFY_SOURCE=2, patch by Magnus Granberg <zorry AT ume DOT nu> in bug 261320
  (Portage version: 2.1.6.7/cvs/Linux i686)

Revision  Changes    Path
1.19                 sys-apps/einit/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/einit/ChangeLog?rev=1.19&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/einit/ChangeLog?rev=1.19&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/einit/ChangeLog?r1=1.18&r2=1.19

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/einit/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog	19 Feb 2009 09:35:30 -0000	1.18
+++ ChangeLog	12 Mar 2009 00:50:05 -0000	1.19
@@ -1,6 +1,11 @@
 # ChangeLog for sys-apps/einit
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/einit/ChangeLog,v 1.18 2009/02/19 09:35:30 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/einit/ChangeLog,v 1.19 2009/03/12 00:50:05 fauli Exp $
+
+  12 Mar 2009; Christian Faulhammer <fauli@gentoo.org>
+  +files/einit-0.40.0-open_mode.patch, einit-0.40.0.ebuild:
+  fix compile failure with _FORTIFY_SOURCE=2, patch by Magnus Granberg
+  <zorry AT ume DOT nu> in bug 261320
 
   19 Feb 2009; Christian Faulhammer <fauli@gentoo.org> einit-0.40.0.ebuild:
   don't use fixed string but use the HOMEPAGE variable in pkg_postinst



1.8                  sys-apps/einit/einit-0.40.0.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/einit/einit-0.40.0.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/einit/einit-0.40.0.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/einit/einit-0.40.0.ebuild?r1=1.7&r2=1.8

Index: einit-0.40.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/einit/einit-0.40.0.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- einit-0.40.0.ebuild	19 Feb 2009 09:35:30 -0000	1.7
+++ einit-0.40.0.ebuild	12 Mar 2009 00:50:05 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/einit/einit-0.40.0.ebuild,v 1.7 2009/02/19 09:35:30 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/einit/einit-0.40.0.ebuild,v 1.8 2009/03/12 00:50:05 fauli Exp $
 
 EAPI="1"
 
@@ -35,6 +35,7 @@
 src_unpack() {
 	unpack ${A} || die
 	python_version || die
+	cd "${S}" && epatch "${FILESDIR}"/${P}-open_mode.patch
 }
 
 src_compile() {






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

end of thread, other threads:[~2009-03-12  0:50 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-03-03 21:37 [gentoo-commits] gentoo-x86 commit in sys-apps/einit: ChangeLog einit-0.40.0.ebuild Christian Faulhammer (opfer)
  -- strict thread matches above, loose matches on Subject: below --
2009-02-19  9:35 Christian Faulhammer (fauli)
2009-03-12  0:50 Christian Faulhammer (fauli)

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