public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/BDB/
@ 2018-11-03 19:37 Kent Fredric
  0 siblings, 0 replies; 3+ messages in thread
From: Kent Fredric @ 2018-11-03 19:37 UTC (permalink / raw
  To: gentoo-commits

commit:     44915bca1ca49b5c5b43983bb3774a2f33d26402
Author:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Sat Nov  3 18:08:17 2018 +0000
Commit:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Sat Nov  3 19:36:31 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44915bca

dev-perl/BDB: Add w/ version 1.920.0 re bug #458530

Bug: https://bugs.gentoo.org/458530
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>

 dev-perl/BDB/BDB-1.920.0.ebuild | 22 ++++++++++++++++++++++
 dev-perl/BDB/Manifest           |  1 +
 dev-perl/BDB/metadata.xml       | 12 ++++++++++++
 3 files changed, 35 insertions(+)

diff --git a/dev-perl/BDB/BDB-1.920.0.ebuild b/dev-perl/BDB/BDB-1.920.0.ebuild
new file mode 100644
index 00000000000..47d26c1126c
--- /dev/null
+++ b/dev-perl/BDB/BDB-1.920.0.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DIST_AUTHOR=MLEHMANN
+DIST_VERSION=1.92
+DIST_EXAMPLES=("eg/*")
+inherit perl-module
+
+DESCRIPTION="Asynchronous Berkeley DB access"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+	dev-perl/common-sense
+	sys-libs/db:=
+"
+DEPEND="${RDEPEND}
+	virtual/perl-ExtUtils-MakeMaker
+"

diff --git a/dev-perl/BDB/Manifest b/dev-perl/BDB/Manifest
new file mode 100644
index 00000000000..59e30cd13dc
--- /dev/null
+++ b/dev-perl/BDB/Manifest
@@ -0,0 +1 @@
+DIST BDB-1.92.tar.gz 38717 BLAKE2B 258f8d4169fcaa7310300d9ab76026c73c4da722afff27c397af9aeafcf4ca80d3e93b046fafd132db186780739b10791c8e64354dffa3b1da3abde88c7be998 SHA512 39dc6ffab84543061475c2a092497368a35f23e16d940a0b5ba5200709721b5f3a1c66fbc2b34b036b42b49cf659a6730167397f59c32e32bdeb814323d1d2fb

diff --git a/dev-perl/BDB/metadata.xml b/dev-perl/BDB/metadata.xml
new file mode 100644
index 00000000000..432c98c7507
--- /dev/null
+++ b/dev-perl/BDB/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <maintainer type="project">
+    <email>perl@gentoo.org</email>
+    <name>Gentoo Perl Project</name>
+  </maintainer>
+  <upstream>
+    <remote-id type="cpan">BDB</remote-id>
+    <remote-id type="cpan-module">BDB</remote-id>
+  </upstream>
+</pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: dev-perl/BDB/
@ 2020-07-03 15:10 Kent Fredric
  0 siblings, 0 replies; 3+ messages in thread
From: Kent Fredric @ 2020-07-03 15:10 UTC (permalink / raw
  To: gentoo-commits

commit:     d9d45ea01a8d827f9591db43cca3adecc9931ed0
Author:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Fri Jul  3 13:58:09 2020 +0000
Commit:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Fri Jul  3 14:59:57 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9d45ea0

dev-perl/BDB: -r bump for EAPI7 + CFLAGS love

- EAPI7
- Ensure CFLAGS passed through to make/compiler
- Remove empty/unused variable assignments

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>

 dev-perl/BDB/BDB-1.920.0-r1.ebuild | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/dev-perl/BDB/BDB-1.920.0-r1.ebuild b/dev-perl/BDB/BDB-1.920.0-r1.ebuild
new file mode 100644
index 00000000000..d7e98227eee
--- /dev/null
+++ b/dev-perl/BDB/BDB-1.920.0-r1.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DIST_AUTHOR=MLEHMANN
+DIST_VERSION=1.92
+DIST_EXAMPLES=("eg/*")
+inherit perl-module
+
+DESCRIPTION="Asynchronous Berkeley DB access"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+	dev-perl/common-sense
+	sys-libs/db:=
+"
+DEPEND="
+	sys-libs/db:=
+"
+BDEPEND="${RDEPEND}
+	virtual/perl-ExtUtils-MakeMaker
+"
+src_compile() {
+	mymake=(
+		"OPTIMIZE=${CFLAGS}"
+	)
+	perl-module_src_compile
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-perl/BDB/
@ 2020-08-06 16:40 Kent Fredric
  0 siblings, 0 replies; 3+ messages in thread
From: Kent Fredric @ 2020-08-06 16:40 UTC (permalink / raw
  To: gentoo-commits

commit:     1d26a961c6ae1717f0dcdcd8cacbec857096e36d
Author:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Thu Aug  6 16:12:15 2020 +0000
Commit:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Thu Aug  6 16:38:04 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d26a961

dev-perl/BDB: Cleanup old 1.920.0

Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>

 dev-perl/BDB/BDB-1.920.0.ebuild | 22 ----------------------
 1 file changed, 22 deletions(-)

diff --git a/dev-perl/BDB/BDB-1.920.0.ebuild b/dev-perl/BDB/BDB-1.920.0.ebuild
deleted file mode 100644
index 47d26c1126c..00000000000
--- a/dev-perl/BDB/BDB-1.920.0.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=MLEHMANN
-DIST_VERSION=1.92
-DIST_EXAMPLES=("eg/*")
-inherit perl-module
-
-DESCRIPTION="Asynchronous Berkeley DB access"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="
-	dev-perl/common-sense
-	sys-libs/db:=
-"
-DEPEND="${RDEPEND}
-	virtual/perl-ExtUtils-MakeMaker
-"


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

end of thread, other threads:[~2020-08-06 16:41 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-11-03 19:37 [gentoo-commits] repo/gentoo:master commit in: dev-perl/BDB/ Kent Fredric
  -- strict thread matches above, loose matches on Subject: below --
2020-07-03 15:10 Kent Fredric
2020-08-06 16:40 Kent Fredric

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