public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-misc/note: note-1.3.3-r1.ebuild ChangeLog
@ 2013-08-28 13:16 Ian Delaney (idella4)
  0 siblings, 0 replies; 4+ messages in thread
From: Ian Delaney (idella4) @ 2013-08-28 13:16 UTC (permalink / raw
  To: gentoo-commits

idella4     13/08/28 13:16:24

  Modified:             ChangeLog
  Added:                note-1.3.3-r1.ebuild
  Log:
  revbump -> EAPI 5
  
  (Portage version: 2.2.0/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)

Revision  Changes    Path
1.25                 app-misc/note/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/note/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog	31 Jul 2008 16:45:08 -0000	1.24
+++ ChangeLog	28 Aug 2013 13:16:24 -0000	1.25
@@ -1,6 +1,11 @@
 # ChangeLog for app-misc/note
-# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/note/ChangeLog,v 1.24 2008/07/31 16:45:08 ulm Exp $
+# Copyright 2000-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-misc/note/ChangeLog,v 1.25 2013/08/28 13:16:24 idella4 Exp $
+
+*note-1.3.3-r1 (28 Aug 2013)
+
+  28 Aug 2013; Ian Delaney <idella4@gentoo.org> +note-1.3.3-r1.ebuild:
+  revbump -> EAPI 5
 
   31 Jul 2008; Ulrich Mueller <ulm@gentoo.org> metadata.xml:
   Add USE flag description to metadata wrt GLEP 56.
@@ -80,4 +85,3 @@
 
   21 Jan 2004; <rphillips@gentoo.org> note-1.2.5.ebuild:
   New package.
-



1.1                  app-misc/note/note-1.3.3-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/note/note-1.3.3-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/note/note-1.3.3-r1.ebuild?rev=1.1&content-type=text/plain

Index: note-1.3.3-r1.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/note/note-1.3.3-r1.ebuild,v 1.1 2013/08/28 13:16:24 idella4 Exp $

EAPI=5

inherit perl-module

DESCRIPTION="A note taking perl program"
HOMEPAGE="http://www.daemon.de/NOTE"
SRC_URI="http://www.daemon.de/files/mirror/ftp.daemon.de/scip/Apps/note/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="crypt dbm general mysql text"

DEPEND="dev-perl/TermReadKey
	dev-perl/Term-ReadLine-Perl
	virtual/perl-Storable
	dev-perl/config-general
	crypt? ( dev-perl/crypt-cbc
		dev-perl/Crypt-Blowfish
		dev-perl/Crypt-DES )
	mysql? ( virtual/mysql
		dev-perl/DBD-mysql )"
RDEPEND=""

src_install() {
	perl-module_src_install

	# Adding some basic utitily for testing note
	dodir /usr/share/${PN}
	cp "${S}/bin/stresstest.sh" "${D}/usr/share/${PN}"

	# Adding some help for mysql backend driver
	if use mysql; then
		dodir /usr/share/${PN}/mysql
		cp -r "${S}/mysql" "${D}/usr/share/${PN}"
	fi

	# Adding a sample configuration file
	dodir /etc
	cp "${S}/config/noterc" "${D}/etc"

	# Supressing file not needed
	for v in mysql text dbm general; do
		if ! use ${v}; then
			for u in `find "${D}" -type f -name *${v}.*pm`; do
				rm "${u}"
			done
		fi
	done

	dodoc UPGRADE VERSION
}





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

* [gentoo-commits] gentoo-x86 commit in app-misc/note: note-1.3.3-r1.ebuild ChangeLog
@ 2013-12-21 15:51 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 4+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-12-21 15:51 UTC (permalink / raw
  To: gentoo-commits

ago         13/12/21 15:51:37

  Modified:             note-1.3.3-r1.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #491926
  
  (Portage version: 2.2.1/cvs/Linux ppc64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.3                  app-misc/note/note-1.3.3-r1.ebuild

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

Index: note-1.3.3-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/note/note-1.3.3-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- note-1.3.3-r1.ebuild	10 Dec 2013 11:02:58 -0000	1.2
+++ note-1.3.3-r1.ebuild	21 Dec 2013 15:51:37 -0000	1.3
@@ -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/app-misc/note/note-1.3.3-r1.ebuild,v 1.2 2013/12/10 11:02:58 nimiux Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/note/note-1.3.3-r1.ebuild,v 1.3 2013/12/21 15:51:37 ago Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~x86"
+KEYWORDS="amd64 ppc ~x86"
 IUSE="crypt dbm general mysql text"
 
 DEPEND="dev-perl/TermReadKey



1.27                 app-misc/note/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/note/ChangeLog?rev=1.27&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/note/ChangeLog?rev=1.27&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/note/ChangeLog?r1=1.26&r2=1.27

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/note/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog	10 Dec 2013 11:02:58 -0000	1.26
+++ ChangeLog	21 Dec 2013 15:51:37 -0000	1.27
@@ -1,6 +1,9 @@
 # ChangeLog for app-misc/note
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/note/ChangeLog,v 1.26 2013/12/10 11:02:58 nimiux Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/note/ChangeLog,v 1.27 2013/12/21 15:51:37 ago Exp $
+
+  21 Dec 2013; Agostino Sarubbo <ago@gentoo.org> note-1.3.3-r1.ebuild:
+  Stable for ppc, wrt bug #491926
 
   10 Dec 2013; Chema Alonso <nimiux@gentoo.org> note-1.3.3-r1.ebuild:
   Stable for amd64 wrt bug #491926





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

* [gentoo-commits] gentoo-x86 commit in app-misc/note: note-1.3.3-r1.ebuild ChangeLog
@ 2013-12-24 12:55 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 4+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-12-24 12:55 UTC (permalink / raw
  To: gentoo-commits

ago         13/12/24 12:55:08

  Modified:             note-1.3.3-r1.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #491926
  
  (Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.4                  app-misc/note/note-1.3.3-r1.ebuild

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

Index: note-1.3.3-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/note/note-1.3.3-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- note-1.3.3-r1.ebuild	21 Dec 2013 15:51:37 -0000	1.3
+++ note-1.3.3-r1.ebuild	24 Dec 2013 12:55:08 -0000	1.4
@@ -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/app-misc/note/note-1.3.3-r1.ebuild,v 1.3 2013/12/21 15:51:37 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/note/note-1.3.3-r1.ebuild,v 1.4 2013/12/24 12:55:08 ago Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ppc ~x86"
+KEYWORDS="amd64 ppc x86"
 IUSE="crypt dbm general mysql text"
 
 DEPEND="dev-perl/TermReadKey



1.28                 app-misc/note/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/note/ChangeLog?rev=1.28&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/note/ChangeLog?rev=1.28&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/note/ChangeLog?r1=1.27&r2=1.28

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/note/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog	21 Dec 2013 15:51:37 -0000	1.27
+++ ChangeLog	24 Dec 2013 12:55:08 -0000	1.28
@@ -1,6 +1,9 @@
 # ChangeLog for app-misc/note
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/note/ChangeLog,v 1.27 2013/12/21 15:51:37 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/note/ChangeLog,v 1.28 2013/12/24 12:55:08 ago Exp $
+
+  24 Dec 2013; Agostino Sarubbo <ago@gentoo.org> note-1.3.3-r1.ebuild:
+  Stable for x86, wrt bug #491926
 
   21 Dec 2013; Agostino Sarubbo <ago@gentoo.org> note-1.3.3-r1.ebuild:
   Stable for ppc, wrt bug #491926





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

* [gentoo-commits] gentoo-x86 commit in app-misc/note: note-1.3.3-r1.ebuild ChangeLog
@ 2015-04-02  7:26 Mikle Kolyada (zlogene)
  0 siblings, 0 replies; 4+ messages in thread
From: Mikle Kolyada (zlogene) @ 2015-04-02  7:26 UTC (permalink / raw
  To: gentoo-commits

zlogene     15/04/02 07:26:57

  Modified:             note-1.3.3-r1.ebuild ChangeLog
  Log:
  Fix broken dependency
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xC42EB5D6)

Revision  Changes    Path
1.5                  app-misc/note/note-1.3.3-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/note/note-1.3.3-r1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/note/note-1.3.3-r1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/note/note-1.3.3-r1.ebuild?r1=1.4&r2=1.5

Index: note-1.3.3-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/note/note-1.3.3-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- note-1.3.3-r1.ebuild	24 Dec 2013 12:55:08 -0000	1.4
+++ note-1.3.3-r1.ebuild	2 Apr 2015 07:26:57 -0000	1.5
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/note/note-1.3.3-r1.ebuild,v 1.4 2013/12/24 12:55:08 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/note/note-1.3.3-r1.ebuild,v 1.5 2015/04/02 07:26:57 zlogene Exp $
 
 EAPI=5
 
@@ -18,7 +18,7 @@
 DEPEND="dev-perl/TermReadKey
 	dev-perl/Term-ReadLine-Perl
 	virtual/perl-Storable
-	dev-perl/config-general
+	dev-perl/Config-General
 	crypt? ( dev-perl/crypt-cbc
 		dev-perl/Crypt-Blowfish
 		dev-perl/Crypt-DES )



1.30                 app-misc/note/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/note/ChangeLog?rev=1.30&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/note/ChangeLog?rev=1.30&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/note/ChangeLog?r1=1.29&r2=1.30

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/note/ChangeLog,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- ChangeLog	24 Jan 2014 19:43:08 -0000	1.29
+++ ChangeLog	2 Apr 2015 07:26:57 -0000	1.30
@@ -1,6 +1,9 @@
 # ChangeLog for app-misc/note
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/note/ChangeLog,v 1.29 2014/01/24 19:43:08 zlogene Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-misc/note/ChangeLog,v 1.30 2015/04/02 07:26:57 zlogene Exp $
+
+  02 Apr 2015; Mikle Kolyada <zlogene@gentoo.org> note-1.3.3-r1.ebuild:
+  Fix broken dependency
 
   24 Jan 2014; Mikle Kolyada <zlogene@gentoo.org> -note-1.3.3.ebuild:
   Remove version with old EAPI





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

end of thread, other threads:[~2015-04-02  7:27 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-02  7:26 [gentoo-commits] gentoo-x86 commit in app-misc/note: note-1.3.3-r1.ebuild ChangeLog Mikle Kolyada (zlogene)
  -- strict thread matches above, loose matches on Subject: below --
2013-12-24 12:55 Agostino Sarubbo (ago)
2013-12-21 15:51 Agostino Sarubbo (ago)
2013-08-28 13:16 Ian Delaney (idella4)

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