public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/bar/
@ 2017-04-05 13:23 Michael Weber
  0 siblings, 0 replies; 6+ messages in thread
From: Michael Weber @ 2017-04-05 13:23 UTC (permalink / raw
  To: gentoo-commits

commit:     29fb5c6c00d9a822ae8d419678827fb966226a82
Author:     Michael Weber <xmw <AT> gentoo <DOT> org>
AuthorDate: Wed Apr  5 13:00:01 2017 +0000
Commit:     Michael Weber <xmw <AT> gentoo <DOT> org>
CommitDate: Wed Apr  5 13:20:56 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29fb5c6c

sys-apps/bar: add ~arm keyword (bug 599022).

Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --include-arches="arm"

 sys-apps/bar/bar-1.11.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-apps/bar/bar-1.11.1.ebuild b/sys-apps/bar/bar-1.11.1.ebuild
index 7b3ae95c9bb..ff678910027 100644
--- a/sys-apps/bar/bar-1.11.1.ebuild
+++ b/sys-apps/bar/bar-1.11.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=4
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/clpbar/${PN}_${PV}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 ~arm x86"
 IUSE="doc"
 
 DEPEND="doc? ( >=app-doc/doxygen-1.3.5 )"


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

* [gentoo-commits] repo/gentoo:master commit in: sys-apps/bar/
@ 2017-12-02 16:15 David Seifert
  0 siblings, 0 replies; 6+ messages in thread
From: David Seifert @ 2017-12-02 16:15 UTC (permalink / raw
  To: gentoo-commits

commit:     3d5103d43025604f8202693e24ad3c94295886ef
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sat Dec  2 15:45:10 2017 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Dec  2 16:15:01 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d5103d4

sys-apps/bar: Port to EAPI 6

Package-Manager: Portage-2.3.16, Repoman-2.3.6

 sys-apps/bar/Manifest          |  2 +-
 sys-apps/bar/bar-1.11.1.ebuild | 27 +++++++++++++--------------
 2 files changed, 14 insertions(+), 15 deletions(-)

diff --git a/sys-apps/bar/Manifest b/sys-apps/bar/Manifest
index 967642185f7..edf1c0e40d4 100644
--- a/sys-apps/bar/Manifest
+++ b/sys-apps/bar/Manifest
@@ -1 +1 @@
-DIST bar_1.11.1.tar.gz 187144 SHA256 fa0f5ec5c8400316c2f4debdc6cdcb80e186e668c2e4471df4fec7bfcd626503 SHA512 18a0cf1946155252fc84bce64a1789a2a497c8a870a8494e4b2caecde567121dc6404855c021900358659702a33f8c4f749e9cd0bb1eb761cd650e2c56347035 WHIRLPOOL b5e144841d92af9f23cc66ba81ad921a81729d58189ef8e82694b124e9f77fb36dc2f8f379a957c699b09ed405b5cf9891adb50f89a62e1ce2477ce48fe3ae5c
+DIST bar_1.11.1.tar.gz 187144 BLAKE2B 9181ade20a9450bdc7c4ae21bb79fea1d8666ebb78c1ae6403bbc1ad46ec968efb3795da3d5cd2e87aa02d28f33105abb3cf629e04051b84e763ddaea9c9ee18 SHA512 18a0cf1946155252fc84bce64a1789a2a497c8a870a8494e4b2caecde567121dc6404855c021900358659702a33f8c4f749e9cd0bb1eb761cd650e2c56347035

diff --git a/sys-apps/bar/bar-1.11.1.ebuild b/sys-apps/bar/bar-1.11.1.ebuild
index ff678910027..0d1aadd2a03 100644
--- a/sys-apps/bar/bar-1.11.1.ebuild
+++ b/sys-apps/bar/bar-1.11.1.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=4
+EAPI=6
 
 inherit autotools
 
@@ -18,31 +18,30 @@ DEPEND="doc? ( >=app-doc/doxygen-1.3.5 )"
 RDEPEND=""
 
 src_prepare() {
-	sed -e '/^LDFLAGS/d' \
-		-e '/cd $(WEB_DIR) && $(MAKE)/d' -i Makefile.am || die
+	default
+	sed '/cd $(WEB_DIR) && $(MAKE)/d' -i Makefile.am || die
 	eautomake
 }
 
 src_configure() {
-	local myconf
-
-	# Fix wrt #113392
-	use sparc && myconf="${myconf} --disable-use-memalign"
-	econf ${myconf}
+	# Fix bug 113392
+	econf $(use_enable !sparc use-memalign)
 }
 
 src_compile() {
 	emake CFLAGS="${CFLAGS}"
+
 	if use doc; then
-		mkdir -p ../www/doxygen/${PV}
+		mkdir -p ../www/doxygen/${PV} || die
 		emake update-www
+		HTML_DOCS=( ../www/doxygen/${PV}/html/. )
+
+		# remove doxygen working files
+		find ../www/doxygen/${PV}/html \( -iname '*.map' -o -iname '*.md5' \) -delete || die
 	fi
 }
 
 src_install() {
-	emake DESTDIR="${D}" install
-	dodoc AUTHORS TODO TROUBLESHOOTING debian/changelog
-	if use doc ; then
-		dohtml -r ../www/doxygen/${PV}/html/*
-	fi
+	default
+	dodoc TROUBLESHOOTING debian/changelog
 }


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

* [gentoo-commits] repo/gentoo:master commit in: sys-apps/bar/
@ 2024-05-14  9:10 Arthur Zamarin
  0 siblings, 0 replies; 6+ messages in thread
From: Arthur Zamarin @ 2024-05-14  9:10 UTC (permalink / raw
  To: gentoo-commits

commit:     ca94929ae688765fb0045dcdaead81e36c4fff59
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue May 14 09:09:04 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue May 14 09:09:39 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca94929a

sys-apps/bar: EAPI 6 -> 8, fix BDEPEND

Closes: https://bugs.gentoo.org/874492
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-apps/bar/bar-1.11.1-r1.ebuild | 51 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 51 insertions(+)

diff --git a/sys-apps/bar/bar-1.11.1-r1.ebuild b/sys-apps/bar/bar-1.11.1-r1.ebuild
new file mode 100644
index 000000000000..b2b18c005864
--- /dev/null
+++ b/sys-apps/bar/bar-1.11.1-r1.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="Console Progress Bar"
+HOMEPAGE="http://clpbar.sourceforge.net/"
+SRC_URI="https://downloads.sourceforge.net/clpbar/${PN}_${PV}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="doc"
+
+BDEPEND="
+	doc? (
+		>=app-text/doxygen-1.3.5
+		media-gfx/graphviz
+	)
+"
+
+src_prepare() {
+	default
+	sed '/cd $(WEB_DIR) && $(MAKE)/d' -i Makefile.am || die
+	eautoreconf
+}
+
+src_configure() {
+	# Fix bug 113392
+	econf $(use_enable !sparc use-memalign)
+}
+
+src_compile() {
+	emake CFLAGS="${CFLAGS}"
+
+	if use doc; then
+		mkdir -p ../www/doxygen/${PV} || die
+		emake update-www
+		HTML_DOCS=( ../www/doxygen/${PV}/html/. )
+
+		# remove doxygen working files
+		find ../www/doxygen/${PV}/html \( -iname '*.map' -o -iname '*.md5' \) -delete || die
+	fi
+}
+
+src_install() {
+	default
+	dodoc TROUBLESHOOTING debian/changelog
+}


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

* [gentoo-commits] repo/gentoo:master commit in: sys-apps/bar/
@ 2024-06-09  3:39 Arthur Zamarin
  0 siblings, 0 replies; 6+ messages in thread
From: Arthur Zamarin @ 2024-06-09  3:39 UTC (permalink / raw
  To: gentoo-commits

commit:     a06dfc8791fabd5050a6fc8d0c0a3ef023cad8cd
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Jun  9 03:39:15 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Jun  9 03:39:45 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a06dfc87

sys-apps/bar: drop 1.11.1

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

 sys-apps/bar/bar-1.11.1.ebuild | 47 ------------------------------------------
 1 file changed, 47 deletions(-)

diff --git a/sys-apps/bar/bar-1.11.1.ebuild b/sys-apps/bar/bar-1.11.1.ebuild
deleted file mode 100644
index 1ed308f56c70..000000000000
--- a/sys-apps/bar/bar-1.11.1.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools
-
-DESCRIPTION="Console Progress Bar"
-HOMEPAGE="http://clpbar.sourceforge.net/"
-SRC_URI="https://downloads.sourceforge.net/clpbar/${PN}_${PV}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm x86"
-IUSE="doc"
-
-DEPEND="doc? ( >=app-text/doxygen-1.3.5 )"
-RDEPEND=""
-
-src_prepare() {
-	default
-	sed '/cd $(WEB_DIR) && $(MAKE)/d' -i Makefile.am || die
-	eautomake
-}
-
-src_configure() {
-	# Fix bug 113392
-	econf $(use_enable !sparc use-memalign)
-}
-
-src_compile() {
-	emake CFLAGS="${CFLAGS}"
-
-	if use doc; then
-		mkdir -p ../www/doxygen/${PV} || die
-		emake update-www
-		HTML_DOCS=( ../www/doxygen/${PV}/html/. )
-
-		# remove doxygen working files
-		find ../www/doxygen/${PV}/html \( -iname '*.map' -o -iname '*.md5' \) -delete || die
-	fi
-}
-
-src_install() {
-	default
-	dodoc TROUBLESHOOTING debian/changelog
-}


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

* [gentoo-commits] repo/gentoo:master commit in: sys-apps/bar/
@ 2024-06-09  3:39 Arthur Zamarin
  0 siblings, 0 replies; 6+ messages in thread
From: Arthur Zamarin @ 2024-06-09  3:39 UTC (permalink / raw
  To: gentoo-commits

commit:     e8dc852f6b9c38d9a94e72b6557b96504479848c
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Jun  9 03:38:32 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Jun  9 03:39:44 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8dc852f

sys-apps/bar: Stabilize 1.11.1-r1 amd64, #933848

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

 sys-apps/bar/bar-1.11.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/bar/bar-1.11.1-r1.ebuild b/sys-apps/bar/bar-1.11.1-r1.ebuild
index b2b18c005864..233c894cef2c 100644
--- a/sys-apps/bar/bar-1.11.1-r1.ebuild
+++ b/sys-apps/bar/bar-1.11.1-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://downloads.sourceforge.net/clpbar/${PN}_${PV}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm ~x86"
 IUSE="doc"
 
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: sys-apps/bar/
@ 2024-06-09  3:39 Arthur Zamarin
  0 siblings, 0 replies; 6+ messages in thread
From: Arthur Zamarin @ 2024-06-09  3:39 UTC (permalink / raw
  To: gentoo-commits

commit:     a62c72364084d30c61ade41016d83420b4c784ce
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Jun  9 03:38:35 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Jun  9 03:39:44 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a62c7236

sys-apps/bar: Stabilize 1.11.1-r1 x86, #933848

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

 sys-apps/bar/bar-1.11.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/bar/bar-1.11.1-r1.ebuild b/sys-apps/bar/bar-1.11.1-r1.ebuild
index 233c894cef2c..8dd02807e397 100644
--- a/sys-apps/bar/bar-1.11.1-r1.ebuild
+++ b/sys-apps/bar/bar-1.11.1-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://downloads.sourceforge.net/clpbar/${PN}_${PV}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm x86"
 IUSE="doc"
 
 BDEPEND="


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

end of thread, other threads:[~2024-06-09  3:39 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-09  3:39 [gentoo-commits] repo/gentoo:master commit in: sys-apps/bar/ Arthur Zamarin
  -- strict thread matches above, loose matches on Subject: below --
2024-06-09  3:39 Arthur Zamarin
2024-06-09  3:39 Arthur Zamarin
2024-05-14  9:10 Arthur Zamarin
2017-12-02 16:15 David Seifert
2017-04-05 13:23 Michael Weber

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