public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: mail-client/bower/
@ 2018-11-22 20:29 Michał Górny
  0 siblings, 0 replies; 11+ messages in thread
From: Michał Górny @ 2018-11-22 20:29 UTC (permalink / raw
  To: gentoo-commits

commit:     ec2f57caada3e15faca5b08b845bcd831b3cfca4
Author:     Ralph Seichter <github <AT> seichter <DOT> de>
AuthorDate: Fri Oct 19 19:56:39 2018 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Nov 22 20:27:35 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec2f57ca

mail-client/bower: terminal client for Notmuch (new package)

Bower is a curses frontend for the Notmuch email system, written
in Mercury.

Bug: https://bugs.gentoo.org/405843
Package-Manager: Portage-2.3.49, Repoman-2.3.11
Signed-off-by: Ralph Seichter <gentoo <AT> seichter.de>
Closes: https://github.com/gentoo/gentoo/pull/10180
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 mail-client/bower/Manifest         |  1 +
 mail-client/bower/bower-0.9.ebuild | 39 ++++++++++++++++++++++++++++++++++++++
 mail-client/bower/metadata.xml     | 18 ++++++++++++++++++
 3 files changed, 58 insertions(+)

diff --git a/mail-client/bower/Manifest b/mail-client/bower/Manifest
new file mode 100644
index 00000000000..a59a5cb049f
--- /dev/null
+++ b/mail-client/bower/Manifest
@@ -0,0 +1 @@
+DIST bower-0.9.tar.gz 256921 BLAKE2B b8bd1f179209051e5c870ceeb9efec0345a488726497775b81a87329ce6ee3b0aa0c0f6c5be8b8c2481cb9469977b549af15e1ddc302d360f3e6a79cbf560eb8 SHA512 697b5e221356cac8284da9002053e6289df25ba82f0039301643e16e40a1bda6010c9d54dd4c7a3e4c47cdbe9373713248ef2bd182df56bb035db93d089798c2

diff --git a/mail-client/bower/bower-0.9.ebuild b/mail-client/bower/bower-0.9.ebuild
new file mode 100644
index 00000000000..a09adb15f28
--- /dev/null
+++ b/mail-client/bower/bower-0.9.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit multiprocessing
+
+DESCRIPTION="A curses terminal client for the Notmuch email system"
+HOMEPAGE="https://github.com/wangp/bower"
+SRC_URI="https://github.com/wangp/bower/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND="app-crypt/gpgme:=
+	>=dev-lang/mercury-11.07
+	sys-libs/ncurses:0="
+RDEPEND="app-crypt/gpgme:=
+	net-mail/notmuch
+	sys-apps/coreutils
+	sys-libs/ncurses:0="
+
+src_prepare() {
+	if has_version "sys-libs/ncurses:0[tinfo]" ; then
+		echo "MLLIBS-bower += -ltinfow" >> src/Mercury.params || die
+	fi
+	eapply_user
+}
+
+src_compile() {
+	emake PARALLEL="--jobs $(makeopts_jobs) --no-strip --very-verbose" || die
+}
+
+src_install() {
+	dobin bower
+	dodoc AUTHORS NEWS README.md bower.conf.sample
+}

diff --git a/mail-client/bower/metadata.xml b/mail-client/bower/metadata.xml
new file mode 100644
index 00000000000..5560cae3b5e
--- /dev/null
+++ b/mail-client/bower/metadata.xml
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>gentoo@seichter.de</email>
+		<name>Ralph Seichter</name>
+	</maintainer>
+	<maintainer type="project">
+		<email>proxy-maint@gentoo.org</email>
+		<name>Proxy Maintainers</name>
+	</maintainer>
+	<longdescription>
+		Bower is a curses frontend for the Notmuch email system, written in Mercury.
+	</longdescription>
+	<upstream>
+		<remote-id type="github">wangp/bower</remote-id>
+	</upstream>
+</pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: mail-client/bower/
@ 2018-11-23  8:01 Mikle Kolyada
  0 siblings, 0 replies; 11+ messages in thread
From: Mikle Kolyada @ 2018-11-23  8:01 UTC (permalink / raw
  To: gentoo-commits

commit:     a5be9a7d7b7e6b2ef374d14fc5b4fb04f1b2f142
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 23 08:01:33 2018 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Fri Nov 23 08:01:50 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5be9a7d

mail-client/bower: fix emake

Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 mail-client/bower/bower-0.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mail-client/bower/bower-0.9.ebuild b/mail-client/bower/bower-0.9.ebuild
index a09adb15f28..8841e2365af 100644
--- a/mail-client/bower/bower-0.9.ebuild
+++ b/mail-client/bower/bower-0.9.ebuild
@@ -30,7 +30,7 @@ src_prepare() {
 }
 
 src_compile() {
-	emake PARALLEL="--jobs $(makeopts_jobs) --no-strip --very-verbose" || die
+	emake PARALLEL="--jobs $(makeopts_jobs) --no-strip --very-verbose"
 }
 
 src_install() {


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

* [gentoo-commits] repo/gentoo:master commit in: mail-client/bower/
@ 2019-03-02  0:04 Andreas Sturmlechner
  0 siblings, 0 replies; 11+ messages in thread
From: Andreas Sturmlechner @ 2019-03-02  0:04 UTC (permalink / raw
  To: gentoo-commits

commit:     f386a52fd2cfec3880c250ed32e0138b4e9eea3d
Author:     Ralph Seichter <github <AT> seichter <DOT> de>
AuthorDate: Thu Feb 14 16:27:13 2019 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Mar  2 00:02:58 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f386a52f

mail-client/bower: upstream release 0.10

See https://notmuchmail.org/pipermail/notmuch/2019/027349.html
for the official announcement text.

Signed-off-by: Ralph Seichter <gentoo <AT> seichter.de>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Closes: https://github.com/gentoo/gentoo/pull/11052
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 mail-client/bower/Manifest          |  1 +
 mail-client/bower/bower-0.10.ebuild | 39 +++++++++++++++++++++++++++++++++++++
 2 files changed, 40 insertions(+)

diff --git a/mail-client/bower/Manifest b/mail-client/bower/Manifest
index a59a5cb049f..8952d7b8036 100644
--- a/mail-client/bower/Manifest
+++ b/mail-client/bower/Manifest
@@ -1 +1,2 @@
+DIST bower-0.10.tar.gz 261487 BLAKE2B 861ee1e17787586f12795fb507cb32fd2d63b8831083354aed9f710c06cc8714ede7421d64c7aa6f2a52aec954be89fe15f1a4a2292d044c9b6a754c754d9667 SHA512 54ba7492008f1f6f1495b0d8a7585965ecf6ba16701bd19234dc761190db701d7cdc9a4e0e5995846f2feb08018a217a0e405dea0dacb3fbfb5681ed66529b9a
 DIST bower-0.9.tar.gz 256921 BLAKE2B b8bd1f179209051e5c870ceeb9efec0345a488726497775b81a87329ce6ee3b0aa0c0f6c5be8b8c2481cb9469977b549af15e1ddc302d360f3e6a79cbf560eb8 SHA512 697b5e221356cac8284da9002053e6289df25ba82f0039301643e16e40a1bda6010c9d54dd4c7a3e4c47cdbe9373713248ef2bd182df56bb035db93d089798c2

diff --git a/mail-client/bower/bower-0.10.ebuild b/mail-client/bower/bower-0.10.ebuild
new file mode 100644
index 00000000000..002d3f1ab5a
--- /dev/null
+++ b/mail-client/bower/bower-0.10.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit multiprocessing
+
+DESCRIPTION="A curses terminal client for the Notmuch email system"
+HOMEPAGE="https://github.com/wangp/bower"
+SRC_URI="https://github.com/wangp/bower/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+COMMON_DEPEND="app-crypt/gpgme:=
+	sys-libs/ncurses:0="
+DEPEND="${COMMON_DEPEND}
+	>=dev-lang/mercury-11.07"
+RDEPEND="${COMMON_DEPEND}
+	net-mail/notmuch
+	sys-apps/coreutils"
+
+src_prepare() {
+	default
+	if has_version "sys-libs/ncurses:0[tinfo]" ; then
+		echo "MLLIBS-bower += -ltinfow" >> src/Mercury.params || die
+	fi
+}
+
+src_compile() {
+	emake PARALLEL="--jobs $(makeopts_jobs) --no-strip --very-verbose"
+}
+
+src_install() {
+	dobin bower
+	dodoc AUTHORS NEWS README.md bower.conf.sample
+}


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

* [gentoo-commits] repo/gentoo:master commit in: mail-client/bower/
@ 2019-05-20 11:27 Mikle Kolyada
  0 siblings, 0 replies; 11+ messages in thread
From: Mikle Kolyada @ 2019-05-20 11:27 UTC (permalink / raw
  To: gentoo-commits

commit:     850390b24d2c4f082a6e0cfe530a328d059d426f
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Mon May 20 11:27:40 2019 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Mon May 20 11:27:40 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=850390b2

mail-client/bower: amd64 stable wrt bug #685392

Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 mail-client/bower/bower-0.10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mail-client/bower/bower-0.10.ebuild b/mail-client/bower/bower-0.10.ebuild
index 002d3f1ab5a..a8d841c2f96 100644
--- a/mail-client/bower/bower-0.10.ebuild
+++ b/mail-client/bower/bower-0.10.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/wangp/bower/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 IUSE=""
 
 COMMON_DEPEND="app-crypt/gpgme:=


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

* [gentoo-commits] repo/gentoo:master commit in: mail-client/bower/
@ 2019-10-21 14:08 Joonas Niilola
  0 siblings, 0 replies; 11+ messages in thread
From: Joonas Niilola @ 2019-10-21 14:08 UTC (permalink / raw
  To: gentoo-commits

commit:     a4603532026e6e486068edc5e575be63aedbdf4e
Author:     Ralph Seichter <github <AT> seichter <DOT> de>
AuthorDate: Fri Oct 18 14:26:03 2019 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Mon Oct 21 14:08:12 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4603532

mail-client/bower: bump to version 0.11

Closes: https://bugs.gentoo.org/696198
Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Ralph Seichter <gentoo <AT> seichter.de>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 mail-client/bower/Manifest          |  1 +
 mail-client/bower/bower-0.11.ebuild | 39 +++++++++++++++++++++++++++++++++++++
 2 files changed, 40 insertions(+)

diff --git a/mail-client/bower/Manifest b/mail-client/bower/Manifest
index 8952d7b8036..5abe5791eb2 100644
--- a/mail-client/bower/Manifest
+++ b/mail-client/bower/Manifest
@@ -1,2 +1,3 @@
 DIST bower-0.10.tar.gz 261487 BLAKE2B 861ee1e17787586f12795fb507cb32fd2d63b8831083354aed9f710c06cc8714ede7421d64c7aa6f2a52aec954be89fe15f1a4a2292d044c9b6a754c754d9667 SHA512 54ba7492008f1f6f1495b0d8a7585965ecf6ba16701bd19234dc761190db701d7cdc9a4e0e5995846f2feb08018a217a0e405dea0dacb3fbfb5681ed66529b9a
+DIST bower-0.11.tar.gz 266063 BLAKE2B 04fbf8febf472f39a6b2a39e5ea36311fa9b2fd931264315053bccd655ba94ea0c163c54cdf80c1d614df91b77c04543e8fdc34ff8cd42f2795dabae91cde95c SHA512 67d803a393b72e7140c1f252d86c693d31c2e570506aa22e64c6417a0bc51d14f7b6f4bdb89d5098dd32bcf0ac82b1a7b1a801325c856e9f6c58750d2cfa20e8
 DIST bower-0.9.tar.gz 256921 BLAKE2B b8bd1f179209051e5c870ceeb9efec0345a488726497775b81a87329ce6ee3b0aa0c0f6c5be8b8c2481cb9469977b549af15e1ddc302d360f3e6a79cbf560eb8 SHA512 697b5e221356cac8284da9002053e6289df25ba82f0039301643e16e40a1bda6010c9d54dd4c7a3e4c47cdbe9373713248ef2bd182df56bb035db93d089798c2

diff --git a/mail-client/bower/bower-0.11.ebuild b/mail-client/bower/bower-0.11.ebuild
new file mode 100644
index 00000000000..04657e9647a
--- /dev/null
+++ b/mail-client/bower/bower-0.11.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit multiprocessing
+
+DESCRIPTION="Curses terminal client for the Notmuch email system"
+HOMEPAGE="https://github.com/wangp/bower"
+SRC_URI="https://github.com/wangp/bower/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+COMMON_DEPEND="app-crypt/gpgme:=
+	sys-libs/ncurses:0="
+DEPEND="${COMMON_DEPEND}
+	>=dev-lang/mercury-11.07"
+RDEPEND="${COMMON_DEPEND}
+	net-mail/notmuch
+	sys-apps/coreutils"
+
+src_prepare() {
+	default
+	if has_version "sys-libs/ncurses:0[tinfo]" ; then
+		echo "MLLIBS-bower += -ltinfow" >> src/Mercury.params || die
+	fi
+}
+
+src_compile() {
+	emake PARALLEL="--jobs $(makeopts_jobs) --no-strip --very-verbose"
+}
+
+src_install() {
+	dobin bower
+	dodoc AUTHORS NEWS README.md bower.conf.sample
+}


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

* [gentoo-commits] repo/gentoo:master commit in: mail-client/bower/
@ 2019-10-21 14:08 Joonas Niilola
  0 siblings, 0 replies; 11+ messages in thread
From: Joonas Niilola @ 2019-10-21 14:08 UTC (permalink / raw
  To: gentoo-commits

commit:     f97c982bb1e1e5270616843cc2827fb3bc04033e
Author:     Ralph Seichter <github <AT> seichter <DOT> de>
AuthorDate: Fri Oct 18 14:27:51 2019 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Mon Oct 21 14:08:17 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f97c982b

mail-client/bower: removed obsolete ebuild

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Ralph Seichter <gentoo <AT> seichter.de>
Closes: https://github.com/gentoo/gentoo/pull/13143
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 mail-client/bower/Manifest         |  1 -
 mail-client/bower/bower-0.9.ebuild | 39 --------------------------------------
 2 files changed, 40 deletions(-)

diff --git a/mail-client/bower/Manifest b/mail-client/bower/Manifest
index 5abe5791eb2..59b85ed32f5 100644
--- a/mail-client/bower/Manifest
+++ b/mail-client/bower/Manifest
@@ -1,3 +1,2 @@
 DIST bower-0.10.tar.gz 261487 BLAKE2B 861ee1e17787586f12795fb507cb32fd2d63b8831083354aed9f710c06cc8714ede7421d64c7aa6f2a52aec954be89fe15f1a4a2292d044c9b6a754c754d9667 SHA512 54ba7492008f1f6f1495b0d8a7585965ecf6ba16701bd19234dc761190db701d7cdc9a4e0e5995846f2feb08018a217a0e405dea0dacb3fbfb5681ed66529b9a
 DIST bower-0.11.tar.gz 266063 BLAKE2B 04fbf8febf472f39a6b2a39e5ea36311fa9b2fd931264315053bccd655ba94ea0c163c54cdf80c1d614df91b77c04543e8fdc34ff8cd42f2795dabae91cde95c SHA512 67d803a393b72e7140c1f252d86c693d31c2e570506aa22e64c6417a0bc51d14f7b6f4bdb89d5098dd32bcf0ac82b1a7b1a801325c856e9f6c58750d2cfa20e8
-DIST bower-0.9.tar.gz 256921 BLAKE2B b8bd1f179209051e5c870ceeb9efec0345a488726497775b81a87329ce6ee3b0aa0c0f6c5be8b8c2481cb9469977b549af15e1ddc302d360f3e6a79cbf560eb8 SHA512 697b5e221356cac8284da9002053e6289df25ba82f0039301643e16e40a1bda6010c9d54dd4c7a3e4c47cdbe9373713248ef2bd182df56bb035db93d089798c2

diff --git a/mail-client/bower/bower-0.9.ebuild b/mail-client/bower/bower-0.9.ebuild
deleted file mode 100644
index 8841e2365af..00000000000
--- a/mail-client/bower/bower-0.9.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit multiprocessing
-
-DESCRIPTION="A curses terminal client for the Notmuch email system"
-HOMEPAGE="https://github.com/wangp/bower"
-SRC_URI="https://github.com/wangp/bower/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-DEPEND="app-crypt/gpgme:=
-	>=dev-lang/mercury-11.07
-	sys-libs/ncurses:0="
-RDEPEND="app-crypt/gpgme:=
-	net-mail/notmuch
-	sys-apps/coreutils
-	sys-libs/ncurses:0="
-
-src_prepare() {
-	if has_version "sys-libs/ncurses:0[tinfo]" ; then
-		echo "MLLIBS-bower += -ltinfow" >> src/Mercury.params || die
-	fi
-	eapply_user
-}
-
-src_compile() {
-	emake PARALLEL="--jobs $(makeopts_jobs) --no-strip --very-verbose"
-}
-
-src_install() {
-	dobin bower
-	dodoc AUTHORS NEWS README.md bower.conf.sample
-}


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

* [gentoo-commits] repo/gentoo:master commit in: mail-client/bower/
@ 2020-08-14  8:20 Joonas Niilola
  0 siblings, 0 replies; 11+ messages in thread
From: Joonas Niilola @ 2020-08-14  8:20 UTC (permalink / raw
  To: gentoo-commits

commit:     5c832d4085dc5db68e5bf11f0d169e1e8dbdd51e
Author:     Ralph Seichter <github <AT> seichter <DOT> de>
AuthorDate: Sat Aug  1 11:26:44 2020 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri Aug 14 08:20:41 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c832d40

mail-client/bower: Bump to version 0.12

The ebuild causes QA notices. I filed an upstream ticket[1] for
this reason in 2018, which is still open today. The author of
Bower suggests "just ignoring the warning for now as it's not
a real problem."

[1] https://github.com/wangp/bower/issues/36

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Ralph Seichter <gentoo <AT> seichter.de>
Closes: https://github.com/gentoo/gentoo/pull/16928
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 mail-client/bower/Manifest          |  1 +
 mail-client/bower/bower-0.12.ebuild | 39 +++++++++++++++++++++++++++++++++++++
 mail-client/bower/metadata.xml      |  3 ++-
 3 files changed, 42 insertions(+), 1 deletion(-)

diff --git a/mail-client/bower/Manifest b/mail-client/bower/Manifest
index 59b85ed32f5..38647786fbc 100644
--- a/mail-client/bower/Manifest
+++ b/mail-client/bower/Manifest
@@ -1,2 +1,3 @@
 DIST bower-0.10.tar.gz 261487 BLAKE2B 861ee1e17787586f12795fb507cb32fd2d63b8831083354aed9f710c06cc8714ede7421d64c7aa6f2a52aec954be89fe15f1a4a2292d044c9b6a754c754d9667 SHA512 54ba7492008f1f6f1495b0d8a7585965ecf6ba16701bd19234dc761190db701d7cdc9a4e0e5995846f2feb08018a217a0e405dea0dacb3fbfb5681ed66529b9a
 DIST bower-0.11.tar.gz 266063 BLAKE2B 04fbf8febf472f39a6b2a39e5ea36311fa9b2fd931264315053bccd655ba94ea0c163c54cdf80c1d614df91b77c04543e8fdc34ff8cd42f2795dabae91cde95c SHA512 67d803a393b72e7140c1f252d86c693d31c2e570506aa22e64c6417a0bc51d14f7b6f4bdb89d5098dd32bcf0ac82b1a7b1a801325c856e9f6c58750d2cfa20e8
+DIST bower-0.12.tar.gz 275436 BLAKE2B 66ea4d0a502f9948bd7af29c6d63bd7c0c382d91a875dbcea4db8a55f457202cb70351fee151a7bc03a7ba1b0a2877cb4db76b0f6b8c38bf30c6072e3a74c9b7 SHA512 efa0ced9ddc13b2df43874acfa90843eef46ae527e2796d1368c234b7cc8c7c0a9b173398a0180b0eee52d94ba339f2b3bc65a91d07a563c320dbc86ae1521c3

diff --git a/mail-client/bower/bower-0.12.ebuild b/mail-client/bower/bower-0.12.ebuild
new file mode 100644
index 00000000000..d76953ce761
--- /dev/null
+++ b/mail-client/bower/bower-0.12.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit multiprocessing
+
+DESCRIPTION="Curses terminal client for the Notmuch email system"
+HOMEPAGE="https://github.com/wangp/bower"
+SRC_URI="https://github.com/wangp/bower/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+COMMON_DEPEND="app-crypt/gpgme:=
+	sys-libs/ncurses:0="
+DEPEND="${COMMON_DEPEND}
+	dev-lang/mercury"
+RDEPEND="${COMMON_DEPEND}
+	net-mail/notmuch
+	sys-apps/coreutils"
+
+src_prepare() {
+	default
+	if has_version "sys-libs/ncurses:0[tinfo]" ; then
+		echo "MLLIBS-bower += -ltinfow" >> src/Mercury.params || die
+	fi
+}
+
+src_compile() {
+	emake PARALLEL="--jobs $(makeopts_jobs) --no-strip --very-verbose"
+}
+
+src_install() {
+	dobin bower
+	dodoc AUTHORS NEWS README.md bower.conf.sample
+}

diff --git a/mail-client/bower/metadata.xml b/mail-client/bower/metadata.xml
index 5560cae3b5e..0d11f288146 100644
--- a/mail-client/bower/metadata.xml
+++ b/mail-client/bower/metadata.xml
@@ -10,7 +10,8 @@
 		<name>Proxy Maintainers</name>
 	</maintainer>
 	<longdescription>
-		Bower is a curses frontend for the Notmuch email system, written in Mercury.
+		Bower is a curses frontend for the Notmuch (https://notmuchmail.org)
+		email system, written in Mercury.
 	</longdescription>
 	<upstream>
 		<remote-id type="github">wangp/bower</remote-id>


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

* [gentoo-commits] repo/gentoo:master commit in: mail-client/bower/
@ 2020-12-26 21:35 Andreas Sturmlechner
  0 siblings, 0 replies; 11+ messages in thread
From: Andreas Sturmlechner @ 2020-12-26 21:35 UTC (permalink / raw
  To: gentoo-commits

commit:     6547f57473d0df6562f94b48819296ec53b16584
Author:     Ralph Seichter <github <AT> seichter <DOT> de>
AuthorDate: Sat Dec 19 00:09:43 2020 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Dec 26 21:34:50 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6547f574

mail-client/bower: Change to "maintainer needed"

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Ralph Seichter <gentoo <AT> seichter.de>
Closes: https://github.com/gentoo/gentoo/pull/18716
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 mail-client/bower/metadata.xml | 9 +--------
 1 file changed, 1 insertion(+), 8 deletions(-)

diff --git a/mail-client/bower/metadata.xml b/mail-client/bower/metadata.xml
index 0d11f288146..e50139e4ba0 100644
--- a/mail-client/bower/metadata.xml
+++ b/mail-client/bower/metadata.xml
@@ -1,14 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<maintainer type="person">
-		<email>gentoo@seichter.de</email>
-		<name>Ralph Seichter</name>
-	</maintainer>
-	<maintainer type="project">
-		<email>proxy-maint@gentoo.org</email>
-		<name>Proxy Maintainers</name>
-	</maintainer>
+	<!-- maintainer-needed -->
 	<longdescription>
 		Bower is a curses frontend for the Notmuch (https://notmuchmail.org)
 		email system, written in Mercury.


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

* [gentoo-commits] repo/gentoo:master commit in: mail-client/bower/
@ 2021-01-04  3:31 Sam James
  0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2021-01-04  3:31 UTC (permalink / raw
  To: gentoo-commits

commit:     3976be54a6edd2ff6be90b5942474e8afd6669cb
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Jan  4 03:29:53 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jan  4 03:29:53 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3976be54

mail-client/bower: Stabilize 0.12 amd64, #763444

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

 mail-client/bower/bower-0.12.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/mail-client/bower/bower-0.12.ebuild b/mail-client/bower/bower-0.12.ebuild
index d76953ce761..ebd82dbd7ed 100644
--- a/mail-client/bower/bower-0.12.ebuild
+++ b/mail-client/bower/bower-0.12.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/wangp/bower/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 IUSE=""
 
 COMMON_DEPEND="app-crypt/gpgme:=


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

* [gentoo-commits] repo/gentoo:master commit in: mail-client/bower/
@ 2021-01-04  3:37 Sam James
  0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2021-01-04  3:37 UTC (permalink / raw
  To: gentoo-commits

commit:     c0adbbd3e5449451b170a2ab8ee681d040fddff6
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Jan  4 03:37:28 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jan  4 03:37:28 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0adbbd3

mail-client/bower: cleanup old

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

 mail-client/bower/Manifest          |  2 --
 mail-client/bower/bower-0.10.ebuild | 39 -------------------------------------
 mail-client/bower/bower-0.11.ebuild | 39 -------------------------------------
 3 files changed, 80 deletions(-)

diff --git a/mail-client/bower/Manifest b/mail-client/bower/Manifest
index 38647786fbc..add12d8b043 100644
--- a/mail-client/bower/Manifest
+++ b/mail-client/bower/Manifest
@@ -1,3 +1 @@
-DIST bower-0.10.tar.gz 261487 BLAKE2B 861ee1e17787586f12795fb507cb32fd2d63b8831083354aed9f710c06cc8714ede7421d64c7aa6f2a52aec954be89fe15f1a4a2292d044c9b6a754c754d9667 SHA512 54ba7492008f1f6f1495b0d8a7585965ecf6ba16701bd19234dc761190db701d7cdc9a4e0e5995846f2feb08018a217a0e405dea0dacb3fbfb5681ed66529b9a
-DIST bower-0.11.tar.gz 266063 BLAKE2B 04fbf8febf472f39a6b2a39e5ea36311fa9b2fd931264315053bccd655ba94ea0c163c54cdf80c1d614df91b77c04543e8fdc34ff8cd42f2795dabae91cde95c SHA512 67d803a393b72e7140c1f252d86c693d31c2e570506aa22e64c6417a0bc51d14f7b6f4bdb89d5098dd32bcf0ac82b1a7b1a801325c856e9f6c58750d2cfa20e8
 DIST bower-0.12.tar.gz 275436 BLAKE2B 66ea4d0a502f9948bd7af29c6d63bd7c0c382d91a875dbcea4db8a55f457202cb70351fee151a7bc03a7ba1b0a2877cb4db76b0f6b8c38bf30c6072e3a74c9b7 SHA512 efa0ced9ddc13b2df43874acfa90843eef46ae527e2796d1368c234b7cc8c7c0a9b173398a0180b0eee52d94ba339f2b3bc65a91d07a563c320dbc86ae1521c3

diff --git a/mail-client/bower/bower-0.10.ebuild b/mail-client/bower/bower-0.10.ebuild
deleted file mode 100644
index a8d841c2f96..00000000000
--- a/mail-client/bower/bower-0.10.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit multiprocessing
-
-DESCRIPTION="A curses terminal client for the Notmuch email system"
-HOMEPAGE="https://github.com/wangp/bower"
-SRC_URI="https://github.com/wangp/bower/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="amd64"
-IUSE=""
-
-COMMON_DEPEND="app-crypt/gpgme:=
-	sys-libs/ncurses:0="
-DEPEND="${COMMON_DEPEND}
-	>=dev-lang/mercury-11.07"
-RDEPEND="${COMMON_DEPEND}
-	net-mail/notmuch
-	sys-apps/coreutils"
-
-src_prepare() {
-	default
-	if has_version "sys-libs/ncurses:0[tinfo]" ; then
-		echo "MLLIBS-bower += -ltinfow" >> src/Mercury.params || die
-	fi
-}
-
-src_compile() {
-	emake PARALLEL="--jobs $(makeopts_jobs) --no-strip --very-verbose"
-}
-
-src_install() {
-	dobin bower
-	dodoc AUTHORS NEWS README.md bower.conf.sample
-}

diff --git a/mail-client/bower/bower-0.11.ebuild b/mail-client/bower/bower-0.11.ebuild
deleted file mode 100644
index 04657e9647a..00000000000
--- a/mail-client/bower/bower-0.11.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit multiprocessing
-
-DESCRIPTION="Curses terminal client for the Notmuch email system"
-HOMEPAGE="https://github.com/wangp/bower"
-SRC_URI="https://github.com/wangp/bower/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-COMMON_DEPEND="app-crypt/gpgme:=
-	sys-libs/ncurses:0="
-DEPEND="${COMMON_DEPEND}
-	>=dev-lang/mercury-11.07"
-RDEPEND="${COMMON_DEPEND}
-	net-mail/notmuch
-	sys-apps/coreutils"
-
-src_prepare() {
-	default
-	if has_version "sys-libs/ncurses:0[tinfo]" ; then
-		echo "MLLIBS-bower += -ltinfow" >> src/Mercury.params || die
-	fi
-}
-
-src_compile() {
-	emake PARALLEL="--jobs $(makeopts_jobs) --no-strip --very-verbose"
-}
-
-src_install() {
-	dobin bower
-	dodoc AUTHORS NEWS README.md bower.conf.sample
-}


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

* [gentoo-commits] repo/gentoo:master commit in: mail-client/bower/
@ 2024-05-03 10:01 Arthur Zamarin
  0 siblings, 0 replies; 11+ messages in thread
From: Arthur Zamarin @ 2024-05-03 10:01 UTC (permalink / raw
  To: gentoo-commits

commit:     baaf09ffbe941fb905dd77bbaa97e3e82f33dbb7
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri May  3 10:01:23 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri May  3 10:01:35 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=baaf09ff

mail-client/bower: add 1.0

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

 mail-client/bower/Manifest         |  1 +
 mail-client/bower/bower-1.0.ebuild | 38 ++++++++++++++++++++++++++++++++++++++
 2 files changed, 39 insertions(+)

diff --git a/mail-client/bower/Manifest b/mail-client/bower/Manifest
index add12d8b0431..f8113c6a8d1f 100644
--- a/mail-client/bower/Manifest
+++ b/mail-client/bower/Manifest
@@ -1 +1,2 @@
 DIST bower-0.12.tar.gz 275436 BLAKE2B 66ea4d0a502f9948bd7af29c6d63bd7c0c382d91a875dbcea4db8a55f457202cb70351fee151a7bc03a7ba1b0a2877cb4db76b0f6b8c38bf30c6072e3a74c9b7 SHA512 efa0ced9ddc13b2df43874acfa90843eef46ae527e2796d1368c234b7cc8c7c0a9b173398a0180b0eee52d94ba339f2b3bc65a91d07a563c320dbc86ae1521c3
+DIST bower-1.0.tar.gz 291416 BLAKE2B 344533608ce33ce3dc011916045297d36f17b6c51e22261e831e2063bebf0cc73d5d464cc65edc92528384e97a3a8d338212f2371d84a08bb76d3aaa3f5a9a35 SHA512 79bbd9218bd31bc2a8f1bc82b83a6cb21fbd8788cf269e24a98c43e8320f6522b4c04e2563082f81697746e00d006de33d47c96473ddc119cfb9661818774dc4

diff --git a/mail-client/bower/bower-1.0.ebuild b/mail-client/bower/bower-1.0.ebuild
new file mode 100644
index 000000000000..f0bd7988a8ea
--- /dev/null
+++ b/mail-client/bower/bower-1.0.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit multiprocessing
+
+DESCRIPTION="Curses terminal client for the Notmuch email system"
+HOMEPAGE="https://github.com/wangp/bower"
+SRC_URI="https://github.com/wangp/bower/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64"
+
+COMMON_DEPEND="app-crypt/gpgme:=
+	sys-libs/ncurses:0="
+DEPEND="${COMMON_DEPEND}
+	dev-lang/mercury"
+RDEPEND="${COMMON_DEPEND}
+	net-mail/notmuch
+	sys-apps/coreutils"
+BDEPEND="virtual/pkgconfig"
+
+src_prepare() {
+	default
+	sed -e "s/-lncursesw -lpanelw/$(pkg-config --libs ncursesw panelw)/" \
+		-i src/Mercury.options || die
+}
+
+src_compile() {
+	emake PARALLEL="--jobs $(makeopts_jobs) --no-strip --very-verbose"
+}
+
+src_install() {
+	dobin bower
+	dodoc AUTHORS NEWS README.md bower.conf.sample
+}


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

end of thread, other threads:[~2024-05-03 10:01 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-11-23  8:01 [gentoo-commits] repo/gentoo:master commit in: mail-client/bower/ Mikle Kolyada
  -- strict thread matches above, loose matches on Subject: below --
2024-05-03 10:01 Arthur Zamarin
2021-01-04  3:37 Sam James
2021-01-04  3:31 Sam James
2020-12-26 21:35 Andreas Sturmlechner
2020-08-14  8:20 Joonas Niilola
2019-10-21 14:08 Joonas Niilola
2019-10-21 14:08 Joonas Niilola
2019-05-20 11:27 Mikle Kolyada
2019-03-02  0:04 Andreas Sturmlechner
2018-11-22 20:29 Michał Górny

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