public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-vim/gnupg/
@ 2016-08-18  5:12 Tim Harder
  0 siblings, 0 replies; 10+ messages in thread
From: Tim Harder @ 2016-08-18  5:12 UTC (permalink / raw
  To: gentoo-commits

commit:     b2a80b0e1f5841d7870296deaff1c55ffbfdcacb
Author:     Tim Harder <radhermit <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 18 05:10:56 2016 +0000
Commit:     Tim Harder <radhermit <AT> gentoo <DOT> org>
CommitDate: Thu Aug 18 05:10:56 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2a80b0e

app-vim/gnupg: version bump to 2.6

 app-vim/gnupg/Manifest         |  1 +
 app-vim/gnupg/gnupg-2.6.ebuild | 29 +++++++++++++++++++++++++++++
 2 files changed, 30 insertions(+)

diff --git a/app-vim/gnupg/Manifest b/app-vim/gnupg/Manifest
index c2403e6..8a23e23 100644
--- a/app-vim/gnupg/Manifest
+++ b/app-vim/gnupg/Manifest
@@ -1 +1,2 @@
 DIST gnupg-2.5.tar.bz2 10149 SHA256 a04219ec0d7d113e4e9de8846388ffe028888e9ea34dbedb38822dfb21f204a4 SHA512 45800bb39cb0a692bc68654e93935008d1fa6a14ce942d87e193f65d243796e159a4624013b1e98204ce8e99ab6a6588c9ea9db20b99f12e102b4733e178f78d WHIRLPOOL 3f6aa257057038cfe51b1319028e554f11b19c0bd269ae303894993cbe262167ff843c373f60cf3bdbd7b1fe23cd74ef4b8d402135fe60aa8a1e5146f29965ac
+DIST gnupg-2.6.tar.bz2 12074 SHA256 0c35d9e7026da11e236759b4b6895b7a5e56dce1849a433cc03ac11aa246eeed SHA512 1b7307954aad751006286edebb80767951b9bd9a8eff4c4a57fa6030cb442ceca12730a82c76a2181e1da19cc4cc8be21ccd4f8a21817aedf42785d8ff4b61ac WHIRLPOOL fff1d6bf8d5c54490e76a2dda3600fcab6db1eb3cc15f7baec2e8697f24e43d162c17a92d7e949a1b1148efeae2e40c6c38e3c08bacd2397bd1d86d6cda00e0e

diff --git a/app-vim/gnupg/gnupg-2.6.ebuild b/app-vim/gnupg/gnupg-2.6.ebuild
new file mode 100644
index 0000000..5831080
--- /dev/null
+++ b/app-vim/gnupg/gnupg-2.6.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit vim-plugin
+
+DESCRIPTION="transparent editing of gpg encrypted files"
+HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=3645"
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~arm ~x86"
+
+RDEPEND="app-crypt/gnupg"
+
+VIM_PLUGIN_HELPFILES="${PN}.txt"
+
+src_prepare() {
+	default
+
+	# There's good documentation included with the script, but it's not
+	# in a helpfile. Since there's rather too much information to include
+	# in a VIM_PLUGIN_HELPTEXT, we'll sed ourselves a help doc.
+	mkdir doc
+	sed -e '/" Section: Plugin header.\+$/,9999d' -e 's/^" \?//' \
+		-e 's/\(Name:\s\+\)\([^.]\+\)\.vim/\1*\2.txt*/' \
+		plugin/${PN}.vim \
+		> doc/${PN}.txt
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-vim/gnupg/
@ 2016-08-25 20:58 Patrice Clement
  0 siblings, 0 replies; 10+ messages in thread
From: Patrice Clement @ 2016-08-25 20:58 UTC (permalink / raw
  To: gentoo-commits

commit:     14ed670c99c3cd4090308157420b3f124a09d71f
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 25 20:15:10 2016 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Thu Aug 25 20:58:05 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14ed670c

app-vim/gnupg: Add missing || dies.

Package-Manager: portage-2.2.28

 app-vim/gnupg/gnupg-2.6.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-vim/gnupg/gnupg-2.6.ebuild b/app-vim/gnupg/gnupg-2.6.ebuild
index 5831080..49055cb 100644
--- a/app-vim/gnupg/gnupg-2.6.ebuild
+++ b/app-vim/gnupg/gnupg-2.6.ebuild
@@ -21,9 +21,9 @@ src_prepare() {
 	# There's good documentation included with the script, but it's not
 	# in a helpfile. Since there's rather too much information to include
 	# in a VIM_PLUGIN_HELPTEXT, we'll sed ourselves a help doc.
-	mkdir doc
+	mkdir doc || die
 	sed -e '/" Section: Plugin header.\+$/,9999d' -e 's/^" \?//' \
 		-e 's/\(Name:\s\+\)\([^.]\+\)\.vim/\1*\2.txt*/' \
 		plugin/${PN}.vim \
-		> doc/${PN}.txt
+		> doc/${PN}.txt || die
 }


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

* [gentoo-commits] repo/gentoo:master commit in: app-vim/gnupg/
@ 2016-10-31  4:23 Tim Harder
  0 siblings, 0 replies; 10+ messages in thread
From: Tim Harder @ 2016-10-31  4:23 UTC (permalink / raw
  To: gentoo-commits

commit:     8d252cdfcb7aa963bb16620b4fd7673e1cb2f65a
Author:     Tim Harder <radhermit <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 31 04:22:32 2016 +0000
Commit:     Tim Harder <radhermit <AT> gentoo <DOT> org>
CommitDate: Mon Oct 31 04:22:32 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d252cdf

app-vim/gnupg: stabilize 2.6

 app-vim/gnupg/gnupg-2.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-vim/gnupg/gnupg-2.6.ebuild b/app-vim/gnupg/gnupg-2.6.ebuild
index 49055cb..5ac03e8 100644
--- a/app-vim/gnupg/gnupg-2.6.ebuild
+++ b/app-vim/gnupg/gnupg-2.6.ebuild
@@ -9,7 +9,7 @@ inherit vim-plugin
 DESCRIPTION="transparent editing of gpg encrypted files"
 HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=3645"
 LICENSE="GPL-2"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm x86"
 
 RDEPEND="app-crypt/gnupg"
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-vim/gnupg/
@ 2016-10-31  4:23 Tim Harder
  0 siblings, 0 replies; 10+ messages in thread
From: Tim Harder @ 2016-10-31  4:23 UTC (permalink / raw
  To: gentoo-commits

commit:     5a8f9a3d8fceb62d2960da047f23741705b0637e
Author:     Tim Harder <radhermit <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 31 04:22:45 2016 +0000
Commit:     Tim Harder <radhermit <AT> gentoo <DOT> org>
CommitDate: Mon Oct 31 04:22:45 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a8f9a3d

app-vim/gnupg: remove old

 app-vim/gnupg/Manifest         |  1 -
 app-vim/gnupg/gnupg-2.5.ebuild | 28 ----------------------------
 2 files changed, 29 deletions(-)

diff --git a/app-vim/gnupg/Manifest b/app-vim/gnupg/Manifest
index 8a23e23..32896ff 100644
--- a/app-vim/gnupg/Manifest
+++ b/app-vim/gnupg/Manifest
@@ -1,2 +1 @@
-DIST gnupg-2.5.tar.bz2 10149 SHA256 a04219ec0d7d113e4e9de8846388ffe028888e9ea34dbedb38822dfb21f204a4 SHA512 45800bb39cb0a692bc68654e93935008d1fa6a14ce942d87e193f65d243796e159a4624013b1e98204ce8e99ab6a6588c9ea9db20b99f12e102b4733e178f78d WHIRLPOOL 3f6aa257057038cfe51b1319028e554f11b19c0bd269ae303894993cbe262167ff843c373f60cf3bdbd7b1fe23cd74ef4b8d402135fe60aa8a1e5146f29965ac
 DIST gnupg-2.6.tar.bz2 12074 SHA256 0c35d9e7026da11e236759b4b6895b7a5e56dce1849a433cc03ac11aa246eeed SHA512 1b7307954aad751006286edebb80767951b9bd9a8eff4c4a57fa6030cb442ceca12730a82c76a2181e1da19cc4cc8be21ccd4f8a21817aedf42785d8ff4b61ac WHIRLPOOL fff1d6bf8d5c54490e76a2dda3600fcab6db1eb3cc15f7baec2e8697f24e43d162c17a92d7e949a1b1148efeae2e40c6c38e3c08bacd2397bd1d86d6cda00e0e

diff --git a/app-vim/gnupg/gnupg-2.5.ebuild b/app-vim/gnupg/gnupg-2.5.ebuild
deleted file mode 100644
index f36d764..00000000
--- a/app-vim/gnupg/gnupg-2.5.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-inherit vim-plugin
-
-DESCRIPTION="vim plugin: transparent editing of gpg encrypted files"
-HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=3645"
-LICENSE="GPL-2"
-KEYWORDS="amd64 ~arm x86"
-IUSE=""
-
-RDEPEND="app-crypt/gnupg"
-
-VIM_PLUGIN_HELPFILES="${PN}.txt"
-
-src_prepare() {
-	# There's good documentation included with the script, but it's not
-	# in a helpfile. Since there's rather too much information to include
-	# in a VIM_PLUGIN_HELPTEXT, we'll sed ourselves a help doc.
-	mkdir doc
-	sed -e '/" Section: Plugin header.\+$/,9999d' -e 's/^" \?//' \
-		-e 's/\(Name:\s\+\)\([^.]\+\)\.vim/\1*\2.txt*/' \
-		plugin/${PN}.vim \
-		> doc/${PN}.txt
-}


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

* [gentoo-commits] repo/gentoo:master commit in: app-vim/gnupg/
@ 2018-03-04 22:11 Patrice Clement
  0 siblings, 0 replies; 10+ messages in thread
From: Patrice Clement @ 2018-03-04 22:11 UTC (permalink / raw
  To: gentoo-commits

commit:     b3dcd270fd954d0c710617d89113d3fce524278c
Author:     Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Sun Mar  4 17:29:32 2018 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Sun Mar  4 22:10:27 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3dcd270

app-vim/gnupg: use HTTPS.

 app-vim/gnupg/gnupg-2.6.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-vim/gnupg/gnupg-2.6.ebuild b/app-vim/gnupg/gnupg-2.6.ebuild
index 9729d06a6e8..ef344bdcf3f 100644
--- a/app-vim/gnupg/gnupg-2.6.ebuild
+++ b/app-vim/gnupg/gnupg-2.6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -6,7 +6,7 @@ EAPI=6
 inherit vim-plugin
 
 DESCRIPTION="transparent editing of gpg encrypted files"
-HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=3645"
+HOMEPAGE="https://www.vim.org/scripts/script.php?script_id=3645"
 LICENSE="GPL-2"
 KEYWORDS="amd64 ~arm x86"
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-vim/gnupg/
@ 2021-10-09 22:45 Patrice Clement
  0 siblings, 0 replies; 10+ messages in thread
From: Patrice Clement @ 2021-10-09 22:45 UTC (permalink / raw
  To: gentoo-commits

commit:     737554e80b3e535551cb55c90d894c1163eedc78
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Sat Oct  9 22:18:03 2021 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Sat Oct  9 22:45:20 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=737554e8

app-vim/gnupg: version bump.

Closes: https://bugs.gentoo.org/709870
Closes: https://github.com/gentoo/gentoo/pull/22533
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>

 app-vim/gnupg/Manifest           |  1 +
 app-vim/gnupg/gnupg-2.7.1.ebuild | 32 ++++++++++++++++++++++++++++++++
 2 files changed, 33 insertions(+)

diff --git a/app-vim/gnupg/Manifest b/app-vim/gnupg/Manifest
index 1ad76e421bc..2d883828ebc 100644
--- a/app-vim/gnupg/Manifest
+++ b/app-vim/gnupg/Manifest
@@ -1 +1,2 @@
 DIST gnupg-2.6.tar.bz2 12074 BLAKE2B d06e4637627187e1d276c3b485e22b35f0cba78a491d34f0884da7ad320f12a3443e40a7c0e7e3f27be03984380eb966d593a283d768bb834a1fefed05656dd3 SHA512 1b7307954aad751006286edebb80767951b9bd9a8eff4c4a57fa6030cb442ceca12730a82c76a2181e1da19cc4cc8be21ccd4f8a21817aedf42785d8ff4b61ac
+DIST gnupg-2.7.1.zip 16131 BLAKE2B 82e29fd95adc5d6690409ec136086be2f0f358143de0bd6ad53c095d4cdcebe47f463f30cc5f494c441222380b5fac3291a9a6f7937f487ad28702ed3e175873 SHA512 07599e981e55d7eac7b06169e9ce30d33374b01680ad0317d5e4b51addce22b195dbd7a22a2adc381dfb89bd66aad9c377b43f36e6a5b32b7c577462b149e0a2

diff --git a/app-vim/gnupg/gnupg-2.7.1.ebuild b/app-vim/gnupg/gnupg-2.7.1.ebuild
new file mode 100644
index 00000000000..af2368e71d4
--- /dev/null
+++ b/app-vim/gnupg/gnupg-2.7.1.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit vim-plugin
+
+DESCRIPTION="transparent editing of gpg encrypted files"
+HOMEPAGE="https://www.vim.org/scripts/script.php?script_id=3645"
+SRC_URI="https://www.vim.org/scripts/download_script.php?src_id=27359 -> ${P}.zip"
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~arm ~x86"
+
+S="${WORKDIR}/vim-${P}"
+
+RDEPEND="app-crypt/gnupg"
+
+BDEPEND="app-arch/unzip"
+
+VIM_PLUGIN_HELPFILES="${PN}.txt"
+
+src_prepare() {
+	default
+
+	# There's good documentation included with the script, but it's not
+	# in a helpfile. Since there's rather too much information to include
+	# in a VIM_PLUGIN_HELPTEXT, we'll sed ourselves a help doc.
+	sed -e '/" Section: Plugin header.\+$/,9999d' -e 's/^" \?//' \
+		-e 's/\(Name:\s\+\)\([^.]\+\)\.vim/\1*\2.txt*/' \
+		plugin/${PN}.vim \
+		> doc/${PN}.txt || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-vim/gnupg/
@ 2022-06-02  3:57 Jakov Smolić
  0 siblings, 0 replies; 10+ messages in thread
From: Jakov Smolić @ 2022-06-02  3:57 UTC (permalink / raw
  To: gentoo-commits

commit:     93588fe953482931fe20f78477e71b0da39c6663
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Thu Jun  2 03:57:49 2022 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Thu Jun  2 03:57:49 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93588fe9

app-vim/gnupg: Stabilize 2.7.1 amd64, #849197

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 app-vim/gnupg/gnupg-2.7.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-vim/gnupg/gnupg-2.7.1.ebuild b/app-vim/gnupg/gnupg-2.7.1.ebuild
index af2368e71d4c..de79ea667611 100644
--- a/app-vim/gnupg/gnupg-2.7.1.ebuild
+++ b/app-vim/gnupg/gnupg-2.7.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -9,7 +9,7 @@ DESCRIPTION="transparent editing of gpg encrypted files"
 HOMEPAGE="https://www.vim.org/scripts/script.php?script_id=3645"
 SRC_URI="https://www.vim.org/scripts/download_script.php?src_id=27359 -> ${P}.zip"
 LICENSE="GPL-2"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm ~x86"
 
 S="${WORKDIR}/vim-${P}"
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-vim/gnupg/
@ 2022-06-02  4:02 Jakov Smolić
  0 siblings, 0 replies; 10+ messages in thread
From: Jakov Smolić @ 2022-06-02  4:02 UTC (permalink / raw
  To: gentoo-commits

commit:     35363f8252fa499435bce4fab3c21fb6a77596aa
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Thu Jun  2 04:01:32 2022 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Thu Jun  2 04:02:16 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35363f82

app-vim/gnupg: Stabilize 2.7.1 x86, #849197

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 app-vim/gnupg/gnupg-2.7.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-vim/gnupg/gnupg-2.7.1.ebuild b/app-vim/gnupg/gnupg-2.7.1.ebuild
index de79ea667611..a2dd74a2ee33 100644
--- a/app-vim/gnupg/gnupg-2.7.1.ebuild
+++ b/app-vim/gnupg/gnupg-2.7.1.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="transparent editing of gpg encrypted files"
 HOMEPAGE="https://www.vim.org/scripts/script.php?script_id=3645"
 SRC_URI="https://www.vim.org/scripts/download_script.php?src_id=27359 -> ${P}.zip"
 LICENSE="GPL-2"
-KEYWORDS="amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm x86"
 
 S="${WORKDIR}/vim-${P}"
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-vim/gnupg/
@ 2022-06-10 18:08 Matt Turner
  0 siblings, 0 replies; 10+ messages in thread
From: Matt Turner @ 2022-06-10 18:08 UTC (permalink / raw
  To: gentoo-commits

commit:     4407b30cdf8d65df824940d283ca2bcf13a25a66
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 10 17:43:43 2022 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Fri Jun 10 18:07:50 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4407b30c

app-vim/gnupg: Drop old versions

Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 app-vim/gnupg/Manifest         |  1 -
 app-vim/gnupg/gnupg-2.6.ebuild | 28 ----------------------------
 2 files changed, 29 deletions(-)

diff --git a/app-vim/gnupg/Manifest b/app-vim/gnupg/Manifest
index 2d883828ebcc..3dcfa1158497 100644
--- a/app-vim/gnupg/Manifest
+++ b/app-vim/gnupg/Manifest
@@ -1,2 +1 @@
-DIST gnupg-2.6.tar.bz2 12074 BLAKE2B d06e4637627187e1d276c3b485e22b35f0cba78a491d34f0884da7ad320f12a3443e40a7c0e7e3f27be03984380eb966d593a283d768bb834a1fefed05656dd3 SHA512 1b7307954aad751006286edebb80767951b9bd9a8eff4c4a57fa6030cb442ceca12730a82c76a2181e1da19cc4cc8be21ccd4f8a21817aedf42785d8ff4b61ac
 DIST gnupg-2.7.1.zip 16131 BLAKE2B 82e29fd95adc5d6690409ec136086be2f0f358143de0bd6ad53c095d4cdcebe47f463f30cc5f494c441222380b5fac3291a9a6f7937f487ad28702ed3e175873 SHA512 07599e981e55d7eac7b06169e9ce30d33374b01680ad0317d5e4b51addce22b195dbd7a22a2adc381dfb89bd66aad9c377b43f36e6a5b32b7c577462b149e0a2

diff --git a/app-vim/gnupg/gnupg-2.6.ebuild b/app-vim/gnupg/gnupg-2.6.ebuild
deleted file mode 100644
index ef344bdcf3f9..000000000000
--- a/app-vim/gnupg/gnupg-2.6.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit vim-plugin
-
-DESCRIPTION="transparent editing of gpg encrypted files"
-HOMEPAGE="https://www.vim.org/scripts/script.php?script_id=3645"
-LICENSE="GPL-2"
-KEYWORDS="amd64 ~arm x86"
-
-RDEPEND="app-crypt/gnupg"
-
-VIM_PLUGIN_HELPFILES="${PN}.txt"
-
-src_prepare() {
-	default
-
-	# There's good documentation included with the script, but it's not
-	# in a helpfile. Since there's rather too much information to include
-	# in a VIM_PLUGIN_HELPTEXT, we'll sed ourselves a help doc.
-	mkdir doc || die
-	sed -e '/" Section: Plugin header.\+$/,9999d' -e 's/^" \?//' \
-		-e 's/\(Name:\s\+\)\([^.]\+\)\.vim/\1*\2.txt*/' \
-		plugin/${PN}.vim \
-		> doc/${PN}.txt || die
-}


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

* [gentoo-commits] repo/gentoo:master commit in: app-vim/gnupg/
@ 2023-05-20  6:17 Sam James
  0 siblings, 0 replies; 10+ messages in thread
From: Sam James @ 2023-05-20  6:17 UTC (permalink / raw
  To: gentoo-commits

commit:     8dee230e79d30d3593444fa26d007fbde9f1aed3
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat May 20 06:17:31 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat May 20 06:17:31 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8dee230e

app-vim/gnupg: add github upstream metadata

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

 app-vim/gnupg/metadata.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/app-vim/gnupg/metadata.xml b/app-vim/gnupg/metadata.xml
index 23f733cc8624..3607686e8e46 100644
--- a/app-vim/gnupg/metadata.xml
+++ b/app-vim/gnupg/metadata.xml
@@ -5,4 +5,7 @@
 		<email>vim@gentoo.org</email>
 		<name>Gentoo Vim Project</name>
 	</maintainer>
+	<upstream>
+		<remote-id type="github">jamessan/vim-gnupg</remote-id>
+	</upstream>
 </pkgmetadata>


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

end of thread, other threads:[~2023-05-20  6:17 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-06-10 18:08 [gentoo-commits] repo/gentoo:master commit in: app-vim/gnupg/ Matt Turner
  -- strict thread matches above, loose matches on Subject: below --
2023-05-20  6:17 Sam James
2022-06-02  4:02 Jakov Smolić
2022-06-02  3:57 Jakov Smolić
2021-10-09 22:45 Patrice Clement
2018-03-04 22:11 Patrice Clement
2016-10-31  4:23 Tim Harder
2016-10-31  4:23 Tim Harder
2016-08-25 20:58 Patrice Clement
2016-08-18  5:12 Tim Harder

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