public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-forensics/libewf: ChangeLog libewf-20100226.ebuild
@ 2010-02-26 20:30 Patrick Lauer (patrick)
  0 siblings, 0 replies; 5+ messages in thread
From: Patrick Lauer (patrick) @ 2010-02-26 20:30 UTC (permalink / raw
  To: gentoo-commits

patrick     10/02/26 20:30:00

  Modified:             ChangeLog
  Added:                libewf-20100226.ebuild
  Log:
  Bump
  (Portage version: 2.2_rc63/cvs/Linux x86_64)

Revision  Changes    Path
1.7                  app-forensics/libewf/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-forensics/libewf/ChangeLog?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-forensics/libewf/ChangeLog?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-forensics/libewf/ChangeLog?r1=1.6&r2=1.7

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-forensics/libewf/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog	8 Nov 2009 11:54:19 -0000	1.6
+++ ChangeLog	26 Feb 2010 20:29:59 -0000	1.7
@@ -1,6 +1,11 @@
 # ChangeLog for app-forensics/libewf
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-forensics/libewf/ChangeLog,v 1.6 2009/11/08 11:54:19 patrick Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-forensics/libewf/ChangeLog,v 1.7 2010/02/26 20:29:59 patrick Exp $
+
+*libewf-20100226 (26 Feb 2010)
+
+  26 Feb 2010; Patrick Lauer <patrick@gentoo.org> +libewf-20100226.ebuild:
+  Bump
 
 *libewf-20091108 (08 Nov 2009)
 



1.1                  app-forensics/libewf/libewf-20100226.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-forensics/libewf/libewf-20100226.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-forensics/libewf/libewf-20100226.ebuild?rev=1.1&content-type=text/plain

Index: libewf-20100226.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-forensics/libewf/libewf-20100226.ebuild,v 1.1 2010/02/26 20:29:59 patrick Exp $

inherit eutils autotools

DESCRIPTION="Implementation of the EWF (SMART and EnCase) image format"
HOMEPAGE="http://libewf.sourceforge.net"
SRC_URI="mirror://sourceforge/libewf/${P}.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm ~hppa ~ppc ~s390 ~sparc ~x86"
# upstream bug #2597171, pyewf has implicit declarations
#IUSE="debug python rawio unicode"
IUSE="debug rawio unicode"

DEPEND="
	sys-libs/e2fsprogs-libs
	sys-libs/zlib
	dev-libs/openssl"
RDEPEND="${DEPEND}"

src_unpack() {
	unpack ${A}
	cd "${S}"
	eautoreconf
}

src_compile() {
	econf \
		$(use_enable unicode wide-character-type) \
		$(use_enable rawio raw-access) \
		$(use_enable debug verbose-output) \
		$(use_enable debug debug-output)
	emake
}

src_install() {
	emake install DESTDIR="${D}"
	dodoc AUTHORS ChangeLog NEWS README documents/*.txt
	doman manuals/*.1 manuals/*.3
}






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

* [gentoo-commits] gentoo-x86 commit in app-forensics/libewf: ChangeLog libewf-20100226.ebuild
@ 2010-02-27 10:25 Patrick Lauer (patrick)
  0 siblings, 0 replies; 5+ messages in thread
From: Patrick Lauer (patrick) @ 2010-02-27 10:25 UTC (permalink / raw
  To: gentoo-commits

patrick     10/02/27 10:25:20

  Modified:             ChangeLog libewf-20100226.ebuild
  Log:
  Improving rawio useflag for #307043. Thanks to Kalin KOZHUHAROV
  (Portage version: 2.2_rc63/cvs/Linux x86_64)

Revision  Changes    Path
1.8                  app-forensics/libewf/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-forensics/libewf/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog	26 Feb 2010 20:29:59 -0000	1.7
+++ ChangeLog	27 Feb 2010 10:25:19 -0000	1.8
@@ -1,6 +1,9 @@
 # ChangeLog for app-forensics/libewf
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-forensics/libewf/ChangeLog,v 1.7 2010/02/26 20:29:59 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-forensics/libewf/ChangeLog,v 1.8 2010/02/27 10:25:19 patrick Exp $
+
+  27 Feb 2010; Patrick Lauer <patrick@gentoo.org> libewf-20100226.ebuild:
+  Improving rawio useflag for #307043. Thanks to Kalin KOZHUHAROV
 
 *libewf-20100226 (26 Feb 2010)
 



1.2                  app-forensics/libewf/libewf-20100226.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-forensics/libewf/libewf-20100226.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-forensics/libewf/libewf-20100226.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-forensics/libewf/libewf-20100226.ebuild?r1=1.1&r2=1.2

Index: libewf-20100226.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-forensics/libewf/libewf-20100226.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libewf-20100226.ebuild	26 Feb 2010 20:29:59 -0000	1.1
+++ libewf-20100226.ebuild	27 Feb 2010 10:25:19 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-forensics/libewf/libewf-20100226.ebuild,v 1.1 2010/02/26 20:29:59 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-forensics/libewf/libewf-20100226.ebuild,v 1.2 2010/02/27 10:25:19 patrick Exp $
 
 inherit eutils autotools
 
@@ -30,7 +30,7 @@
 src_compile() {
 	econf \
 		$(use_enable unicode wide-character-type) \
-		$(use_enable rawio raw-access) \
+		$(use_enable rawio low-level-functions) \
 		$(use_enable debug verbose-output) \
 		$(use_enable debug debug-output)
 	emake






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

* [gentoo-commits] gentoo-x86 commit in app-forensics/libewf: ChangeLog libewf-20100226.ebuild
@ 2011-07-10 15:44 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 5+ messages in thread
From: Markos Chandras (hwoarang) @ 2011-07-10 15:44 UTC (permalink / raw
  To: gentoo-commits

hwoarang    11/07/10 15:44:18

  Modified:             ChangeLog libewf-20100226.ebuild
  Log:
  Stable on amd64 wrt bug #374321
  
  (Portage version: 2.2.0_alpha43/cvs/Linux x86_64)

Revision  Changes    Path
1.9                  app-forensics/libewf/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/libewf/ChangeLog?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/libewf/ChangeLog?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/libewf/ChangeLog?r1=1.8&r2=1.9

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-forensics/libewf/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog	27 Feb 2010 10:25:19 -0000	1.8
+++ ChangeLog	10 Jul 2011 15:44:18 -0000	1.9
@@ -1,6 +1,9 @@
 # ChangeLog for app-forensics/libewf
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-forensics/libewf/ChangeLog,v 1.8 2010/02/27 10:25:19 patrick Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-forensics/libewf/ChangeLog,v 1.9 2011/07/10 15:44:18 hwoarang Exp $
+
+  10 Jul 2011; Markos Chandras <hwoarang@gentoo.org> libewf-20100226.ebuild:
+  Stable on amd64 wrt bug #374321
 
   27 Feb 2010; Patrick Lauer <patrick@gentoo.org> libewf-20100226.ebuild:
   Improving rawio useflag for #307043. Thanks to Kalin KOZHUHAROV



1.3                  app-forensics/libewf/libewf-20100226.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/libewf/libewf-20100226.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/libewf/libewf-20100226.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/libewf/libewf-20100226.ebuild?r1=1.2&r2=1.3

Index: libewf-20100226.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-forensics/libewf/libewf-20100226.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- libewf-20100226.ebuild	27 Feb 2010 10:25:19 -0000	1.2
+++ libewf-20100226.ebuild	10 Jul 2011 15:44:18 -0000	1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-forensics/libewf/libewf-20100226.ebuild,v 1.2 2010/02/27 10:25:19 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-forensics/libewf/libewf-20100226.ebuild,v 1.3 2011/07/10 15:44:18 hwoarang Exp $
 
 inherit eutils autotools
 
@@ -10,7 +10,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~s390 ~sparc ~x86"
+KEYWORDS="amd64 ~arm ~hppa ~ppc ~s390 ~sparc ~x86"
 # upstream bug #2597171, pyewf has implicit declarations
 #IUSE="debug python rawio unicode"
 IUSE="debug rawio unicode"






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

* [gentoo-commits] gentoo-x86 commit in app-forensics/libewf: ChangeLog libewf-20100226.ebuild
@ 2011-07-17 20:38 Markus Meier (maekke)
  0 siblings, 0 replies; 5+ messages in thread
From: Markus Meier (maekke) @ 2011-07-17 20:38 UTC (permalink / raw
  To: gentoo-commits

maekke      11/07/17 20:38:24

  Modified:             ChangeLog libewf-20100226.ebuild
  Log:
  x86 stable, bug #374321
  
  (Portage version: 2.1.10.6/cvs/Linux x86_64)

Revision  Changes    Path
1.10                 app-forensics/libewf/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/libewf/ChangeLog?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/libewf/ChangeLog?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/libewf/ChangeLog?r1=1.9&r2=1.10

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-forensics/libewf/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog	10 Jul 2011 15:44:18 -0000	1.9
+++ ChangeLog	17 Jul 2011 20:38:24 -0000	1.10
@@ -1,6 +1,9 @@
 # ChangeLog for app-forensics/libewf
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-forensics/libewf/ChangeLog,v 1.9 2011/07/10 15:44:18 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-forensics/libewf/ChangeLog,v 1.10 2011/07/17 20:38:24 maekke Exp $
+
+  17 Jul 2011; Markus Meier <maekke@gentoo.org> libewf-20100226.ebuild:
+  x86 stable, bug #374321
 
   10 Jul 2011; Markos Chandras <hwoarang@gentoo.org> libewf-20100226.ebuild:
   Stable on amd64 wrt bug #374321



1.4                  app-forensics/libewf/libewf-20100226.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/libewf/libewf-20100226.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/libewf/libewf-20100226.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/libewf/libewf-20100226.ebuild?r1=1.3&r2=1.4

Index: libewf-20100226.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-forensics/libewf/libewf-20100226.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- libewf-20100226.ebuild	10 Jul 2011 15:44:18 -0000	1.3
+++ libewf-20100226.ebuild	17 Jul 2011 20:38:24 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-forensics/libewf/libewf-20100226.ebuild,v 1.3 2011/07/10 15:44:18 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-forensics/libewf/libewf-20100226.ebuild,v 1.4 2011/07/17 20:38:24 maekke Exp $
 
 inherit eutils autotools
 
@@ -10,7 +10,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~hppa ~ppc ~s390 ~sparc ~x86"
+KEYWORDS="amd64 ~arm ~hppa ~ppc ~s390 ~sparc x86"
 # upstream bug #2597171, pyewf has implicit declarations
 #IUSE="debug python rawio unicode"
 IUSE="debug rawio unicode"






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

* [gentoo-commits] gentoo-x86 commit in app-forensics/libewf: ChangeLog libewf-20100226.ebuild
@ 2011-10-11 17:09 Jeroen Roovers (jer)
  0 siblings, 0 replies; 5+ messages in thread
From: Jeroen Roovers (jer) @ 2011-10-11 17:09 UTC (permalink / raw
  To: gentoo-commits

jer         11/10/11 17:09:32

  Modified:             ChangeLog libewf-20100226.ebuild
  Log:
  Stable for HPPA (bug #374321).
  
  (Portage version: 2.2.0_alpha66/cvs/Linux x86_64)

Revision  Changes    Path
1.14                 app-forensics/libewf/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/libewf/ChangeLog?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/libewf/ChangeLog?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/libewf/ChangeLog?r1=1.13&r2=1.14

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-forensics/libewf/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog	28 Sep 2011 01:13:18 -0000	1.13
+++ ChangeLog	11 Oct 2011 17:09:32 -0000	1.14
@@ -1,6 +1,9 @@
 # ChangeLog for app-forensics/libewf
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-forensics/libewf/ChangeLog,v 1.13 2011/09/28 01:13:18 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-forensics/libewf/ChangeLog,v 1.14 2011/10/11 17:09:32 jer Exp $
+
+  11 Oct 2011; Jeroen Roovers <jer@gentoo.org> libewf-20100226.ebuild:
+  Stable for HPPA (bug #374321).
 
   28 Sep 2011; Tim Harder <radhermit@gentoo.org> libewf-20100226-r1.ebuild:
   Update to EAPI 4 and add static-libs use flag.



1.6                  app-forensics/libewf/libewf-20100226.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/libewf/libewf-20100226.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/libewf/libewf-20100226.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/libewf/libewf-20100226.ebuild?r1=1.5&r2=1.6

Index: libewf-20100226.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-forensics/libewf/libewf-20100226.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- libewf-20100226.ebuild	24 Jul 2011 18:24:51 -0000	1.5
+++ libewf-20100226.ebuild	11 Oct 2011 17:09:32 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-forensics/libewf/libewf-20100226.ebuild,v 1.5 2011/07/24 18:24:51 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-forensics/libewf/libewf-20100226.ebuild,v 1.6 2011/10/11 17:09:32 jer Exp $
 
 inherit eutils autotools
 
@@ -10,7 +10,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~hppa ~ppc x86"
+KEYWORDS="amd64 hppa ~ppc x86"
 # upstream bug #2597171, pyewf has implicit declarations
 #IUSE="debug python rawio unicode"
 IUSE="debug rawio unicode"






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

end of thread, other threads:[~2011-10-11 17:25 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-26 20:30 [gentoo-commits] gentoo-x86 commit in app-forensics/libewf: ChangeLog libewf-20100226.ebuild Patrick Lauer (patrick)
  -- strict thread matches above, loose matches on Subject: below --
2010-02-27 10:25 Patrick Lauer (patrick)
2011-07-10 15:44 Markos Chandras (hwoarang)
2011-07-17 20:38 Markus Meier (maekke)
2011-10-11 17:09 Jeroen Roovers (jer)

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