public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-power/suspend: suspend-1.0.ebuild ChangeLog
@ 2011-05-05 21:42 Michael Weber (xmw)
  0 siblings, 0 replies; 5+ messages in thread
From: Michael Weber (xmw) @ 2011-05-05 21:42 UTC (permalink / raw
  To: gentoo-commits

xmw         11/05/05 21:42:46

  Modified:             ChangeLog
  Added:                suspend-1.0.ebuild
  Log:
  Version bump
  
  (Portage version: 2.1.9.42/cvs/Linux x86_64)

Revision  Changes    Path
1.19                 sys-power/suspend/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/suspend/ChangeLog?rev=1.19&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/suspend/ChangeLog?rev=1.19&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/suspend/ChangeLog?r1=1.18&r2=1.19

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-power/suspend/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog	14 Feb 2011 22:20:54 -0000	1.18
+++ ChangeLog	5 May 2011 21:42:46 -0000	1.19
@@ -1,6 +1,11 @@
 # ChangeLog for sys-power/suspend
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-power/suspend/ChangeLog,v 1.18 2011/02/14 22:20:54 sping Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-power/suspend/ChangeLog,v 1.19 2011/05/05 21:42:46 xmw Exp $
+
+*suspend-1.0 (05 May 2011)
+
+  05 May 2011; Michael Weber <xmw@gentoo.org> +suspend-1.0.ebuild:
+  Version bump, thanks to Aleksey Kunitskiy for the hint (bug 365327)
 
   14 Feb 2011; Sebastian Pipping <sping@gentoo.org> suspend-0.9_pre0.ebuild:
   For USE=crypt depend on dev-libs/libgcrypt[static-libs] and



1.1                  sys-power/suspend/suspend-1.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/suspend/suspend-1.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/suspend/suspend-1.0.ebuild?rev=1.1&content-type=text/plain

Index: suspend-1.0.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-power/suspend/suspend-1.0.ebuild,v 1.1 2011/05/05 21:42:46 xmw Exp $

EAPI=2

inherit autotools eutils

DESCRIPTION="Userspace Software Suspend and S2Ram"
HOMEPAGE="http://suspend.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P/-/-utils-}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="fbsplash crypt threads"

X86_RDEPEND="dev-libs/libx86"
X86_DEPEND="
	${X86_RDEPEND}
	>=sys-apps/pciutils-2.2.4"
RDEPEND=">=dev-libs/lzo-2[static-libs]
	fbsplash? ( >=media-gfx/splashutils-1.5.2 )
	crypt? ( dev-libs/libgcrypt[static-libs]
		dev-libs/libgpg-error[static-libs] )
	x86? ( ${X86_RDEPEND} )
	amd64? ( ${X86_RDEPEND} )"
DEPEND="${RDEPEND}
	x86? ( ${X86_DEPEND} )
	amd64? ( ${X86_DEPEND} )
	dev-util/pkgconfig"

S="${WORKDIR}/${P/-/-utils-}"

src_prepare() {
	epatch "${FILESDIR}"/${PN}-0.9_pre0-errno.patch
	sed -i -e "/AC_INIT/s/0\.8/0.9-${MY_GIT_SHORT_COMMIT}/" configure.ac || die
	eautoreconf
}

src_configure() {
	econf \
		--docdir="/usr/share/doc/${PF}" \
		--enable-compress \
		$(use_enable crypt encrypt) \
		$(use_enable fbsplash) \
		$(use_enable threads) \
		|| die
}

src_install() {
	emake install DESTDIR="${D}" || die
}

pkg_postinst() {
	elog "In order to make this package work with genkernel see:"
	elog "http://bugs.gentoo.org/show_bug.cgi?id=156445"
}






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

* [gentoo-commits] gentoo-x86 commit in sys-power/suspend: suspend-1.0.ebuild ChangeLog
@ 2012-05-22 13:26 Michael Weber (xmw)
  0 siblings, 0 replies; 5+ messages in thread
From: Michael Weber (xmw) @ 2012-05-22 13:26 UTC (permalink / raw
  To: gentoo-commits

xmw         12/05/22 13:26:18

  Modified:             suspend-1.0.ebuild ChangeLog
  Log:
  Fix freetype[bzip2] link problem (bug 416955, thanks tokiclover)
  
  (Portage version: 2.1.10.62/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  sys-power/suspend/suspend-1.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/suspend/suspend-1.0.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/suspend/suspend-1.0.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/suspend/suspend-1.0.ebuild?r1=1.3&r2=1.4

Index: suspend-1.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-power/suspend/suspend-1.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- suspend-1.0.ebuild	4 May 2012 07:36:59 -0000	1.3
+++ suspend-1.0.ebuild	22 May 2012 13:26:18 -0000	1.4
@@ -1,8 +1,8 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-power/suspend/suspend-1.0.ebuild,v 1.3 2012/05/04 07:36:59 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-power/suspend/suspend-1.0.ebuild,v 1.4 2012/05/22 13:26:18 xmw Exp $
 
-EAPI=2
+EAPI=4
 
 inherit autotools eutils
 
@@ -34,6 +34,8 @@
 
 src_prepare() {
 	epatch "${FILESDIR}"/${P}-errno.patch
+	epatch "${FILESDIR}"/${P}-bzip2.patch
+	eautoreconf
 }
 
 src_configure() {
@@ -42,12 +44,12 @@
 		--enable-compress \
 		$(use_enable crypt encrypt) \
 		$(use_enable fbsplash) \
-		$(use_enable threads) \
-		|| die
+		$(use_enable threads)
 }
 
 src_install() {
-	emake install DESTDIR="${D}" || die
+	dodir etc
+	emake DESTDIR="${D}" install
 }
 
 pkg_postinst() {



1.23                 sys-power/suspend/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/suspend/ChangeLog?rev=1.23&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/suspend/ChangeLog?rev=1.23&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/suspend/ChangeLog?r1=1.22&r2=1.23

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-power/suspend/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog	4 May 2012 07:36:59 -0000	1.22
+++ ChangeLog	22 May 2012 13:26:18 -0000	1.23
@@ -1,6 +1,10 @@
 # ChangeLog for sys-power/suspend
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-power/suspend/ChangeLog,v 1.22 2012/05/04 07:36:59 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-power/suspend/ChangeLog,v 1.23 2012/05/22 13:26:18 xmw Exp $
+
+  22 May 2012; Michael Weber <xmw@gentoo.org> suspend-1.0.ebuild,
+  +files/suspend-1.0-bzip2.patch:
+  Fix freetype[bzip2] link problem (bug 416955, thanks tokiclover)
 
   04 May 2012; Jeff Horelick <jdhore@gentoo.org> suspend-0.8-r1.ebuild,
   suspend-1.0.ebuild:






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

* [gentoo-commits] gentoo-x86 commit in sys-power/suspend: suspend-1.0.ebuild ChangeLog
@ 2013-04-30 12:49 Michael Weber (xmw)
  0 siblings, 0 replies; 5+ messages in thread
From: Michael Weber (xmw) @ 2013-04-30 12:49 UTC (permalink / raw
  To: gentoo-commits

xmw         13/04/30 12:49:50

  Modified:             suspend-1.0.ebuild ChangeLog
  Log:
  Fix automake-1.13, thanks F. Delente, bug 467950.
  
  (Portage version: 2.2.0_alpha173/cvs/Linux x86_64, signed Manifest commit with key 62EEF090)

Revision  Changes    Path
1.5                  sys-power/suspend/suspend-1.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/suspend/suspend-1.0.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/suspend/suspend-1.0.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/suspend/suspend-1.0.ebuild?r1=1.4&r2=1.5

Index: suspend-1.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-power/suspend/suspend-1.0.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- suspend-1.0.ebuild	22 May 2012 13:26:18 -0000	1.4
+++ suspend-1.0.ebuild	30 Apr 2013 12:49:50 -0000	1.5
@@ -1,6 +1,6 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-power/suspend/suspend-1.0.ebuild,v 1.4 2012/05/22 13:26:18 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-power/suspend/suspend-1.0.ebuild,v 1.5 2013/04/30 12:49:50 xmw Exp $
 
 EAPI=4
 
@@ -33,8 +33,10 @@
 S="${WORKDIR}/${P/-/-utils-}"
 
 src_prepare() {
-	epatch "${FILESDIR}"/${P}-errno.patch
-	epatch "${FILESDIR}"/${P}-bzip2.patch
+	epatch \
+		"${FILESDIR}"/${P}-errno.patch \
+		"${FILESDIR}"/${P}-bzip2.patch \
+		"${FILESDIR}"/${P}-automake-1.13.patch
 	eautoreconf
 }
 



1.24                 sys-power/suspend/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/suspend/ChangeLog?rev=1.24&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/suspend/ChangeLog?rev=1.24&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/suspend/ChangeLog?r1=1.23&r2=1.24

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-power/suspend/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog	22 May 2012 13:26:18 -0000	1.23
+++ ChangeLog	30 Apr 2013 12:49:50 -0000	1.24
@@ -1,6 +1,10 @@
 # ChangeLog for sys-power/suspend
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-power/suspend/ChangeLog,v 1.23 2012/05/22 13:26:18 xmw Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-power/suspend/ChangeLog,v 1.24 2013/04/30 12:49:50 xmw Exp $
+
+  30 Apr 2013; Michael Weber <xmw@gentoo.org>
+  +files/suspend-1.0-automake-1.13.patch, suspend-1.0.ebuild:
+  Fix automake-1.13, thanks F. Delente, bug 467950.
 
   22 May 2012; Michael Weber <xmw@gentoo.org> suspend-1.0.ebuild,
   +files/suspend-1.0-bzip2.patch:
@@ -104,4 +108,3 @@
   17 Sep 2007; Alon Bar-Lev <alonbl@gentoo.org> +metadata.xml,
   +suspend-0.9_pre20070917.ebuild:
   Initial add, bug#156431
-





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

* [gentoo-commits] gentoo-x86 commit in sys-power/suspend: suspend-1.0.ebuild ChangeLog
@ 2013-05-11 10:37 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-11 10:37 UTC (permalink / raw
  To: gentoo-commits

ago         13/05/11 10:37:43

  Modified:             suspend-1.0.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #469386
  
  (Portage version: 2.1.11.63/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.6                  sys-power/suspend/suspend-1.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/suspend/suspend-1.0.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/suspend/suspend-1.0.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/suspend/suspend-1.0.ebuild?r1=1.5&r2=1.6

Index: suspend-1.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-power/suspend/suspend-1.0.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- suspend-1.0.ebuild	30 Apr 2013 12:49:50 -0000	1.5
+++ suspend-1.0.ebuild	11 May 2013 10:37:43 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-power/suspend/suspend-1.0.ebuild,v 1.5 2013/04/30 12:49:50 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-power/suspend/suspend-1.0.ebuild,v 1.6 2013/05/11 10:37:43 ago Exp $
 
 EAPI=4
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="fbsplash crypt threads"
 
 X86_RDEPEND="dev-libs/libx86"



1.25                 sys-power/suspend/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/suspend/ChangeLog?rev=1.25&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/suspend/ChangeLog?rev=1.25&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/suspend/ChangeLog?r1=1.24&r2=1.25

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-power/suspend/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog	30 Apr 2013 12:49:50 -0000	1.24
+++ ChangeLog	11 May 2013 10:37:43 -0000	1.25
@@ -1,6 +1,9 @@
 # ChangeLog for sys-power/suspend
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-power/suspend/ChangeLog,v 1.24 2013/04/30 12:49:50 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-power/suspend/ChangeLog,v 1.25 2013/05/11 10:37:43 ago Exp $
+
+  11 May 2013; Agostino Sarubbo <ago@gentoo.org> suspend-1.0.ebuild:
+  Stable for amd64, wrt bug #469386
 
   30 Apr 2013; Michael Weber <xmw@gentoo.org>
   +files/suspend-1.0-automake-1.13.patch, suspend-1.0.ebuild:





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

* [gentoo-commits] gentoo-x86 commit in sys-power/suspend: suspend-1.0.ebuild ChangeLog
@ 2013-05-11 11:02 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-11 11:02 UTC (permalink / raw
  To: gentoo-commits

ago         13/05/11 11:02:43

  Modified:             suspend-1.0.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #469386
  
  (Portage version: 2.1.11.63/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.7                  sys-power/suspend/suspend-1.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/suspend/suspend-1.0.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/suspend/suspend-1.0.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/suspend/suspend-1.0.ebuild?r1=1.6&r2=1.7

Index: suspend-1.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-power/suspend/suspend-1.0.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- suspend-1.0.ebuild	11 May 2013 10:37:43 -0000	1.6
+++ suspend-1.0.ebuild	11 May 2013 11:02:43 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-power/suspend/suspend-1.0.ebuild,v 1.6 2013/05/11 10:37:43 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-power/suspend/suspend-1.0.ebuild,v 1.7 2013/05/11 11:02:43 ago Exp $
 
 EAPI=4
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="fbsplash crypt threads"
 
 X86_RDEPEND="dev-libs/libx86"



1.26                 sys-power/suspend/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/suspend/ChangeLog?rev=1.26&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/suspend/ChangeLog?rev=1.26&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/suspend/ChangeLog?r1=1.25&r2=1.26

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-power/suspend/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog	11 May 2013 10:37:43 -0000	1.25
+++ ChangeLog	11 May 2013 11:02:43 -0000	1.26
@@ -1,6 +1,9 @@
 # ChangeLog for sys-power/suspend
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-power/suspend/ChangeLog,v 1.25 2013/05/11 10:37:43 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-power/suspend/ChangeLog,v 1.26 2013/05/11 11:02:43 ago Exp $
+
+  11 May 2013; Agostino Sarubbo <ago@gentoo.org> suspend-1.0.ebuild:
+  Stable for x86, wrt bug #469386
 
   11 May 2013; Agostino Sarubbo <ago@gentoo.org> suspend-1.0.ebuild:
   Stable for amd64, wrt bug #469386





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

end of thread, other threads:[~2013-05-11 11:02 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-11 11:02 [gentoo-commits] gentoo-x86 commit in sys-power/suspend: suspend-1.0.ebuild ChangeLog Agostino Sarubbo (ago)
  -- strict thread matches above, loose matches on Subject: below --
2013-05-11 10:37 Agostino Sarubbo (ago)
2013-04-30 12:49 Michael Weber (xmw)
2012-05-22 13:26 Michael Weber (xmw)
2011-05-05 21:42 Michael Weber (xmw)

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