* [gentoo-commits] repo/gentoo:master commit in: app-vim/vim-autoclose/
@ 2017-02-27 22:51 Patrice Clement
0 siblings, 0 replies; 8+ messages in thread
From: Patrice Clement @ 2017-02-27 22:51 UTC (permalink / raw
To: gentoo-commits
commit: 6136ecf2da97e6e997097fac597cf509a26e3b84
Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 27 22:50:47 2017 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Mon Feb 27 22:51:05 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6136ecf2
app-vim/vim-autoclose: new package.
autoclose is a plugin to automatically open and close pair or characters.
Package-Manager: Portage-2.3.3, Repoman-2.3.1
app-vim/vim-autoclose/Manifest | 1 +
app-vim/vim-autoclose/metadata.xml | 12 ++++++++++++
app-vim/vim-autoclose/vim-autoclose-2.0.ebuild | 21 +++++++++++++++++++++
3 files changed, 34 insertions(+)
diff --git a/app-vim/vim-autoclose/Manifest b/app-vim/vim-autoclose/Manifest
new file mode 100644
index 0000000000..01e1985f65
--- /dev/null
+++ b/app-vim/vim-autoclose/Manifest
@@ -0,0 +1 @@
+DIST vim-autoclose-2.0.tar.gz 35779 SHA256 151cfbfda66f338c63e59aad47c7ae34de96d62628fc48af12b0894771f913d2 SHA512 2604c2c16f25eb60bf660ba4f80d40d9aa51af38cc59a2727f0c705ba2abe5302a58dc60a71c791cc6aa002477587d1dadcc8a9269a93c5a9405a86251f4fcd9 WHIRLPOOL 1a0588cb29c4d9d8fa8c9d97d3bcfe0da61e7a9657f1c2127053cd4f57a086f52139f8b2f689126db320f94a612a05714fa486958c98c645f4450b78c929e17c
diff --git a/app-vim/vim-autoclose/metadata.xml b/app-vim/vim-autoclose/metadata.xml
new file mode 100644
index 0000000000..8fafbfec19
--- /dev/null
+++ b/app-vim/vim-autoclose/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="person">
+ <email>monsieurp@gentoo.org</email>
+ <name>Patrice Clement</name>
+ </maintainer>
+ <maintainer type="project">
+ <email>vim@gentoo.org</email>
+ <name>Gentoo Vim Project</name>
+ </maintainer>
+</pkgmetadata>
diff --git a/app-vim/vim-autoclose/vim-autoclose-2.0.ebuild b/app-vim/vim-autoclose/vim-autoclose-2.0.ebuild
new file mode 100644
index 0000000000..f3f5770eb2
--- /dev/null
+++ b/app-vim/vim-autoclose/vim-autoclose-2.0.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit vim-plugin
+
+DESCRIPTION="vim plugin: open-close pair of characters"
+HOMEPAGE="https://github.com/Townk/vim-autoclose"
+SRC_URI="https://dev.gentoo.org/~monsieurp/packages/${P}.tar.gz"
+LICENSE="vim"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+
+DEPEND="app-arch/unzip"
+RDEPEND="${DEPEND}"
+
+src_unpack() {
+ default
+ mv * "${P}" || die
+}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-vim/vim-autoclose/
@ 2017-02-28 8:46 Patrice Clement
0 siblings, 0 replies; 8+ messages in thread
From: Patrice Clement @ 2017-02-28 8:46 UTC (permalink / raw
To: gentoo-commits
commit: 98f89cd486710dd14fede7c254742fe0796db466
Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 28 08:45:55 2017 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Tue Feb 28 08:45:55 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98f89cd4
app-vim/vim-autoclose: remove DEPEND/RDEPEND.
These should be no dependency whatsoever.
Package-Manager: Portage-2.3.3, Repoman-2.3.1
app-vim/vim-autoclose/vim-autoclose-2.0.ebuild | 4 ----
1 file changed, 4 deletions(-)
diff --git a/app-vim/vim-autoclose/vim-autoclose-2.0.ebuild b/app-vim/vim-autoclose/vim-autoclose-2.0.ebuild
index f3f5770eb2..9731bbec6d 100644
--- a/app-vim/vim-autoclose/vim-autoclose-2.0.ebuild
+++ b/app-vim/vim-autoclose/vim-autoclose-2.0.ebuild
@@ -1,7 +1,6 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
-
EAPI=6
inherit vim-plugin
@@ -12,9 +11,6 @@ SRC_URI="https://dev.gentoo.org/~monsieurp/packages/${P}.tar.gz"
LICENSE="vim"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
-DEPEND="app-arch/unzip"
-RDEPEND="${DEPEND}"
-
src_unpack() {
default
mv * "${P}" || die
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-vim/vim-autoclose/
@ 2017-03-01 23:27 Patrice Clement
0 siblings, 0 replies; 8+ messages in thread
From: Patrice Clement @ 2017-03-01 23:27 UTC (permalink / raw
To: gentoo-commits
commit: 38f902d2856a37b2f466974a7a0da128c3459112
Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 28 22:56:53 2017 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Wed Mar 1 23:26:25 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38f902d2
app-vim/vim-autoclose: drop ppc and ppc64.
Package-Manager: Portage-2.3.3, Repoman-2.3.1
app-vim/vim-autoclose/vim-autoclose-2.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-vim/vim-autoclose/vim-autoclose-2.0.ebuild b/app-vim/vim-autoclose/vim-autoclose-2.0.ebuild
index 5481df253d7..ee659be9e20 100644
--- a/app-vim/vim-autoclose/vim-autoclose-2.0.ebuild
+++ b/app-vim/vim-autoclose/vim-autoclose-2.0.ebuild
@@ -8,7 +8,7 @@ DESCRIPTION="vim plugin: open-close pair of characters"
HOMEPAGE="https://github.com/Townk/vim-autoclose"
SRC_URI="https://dev.gentoo.org/~monsieurp/packages/${P}.tar.gz"
LICENSE="vim"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~x86"
src_unpack() {
default
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-vim/vim-autoclose/
@ 2017-03-31 21:57 Patrice Clement
0 siblings, 0 replies; 8+ messages in thread
From: Patrice Clement @ 2017-03-31 21:57 UTC (permalink / raw
To: gentoo-commits
commit: 5937c246343810c2360624b36fc9ff425eb3c316
Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 31 21:46:35 2017 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Fri Mar 31 21:57:32 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5937c246
app-vim/vim-autoclose: stable for amd64+x86.
Package-Manager: Portage-2.3.3, Repoman-2.3.1
app-vim/vim-autoclose/vim-autoclose-2.0.ebuild | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/app-vim/vim-autoclose/vim-autoclose-2.0.ebuild b/app-vim/vim-autoclose/vim-autoclose-2.0.ebuild
index ee659be9e20..b831f463e57 100644
--- a/app-vim/vim-autoclose/vim-autoclose-2.0.ebuild
+++ b/app-vim/vim-autoclose/vim-autoclose-2.0.ebuild
@@ -1,5 +1,6 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
+
EAPI=6
inherit vim-plugin
@@ -8,7 +9,7 @@ DESCRIPTION="vim plugin: open-close pair of characters"
HOMEPAGE="https://github.com/Townk/vim-autoclose"
SRC_URI="https://dev.gentoo.org/~monsieurp/packages/${P}.tar.gz"
LICENSE="vim"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
src_unpack() {
default
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-vim/vim-autoclose/
@ 2023-09-14 21:23 Conrad Kostecki
0 siblings, 0 replies; 8+ messages in thread
From: Conrad Kostecki @ 2023-09-14 21:23 UTC (permalink / raw
To: gentoo-commits
commit: fe9f8af4e18860372a9aa19c29d893420edac76d
Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Sun Mar 19 17:18:05 2023 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Thu Sep 14 21:22:49 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe9f8af4
app-vim/vim-autoclose: EAPI8 bump
Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
app-vim/vim-autoclose/vim-autoclose-2.0-r1.ebuild | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/app-vim/vim-autoclose/vim-autoclose-2.0-r1.ebuild b/app-vim/vim-autoclose/vim-autoclose-2.0-r1.ebuild
new file mode 100644
index 000000000000..256532012217
--- /dev/null
+++ b/app-vim/vim-autoclose/vim-autoclose-2.0-r1.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit vim-plugin
+
+DESCRIPTION="vim plugin: open-close pair of characters"
+HOMEPAGE="https://github.com/Townk/vim-autoclose"
+SRC_URI="https://dev.gentoo.org/~monsieurp/packages/${P}.tar.gz"
+
+LICENSE="vim"
+KEYWORDS="~amd64 ~x86"
+
+DOCS=( README.txt AUTHORS.txt )
+
+src_unpack() {
+ default
+ mv * "${P}" || die
+}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-vim/vim-autoclose/
@ 2023-12-09 20:01 Michał Górny
0 siblings, 0 replies; 8+ messages in thread
From: Michał Górny @ 2023-12-09 20:01 UTC (permalink / raw
To: gentoo-commits
commit: 67ab169d56d4d8137809cde6ff1af0507b0ae178
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 9 20:01:29 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Dec 9 20:01:51 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67ab169d
app-vim/vim-autoclose: Stabilize 2.0-r1 x86, #919658
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
app-vim/vim-autoclose/vim-autoclose-2.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-vim/vim-autoclose/vim-autoclose-2.0-r1.ebuild b/app-vim/vim-autoclose/vim-autoclose-2.0-r1.ebuild
index 256532012217..0b0b7394fc95 100644
--- a/app-vim/vim-autoclose/vim-autoclose-2.0-r1.ebuild
+++ b/app-vim/vim-autoclose/vim-autoclose-2.0-r1.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://github.com/Townk/vim-autoclose"
SRC_URI="https://dev.gentoo.org/~monsieurp/packages/${P}.tar.gz"
LICENSE="vim"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
DOCS=( README.txt AUTHORS.txt )
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-vim/vim-autoclose/
@ 2023-12-09 20:25 Arthur Zamarin
0 siblings, 0 replies; 8+ messages in thread
From: Arthur Zamarin @ 2023-12-09 20:25 UTC (permalink / raw
To: gentoo-commits
commit: 22905aba16499f13599833a2b6656a8490f91d9a
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 9 20:25:21 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Dec 9 20:25:21 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22905aba
app-vim/vim-autoclose: Stabilize 2.0-r1 amd64, #919658
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
app-vim/vim-autoclose/vim-autoclose-2.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-vim/vim-autoclose/vim-autoclose-2.0-r1.ebuild b/app-vim/vim-autoclose/vim-autoclose-2.0-r1.ebuild
index 0b0b7394fc95..a23b8b1e9756 100644
--- a/app-vim/vim-autoclose/vim-autoclose-2.0-r1.ebuild
+++ b/app-vim/vim-autoclose/vim-autoclose-2.0-r1.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://github.com/Townk/vim-autoclose"
SRC_URI="https://dev.gentoo.org/~monsieurp/packages/${P}.tar.gz"
LICENSE="vim"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
DOCS=( README.txt AUTHORS.txt )
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-vim/vim-autoclose/
@ 2024-01-13 18:50 Michał Górny
0 siblings, 0 replies; 8+ messages in thread
From: Michał Górny @ 2024-01-13 18:50 UTC (permalink / raw
To: gentoo-commits
commit: 713386ac59b1bf95acddf04c29fa308a6bb27c75
Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Sat Jan 13 17:40:42 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Jan 13 18:50:40 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=713386ac
app-vim/vim-autoclose: drop 2.0, EAPI6--
Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
app-vim/vim-autoclose/vim-autoclose-2.0.ebuild | 19 -------------------
1 file changed, 19 deletions(-)
diff --git a/app-vim/vim-autoclose/vim-autoclose-2.0.ebuild b/app-vim/vim-autoclose/vim-autoclose-2.0.ebuild
deleted file mode 100644
index 6a99e0c2c47d..000000000000
--- a/app-vim/vim-autoclose/vim-autoclose-2.0.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit vim-plugin
-
-DESCRIPTION="vim plugin: open-close pair of characters"
-HOMEPAGE="https://github.com/Townk/vim-autoclose"
-SRC_URI="https://dev.gentoo.org/~monsieurp/packages/${P}.tar.gz"
-LICENSE="vim"
-KEYWORDS="amd64 x86"
-
-DOCS=( README.txt AUTHORS.txt )
-
-src_unpack() {
- default
- mv * "${P}" || die
-}
^ permalink raw reply related [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-01-13 18:51 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-12-09 20:25 [gentoo-commits] repo/gentoo:master commit in: app-vim/vim-autoclose/ Arthur Zamarin
-- strict thread matches above, loose matches on Subject: below --
2024-01-13 18:50 Michał Górny
2023-12-09 20:01 Michał Górny
2023-09-14 21:23 Conrad Kostecki
2017-03-31 21:57 Patrice Clement
2017-03-01 23:27 Patrice Clement
2017-02-28 8:46 Patrice Clement
2017-02-27 22:51 Patrice Clement
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox