public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: mail-client/heirloom-mailx/
@ 2020-10-11 13:10 Marcin Woźniak
  0 siblings, 0 replies; 4+ messages in thread
From: Marcin Woźniak @ 2020-10-11 13:10 UTC (permalink / raw
  To: gentoo-commits

commit:     78881fcd76633360c71d05c84f303f6826c388c9
Author:     Marcin Woźniak <y0rune <AT> aol <DOT> com>
AuthorDate: Sun Oct 11 13:09:35 2020 +0000
Commit:     Marcin Woźniak <y0rune <AT> aol <DOT> com>
CommitDate: Sun Oct 11 13:09:35 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=78881fcd

mail-client/heirloom-mailx: Updated description and add quotes

Signed-off-by: Marcin Woźniak <y0rune <AT> aol.com>

 mail-client/heirloom-mailx/heirloom-mailx-12.5.ebuild | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/mail-client/heirloom-mailx/heirloom-mailx-12.5.ebuild b/mail-client/heirloom-mailx/heirloom-mailx-12.5.ebuild
index 9ac71c46..e985cec8 100644
--- a/mail-client/heirloom-mailx/heirloom-mailx-12.5.ebuild
+++ b/mail-client/heirloom-mailx/heirloom-mailx-12.5.ebuild
@@ -4,7 +4,7 @@
 EAPI=7
 
 LICENSE="BSD"
-DESCRIPTION="The heirloom-mailx, this is version mailx in CentOS"
+DESCRIPTION="The mailx utility from CentOS"
 HOMEPAGE="https://www.debian.org/"
 SRC_URI="https://yorune.pl/gentoo/${CATEGORY}/${PN}/${PN}_${PVR}.orig.tar.gz http://ftp.debian.org/debian/pool/main/h/${PN}/${PN}_${PVR}.orig.tar.gz"
 KEYWORDS="~amd64"
@@ -33,7 +33,7 @@ src_compile(){
 }
 
 src_install(){
-	emake PREFIX=${D}/usr SYSCONFDIR=${D}/etc UCBINSTALL=/usr/bin/install install
-	install -v -m755 -d     ${D}/usr/share/doc/heirloom-mailx-12.5
-	install -v -m644 README ${D}/usr/share/doc/heirloom-mailx-12.5
+	emake PREFIX="${D}/usr" SYSCONFDIR="${D}/etc" UCBINSTALL="/usr/bin/install" install
+	install -v -m755 -d     "${D}/usr/share/doc/heirloom-mailx-12.5"
+	install -v -m644 README "${D}/usr/share/doc/heirloom-mailx-12.5"
 }


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

* [gentoo-commits] repo/proj/guru:dev commit in: mail-client/heirloom-mailx/
@ 2021-04-16 21:50 Marcin Woźniak
  0 siblings, 0 replies; 4+ messages in thread
From: Marcin Woźniak @ 2021-04-16 21:50 UTC (permalink / raw
  To: gentoo-commits

commit:     6318ad2059d604d37f4c0aa5fd31597a37393714
Author:     Marcin Woźniak <y0rune <AT> aol <DOT> com>
AuthorDate: Fri Apr 16 21:24:43 2021 +0000
Commit:     Marcin Woźniak <y0rune <AT> aol <DOT> com>
CommitDate: Fri Apr 16 21:24:43 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6318ad20

mail-client/heirloom-mailx: Changed licence and fix problem with QA

Like in the bug I tried to add hide the error from QA.
I simply added LDFLAGS in the emake. I think it should be help.

Bug: https://bugs.gentoo.org/782961
Closes: https://bugs.gentoo.org/782961
Signed-off-by: Marcin Woźniak <y0rune <AT> aol.com>

 mail-client/heirloom-mailx/heirloom-mailx-12.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mail-client/heirloom-mailx/heirloom-mailx-12.5.ebuild b/mail-client/heirloom-mailx/heirloom-mailx-12.5.ebuild
index e985cec8b..fe87daf09 100644
--- a/mail-client/heirloom-mailx/heirloom-mailx-12.5.ebuild
+++ b/mail-client/heirloom-mailx/heirloom-mailx-12.5.ebuild
@@ -29,7 +29,7 @@ src_prepare() {
 
 src_compile(){
 	sed 's@<openssl@<openssl-1.0/openssl@' -i openssl.c fio.c makeconfig
-	emake LDFLAGS+="-L /usr/lib/openssl-1.0/" SENDMAIL=/usr/sbin/sendmail
+	emake LDFLAGS=${LDFLAGS} LDFLAGS+="-L /usr/lib/openssl-1.0/" SENDMAIL=/usr/sbin/sendmail
 }
 
 src_install(){


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

* [gentoo-commits] repo/proj/guru:dev commit in: mail-client/heirloom-mailx/
@ 2021-04-18  6:44 Marcin Woźniak
  0 siblings, 0 replies; 4+ messages in thread
From: Marcin Woźniak @ 2021-04-18  6:44 UTC (permalink / raw
  To: gentoo-commits

commit:     a31b227e08533b24be26b476dd7994c2de6da713
Author:     Marcin Woźniak <y0rune <AT> aol <DOT> com>
AuthorDate: Sun Apr 18 06:43:08 2021 +0000
Commit:     Marcin Woźniak <y0rune <AT> aol <DOT> com>
CommitDate: Sun Apr 18 06:43:08 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a31b227e

mail-client/heirloom-mailx: Changed licence and fix problem with QA

Like in the bug I tried to add hide the error from QA.
I simply added LDFLAGS in the emake. I think it should be help.

EDIT:
I tried with src_configure but the mailx do not have configure file.

Bug: https://bugs.gentoo.org/782961
Closes: https://bugs.gentoo.org/782961
Signed-off-by: Marcin Woźniak <y0rune <AT> aol.com>

 mail-client/heirloom-mailx/heirloom-mailx-12.5.ebuild | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/mail-client/heirloom-mailx/heirloom-mailx-12.5.ebuild b/mail-client/heirloom-mailx/heirloom-mailx-12.5.ebuild
index fe87daf09..1fbbcf75e 100644
--- a/mail-client/heirloom-mailx/heirloom-mailx-12.5.ebuild
+++ b/mail-client/heirloom-mailx/heirloom-mailx-12.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2020 Gentoo Authors
+# Copyright 2001-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -12,7 +12,8 @@ KEYWORDS="~amd64"
 DEPEND="net-libs/liblockfile
 		dev-libs/libbsd
 		virtual/mta
-		mail-client/mailx-support"
+		mail-client/mailx-support
+		dev-libs/openssl"
 
 RDEPEND="${DEPEND}
 		!virtual/mailx
@@ -29,7 +30,7 @@ src_prepare() {
 
 src_compile(){
 	sed 's@<openssl@<openssl-1.0/openssl@' -i openssl.c fio.c makeconfig
-	emake LDFLAGS=${LDFLAGS} LDFLAGS+="-L /usr/lib/openssl-1.0/" SENDMAIL=/usr/sbin/sendmail
+	emake LDFLAGS="${LDFLAGS}" LDFLAGS+="-L /usr/lib/openssl-1.0/" SENDMAIL=/usr/sbin/sendmail
 }
 
 src_install(){


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

* [gentoo-commits] repo/proj/guru:dev commit in: mail-client/heirloom-mailx/
@ 2021-04-25 14:16 Marcin Woźniak
  0 siblings, 0 replies; 4+ messages in thread
From: Marcin Woźniak @ 2021-04-25 14:16 UTC (permalink / raw
  To: gentoo-commits

commit:     9cd2843910d3ef20ae2e6052a436210a035c8e5d
Author:     Marcin Woźniak <y0rune <AT> aol <DOT> com>
AuthorDate: Sun Apr 25 14:01:38 2021 +0000
Commit:     Marcin Woźniak <y0rune <AT> aol <DOT> com>
CommitDate: Sun Apr 25 14:15:55 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9cd28439

mail-client/heirloom-mailx: Fix problem with strip

I added the sys-libs/binutils-libs into ebuild.
I had also tested it in the diffrent env and it works too.

Signed-off-by: Marcin Woźniak <y0rune <AT> aol.com>
Closes: https://bugs.gentoo.org/784863
Closes: https://bugs.gentoo.org/783672
Closes: https://bugs.gentoo.org/784440

 mail-client/heirloom-mailx/heirloom-mailx-12.5.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/mail-client/heirloom-mailx/heirloom-mailx-12.5.ebuild b/mail-client/heirloom-mailx/heirloom-mailx-12.5.ebuild
index 1fbbcf75e..cff65a63a 100644
--- a/mail-client/heirloom-mailx/heirloom-mailx-12.5.ebuild
+++ b/mail-client/heirloom-mailx/heirloom-mailx-12.5.ebuild
@@ -11,6 +11,7 @@ KEYWORDS="~amd64"
 
 DEPEND="net-libs/liblockfile
 		dev-libs/libbsd
+		sys-libs/binutils-libs
 		virtual/mta
 		mail-client/mailx-support
 		dev-libs/openssl"


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

end of thread, other threads:[~2021-04-25 14:16 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-04-16 21:50 [gentoo-commits] repo/proj/guru:dev commit in: mail-client/heirloom-mailx/ Marcin Woźniak
  -- strict thread matches above, loose matches on Subject: below --
2021-04-25 14:16 Marcin Woźniak
2021-04-18  6:44 Marcin Woźniak
2020-10-11 13:10 Marcin Woźniak

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