* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Git-Wrapper/
@ 2017-06-18 20:42 Andreas Hüttel
0 siblings, 0 replies; 7+ messages in thread
From: Andreas Hüttel @ 2017-06-18 20:42 UTC (permalink / raw
To: gentoo-commits
commit: c9a97b485b96c50f6b8082930474fdabda2b3e46
Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 17 19:14:03 2017 +0000
Commit: Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sun Jun 18 20:42:27 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9a97b48
dev-perl/Git-Wrapper: New package. Needed for Dist::Zilla::Plugin::Git.
Package-Manager: Portage-2.3.6, Repoman-2.3.2
dev-perl/Git-Wrapper/Git-Wrapper-0.47.0.ebuild | 36 ++++++++++++++++++++++++++
dev-perl/Git-Wrapper/Manifest | 1 +
dev-perl/Git-Wrapper/metadata.xml | 8 ++++++
3 files changed, 45 insertions(+)
diff --git a/dev-perl/Git-Wrapper/Git-Wrapper-0.47.0.ebuild b/dev-perl/Git-Wrapper/Git-Wrapper-0.47.0.ebuild
new file mode 100644
index 00000000000..c6964a0471f
--- /dev/null
+++ b/dev-perl/Git-Wrapper/Git-Wrapper-0.47.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DIST_AUTHOR=GENEHACK
+DIST_VERSION=0.047
+inherit perl-module
+
+DESCRIPTION="Wrap git(7) command-line interface"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="
+ virtual/perl-File-Temp
+ dev-perl/File-chdir
+ virtual/perl-IPC-Cmd
+ virtual/perl-Scalar-List-Utils
+ dev-perl/Sort-Versions
+"
+DEPEND="${RDEPEND}
+ dev-perl/Devel-CheckBin
+ virtual/perl-ExtUtils-MakeMaker
+ virtual/perl-File-Spec
+ test? (
+ virtual/perl-File-Path
+ virtual/perl-File-Spec
+ virtual/perl-File-Temp
+ virtual/perl-IO
+ dev-perl/Test-Deep
+ dev-perl/Test-Exception
+ virtual/perl-Test-Simple
+ )
+"
diff --git a/dev-perl/Git-Wrapper/Manifest b/dev-perl/Git-Wrapper/Manifest
new file mode 100644
index 00000000000..6527f8ff772
--- /dev/null
+++ b/dev-perl/Git-Wrapper/Manifest
@@ -0,0 +1 @@
+DIST Git-Wrapper-0.047.tar.gz 30416 SHA256 6f16a48fd1d9ad62c9375dca552b60f7cba855764a0b7667d27a973ee5bb1630 SHA512 9a2c9bf30a9b803170adfeae9bbe41e1b0fc9e67fe477d4fdf1d20a57917c69c1c6be2a90fbc382f85cf83a209b39a9a3431276b33a6e7655b8cd240d1a68e78 WHIRLPOOL 8e72ce2876faf15cf3ce3234264dce75fa2e73b4dc1cb5fca75ad5a60eca3206af9e689153f68bb0b0eaaeeadef603b41fc8cc20e84ad76c43ffe110c423ddf0
diff --git a/dev-perl/Git-Wrapper/metadata.xml b/dev-perl/Git-Wrapper/metadata.xml
new file mode 100644
index 00000000000..2b9a936fc0a
--- /dev/null
+++ b/dev-perl/Git-Wrapper/metadata.xml
@@ -0,0 +1,8 @@
+<?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>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Git-Wrapper/
@ 2017-10-03 16:26 Kent Fredric
0 siblings, 0 replies; 7+ messages in thread
From: Kent Fredric @ 2017-10-03 16:26 UTC (permalink / raw
To: gentoo-commits
commit: 36438d4838240ab77b4750658dd832148450596f
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 3 16:25:38 2017 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Tue Oct 3 16:26:06 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36438d48
dev-perl/Git-Wrapper: Fix missing dep on dev-vcs/git bug #633384
Also adds a late src_compile test that asserts Git::Wrapper is loadable,
and will fail if src_prepare fails silently like it did in bug #633384
due to the absence of `blib`.
Closes: https://bugs.gentoo.org/633384
Package-Manager: Portage-2.3.8, Repoman-2.3.3
...Git-Wrapper-0.47.0.ebuild => Git-Wrapper-0.47.0-r1.ebuild} | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/dev-perl/Git-Wrapper/Git-Wrapper-0.47.0.ebuild b/dev-perl/Git-Wrapper/Git-Wrapper-0.47.0-r1.ebuild
similarity index 75%
rename from dev-perl/Git-Wrapper/Git-Wrapper-0.47.0.ebuild
rename to dev-perl/Git-Wrapper/Git-Wrapper-0.47.0-r1.ebuild
index c6964a0471f..bc2693e5b6e 100644
--- a/dev-perl/Git-Wrapper/Git-Wrapper-0.47.0.ebuild
+++ b/dev-perl/Git-Wrapper/Git-Wrapper-0.47.0-r1.ebuild
@@ -14,6 +14,7 @@ KEYWORDS="~amd64 ~x86"
IUSE="test"
RDEPEND="
+ dev-vcs/git
virtual/perl-File-Temp
dev-perl/File-chdir
virtual/perl-IPC-Cmd
@@ -34,3 +35,13 @@ DEPEND="${RDEPEND}
virtual/perl-Test-Simple
)
"
+src_compile() {
+ perl-module_src_compile
+ local MODULES=(
+ "Git::Wrapper ${DIST_VERSION}"
+ )
+ for dep in "${MODULES[@]}"; do
+ perl -Mblib="${S}" -M"${dep} ()" -e1 ||
+ die "Could not load ${dep}"
+ done
+}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Git-Wrapper/
@ 2017-10-24 2:43 Kent Fredric
0 siblings, 0 replies; 7+ messages in thread
From: Kent Fredric @ 2017-10-24 2:43 UTC (permalink / raw
To: gentoo-commits
commit: 36933df1f85ec485408b289da01fc626f944835b
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 24 00:11:45 2017 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Tue Oct 24 01:48:42 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36933df1
dev-perl/Git-Wrapper: Add remote-id's to metadata.xml
Package-Manager: Portage-2.3.8, Repoman-2.3.3
dev-perl/Git-Wrapper/metadata.xml | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/dev-perl/Git-Wrapper/metadata.xml b/dev-perl/Git-Wrapper/metadata.xml
index 2b9a936fc0a..71079026df9 100644
--- a/dev-perl/Git-Wrapper/metadata.xml
+++ b/dev-perl/Git-Wrapper/metadata.xml
@@ -5,4 +5,13 @@
<email>perl@gentoo.org</email>
<name>Gentoo Perl Project</name>
</maintainer>
+ <upstream>
+ <remote-id type="cpan">Git-Wrapper</remote-id>
+ <remote-id type="cpan-module">Git::Wrapper</remote-id>
+ <remote-id type="cpan-module">Git::Wrapper::Exception</remote-id>
+ <remote-id type="cpan-module">Git::Wrapper::File::RawModification</remote-id>
+ <remote-id type="cpan-module">Git::Wrapper::Log</remote-id>
+ <remote-id type="cpan-module">Git::Wrapper::Status</remote-id>
+ <remote-id type="cpan-module">Git::Wrapper::Statuses</remote-id>
+ </upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Git-Wrapper/
@ 2021-06-05 15:22 Andreas K. Hüttel
0 siblings, 0 replies; 7+ messages in thread
From: Andreas K. Hüttel @ 2021-06-05 15:22 UTC (permalink / raw
To: gentoo-commits
commit: 6c2f824453a6d2a98aad1687216564a70679c61b
Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 5 15:07:47 2021 +0000
Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sat Jun 5 15:21:38 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c2f8244
dev-perl/Git-Wrapper: Version bump 0.048
Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
dev-perl/Git-Wrapper/Git-Wrapper-0.48.0.ebuild | 49 ++++++++++++++++++++++++++
dev-perl/Git-Wrapper/Manifest | 1 +
2 files changed, 50 insertions(+)
diff --git a/dev-perl/Git-Wrapper/Git-Wrapper-0.48.0.ebuild b/dev-perl/Git-Wrapper/Git-Wrapper-0.48.0.ebuild
new file mode 100644
index 00000000000..ef88907f9d7
--- /dev/null
+++ b/dev-perl/Git-Wrapper/Git-Wrapper-0.48.0.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DIST_AUTHOR=GENEHACK
+DIST_VERSION=0.048
+inherit perl-module
+
+DESCRIPTION="Wrap git(7) command-line interface"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ dev-vcs/git
+ virtual/perl-File-Temp
+ dev-perl/File-chdir
+ virtual/perl-IPC-Cmd
+ virtual/perl-Scalar-List-Utils
+ dev-perl/Sort-Versions
+"
+BDEPEND="${RDEPEND}
+ dev-perl/Devel-CheckBin
+ virtual/perl-ExtUtils-MakeMaker
+ virtual/perl-File-Spec
+ test? (
+ virtual/perl-File-Path
+ virtual/perl-File-Spec
+ virtual/perl-File-Temp
+ virtual/perl-IO
+ dev-perl/Test-Deep
+ dev-perl/Test-Exception
+ virtual/perl-Test-Simple
+ )
+"
+
+src_compile() {
+ perl-module_src_compile
+ local MODULES=(
+ "Git::Wrapper ${DIST_VERSION}"
+ )
+ for dep in "${MODULES[@]}"; do
+ perl -Mblib="${S}" -M"${dep} ()" -e1 ||
+ die "Could not load ${dep}"
+ done
+}
diff --git a/dev-perl/Git-Wrapper/Manifest b/dev-perl/Git-Wrapper/Manifest
index 7623d6819dc..53981c808b0 100644
--- a/dev-perl/Git-Wrapper/Manifest
+++ b/dev-perl/Git-Wrapper/Manifest
@@ -1 +1,2 @@
DIST Git-Wrapper-0.047.tar.gz 30416 BLAKE2B cfe969bd4d60ec0252cd9d78d753ff3200a8bd1a522617dba5436361817eee969d9310bc40aa68651697c75ead5a6764d4e8b02031dd70d256b2124f0c8d9181 SHA512 9a2c9bf30a9b803170adfeae9bbe41e1b0fc9e67fe477d4fdf1d20a57917c69c1c6be2a90fbc382f85cf83a209b39a9a3431276b33a6e7655b8cd240d1a68e78
+DIST Git-Wrapper-0.048.tar.gz 31531 BLAKE2B 18d74644a0e3d37b60e69a86f70b5a0769627c5dd2b7d1986c960443f4bb7a2f9cc3f1cd3e6bb120c27cfb5bc5e6fc5bcf7a11ece27af7abdbd4cf42914ba3dc SHA512 2dce8cc1c05a321ba31c3c78cfb6e3c793fa3d47d03c459ee559540eb31db71d9c641b4c1dbcd5782d84031a7aaf6024c5b60c2ae71b94d0a7a1f19f9746ec03
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Git-Wrapper/
@ 2021-06-20 21:00 Andreas K. Hüttel
0 siblings, 0 replies; 7+ messages in thread
From: Andreas K. Hüttel @ 2021-06-20 21:00 UTC (permalink / raw
To: gentoo-commits
commit: 75934f012239172ecbed4f14bd6302c791cedddf
Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 20 20:53:50 2021 +0000
Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sun Jun 20 21:00:03 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75934f01
dev-perl/Git-Wrapper: stable for amd64
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
dev-perl/Git-Wrapper/Git-Wrapper-0.48.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-perl/Git-Wrapper/Git-Wrapper-0.48.0.ebuild b/dev-perl/Git-Wrapper/Git-Wrapper-0.48.0.ebuild
index ef88907f9d7..80d9211d3d7 100644
--- a/dev-perl/Git-Wrapper/Git-Wrapper-0.48.0.ebuild
+++ b/dev-perl/Git-Wrapper/Git-Wrapper-0.48.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
DESCRIPTION="Wrap git(7) command-line interface"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Git-Wrapper/
@ 2021-10-30 18:46 Andreas K. Hüttel
0 siblings, 0 replies; 7+ messages in thread
From: Andreas K. Hüttel @ 2021-10-30 18:46 UTC (permalink / raw
To: gentoo-commits
commit: 5a6444a1fa2db831f7bc4feb43eef1307f68a226
Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 30 18:38:05 2021 +0000
Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sat Oct 30 18:46:16 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a6444a1
dev-perl/Git-Wrapper: Remove old
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
dev-perl/Git-Wrapper/Git-Wrapper-0.47.0-r1.ebuild | 48 -----------------------
dev-perl/Git-Wrapper/Manifest | 1 -
2 files changed, 49 deletions(-)
diff --git a/dev-perl/Git-Wrapper/Git-Wrapper-0.47.0-r1.ebuild b/dev-perl/Git-Wrapper/Git-Wrapper-0.47.0-r1.ebuild
deleted file mode 100644
index 0835ab9bb5d..00000000000
--- a/dev-perl/Git-Wrapper/Git-Wrapper-0.47.0-r1.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=GENEHACK
-DIST_VERSION=0.047
-inherit perl-module
-
-DESCRIPTION="Wrap git(7) command-line interface"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- dev-vcs/git
- virtual/perl-File-Temp
- dev-perl/File-chdir
- virtual/perl-IPC-Cmd
- virtual/perl-Scalar-List-Utils
- dev-perl/Sort-Versions
-"
-DEPEND="${RDEPEND}
- dev-perl/Devel-CheckBin
- virtual/perl-ExtUtils-MakeMaker
- virtual/perl-File-Spec
- test? (
- virtual/perl-File-Path
- virtual/perl-File-Spec
- virtual/perl-File-Temp
- virtual/perl-IO
- dev-perl/Test-Deep
- dev-perl/Test-Exception
- virtual/perl-Test-Simple
- )
-"
-src_compile() {
- perl-module_src_compile
- local MODULES=(
- "Git::Wrapper ${DIST_VERSION}"
- )
- for dep in "${MODULES[@]}"; do
- perl -Mblib="${S}" -M"${dep} ()" -e1 ||
- die "Could not load ${dep}"
- done
-}
diff --git a/dev-perl/Git-Wrapper/Manifest b/dev-perl/Git-Wrapper/Manifest
index 53981c808b0..34a43adba6a 100644
--- a/dev-perl/Git-Wrapper/Manifest
+++ b/dev-perl/Git-Wrapper/Manifest
@@ -1,2 +1 @@
-DIST Git-Wrapper-0.047.tar.gz 30416 BLAKE2B cfe969bd4d60ec0252cd9d78d753ff3200a8bd1a522617dba5436361817eee969d9310bc40aa68651697c75ead5a6764d4e8b02031dd70d256b2124f0c8d9181 SHA512 9a2c9bf30a9b803170adfeae9bbe41e1b0fc9e67fe477d4fdf1d20a57917c69c1c6be2a90fbc382f85cf83a209b39a9a3431276b33a6e7655b8cd240d1a68e78
DIST Git-Wrapper-0.048.tar.gz 31531 BLAKE2B 18d74644a0e3d37b60e69a86f70b5a0769627c5dd2b7d1986c960443f4bb7a2f9cc3f1cd3e6bb120c27cfb5bc5e6fc5bcf7a11ece27af7abdbd4cf42914ba3dc SHA512 2dce8cc1c05a321ba31c3c78cfb6e3c793fa3d47d03c459ee559540eb31db71d9c641b4c1dbcd5782d84031a7aaf6024c5b60c2ae71b94d0a7a1f19f9746ec03
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Git-Wrapper/
@ 2025-02-27 19:00 Andreas K. Hüttel
0 siblings, 0 replies; 7+ messages in thread
From: Andreas K. Hüttel @ 2025-02-27 19:00 UTC (permalink / raw
To: gentoo-commits
commit: b44ab02c1772bcbf63032ad03ac642a07006082b
Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 27 18:57:08 2025 +0000
Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Thu Feb 27 18:59:46 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b44ab02c
dev-perl/Git-Wrapper: virtual/perl-IPC-Cmd is going away
Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
.../{Git-Wrapper-0.48.0.ebuild => Git-Wrapper-0.48.0-r1.ebuild} | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/dev-perl/Git-Wrapper/Git-Wrapper-0.48.0.ebuild b/dev-perl/Git-Wrapper/Git-Wrapper-0.48.0-r1.ebuild
similarity index 93%
rename from dev-perl/Git-Wrapper/Git-Wrapper-0.48.0.ebuild
rename to dev-perl/Git-Wrapper/Git-Wrapper-0.48.0-r1.ebuild
index 80d9211d3d72..8b1cb31c3548 100644
--- a/dev-perl/Git-Wrapper/Git-Wrapper-0.48.0.ebuild
+++ b/dev-perl/Git-Wrapper/Git-Wrapper-0.48.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -18,7 +18,6 @@ RDEPEND="
dev-vcs/git
virtual/perl-File-Temp
dev-perl/File-chdir
- virtual/perl-IPC-Cmd
virtual/perl-Scalar-List-Utils
dev-perl/Sort-Versions
"
^ permalink raw reply related [flat|nested] 7+ messages in thread
end of thread, other threads:[~2025-02-27 19:00 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-10-30 18:46 [gentoo-commits] repo/gentoo:master commit in: dev-perl/Git-Wrapper/ Andreas K. Hüttel
-- strict thread matches above, loose matches on Subject: below --
2025-02-27 19:00 Andreas K. Hüttel
2021-06-20 21:00 Andreas K. Hüttel
2021-06-05 15:22 Andreas K. Hüttel
2017-10-24 2:43 Kent Fredric
2017-10-03 16:26 Kent Fredric
2017-06-18 20:42 Andreas Hüttel
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox