public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-vim/editorconfig-vim/
@ 2016-11-04 22:40 Patrick McLean
  0 siblings, 0 replies; 16+ messages in thread
From: Patrick McLean @ 2016-11-04 22:40 UTC (permalink / raw
  To: gentoo-commits

commit:     8c3b90885d9b300311393c3b69e217f974097362
Author:     Patrick McLean <chutzpah <AT> gentoo <DOT> org>
AuthorDate: Fri Nov  4 22:38:55 2016 +0000
Commit:     Patrick McLean <chutzpah <AT> gentoo <DOT> org>
CommitDate: Fri Nov  4 22:39:57 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c3b9088

app-vim/editorconfig-vim: New package, an EditorConfig plugin for vim

Package-Manager: portage-2.3.2

 app-vim/editorconfig-vim/Manifest                  |  1 +
 .../editorconfig-vim/editorconfig-vim-0.3.3.ebuild | 46 ++++++++++++++++++++++
 app-vim/editorconfig-vim/metadata.xml              | 11 ++++++
 3 files changed, 58 insertions(+)

diff --git a/app-vim/editorconfig-vim/Manifest b/app-vim/editorconfig-vim/Manifest
new file mode 100644
index 00000000..c37d805
--- /dev/null
+++ b/app-vim/editorconfig-vim/Manifest
@@ -0,0 +1 @@
+DIST editorconfig-vim-0.3.3.tar.gz 35395 SHA256 fd579672c426a089835e9bc57a1fd5fc18dba77c014b67141153372e83c92c57 SHA512 2dd968cf6bb162db8e6242ffb60cc61fb05a8042804b6b46b9f9cd35be968f83b473f04797e47c5cff11d7c052ff523bf8ba1d568992d44b72b97b54a81425a1 WHIRLPOOL 580e4ee8a5dc3bd2c17334ba40f7e89436111c26cbdf4c2f248f4c0a862739c3e3a17124b0750a791bbb4e8602484c33da4fe0ea20c5988ae94485b181fe4e8b

diff --git a/app-vim/editorconfig-vim/editorconfig-vim-0.3.3.ebuild b/app-vim/editorconfig-vim/editorconfig-vim-0.3.3.ebuild
new file mode 100644
index 00000000..fa2719b
--- /dev/null
+++ b/app-vim/editorconfig-vim/editorconfig-vim-0.3.3.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=(python2_7)
+inherit vim-plugin distutils-r1
+
+DESCRIPTION="vim plugin: Support EditorConfig files "
+HOMEPAGE="http://editorconfig.org/"
+LICENSE="BSD-2"
+KEYWORDS="~amd64 ~x86"
+SRC_URI="https://github.com/${PN%-vim}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+DEPEND="|| ( app-editors/vim[python] app-editors/gvim[python] )"
+
+VIM_PLUGIN_HELPFILES="${PN%-vim}.txt"
+
+PYTHON_S="${S}/plugin/${PN%-vim}-core-py"
+
+src_prepare() {
+	default
+	pushd "${PYTHON_S}" > /dev/null
+	python_setup
+	distutils-r1_src_prepare
+	popd > /dev/null
+
+	rm LICENSE mkzip.sh .editorconfig .gitignore .travis.yml || die
+	rm -r tests || die
+}
+
+python_compile() {
+	pushd "${PYTHON_S}" > /dev/null
+	distutils-r1_python_compile
+	popd > /dev/null
+}
+
+src_install() {
+	pushd "${PYTHON_S}" > /dev/null
+	distutils-r1_src_install
+	popd > /dev/null
+
+	rm -r "${PYTHON_S}"
+	vim-plugin_src_install
+}

diff --git a/app-vim/editorconfig-vim/metadata.xml b/app-vim/editorconfig-vim/metadata.xml
new file mode 100644
index 00000000..d20047d
--- /dev/null
+++ b/app-vim/editorconfig-vim/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="project">
+		<email>vim@gentoo.org</email>
+	</maintainer>
+	<maintainer type="person">
+		<email>chutzpah@gentoo.org</email>
+		<name>Patrick McLean</name>
+	</maintainer>
+</pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: app-vim/editorconfig-vim/
@ 2016-11-07 22:20 Patrick McLean
  0 siblings, 0 replies; 16+ messages in thread
From: Patrick McLean @ 2016-11-07 22:20 UTC (permalink / raw
  To: gentoo-commits

commit:     84e3433981a6ef9e9264f09a2508aec1346c44c0
Author:     Patrick McLean <chutzpah <AT> gentoo <DOT> org>
AuthorDate: Mon Nov  7 22:20:20 2016 +0000
Commit:     Patrick McLean <chutzpah <AT> gentoo <DOT> org>
CommitDate: Mon Nov  7 22:20:20 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84e34339

app-vim/editorconfig-vim: Revision bump, use external editorconfig-core-py instead of bundled version

Package-Manager: portage-2.3.2

 .../editorconfig-vim-0.3.3-r1.ebuild               | 29 ++++++++++++++
 .../editorconfig-vim/editorconfig-vim-0.3.3.ebuild | 46 ----------------------
 2 files changed, 29 insertions(+), 46 deletions(-)

diff --git a/app-vim/editorconfig-vim/editorconfig-vim-0.3.3-r1.ebuild b/app-vim/editorconfig-vim/editorconfig-vim-0.3.3-r1.ebuild
new file mode 100644
index 00000000..8fffa6e
--- /dev/null
+++ b/app-vim/editorconfig-vim/editorconfig-vim-0.3.3-r1.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=(python2_7 python3_4 python3_5)
+inherit python-r1 vim-plugin
+
+DESCRIPTION="vim plugin: Support EditorConfig files "
+HOMEPAGE="http://editorconfig.org/"
+LICENSE="BSD-2"
+KEYWORDS="~amd64 ~x86"
+SRC_URI="https://github.com/${PN%-vim}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+DEPEND="dev-python/editorconfig-core-py[${PYTHON_USEDEP}]
+	|| (
+	app-editors/vim[python,${PYTHON_USEDEP}]
+	app-editors/gvim[python,${PYTHON_USEDEP}]
+)"
+
+VIM_PLUGIN_HELPFILES="${PN%-vim}.txt"
+
+src_prepare() {
+	default
+
+	rm LICENSE mkzip.sh .editorconfig .gitignore .travis.yml || die
+	rm -r tests plugin/${PN%-vim}-core-py || die
+}

diff --git a/app-vim/editorconfig-vim/editorconfig-vim-0.3.3.ebuild b/app-vim/editorconfig-vim/editorconfig-vim-0.3.3.ebuild
deleted file mode 100644
index fa2719b..00000000
--- a/app-vim/editorconfig-vim/editorconfig-vim-0.3.3.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-PYTHON_COMPAT=(python2_7)
-inherit vim-plugin distutils-r1
-
-DESCRIPTION="vim plugin: Support EditorConfig files "
-HOMEPAGE="http://editorconfig.org/"
-LICENSE="BSD-2"
-KEYWORDS="~amd64 ~x86"
-SRC_URI="https://github.com/${PN%-vim}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-DEPEND="|| ( app-editors/vim[python] app-editors/gvim[python] )"
-
-VIM_PLUGIN_HELPFILES="${PN%-vim}.txt"
-
-PYTHON_S="${S}/plugin/${PN%-vim}-core-py"
-
-src_prepare() {
-	default
-	pushd "${PYTHON_S}" > /dev/null
-	python_setup
-	distutils-r1_src_prepare
-	popd > /dev/null
-
-	rm LICENSE mkzip.sh .editorconfig .gitignore .travis.yml || die
-	rm -r tests || die
-}
-
-python_compile() {
-	pushd "${PYTHON_S}" > /dev/null
-	distutils-r1_python_compile
-	popd > /dev/null
-}
-
-src_install() {
-	pushd "${PYTHON_S}" > /dev/null
-	distutils-r1_src_install
-	popd > /dev/null
-
-	rm -r "${PYTHON_S}"
-	vim-plugin_src_install
-}


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

* [gentoo-commits] repo/gentoo:master commit in: app-vim/editorconfig-vim/
@ 2017-03-01 19:55 Patrick McLean
  0 siblings, 0 replies; 16+ messages in thread
From: Patrick McLean @ 2017-03-01 19:55 UTC (permalink / raw
  To: gentoo-commits

commit:     0dad01b7ccc8b7ba7a39ac35b10103de8c8e3ec2
Author:     Patrick McLean <chutzpah <AT> gentoo <DOT> org>
AuthorDate: Wed Mar  1 19:54:43 2017 +0000
Commit:     Patrick McLean <chutzpah <AT> gentoo <DOT> org>
CommitDate: Wed Mar  1 19:55:11 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0dad01b7

app-vim/editorconfig-vim: Add python3_6 to PYTHON_COMPAT

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 app-vim/editorconfig-vim/editorconfig-vim-0.3.3-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-vim/editorconfig-vim/editorconfig-vim-0.3.3-r2.ebuild b/app-vim/editorconfig-vim/editorconfig-vim-0.3.3-r2.ebuild
index 83c8f558be6..4e2840e51de 100644
--- a/app-vim/editorconfig-vim/editorconfig-vim-0.3.3-r2.ebuild
+++ b/app-vim/editorconfig-vim/editorconfig-vim-0.3.3-r2.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
-PYTHON_COMPAT=(python2_7 python3_4 python3_5)
+PYTHON_COMPAT=(python2_7 python3_4 python3_5 python3_6)
 inherit python-r1 vim-plugin
 
 DESCRIPTION="vim plugin: Support EditorConfig files "


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

* [gentoo-commits] repo/gentoo:master commit in: app-vim/editorconfig-vim/
@ 2017-04-21  7:33 David Seifert
  0 siblings, 0 replies; 16+ messages in thread
From: David Seifert @ 2017-04-21  7:33 UTC (permalink / raw
  To: gentoo-commits

commit:     782b6feecb7325ad1d9b9357ac425fe21d5a4bc3
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 21 07:18:03 2017 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Fri Apr 21 07:18:03 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=782b6fee

app-vim/editorconfig-vim: [QA] Add missing python metadata variables

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 .../editorconfig-vim/editorconfig-vim-0.3.3-r2.ebuild   | 17 ++++++++++++-----
 1 file changed, 12 insertions(+), 5 deletions(-)

diff --git a/app-vim/editorconfig-vim/editorconfig-vim-0.3.3-r2.ebuild b/app-vim/editorconfig-vim/editorconfig-vim-0.3.3-r2.ebuild
index 4e2840e51de..44e5e9b68b3 100644
--- a/app-vim/editorconfig-vim/editorconfig-vim-0.3.3-r2.ebuild
+++ b/app-vim/editorconfig-vim/editorconfig-vim-0.3.3-r2.ebuild
@@ -4,19 +4,26 @@
 EAPI=6
 
 PYTHON_COMPAT=(python2_7 python3_4 python3_5 python3_6)
+
 inherit python-r1 vim-plugin
 
 DESCRIPTION="vim plugin: Support EditorConfig files "
 HOMEPAGE="http://editorconfig.org/"
+SRC_URI="https://github.com/${PN%-vim}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
 LICENSE="BSD-2"
 KEYWORDS="~amd64 ~x86"
-SRC_URI="https://github.com/${PN%-vim}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+IUSE=""
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 
-DEPEND="dev-python/editorconfig-core-py[${PYTHON_USEDEP}]
+DEPEND="
+	${PYTHON_DEPS}
+	dev-python/editorconfig-core-py[${PYTHON_USEDEP}]
 	|| (
-	app-editors/vim[python,${PYTHON_USEDEP}]
-	app-editors/gvim[python,${PYTHON_USEDEP}]
-)"
+		app-editors/vim[python,${PYTHON_USEDEP}]
+		app-editors/gvim[python,${PYTHON_USEDEP}]
+	)"
+RDEPEND="${DEPEND}"
 
 PATCHES=(
 	"${FILESDIR}/${P}-python3.patch"


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

* [gentoo-commits] repo/gentoo:master commit in: app-vim/editorconfig-vim/
@ 2017-05-27 15:19 Michał Górny
  0 siblings, 0 replies; 16+ messages in thread
From: Michał Górny @ 2017-05-27 15:19 UTC (permalink / raw
  To: gentoo-commits

commit:     f86b5c0bf72ec0bb779a3cb90c5db4a84b3bceb2
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 20 20:02:06 2017 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat May 27 15:19:18 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f86b5c0b

app-vim/editorconfig-vim: Convert to python-single-r1, #615832

 app-vim/editorconfig-vim/editorconfig-vim-0.3.3-r2.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/app-vim/editorconfig-vim/editorconfig-vim-0.3.3-r2.ebuild b/app-vim/editorconfig-vim/editorconfig-vim-0.3.3-r2.ebuild
index 44e5e9b68b3..af1907546c7 100644
--- a/app-vim/editorconfig-vim/editorconfig-vim-0.3.3-r2.ebuild
+++ b/app-vim/editorconfig-vim/editorconfig-vim-0.3.3-r2.ebuild
@@ -4,8 +4,7 @@
 EAPI=6
 
 PYTHON_COMPAT=(python2_7 python3_4 python3_5 python3_6)
-
-inherit python-r1 vim-plugin
+inherit python-single-r1 vim-plugin
 
 DESCRIPTION="vim plugin: Support EditorConfig files "
 HOMEPAGE="http://editorconfig.org/"


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

* [gentoo-commits] repo/gentoo:master commit in: app-vim/editorconfig-vim/
@ 2018-06-02  0:57 Aaron Bauman
  0 siblings, 0 replies; 16+ messages in thread
From: Aaron Bauman @ 2018-06-02  0:57 UTC (permalink / raw
  To: gentoo-commits

commit:     e113089b9680d314083edef976fa3e053ec9f513
Author:     Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Fri Jun  1 16:32:33 2018 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Sat Jun  2 00:56:51 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e113089b

app-vim/editorconfig-vim: use HTTPs

Closes: https://github.com/gentoo/gentoo/pull/8676

 app-vim/editorconfig-vim/editorconfig-vim-0.3.3-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-vim/editorconfig-vim/editorconfig-vim-0.3.3-r2.ebuild b/app-vim/editorconfig-vim/editorconfig-vim-0.3.3-r2.ebuild
index af1907546c7..81a35dbb4e3 100644
--- a/app-vim/editorconfig-vim/editorconfig-vim-0.3.3-r2.ebuild
+++ b/app-vim/editorconfig-vim/editorconfig-vim-0.3.3-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -7,7 +7,7 @@ PYTHON_COMPAT=(python2_7 python3_4 python3_5 python3_6)
 inherit python-single-r1 vim-plugin
 
 DESCRIPTION="vim plugin: Support EditorConfig files "
-HOMEPAGE="http://editorconfig.org/"
+HOMEPAGE="https://editorconfig.org/"
 SRC_URI="https://github.com/${PN%-vim}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="BSD-2"


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

* [gentoo-commits] repo/gentoo:master commit in: app-vim/editorconfig-vim/
@ 2020-01-14  1:32 Patrick McLean
  0 siblings, 0 replies; 16+ messages in thread
From: Patrick McLean @ 2020-01-14  1:32 UTC (permalink / raw
  To: gentoo-commits

commit:     d5305cedc84143b69c23f83643df05558bf154bc
Author:     Patrick McLean <patrick.mclean <AT> sony <DOT> com>
AuthorDate: Tue Jan 14 01:32:36 2020 +0000
Commit:     Patrick McLean <chutzpah <AT> gentoo <DOT> org>
CommitDate: Tue Jan 14 01:32:36 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5305ced

app-vim/editorconfig-vim-1.0.0_beta: Don't inherit cmake-utils

Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>

 app-vim/editorconfig-vim/editorconfig-vim-1.0.0_beta.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-vim/editorconfig-vim/editorconfig-vim-1.0.0_beta.ebuild b/app-vim/editorconfig-vim/editorconfig-vim-1.0.0_beta.ebuild
index 5bf01abe322..7afd3f83e13 100644
--- a/app-vim/editorconfig-vim/editorconfig-vim-1.0.0_beta.ebuild
+++ b/app-vim/editorconfig-vim/editorconfig-vim-1.0.0_beta.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit cmake-utils vim-plugin
+inherit vim-plugin
 
 MY_PV="${PV//_/-}"
 MY_P="${PN}-${MY_PV}"


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

* [gentoo-commits] repo/gentoo:master commit in: app-vim/editorconfig-vim/
@ 2020-02-05 13:00 Michał Górny
  0 siblings, 0 replies; 16+ messages in thread
From: Michał Górny @ 2020-02-05 13:00 UTC (permalink / raw
  To: gentoo-commits

commit:     8104686877f895eff67834ad2bb24d39293d39f3
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Feb  5 12:39:11 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Feb  5 12:59:48 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81046868

app-vim/editorconfig-vim: Remove py2

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-vim/editorconfig-vim/editorconfig-vim-0.3.3-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-vim/editorconfig-vim/editorconfig-vim-0.3.3-r2.ebuild b/app-vim/editorconfig-vim/editorconfig-vim-0.3.3-r2.ebuild
index b32db6c1c56..a3f80d6cb8c 100644
--- a/app-vim/editorconfig-vim/editorconfig-vim-0.3.3-r2.ebuild
+++ b/app-vim/editorconfig-vim/editorconfig-vim-0.3.3-r2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-PYTHON_COMPAT=(python2_7 python3_6)
+PYTHON_COMPAT=(python3_6)
 inherit python-single-r1 vim-plugin
 
 DESCRIPTION="vim plugin: Support EditorConfig files "


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

* [gentoo-commits] repo/gentoo:master commit in: app-vim/editorconfig-vim/
@ 2020-06-02 17:54 Patrick McLean
  0 siblings, 0 replies; 16+ messages in thread
From: Patrick McLean @ 2020-06-02 17:54 UTC (permalink / raw
  To: gentoo-commits

commit:     ba43beb1575eff7d68d2bdeb937d8e0fab5f4b16
Author:     Patrick McLean <chutzpah <AT> gentoo <DOT> org>
AuthorDate: Tue Jun  2 17:53:57 2020 +0000
Commit:     Patrick McLean <chutzpah <AT> gentoo <DOT> org>
CommitDate: Tue Jun  2 17:53:57 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba43beb1

app-vim/editorconfig-vim-1.1.1: Version bump

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>

 app-vim/editorconfig-vim/Manifest                  |  1 +
 .../editorconfig-vim/editorconfig-vim-1.1.1.ebuild | 35 ++++++++++++++++++++++
 2 files changed, 36 insertions(+)

diff --git a/app-vim/editorconfig-vim/Manifest b/app-vim/editorconfig-vim/Manifest
index 5e8f5599689..0581d9b1997 100644
--- a/app-vim/editorconfig-vim/Manifest
+++ b/app-vim/editorconfig-vim/Manifest
@@ -1,2 +1,3 @@
 DIST editorconfig-vim-0.3.3.tar.gz 35395 BLAKE2B a7b65c1472024017dd408e5c4ac5048004d0bd55f44c7cfba49b5973cb445125ed89cc3d4363fb902a4c5fbb507f3ee5ed0ca48aece3fb6915e643bae0dbf70c SHA512 2dd968cf6bb162db8e6242ffb60cc61fb05a8042804b6b46b9f9cd35be968f83b473f04797e47c5cff11d7c052ff523bf8ba1d568992d44b72b97b54a81425a1
 DIST editorconfig-vim-1.0.0-beta.tar.gz 31519 BLAKE2B 2d5e8e55e8dccc0b45453b8da9ecad80867a84d1ea20146581886f793c093c201521a7d1d4451122ae441d30f58acec28d29aa20da9de737b5beb7f44d55c0ed SHA512 159e3ca32a7ffe71853ba62a14d0469310b81345b0e704dd6a9f42c56f6f6b9a3f63502ccabcf43a15443acf4acefdaf078063ae747f49315b89f5518d7f9816
+DIST editorconfig-vim-1.1.1.tar.gz 33287 BLAKE2B 4c79ac3bf1f82ca6182480ab2f3c2ee24b8234f5845c63d90434bb57271981554a0651d8bc0314c718ad9700adf7903fed45f5e400d8ae8a0b6d42932e89e071 SHA512 7b94db4b2f641ecd2d2623bf55bf9b457c007b2b5c8553cba5b7a75bc34823d6995d3c9ed13febe0f59de6f87c52eb0367591213c43c6fcd7c331c529126f4d6

diff --git a/app-vim/editorconfig-vim/editorconfig-vim-1.1.1.ebuild b/app-vim/editorconfig-vim/editorconfig-vim-1.1.1.ebuild
new file mode 100644
index 00000000000..300d91dcfbd
--- /dev/null
+++ b/app-vim/editorconfig-vim/editorconfig-vim-1.1.1.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit vim-plugin
+
+MY_PV="${PV//_/-}"
+MY_P="${PN}-${MY_PV}"
+
+DESCRIPTION="vim plugin: Support EditorConfig files "
+HOMEPAGE="https://editorconfig.org/"
+SRC_URI="https://github.com/${PN%-vim}/${PN}/archive/v${MY_PV}.tar.gz -> ${MY_P}.tar.gz"
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="BSD-2 PSF-2"
+KEYWORDS="~amd64 ~x86"
+
+VIM_PLUGIN_HELPFILES="${PN%-vim}.txt"
+
+src_prepare() {
+	default
+
+	rm LICENSE LICENSE.PSF \
+		mkzip.sh .editorconfig \
+		.git{ignore,modules} \
+		.{travis,appveyor}.yml || die
+}
+
+src_install() {
+	# we don't want to install the tests
+	rm -r tests || die
+
+	vim-plugin_src_install
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-vim/editorconfig-vim/
@ 2020-07-27 14:09 Sam James
  0 siblings, 0 replies; 16+ messages in thread
From: Sam James @ 2020-07-27 14:09 UTC (permalink / raw
  To: gentoo-commits

commit:     a744ac028fe32b716f68c43aeef97eaa47ae6285
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 27 14:08:55 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jul 27 14:08:55 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a744ac02

app-vim/editorconfig-vim: amd64 stable (bug #722492)

Package-Manager: Portage-3.0.0, Repoman-2.3.23
Signed-off-by: Sam James <sam <AT> gentoo.org>

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

diff --git a/app-vim/editorconfig-vim/editorconfig-vim-1.1.1.ebuild b/app-vim/editorconfig-vim/editorconfig-vim-1.1.1.ebuild
index 300d91dcfbd..22f3e5f7857 100644
--- a/app-vim/editorconfig-vim/editorconfig-vim-1.1.1.ebuild
+++ b/app-vim/editorconfig-vim/editorconfig-vim-1.1.1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://github.com/${PN%-vim}/${PN}/archive/v${MY_PV}.tar.gz -> ${MY_P}
 S="${WORKDIR}/${MY_P}"
 
 LICENSE="BSD-2 PSF-2"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 
 VIM_PLUGIN_HELPFILES="${PN%-vim}.txt"
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-vim/editorconfig-vim/
@ 2020-07-27 20:50 Sam James
  0 siblings, 0 replies; 16+ messages in thread
From: Sam James @ 2020-07-27 20:50 UTC (permalink / raw
  To: gentoo-commits

commit:     29f17864898c31a93096a1af4e0eae333656515c
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 27 20:49:23 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jul 27 20:50:35 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29f17864

app-vim/editorconfig-vim: x86 stable (bug #722492)

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sam James <sam <AT> gentoo.org>

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

diff --git a/app-vim/editorconfig-vim/editorconfig-vim-1.1.1.ebuild b/app-vim/editorconfig-vim/editorconfig-vim-1.1.1.ebuild
index 22f3e5f7857..214d44b754c 100644
--- a/app-vim/editorconfig-vim/editorconfig-vim-1.1.1.ebuild
+++ b/app-vim/editorconfig-vim/editorconfig-vim-1.1.1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://github.com/${PN%-vim}/${PN}/archive/v${MY_PV}.tar.gz -> ${MY_P}
 S="${WORKDIR}/${MY_P}"
 
 LICENSE="BSD-2 PSF-2"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 VIM_PLUGIN_HELPFILES="${PN%-vim}.txt"
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-vim/editorconfig-vim/
@ 2021-03-03 18:31 Sam James
  0 siblings, 0 replies; 16+ messages in thread
From: Sam James @ 2021-03-03 18:31 UTC (permalink / raw
  To: gentoo-commits

commit:     c3ce0f05592decb5c6de1cb046f7bdd79a75a2b7
Author:     Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Wed Mar  3 18:09:44 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Mar  3 18:30:58 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3ce0f05

app-vim/editorconfig-vim: remove whitespace

Package-Manager: Portage-3.0.15, Repoman-3.0.2
Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/19756
Signed-off-by: Sam James <sam <AT> gentoo.org>

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

diff --git a/app-vim/editorconfig-vim/editorconfig-vim-1.1.1.ebuild b/app-vim/editorconfig-vim/editorconfig-vim-1.1.1.ebuild
index 214d44b754c..865097db74b 100644
--- a/app-vim/editorconfig-vim/editorconfig-vim-1.1.1.ebuild
+++ b/app-vim/editorconfig-vim/editorconfig-vim-1.1.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -8,7 +8,7 @@ inherit vim-plugin
 MY_PV="${PV//_/-}"
 MY_P="${PN}-${MY_PV}"
 
-DESCRIPTION="vim plugin: Support EditorConfig files "
+DESCRIPTION="vim plugin: Support EditorConfig files"
 HOMEPAGE="https://editorconfig.org/"
 SRC_URI="https://github.com/${PN%-vim}/${PN}/archive/v${MY_PV}.tar.gz -> ${MY_P}.tar.gz"
 S="${WORKDIR}/${MY_P}"


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

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

commit:     43cd48710d9523c68fd5c1b495c4429ad634a45f
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon May 29 20:19:18 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon May 29 20:19:18 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43cd4871

app-vim/editorconfig-vim: Keyword 1.1.1 arm64, #906267

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

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

diff --git a/app-vim/editorconfig-vim/editorconfig-vim-1.1.1.ebuild b/app-vim/editorconfig-vim/editorconfig-vim-1.1.1.ebuild
index b7867cfbd7dd..a6d27567296c 100644
--- a/app-vim/editorconfig-vim/editorconfig-vim-1.1.1.ebuild
+++ b/app-vim/editorconfig-vim/editorconfig-vim-1.1.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -14,7 +14,7 @@ SRC_URI="https://github.com/${PN%-vim}/${PN}/archive/v${MY_PV}.tar.gz -> ${MY_P}
 S="${WORKDIR}/${MY_P}"
 
 LICENSE="BSD-2 PSF-2"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 ~arm64 x86"
 
 VIM_PLUGIN_HELPFILES="${PN%-vim}.txt"
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-vim/editorconfig-vim/
@ 2024-03-22 12:37 Arthur Zamarin
  0 siblings, 0 replies; 16+ messages in thread
From: Arthur Zamarin @ 2024-03-22 12:37 UTC (permalink / raw
  To: gentoo-commits

commit:     22dfa65ffb31d77d500a3b8349dc5d71c21af5a2
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 22 12:28:30 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Mar 22 12:37:07 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22dfa65f

app-vim/editorconfig-vim: add 1.2.0, EAPI=8

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 app-vim/editorconfig-vim/Manifest                  |  1 +
 .../editorconfig-vim/editorconfig-vim-1.2.0.ebuild | 26 ++++++++++++++++++++++
 2 files changed, 27 insertions(+)

diff --git a/app-vim/editorconfig-vim/Manifest b/app-vim/editorconfig-vim/Manifest
index f06ac84b76cc..7926ab38bc4a 100644
--- a/app-vim/editorconfig-vim/Manifest
+++ b/app-vim/editorconfig-vim/Manifest
@@ -1 +1,2 @@
 DIST editorconfig-vim-1.1.1.tar.gz 33287 BLAKE2B 4c79ac3bf1f82ca6182480ab2f3c2ee24b8234f5845c63d90434bb57271981554a0651d8bc0314c718ad9700adf7903fed45f5e400d8ae8a0b6d42932e89e071 SHA512 7b94db4b2f641ecd2d2623bf55bf9b457c007b2b5c8553cba5b7a75bc34823d6995d3c9ed13febe0f59de6f87c52eb0367591213c43c6fcd7c331c529126f4d6
+DIST editorconfig-vim-1.2.0.tar.gz 34457 BLAKE2B 969e650c69abaa4e7fb652f3384f2b4ac779e2d6d3f39d898bcc7e69c7399510bfabb1aae5bd90cbb2e5276f5200a87797f6da976df040e39626d883b907792c SHA512 1101562e71f2a9f356a3773cc32f4f091d5a0b67c85a8d78d70f76a73ec3b709f5ac5b7db7448972409031d37176190922912945be05037b627d1cf766bbb731

diff --git a/app-vim/editorconfig-vim/editorconfig-vim-1.2.0.ebuild b/app-vim/editorconfig-vim/editorconfig-vim-1.2.0.ebuild
new file mode 100644
index 000000000000..d221e6bb7636
--- /dev/null
+++ b/app-vim/editorconfig-vim/editorconfig-vim-1.2.0.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit vim-plugin
+
+MY_PV="${PV//_/-}"
+MY_P="${PN}-${MY_PV}"
+
+DESCRIPTION="vim plugin: Support EditorConfig files"
+HOMEPAGE="https://editorconfig.org/"
+SRC_URI="https://github.com/${PN%-vim}/${PN}/archive/v${MY_PV}.tar.gz -> ${MY_P}.tar.gz"
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="BSD-2 PSF-2"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+VIM_PLUGIN_HELPFILES="${PN%-vim}.txt"
+
+src_install() {
+	# we don't want to install the tests
+	rm -r tests || die
+
+	vim-plugin_src_install
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-vim/editorconfig-vim/
@ 2024-05-03  8:21 Sam James
  0 siblings, 0 replies; 16+ messages in thread
From: Sam James @ 2024-05-03  8:21 UTC (permalink / raw
  To: gentoo-commits

commit:     e393e4fe8505a102e2ccde823ca141eaacd1239e
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri May  3 08:21:22 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri May  3 08:21:22 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e393e4fe

app-vim/editorconfig-vim: Stabilize 1.2.0 ALLARCHES, #931114

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

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

diff --git a/app-vim/editorconfig-vim/editorconfig-vim-1.2.0.ebuild b/app-vim/editorconfig-vim/editorconfig-vim-1.2.0.ebuild
index d221e6bb7636..17e037888ae5 100644
--- a/app-vim/editorconfig-vim/editorconfig-vim-1.2.0.ebuild
+++ b/app-vim/editorconfig-vim/editorconfig-vim-1.2.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://github.com/${PN%-vim}/${PN}/archive/v${MY_PV}.tar.gz -> ${MY_P}
 S="${WORKDIR}/${MY_P}"
 
 LICENSE="BSD-2 PSF-2"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 
 VIM_PLUGIN_HELPFILES="${PN%-vim}.txt"
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-vim/editorconfig-vim/
@ 2025-03-08 12:11 Arthur Zamarin
  0 siblings, 0 replies; 16+ messages in thread
From: Arthur Zamarin @ 2025-03-08 12:11 UTC (permalink / raw
  To: gentoo-commits

commit:     85c1b7da21cfde42642bca458574d168b06e861e
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar  8 12:09:31 2025 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Mar  8 12:10:54 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85c1b7da

app-vim/editorconfig-vim: drop 1.1.1

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 app-vim/editorconfig-vim/Manifest                  |  1 -
 .../editorconfig-vim/editorconfig-vim-1.1.1.ebuild | 26 ----------------------
 2 files changed, 27 deletions(-)

diff --git a/app-vim/editorconfig-vim/Manifest b/app-vim/editorconfig-vim/Manifest
index 7926ab38bc4a..89f922e62bf4 100644
--- a/app-vim/editorconfig-vim/Manifest
+++ b/app-vim/editorconfig-vim/Manifest
@@ -1,2 +1 @@
-DIST editorconfig-vim-1.1.1.tar.gz 33287 BLAKE2B 4c79ac3bf1f82ca6182480ab2f3c2ee24b8234f5845c63d90434bb57271981554a0651d8bc0314c718ad9700adf7903fed45f5e400d8ae8a0b6d42932e89e071 SHA512 7b94db4b2f641ecd2d2623bf55bf9b457c007b2b5c8553cba5b7a75bc34823d6995d3c9ed13febe0f59de6f87c52eb0367591213c43c6fcd7c331c529126f4d6
 DIST editorconfig-vim-1.2.0.tar.gz 34457 BLAKE2B 969e650c69abaa4e7fb652f3384f2b4ac779e2d6d3f39d898bcc7e69c7399510bfabb1aae5bd90cbb2e5276f5200a87797f6da976df040e39626d883b907792c SHA512 1101562e71f2a9f356a3773cc32f4f091d5a0b67c85a8d78d70f76a73ec3b709f5ac5b7db7448972409031d37176190922912945be05037b627d1cf766bbb731

diff --git a/app-vim/editorconfig-vim/editorconfig-vim-1.1.1.ebuild b/app-vim/editorconfig-vim/editorconfig-vim-1.1.1.ebuild
deleted file mode 100644
index a6d27567296c..000000000000
--- a/app-vim/editorconfig-vim/editorconfig-vim-1.1.1.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit vim-plugin
-
-MY_PV="${PV//_/-}"
-MY_P="${PN}-${MY_PV}"
-
-DESCRIPTION="vim plugin: Support EditorConfig files"
-HOMEPAGE="https://editorconfig.org/"
-SRC_URI="https://github.com/${PN%-vim}/${PN}/archive/v${MY_PV}.tar.gz -> ${MY_P}.tar.gz"
-S="${WORKDIR}/${MY_P}"
-
-LICENSE="BSD-2 PSF-2"
-KEYWORDS="amd64 ~arm64 x86"
-
-VIM_PLUGIN_HELPFILES="${PN%-vim}.txt"
-
-src_install() {
-	# we don't want to install the tests
-	rm -r tests || die
-
-	vim-plugin_src_install
-}


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

end of thread, other threads:[~2025-03-08 12:11 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-08 12:11 [gentoo-commits] repo/gentoo:master commit in: app-vim/editorconfig-vim/ Arthur Zamarin
  -- strict thread matches above, loose matches on Subject: below --
2024-05-03  8:21 Sam James
2024-03-22 12:37 Arthur Zamarin
2023-05-29 20:19 Sam James
2021-03-03 18:31 Sam James
2020-07-27 20:50 Sam James
2020-07-27 14:09 Sam James
2020-06-02 17:54 Patrick McLean
2020-02-05 13:00 Michał Górny
2020-01-14  1:32 Patrick McLean
2018-06-02  0:57 Aaron Bauman
2017-05-27 15:19 Michał Górny
2017-04-21  7:33 David Seifert
2017-03-01 19:55 Patrick McLean
2016-11-07 22:20 Patrick McLean
2016-11-04 22:40 Patrick McLean

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