public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-misc/note/
@ 2019-02-05 16:24 Brian Evans
  0 siblings, 0 replies; 13+ messages in thread
From: Brian Evans @ 2019-02-05 16:24 UTC (permalink / raw
  To: gentoo-commits

commit:     a36e6460f1fa1464b82ef2c8673f995bd8d835d2
Author:     Brian Evans <grknight <AT> gentoo <DOT> org>
AuthorDate: Tue Feb  5 16:24:13 2019 +0000
Commit:     Brian Evans <grknight <AT> gentoo <DOT> org>
CommitDate: Tue Feb  5 16:24:13 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a36e6460

app-misc/note: EAPI bump, fix deps, general cleanup

Bug 665824 is forcing a dependency review as virtual/mysql is incorrect
This package simply will need DBD-mysql

While at it, remove the dodir/cp pairs for into{ins,exe}/do{ins,exe} pairs

This remains maintainer-needed as no real testing was done

Bug: https://bugs.gentoo.org/665824
Package-Manager: Portage-2.3.59, Repoman-2.3.12
Signed-off-by: Brian Evans <grknight <AT> gentoo.org>

 app-misc/note/note-1.3.3-r2.ebuild | 61 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 61 insertions(+)

diff --git a/app-misc/note/note-1.3.3-r2.ebuild b/app-misc/note/note-1.3.3-r2.ebuild
new file mode 100644
index 00000000000..fc0e6b7a020
--- /dev/null
+++ b/app-misc/note/note-1.3.3-r2.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit perl-module
+
+DESCRIPTION="A note taking perl program"
+HOMEPAGE="https://www.daemon.de/NOTE"
+SRC_URI="https://www.daemon.de/idisk/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? ( dev-perl/DBD-mysql )"
+RDEPEND="${DEPEND}"
+
+# extraneous README that gets installed into the perl module
+PERL_RM_FILES=( NOTEDB/README )
+
+src_prepare() {
+	# Supressing file not needed
+	local v
+	for v in mysql text dbm general; do
+		if ! use ${v}; then
+			PERL_RM_FILES+=( NOTEDB/${v}.pm )
+		fi
+	done
+	perl-module_src_prepare
+}
+
+src_install() {
+	perl-module_src_install
+
+	# Adding some basic utitily for testing note
+	exeinto /usr/share/${PN}
+	doexe bin/stresstest.sh
+
+	# Adding some help for mysql backend driver
+	if use mysql; then
+		insinto /usr/share/${PN}/mysql
+		exeinto /usr/share/${PN}/mysql
+		doins mysql/{README,sql,permissions}
+		doexe mysql/install.sh
+	fi
+
+	# Adding a sample configuration file
+	insinto /etc
+	doins config/noterc
+
+	dodoc UPGRADE VERSION
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/note/
@ 2021-01-10 18:30 Sam James
  0 siblings, 0 replies; 13+ messages in thread
From: Sam James @ 2021-01-10 18:30 UTC (permalink / raw
  To: gentoo-commits

commit:     f26e63017ac79590d66c1989d2ce900454717315
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 10 17:59:41 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Jan 10 18:29:59 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f26e6301

app-misc/note: bump to 1.3.26

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-misc/note/Manifest           |  1 +
 app-misc/note/note-1.3.26.ebuild | 66 ++++++++++++++++++++++++++++++++++++++++
 2 files changed, 67 insertions(+)

diff --git a/app-misc/note/Manifest b/app-misc/note/Manifest
index 1c24a54984f..39f5fafcdbe 100644
--- a/app-misc/note/Manifest
+++ b/app-misc/note/Manifest
@@ -1 +1,2 @@
+DIST note-1.3.26.tar.gz 53485 BLAKE2B b88fe67b708d85a60ea705caa99506a5ef59c442ed233b349cb07bf1cbc80514e8324b63f6e7a1ea6727e9742b11ecf4c460ecda818fc03de4532a132e3aa608 SHA512 4de22da10aef93e694cd1facb356666241435d2a468c25d43f42453c708d9a75b451820a01d952e587cca34b310a64c6e0069cdbe264376eb0cf50e3f852a252
 DIST note-1.3.3.tar.gz 42691 BLAKE2B f4dc9b5c006925c04706260ed0d11f1c5bfb0923786284401c1f824936a32b61a60e516b35070cb4dcd8302caec820aad37e02c31c5fd50a8931d4cba54ef5ad SHA512 99744394084eec3bf84ecef10b2bc294375f18f6ce41614316c4f4bc02a73297f4b3a956f48fb424bb0b0f100ea23debea49c1029887ca52043dd733de0fcfad

diff --git a/app-misc/note/note-1.3.26.ebuild b/app-misc/note/note-1.3.26.ebuild
new file mode 100644
index 00000000000..94a63b16431
--- /dev/null
+++ b/app-misc/note/note-1.3.26.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit perl-module
+
+DESCRIPTION="A note taking perl program"
+HOMEPAGE="https://www.daemon.de/NOTE"
+SRC_URI="https://www.daemon.de/idisk/Apps/note/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="crypt dbm general mysql text"
+
+DEPEND="
+	dev-perl/Config-General
+	dev-perl/TermReadKey
+	dev-perl/Term-ReadLine-Perl
+	dev-perl/YAML
+	virtual/perl-Storable
+	crypt? (
+		dev-perl/Crypt-CBC
+		dev-perl/Crypt-Blowfish
+		dev-perl/Crypt-DES
+	)
+	mysql? ( dev-perl/DBD-mysql )
+"
+RDEPEND="${DEPEND}"
+
+# extraneous README that gets installed into the perl module
+PERL_RM_FILES=( NOTEDB/README )
+
+src_prepare() {
+	# Supressing file not needed
+	local v
+	for v in mysql text dbm general; do
+		if ! use ${v}; then
+			PERL_RM_FILES+=( NOTEDB/${v}.pm )
+		fi
+	done
+	perl-module_src_prepare
+}
+
+src_install() {
+	perl-module_src_install
+
+	# Adding some basic utitily for testing note
+	exeinto /usr/share/${PN}
+	doexe bin/stresstest.sh
+
+	# Adding some help for mysql backend driver
+	if use mysql; then
+		insinto /usr/share/${PN}/mysql
+		exeinto /usr/share/${PN}/mysql
+		doins mysql/{README,sql,permissions}
+		doexe mysql/install.sh
+	fi
+
+	# Adding a sample configuration file
+	insinto /etc
+	doins config/noterc
+
+	dodoc UPGRADE VERSION
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/note/
@ 2021-01-10 18:30 Sam James
  0 siblings, 0 replies; 13+ messages in thread
From: Sam James @ 2021-01-10 18:30 UTC (permalink / raw
  To: gentoo-commits

commit:     f6105f3e97ed728ef8dedb8b87791e12c176a506
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 10 17:55:11 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Jan 10 18:29:58 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6105f3e

app-misc/note: fix metadata indentation

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-misc/note/metadata.xml | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/app-misc/note/metadata.xml b/app-misc/note/metadata.xml
index 83abb215223..275dead0366 100644
--- a/app-misc/note/metadata.xml
+++ b/app-misc/note/metadata.xml
@@ -1,9 +1,9 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-<!-- maintainer-needed -->
-<use>
-  <flag name="general">Add support for ascii flatfile backend</flag>
-  <flag name="text">Add support for text backend</flag>
-</use>
+	<!-- maintainer-needed -->
+	<use>
+		<flag name="general">Add support for ascii flatfile backend</flag>
+		<flag name="text">Add support for text backend</flag>
+	</use>
 </pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/note/
@ 2021-01-10 18:30 Sam James
  0 siblings, 0 replies; 13+ messages in thread
From: Sam James @ 2021-01-10 18:30 UTC (permalink / raw
  To: gentoo-commits

commit:     5b200d88226681576468a6bdaa081f06c2295e4f
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 10 17:55:34 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Jan 10 18:29:58 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b200d88

app-misc/note: add changelog metadata

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-misc/note/metadata.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/app-misc/note/metadata.xml b/app-misc/note/metadata.xml
index 275dead0366..e5943dae058 100644
--- a/app-misc/note/metadata.xml
+++ b/app-misc/note/metadata.xml
@@ -6,4 +6,7 @@
 		<flag name="general">Add support for ascii flatfile backend</flag>
 		<flag name="text">Add support for text backend</flag>
 	</use>
+	<upstream>
+		<changelog>https://www.daemon.de/idisk/txt/note.Changelog</changelog>
+	</upstream>
 </pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/note/
@ 2021-01-10 21:57 Sam James
  0 siblings, 0 replies; 13+ messages in thread
From: Sam James @ 2021-01-10 21:57 UTC (permalink / raw
  To: gentoo-commits

commit:     00643757aa83e23440ad0a269133dff89d82b0ba
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 10 21:57:19 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Jan 10 21:57:19 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00643757

app-misc/note: Stabilize 1.3.3-r2 ppc, #764851

Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-misc/note/note-1.3.3-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-misc/note/note-1.3.3-r2.ebuild b/app-misc/note/note-1.3.3-r2.ebuild
index fc0e6b7a020..d49517d9a04 100644
--- a/app-misc/note/note-1.3.3-r2.ebuild
+++ b/app-misc/note/note-1.3.3-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,7 +11,7 @@ SRC_URI="https://www.daemon.de/idisk/Apps/note/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="~amd64 ppc ~x86"
 IUSE="crypt dbm general mysql text"
 
 DEPEND="dev-perl/TermReadKey


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/note/
@ 2021-01-11  8:01 Sam James
  0 siblings, 0 replies; 13+ messages in thread
From: Sam James @ 2021-01-11  8:01 UTC (permalink / raw
  To: gentoo-commits

commit:     3a7bade6488cfe0d397fb832113430d95b571ec6
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 11 08:01:31 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jan 11 08:01:31 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a7bade6

app-misc/note: Stabilize 1.3.3-r2 x86, #764851

Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-misc/note/note-1.3.3-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/note/note-1.3.3-r2.ebuild b/app-misc/note/note-1.3.3-r2.ebuild
index d49517d9a04..d1e092b871d 100644
--- a/app-misc/note/note-1.3.3-r2.ebuild
+++ b/app-misc/note/note-1.3.3-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://www.daemon.de/idisk/Apps/note/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ppc ~x86"
+KEYWORDS="~amd64 ppc x86"
 IUSE="crypt dbm general mysql text"
 
 DEPEND="dev-perl/TermReadKey


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/note/
@ 2021-01-11  8:02 Sam James
  0 siblings, 0 replies; 13+ messages in thread
From: Sam James @ 2021-01-11  8:02 UTC (permalink / raw
  To: gentoo-commits

commit:     0fa4cbe335f11715c6e5fc58c808e7972fc582ab
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 11 08:02:34 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jan 11 08:02:34 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0fa4cbe3

app-misc/note: Stabilize 1.3.3-r2 amd64, #764851

Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-misc/note/note-1.3.3-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/note/note-1.3.3-r2.ebuild b/app-misc/note/note-1.3.3-r2.ebuild
index d1e092b871d..59c93175ac4 100644
--- a/app-misc/note/note-1.3.3-r2.ebuild
+++ b/app-misc/note/note-1.3.3-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://www.daemon.de/idisk/Apps/note/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ppc x86"
+KEYWORDS="amd64 ppc x86"
 IUSE="crypt dbm general mysql text"
 
 DEPEND="dev-perl/TermReadKey


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/note/
@ 2021-01-11  8:07 Sam James
  0 siblings, 0 replies; 13+ messages in thread
From: Sam James @ 2021-01-11  8:07 UTC (permalink / raw
  To: gentoo-commits

commit:     df4ccaa95c6250f50f25c14a2c2e4c796652dc51
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 11 08:06:22 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jan 11 08:06:22 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df4ccaa9

app-misc/note: cleanup old

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-misc/note/note-1.3.3-r1.ebuild | 55 --------------------------------------
 1 file changed, 55 deletions(-)

diff --git a/app-misc/note/note-1.3.3-r1.ebuild b/app-misc/note/note-1.3.3-r1.ebuild
deleted file mode 100644
index 35fba906d5d..00000000000
--- a/app-misc/note/note-1.3.3-r1.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-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 related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-misc/note/
@ 2021-02-09 22:52 Sam James
  0 siblings, 0 replies; 13+ messages in thread
From: Sam James @ 2021-02-09 22:52 UTC (permalink / raw
  To: gentoo-commits

commit:     18b0d40a6c578290a4f1fd1aca72371420f7c120
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Feb  9 22:52:02 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Feb  9 22:52:02 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18b0d40a

app-misc/note: Stabilize 1.3.26 amd64, #769662

Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-misc/note/note-1.3.26.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/note/note-1.3.26.ebuild b/app-misc/note/note-1.3.26.ebuild
index 94a63b16431..9a5352064ca 100644
--- a/app-misc/note/note-1.3.26.ebuild
+++ b/app-misc/note/note-1.3.26.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://www.daemon.de/idisk/Apps/note/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc ~x86"
 IUSE="crypt dbm general mysql text"
 
 DEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/note/
@ 2021-02-11  7:53 Sam James
  0 siblings, 0 replies; 13+ messages in thread
From: Sam James @ 2021-02-11  7:53 UTC (permalink / raw
  To: gentoo-commits

commit:     975ecc9db3910d78ace1ef12b835e914d1e86aea
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 11 07:53:27 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Feb 11 07:53:27 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=975ecc9d

app-misc/note: Stabilize 1.3.26 x86, #769662

Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-misc/note/note-1.3.26.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/note/note-1.3.26.ebuild b/app-misc/note/note-1.3.26.ebuild
index 9a5352064ca..248b317de6c 100644
--- a/app-misc/note/note-1.3.26.ebuild
+++ b/app-misc/note/note-1.3.26.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://www.daemon.de/idisk/Apps/note/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc x86"
 IUSE="crypt dbm general mysql text"
 
 DEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/note/
@ 2021-02-16 12:30 Sam James
  0 siblings, 0 replies; 13+ messages in thread
From: Sam James @ 2021-02-16 12:30 UTC (permalink / raw
  To: gentoo-commits

commit:     f18a7e9cf069dc934165e2f1c360c8fa23fa2f4a
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 16 12:29:33 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Feb 16 12:29:33 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f18a7e9c

app-misc/note: Stabilize 1.3.26 ppc, #769662

Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-misc/note/note-1.3.26.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/note/note-1.3.26.ebuild b/app-misc/note/note-1.3.26.ebuild
index 248b317de6c..b64e5a6b716 100644
--- a/app-misc/note/note-1.3.26.ebuild
+++ b/app-misc/note/note-1.3.26.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://www.daemon.de/idisk/Apps/note/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
+KEYWORDS="amd64 ppc x86"
 IUSE="crypt dbm general mysql text"
 
 DEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/note/
@ 2021-12-08 10:14 Yixun Lan
  0 siblings, 0 replies; 13+ messages in thread
From: Yixun Lan @ 2021-12-08 10:14 UTC (permalink / raw
  To: gentoo-commits

commit:     7926565ec61714441766ff6c20ccbadf773662f3
Author:     Yongxiang Liang <tanekliang <AT> gmail <DOT> com>
AuthorDate: Mon Dec  6 19:36:22 2021 +0000
Commit:     Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Wed Dec  8 10:11:56 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7926565e

app-misc/note: keyword ~riscv

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Yongxiang Liang <tanekliang <AT> gmail.com>
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>

 app-misc/note/note-1.3.26.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/note/note-1.3.26.ebuild b/app-misc/note/note-1.3.26.ebuild
index b64e5a6b716b..397bd6d1eb32 100644
--- a/app-misc/note/note-1.3.26.ebuild
+++ b/app-misc/note/note-1.3.26.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://www.daemon.de/idisk/Apps/note/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ppc x86"
+KEYWORDS="amd64 ppc ~riscv x86"
 IUSE="crypt dbm general mysql text"
 
 DEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/note/
@ 2023-05-27  8:38 Arthur Zamarin
  0 siblings, 0 replies; 13+ messages in thread
From: Arthur Zamarin @ 2023-05-27  8:38 UTC (permalink / raw
  To: gentoo-commits

commit:     34531c704acf95d096791768772b7c00f2e17791
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat May 27 08:38:19 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat May 27 08:38:19 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34531c70

app-misc/note: Keyword 1.3.26 arm64, #907077

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 app-misc/note/note-1.3.26.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-misc/note/note-1.3.26.ebuild b/app-misc/note/note-1.3.26.ebuild
index 397bd6d1eb32..c2c31e0e1a2a 100644
--- a/app-misc/note/note-1.3.26.ebuild
+++ b/app-misc/note/note-1.3.26.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -11,7 +11,7 @@ SRC_URI="https://www.daemon.de/idisk/Apps/note/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ppc ~riscv x86"
+KEYWORDS="amd64 ~arm64 ppc ~riscv x86"
 IUSE="crypt dbm general mysql text"
 
 DEPEND="


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

end of thread, other threads:[~2023-05-27  8:38 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-01-10 18:30 [gentoo-commits] repo/gentoo:master commit in: app-misc/note/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2023-05-27  8:38 Arthur Zamarin
2021-12-08 10:14 Yixun Lan
2021-02-16 12:30 Sam James
2021-02-11  7:53 Sam James
2021-02-09 22:52 Sam James
2021-01-11  8:07 Sam James
2021-01-11  8:02 Sam James
2021-01-11  8:01 Sam James
2021-01-10 21:57 Sam James
2021-01-10 18:30 Sam James
2021-01-10 18:30 Sam James
2019-02-05 16:24 Brian Evans

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