public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-lang/gnucobol/
@ 2022-11-24 11:33 Alfredo Tupone
  0 siblings, 0 replies; 5+ messages in thread
From: Alfredo Tupone @ 2022-11-24 11:33 UTC (permalink / raw
  To: gentoo-commits

commit:     373f0e982f98bd5598ff4f792d69423b94a4c570
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 24 11:33:00 2022 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Thu Nov 24 11:33:15 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=373f0e98

dev-lang/gnucobol: add 3.1.2

Closes: https://bugs.gentoo.org/685960
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 dev-lang/gnucobol/Manifest              |  1 +
 dev-lang/gnucobol/gnucobol-3.1.2.ebuild | 36 +++++++++++++++++++++++++++++++++
 dev-lang/gnucobol/metadata.xml          |  5 ++++-
 3 files changed, 41 insertions(+), 1 deletion(-)

diff --git a/dev-lang/gnucobol/Manifest b/dev-lang/gnucobol/Manifest
index 81739e232484..f13467cb7de9 100644
--- a/dev-lang/gnucobol/Manifest
+++ b/dev-lang/gnucobol/Manifest
@@ -1 +1,2 @@
+DIST gnucobol-3.1.2.tar.xz 2198512 BLAKE2B ccf9252bc4d5e64e966cea483981da36155767a5879967be7226fbcd8f13d8b427558de3a25cc8638f9156882b6f368acbf3e84d5e2ee68bd5754a6a513ac7d6 SHA512 738149c9d3e01140e4036b041f4eaa6c7caf7848a87146a3dd9940a9f17006805fd3c6b169d346bf01a0c2e671655080978c0f3182a85389f8f8a373ca8c1435
 DIST open-cobol-1.1.tar.gz 1007791 BLAKE2B 9154590626d885a75043c2426c1fafb146e0f7213d05f353f6d01c0e6b8cd8073e12f454a19ae1d3c712606f1c15958f241a7c54f76c995d0ce396d1eba1a0b0 SHA512 eb06cec456425ba5f4a091ae4ac0bfd14f38549bc147c606a022804f602102df6dbf0d399614f0eda49d50dee17eef55087748853a8cc8bdd1248f94fd09110c

diff --git a/dev-lang/gnucobol/gnucobol-3.1.2.ebuild b/dev-lang/gnucobol/gnucobol-3.1.2.ebuild
new file mode 100644
index 000000000000..2cbdbbeb39c3
--- /dev/null
+++ b/dev-lang/gnucobol/gnucobol-3.1.2.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="A free/libre COBOL compiler"
+HOMEPAGE="https://gnucobol.sourceforge.io/"
+SRC_URI="mirror://sourceforge/${PN}/$(ver_cut 1-2)/${P}.tar.xz"
+
+LICENSE="GPL-3 LGPL-3 FDL-1.3"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="berkdb json nls xml"
+
+RDEPEND="dev-libs/gmp:0=
+	json? ( dev-libs/json-c )
+	xml? ( dev-libs/libxml2 )
+	berkdb? ( sys-libs/db:4.8= )
+	sys-libs/ncurses"
+DEPEND="${RDEPEND}
+	sys-devel/libtool"
+
+DOCS=( AUTHORS ChangeLog NEWS README README.md )
+
+src_configure() {
+	econf \
+		$(use_with berkdb db) \
+		$(use_with json) \
+		$(use_with xml xml2) \
+		$(use_enable nls)
+}
+
+src_install() {
+	default
+	find "${ED}" -name '*.la' -delete || die
+}

diff --git a/dev-lang/gnucobol/metadata.xml b/dev-lang/gnucobol/metadata.xml
index deafad69d61d..67d7438cc42b 100644
--- a/dev-lang/gnucobol/metadata.xml
+++ b/dev-lang/gnucobol/metadata.xml
@@ -17,7 +17,10 @@
 		<email>proxy-maint@gentoo.org</email>
 		<name>Proxy Maintainers</name>
 	</maintainer>
+	<use>
+		<flag name="json">Enable support for JSON template formatting via <pkg>dev-libs/json-c</pkg></flag>
+	</use>
 	<upstream>
-		<remote-id type="sourceforge">open-cobol</remote-id>
+		<remote-id type="sourceforge">gnucobol</remote-id>
 	</upstream>
 </pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: dev-lang/gnucobol/
@ 2022-11-24 11:35 Sam James
  0 siblings, 0 replies; 5+ messages in thread
From: Sam James @ 2022-11-24 11:35 UTC (permalink / raw
  To: gentoo-commits

commit:     f771f3fff36d61de70badc432b1f00534d133998
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 24 11:35:32 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Nov 24 11:35:32 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f771f3ff

dev-lang/gnucobol: use BDEPEND

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

 dev-lang/gnucobol/gnucobol-3.1.2.ebuild | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/dev-lang/gnucobol/gnucobol-3.1.2.ebuild b/dev-lang/gnucobol/gnucobol-3.1.2.ebuild
index 2cbdbbeb39c3..8202373ea8e8 100644
--- a/dev-lang/gnucobol/gnucobol-3.1.2.ebuild
+++ b/dev-lang/gnucobol/gnucobol-3.1.2.ebuild
@@ -12,13 +12,15 @@ SLOT="0"
 KEYWORDS="~amd64 ~ppc ~x86"
 IUSE="berkdb json nls xml"
 
-RDEPEND="dev-libs/gmp:0=
-	json? ( dev-libs/json-c )
+RDEPEND="
+	dev-libs/gmp:=
+	sys-libs/ncurses:=
+	json? ( dev-libs/json-c:= )
 	xml? ( dev-libs/libxml2 )
 	berkdb? ( sys-libs/db:4.8= )
-	sys-libs/ncurses"
-DEPEND="${RDEPEND}
-	sys-devel/libtool"
+"
+DEPEND="${RDEPEND}"
+BDEPEND="sys-devel/libtool"
 
 DOCS=( AUTHORS ChangeLog NEWS README README.md )
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-lang/gnucobol/
@ 2022-11-24 11:35 Sam James
  0 siblings, 0 replies; 5+ messages in thread
From: Sam James @ 2022-11-24 11:35 UTC (permalink / raw
  To: gentoo-commits

commit:     388eaa41832607e4b3034cfd2f677068e5942d1b
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 24 11:34:33 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Nov 24 11:34:40 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=388eaa41

dev-lang/gnucobol: update maintainers

Patrick hasn't touched it in years and Anton made the PR a while
ago so we should see if he wants to be listed.

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

 dev-lang/gnucobol/metadata.xml | 12 ------------
 1 file changed, 12 deletions(-)

diff --git a/dev-lang/gnucobol/metadata.xml b/dev-lang/gnucobol/metadata.xml
index 67d7438cc42b..d9f88e1f25d0 100644
--- a/dev-lang/gnucobol/metadata.xml
+++ b/dev-lang/gnucobol/metadata.xml
@@ -1,22 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<maintainer type="person">
-		<email>patrick@gentoo.org</email>
-		<name>Patrick Lauer</name>
-	</maintainer>
 	<maintainer type="person">
 		<email>tupone@gentoo.org</email>
 		<name>Alfredo Tupone</name>
 	</maintainer>
-	<maintainer type="person">
-		<email>anton.kochkov@gmail.com</email>
-		<name>Anton Kochkov</name>
-	</maintainer>
-	<maintainer type="project">
-		<email>proxy-maint@gentoo.org</email>
-		<name>Proxy Maintainers</name>
-	</maintainer>
 	<use>
 		<flag name="json">Enable support for JSON template formatting via <pkg>dev-libs/json-c</pkg></flag>
 	</use>


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

* [gentoo-commits] repo/gentoo:master commit in: dev-lang/gnucobol/
@ 2022-11-26 15:11 Alfredo Tupone
  0 siblings, 0 replies; 5+ messages in thread
From: Alfredo Tupone @ 2022-11-26 15:11 UTC (permalink / raw
  To: gentoo-commits

commit:     0c979aad93b44f6a31659f4a0602b8fc43fb38c6
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 26 15:11:39 2022 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Sat Nov 26 15:11:39 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c979aad

dev-lang/gnucobol: drop 1.1

Closes: https://bugs.gentoo.org/870670
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 dev-lang/gnucobol/Manifest            |  1 -
 dev-lang/gnucobol/gnucobol-1.1.ebuild | 42 -----------------------------------
 2 files changed, 43 deletions(-)

diff --git a/dev-lang/gnucobol/Manifest b/dev-lang/gnucobol/Manifest
index f13467cb7de9..aa228b4ac71c 100644
--- a/dev-lang/gnucobol/Manifest
+++ b/dev-lang/gnucobol/Manifest
@@ -1,2 +1 @@
 DIST gnucobol-3.1.2.tar.xz 2198512 BLAKE2B ccf9252bc4d5e64e966cea483981da36155767a5879967be7226fbcd8f13d8b427558de3a25cc8638f9156882b6f368acbf3e84d5e2ee68bd5754a6a513ac7d6 SHA512 738149c9d3e01140e4036b041f4eaa6c7caf7848a87146a3dd9940a9f17006805fd3c6b169d346bf01a0c2e671655080978c0f3182a85389f8f8a373ca8c1435
-DIST open-cobol-1.1.tar.gz 1007791 BLAKE2B 9154590626d885a75043c2426c1fafb146e0f7213d05f353f6d01c0e6b8cd8073e12f454a19ae1d3c712606f1c15958f241a7c54f76c995d0ce396d1eba1a0b0 SHA512 eb06cec456425ba5f4a091ae4ac0bfd14f38549bc147c606a022804f602102df6dbf0d399614f0eda49d50dee17eef55087748853a8cc8bdd1248f94fd09110c

diff --git a/dev-lang/gnucobol/gnucobol-1.1.ebuild b/dev-lang/gnucobol/gnucobol-1.1.ebuild
deleted file mode 100644
index fa480cae9180..000000000000
--- a/dev-lang/gnucobol/gnucobol-1.1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-MY_PN="open-cobol"
-MYP=${MY_PN}-${PV}
-# Future proof pkg if maintainer or p-m want to bump to latest GNUCobol
-
-DESCRIPTION="an open-source COBOL compiler"
-HOMEPAGE="https://sourceforge.net/projects/open-cobol/"
-SRC_URI="mirror://sourceforge/${MY_PN}/${MYP}.tar.gz"
-
-LICENSE="GPL-2 LGPL-2.1"
-# License must be changed to GPL-3+ if/when pkgmove is done
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="berkdb nls readline"
-
-RDEPEND="dev-libs/gmp:0=
-	berkdb? ( sys-libs/db:4.8= )
-	sys-libs/ncurses
-	readline? ( sys-libs/readline )"
-DEPEND="${RDEPEND}
-	sys-devel/libtool"
-
-DOCS=( AUTHORS ChangeLog NEWS README )
-
-S="${WORKDIR}"/${MYP}
-
-src_configure() {
-	econf \
-		$(use_with berkdb db) \
-		$(use_enable nls) \
-		$(use_with readline) \
-		--disable-static
-}
-
-src_install() {
-	default
-	find "${ED}" -name '*.la' -delete || die
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-lang/gnucobol/
@ 2023-12-23 22:40 Alfredo Tupone
  0 siblings, 0 replies; 5+ messages in thread
From: Alfredo Tupone @ 2023-12-23 22:40 UTC (permalink / raw
  To: gentoo-commits

commit:     5f7edd401f88ecceff011c000316674d6a536d5d
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 23 22:38:54 2023 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Sat Dec 23 22:39:14 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f7edd40

dev-lang/gnucobol: add 3.2

Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 dev-lang/gnucobol/Manifest            |  1 +
 dev-lang/gnucobol/gnucobol-3.2.ebuild | 51 +++++++++++++++++++++++++++++++++++
 2 files changed, 52 insertions(+)

diff --git a/dev-lang/gnucobol/Manifest b/dev-lang/gnucobol/Manifest
index aa228b4ac71c..6ac0ac4ea413 100644
--- a/dev-lang/gnucobol/Manifest
+++ b/dev-lang/gnucobol/Manifest
@@ -1 +1,2 @@
 DIST gnucobol-3.1.2.tar.xz 2198512 BLAKE2B ccf9252bc4d5e64e966cea483981da36155767a5879967be7226fbcd8f13d8b427558de3a25cc8638f9156882b6f368acbf3e84d5e2ee68bd5754a6a513ac7d6 SHA512 738149c9d3e01140e4036b041f4eaa6c7caf7848a87146a3dd9940a9f17006805fd3c6b169d346bf01a0c2e671655080978c0f3182a85389f8f8a373ca8c1435
+DIST gnucobol-3.2.tar.xz 2902828 BLAKE2B 66df93fe2f8772aebd807612c8e96be46f5605c316f374ae51b3a8c3f6ce760150af60777cd1d53f12f65ee48bc0a6225c506b813fdafcc87d949e609ff3273e SHA512 1aef3c1bf7283219a7cb1e7b38ba5c5e299c0a83666ab6afdbb5713f1f791b23575ca51d546c4f2f036217060269028bbce4b5babbeb4f721b57495d5f258ff7

diff --git a/dev-lang/gnucobol/gnucobol-3.2.ebuild b/dev-lang/gnucobol/gnucobol-3.2.ebuild
new file mode 100644
index 000000000000..d5a4ea562c99
--- /dev/null
+++ b/dev-lang/gnucobol/gnucobol-3.2.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="A free/libre COBOL compiler"
+HOMEPAGE="https://gnucobol.sourceforge.io/"
+SRC_URI="mirror://sourceforge/${PN}/$(ver_cut 1-2)/${P}.tar.xz"
+
+LICENSE="GPL-3 LGPL-3 FDL-1.3"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="berkdb json nls xml"
+
+RDEPEND="
+	dev-libs/gmp:=
+	sys-libs/ncurses:=
+	json? ( dev-libs/json-c:= )
+	xml? ( dev-libs/libxml2 )
+	berkdb? ( sys-libs/db:4.8= )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="sys-devel/libtool"
+
+DOCS=( AUTHORS ChangeLog NEWS README README.md )
+
+PATCHES=(
+	"${FILESDIR}"/${PN}-3.1.2-gentoo.patch
+)
+
+src_prepare() {
+	default
+	eautoreconf
+}
+
+src_configure() {
+	econf \
+		$(use_with berkdb db) \
+		$(use_with json) \
+		$(use_with xml xml2) \
+		$(use_enable nls) \
+		--with-curses=ncursesw \
+		CURSES_LIBS="$(ncursesw6-config --libs)"
+}
+
+src_install() {
+	default
+	find "${ED}" -name '*.la' -delete || die
+}


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

end of thread, other threads:[~2023-12-23 22:40 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-12-23 22:40 [gentoo-commits] repo/gentoo:master commit in: dev-lang/gnucobol/ Alfredo Tupone
  -- strict thread matches above, loose matches on Subject: below --
2022-11-26 15:11 Alfredo Tupone
2022-11-24 11:35 Sam James
2022-11-24 11:35 Sam James
2022-11-24 11:33 Alfredo Tupone

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