* [gentoo-commits] repo/gentoo:master commit in: app-vim/vimtex/
@ 2022-12-25 19:26 Andreas Sturmlechner
0 siblings, 0 replies; 10+ messages in thread
From: Andreas Sturmlechner @ 2022-12-25 19:26 UTC (permalink / raw
To: gentoo-commits
commit: 679c32c70e9e47ac0c23e6d3b42bb8994611cd6e
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 25 19:25:59 2022 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Dec 25 19:26:11 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=679c32c7
app-vim/vimtex: drop out-of-sync 99999999 ebuild
Closes: https://bugs.gentoo.org/830865
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
app-vim/vimtex/vimtex-99999999.ebuild | 33 ---------------------------------
1 file changed, 33 deletions(-)
diff --git a/app-vim/vimtex/vimtex-99999999.ebuild b/app-vim/vimtex/vimtex-99999999.ebuild
deleted file mode 100644
index 57d396e62229..000000000000
--- a/app-vim/vimtex/vimtex-99999999.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit vim-plugin
-
-if [[ ${PV} == 9999* ]]; then
- EGIT_REPO_URI="https://github.com/lervag/vimtex.git"
- inherit git-r3
-else
- inherit vcs-snapshot
- COMMIT_HASH="17d809706edcb277f1ee7fa5e33aff3619926fe4"
- SRC_URI="https://github.com/lervag/vimtex/archive/${COMMIT_HASH}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~riscv ~x86"
-fi
-
-DESCRIPTION="vim plugin: a modern vim plugin for editing LaTeX files"
-HOMEPAGE="https://github.com/lervag/vimtex"
-LICENSE="MIT"
-
-VIM_PLUGIN_HELPFILES="${PN}"
-
-RDEPEND="
- !app-vim/vim-latex
- !app-vim/automatictexplugin"
-
-src_prepare() {
- default
-
- # remove unwanted dirs
- rm -r media test || die
-}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-vim/vimtex/
@ 2024-08-18 17:56 Arthur Zamarin
0 siblings, 0 replies; 10+ messages in thread
From: Arthur Zamarin @ 2024-08-18 17:56 UTC (permalink / raw
To: gentoo-commits
commit: 6776b73f09edd4c2004c774f857e69b797ecd124
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 18 17:56:04 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Aug 18 17:56:30 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6776b73f
app-vim/vimtex: add 2.15
Closes: https://bugs.gentoo.org/905130
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
app-vim/vimtex/Manifest | 1 +
app-vim/vimtex/vimtex-2.15.ebuild | 24 ++++++++++++++++++++++++
2 files changed, 25 insertions(+)
diff --git a/app-vim/vimtex/Manifest b/app-vim/vimtex/Manifest
index e092e8ba30de..4f1a20cbff10 100644
--- a/app-vim/vimtex/Manifest
+++ b/app-vim/vimtex/Manifest
@@ -1 +1,2 @@
DIST vimtex-1.5.tar.gz 1666938 BLAKE2B 7d203f25b1f5c653bb270fb4cb5463d2851fe63d52dde9b99d8ca4e2c7936f7291c649e5a71d25c01329a2caf3aa4258f302d2585c6b7e67991e5f91dd785526 SHA512 9009a830e117c8d1d6b00f97cb1382704c77120e05810ad40d1ec191cb547e5045101d2901b88d85b42d17ba51cdd5f5a00b2f80aa2424e2529bb19c7f651f00
+DIST vimtex-2.15.tar.gz 1092207 BLAKE2B 19feb79c47fa7906fbf97c126ca30a3ff89cd2b5aa034356e48d202eb55f41320bce1d40011dee4f8d099678a9748405ad7913f6df520773050fe494402f56e6 SHA512 1e436a375d3244b2bd3ccd82badc31f145c95990c1b058b5aa02ecb1adaafc80c6bf31661229fe6cb4f262c282da49755491b7311c0d450e5782d427e92ada1e
diff --git a/app-vim/vimtex/vimtex-2.15.ebuild b/app-vim/vimtex/vimtex-2.15.ebuild
new file mode 100644
index 000000000000..a79ca01e84a6
--- /dev/null
+++ b/app-vim/vimtex/vimtex-2.15.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit vim-plugin
+
+DESCRIPTION="vim plugin: a modern vim plugin for editing LaTeX files"
+HOMEPAGE="https://github.com/lervag/vimtex"
+SRC_URI="https://github.com/lervag/vimtex/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+KEYWORDS="~amd64 ~riscv ~x86"
+
+VIM_PLUGIN_HELPFILES="${PN}"
+
+RDEPEND="
+ !app-vim/vim-latex
+ !app-vim/automatictexplugin
+"
+
+src_install() {
+ vim-plugin_src_install lua
+}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-vim/vimtex/
@ 2023-12-26 2:37 Conrad Kostecki
0 siblings, 0 replies; 10+ messages in thread
From: Conrad Kostecki @ 2023-12-26 2:37 UTC (permalink / raw
To: gentoo-commits
commit: 6aa118033f313596d10c2da83d20791164d5d0cb
Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Sat Oct 28 18:57:32 2023 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Tue Dec 26 02:36:37 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6aa11803
app-vim/vimtex: add <stabilize-allarches/>
Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
app-vim/vimtex/metadata.xml | 1 +
1 file changed, 1 insertion(+)
diff --git a/app-vim/vimtex/metadata.xml b/app-vim/vimtex/metadata.xml
index fb1c6d5b1357..847b538ca590 100644
--- a/app-vim/vimtex/metadata.xml
+++ b/app-vim/vimtex/metadata.xml
@@ -8,4 +8,5 @@
<upstream>
<remote-id type="github">lervag/vimtex</remote-id>
</upstream>
+ <stabilize-allarches/>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-vim/vimtex/
@ 2021-08-05 14:02 Yixun Lan
0 siblings, 0 replies; 10+ messages in thread
From: Yixun Lan @ 2021-08-05 14:02 UTC (permalink / raw
To: gentoo-commits
commit: 9783b786c49ca3db75974a2776b8e384137a0e07
Author: Alex Fan <alexfanqi <AT> yahoo <DOT> com>
AuthorDate: Thu Aug 5 03:04:39 2021 +0000
Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Thu Aug 5 13:52:56 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9783b786
app-vim/vimtex: keyword 1.5 for ~riscv
Signed-off-by: Alex Fan <alexfanqi <AT> yahoo.com>
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>
app-vim/vimtex/vimtex-1.5.ebuild | 2 +-
app-vim/vimtex/vimtex-99999999.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-vim/vimtex/vimtex-1.5.ebuild b/app-vim/vimtex/vimtex-1.5.ebuild
index 569741da84e..bc71b2da1a5 100644
--- a/app-vim/vimtex/vimtex-1.5.ebuild
+++ b/app-vim/vimtex/vimtex-1.5.ebuild
@@ -8,7 +8,7 @@ inherit vim-plugin
DESCRIPTION="vim plugin: a modern vim plugin for editing LaTeX files"
HOMEPAGE="https://github.com/lervag/vimtex"
SRC_URI="https://github.com/lervag/vimtex/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~riscv ~x86"
LICENSE="MIT"
VIM_PLUGIN_HELPFILES="${PN}"
diff --git a/app-vim/vimtex/vimtex-99999999.ebuild b/app-vim/vimtex/vimtex-99999999.ebuild
index db452199563..57d396e6222 100644
--- a/app-vim/vimtex/vimtex-99999999.ebuild
+++ b/app-vim/vimtex/vimtex-99999999.ebuild
@@ -12,7 +12,7 @@ else
inherit vcs-snapshot
COMMIT_HASH="17d809706edcb277f1ee7fa5e33aff3619926fe4"
SRC_URI="https://github.com/lervag/vimtex/archive/${COMMIT_HASH}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~x86"
+ KEYWORDS="~amd64 ~riscv ~x86"
fi
DESCRIPTION="vim plugin: a modern vim plugin for editing LaTeX files"
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-vim/vimtex/
@ 2020-11-03 9:05 Patrice Clement
0 siblings, 0 replies; 10+ messages in thread
From: Patrice Clement @ 2020-11-03 9:05 UTC (permalink / raw
To: gentoo-commits
commit: 79d818979d3936a2fd0fa2ceb0886dac24db58ed
Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 3 08:30:32 2020 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Tue Nov 3 09:05:23 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79d81897
app-vim/vimtex: clean up old.
Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
app-vim/vimtex/Manifest | 1 -
app-vim/vimtex/vimtex-20180324-r1.ebuild | 33 --------------------------------
2 files changed, 34 deletions(-)
diff --git a/app-vim/vimtex/Manifest b/app-vim/vimtex/Manifest
index fd4b3a36ee1..e092e8ba30d 100644
--- a/app-vim/vimtex/Manifest
+++ b/app-vim/vimtex/Manifest
@@ -1,2 +1 @@
DIST vimtex-1.5.tar.gz 1666938 BLAKE2B 7d203f25b1f5c653bb270fb4cb5463d2851fe63d52dde9b99d8ca4e2c7936f7291c649e5a71d25c01329a2caf3aa4258f302d2585c6b7e67991e5f91dd785526 SHA512 9009a830e117c8d1d6b00f97cb1382704c77120e05810ad40d1ec191cb547e5045101d2901b88d85b42d17ba51cdd5f5a00b2f80aa2424e2529bb19c7f651f00
-DIST vimtex-20180324.tar.gz 684092 BLAKE2B 4472c9e62c5795b621a9230fbd7ea1f018c6df440f58065e7b439f64ae67f4064b158094c8d0b8a6eba6202bc9e6729b792fced02ea9deeaf400f0240537795d SHA512 59038aff6ec761a9f73db7d638a70e9ea5ba4d3ef4bd9283f3a62beb5e412f1a3c752dd0d739dc4c9c5e33e4a00a84a91da56e8fea2b8113b7ef73d219997409
diff --git a/app-vim/vimtex/vimtex-20180324-r1.ebuild b/app-vim/vimtex/vimtex-20180324-r1.ebuild
deleted file mode 100644
index fc0060ecefd..00000000000
--- a/app-vim/vimtex/vimtex-20180324-r1.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit vim-plugin
-
-if [[ ${PV} == 9999* ]]; then
- EGIT_REPO_URI="https://github.com/lervag/vimtex.git"
- inherit git-r3
-else
- inherit vcs-snapshot
- COMMIT_HASH="17d809706edcb277f1ee7fa5e33aff3619926fe4"
- SRC_URI="https://github.com/lervag/vimtex/archive/${COMMIT_HASH}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~x86"
-fi
-
-DESCRIPTION="vim plugin: a modern vim plugin for editing LaTeX files"
-HOMEPAGE="https://github.com/lervag/vimtex"
-LICENSE="MIT"
-
-VIM_PLUGIN_HELPFILES="${PN}"
-
-RDEPEND="
- !app-vim/vim-latex
- !app-vim/automatictexplugin"
-
-src_prepare() {
- default
-
- # remove unwanted files
- rm -r *.md media test || die
-}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-vim/vimtex/
@ 2020-11-03 9:05 Patrice Clement
0 siblings, 0 replies; 10+ messages in thread
From: Patrice Clement @ 2020-11-03 9:05 UTC (permalink / raw
To: gentoo-commits
commit: 4f2f8e8d088e471b70d51661c0ab5a33f42929ac
Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 3 08:30:15 2020 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Tue Nov 3 09:05:23 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f2f8e8d
app-vim/vimtex: version bump.
Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
app-vim/vimtex/Manifest | 1 +
app-vim/vimtex/vimtex-1.5.ebuild | 25 +++++++++++++++++++++++++
2 files changed, 26 insertions(+)
diff --git a/app-vim/vimtex/Manifest b/app-vim/vimtex/Manifest
index 85f64aacf84..fd4b3a36ee1 100644
--- a/app-vim/vimtex/Manifest
+++ b/app-vim/vimtex/Manifest
@@ -1 +1,2 @@
+DIST vimtex-1.5.tar.gz 1666938 BLAKE2B 7d203f25b1f5c653bb270fb4cb5463d2851fe63d52dde9b99d8ca4e2c7936f7291c649e5a71d25c01329a2caf3aa4258f302d2585c6b7e67991e5f91dd785526 SHA512 9009a830e117c8d1d6b00f97cb1382704c77120e05810ad40d1ec191cb547e5045101d2901b88d85b42d17ba51cdd5f5a00b2f80aa2424e2529bb19c7f651f00
DIST vimtex-20180324.tar.gz 684092 BLAKE2B 4472c9e62c5795b621a9230fbd7ea1f018c6df440f58065e7b439f64ae67f4064b158094c8d0b8a6eba6202bc9e6729b792fced02ea9deeaf400f0240537795d SHA512 59038aff6ec761a9f73db7d638a70e9ea5ba4d3ef4bd9283f3a62beb5e412f1a3c752dd0d739dc4c9c5e33e4a00a84a91da56e8fea2b8113b7ef73d219997409
diff --git a/app-vim/vimtex/vimtex-1.5.ebuild b/app-vim/vimtex/vimtex-1.5.ebuild
new file mode 100644
index 00000000000..23e077e8f05
--- /dev/null
+++ b/app-vim/vimtex/vimtex-1.5.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit vim-plugin
+
+DESCRIPTION="vim plugin: a modern vim plugin for editing LaTeX files"
+HOMEPAGE="https://github.com/lervag/vimtex"
+SRC_URI="https://github.com/lervag/vimtex/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64 ~x86"
+LICENSE="MIT"
+
+VIM_PLUGIN_HELPFILES="${PN}"
+
+RDEPEND="
+ !app-vim/vim-latex
+ !app-vim/automatictexplugin"
+
+src_prepare() {
+ default
+
+ # remove unwanted files
+ rm -r *.md media test || die
+}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-vim/vimtex/
@ 2019-12-13 8:26 Patrice Clement
0 siblings, 0 replies; 10+ messages in thread
From: Patrice Clement @ 2019-12-13 8:26 UTC (permalink / raw
To: gentoo-commits
commit: c94c53d491c9f5a9d6af46f6b96946885fe44198
Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 13 08:25:51 2019 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Fri Dec 13 08:26:30 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c94c53d4
app-vim/vimtex: remove bad dependencies.
Closes: https://bugs.gentoo.org/688584
Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
.../vimtex/{vimtex-99999999.ebuild => vimtex-20180324-r1.ebuild} | 7 ++-----
app-vim/vimtex/vimtex-99999999.ebuild | 7 ++-----
2 files changed, 4 insertions(+), 10 deletions(-)
diff --git a/app-vim/vimtex/vimtex-99999999.ebuild b/app-vim/vimtex/vimtex-20180324-r1.ebuild
similarity index 86%
copy from app-vim/vimtex/vimtex-99999999.ebuild
copy to app-vim/vimtex/vimtex-20180324-r1.ebuild
index d4031034c01..fc0060ecefd 100644
--- a/app-vim/vimtex/vimtex-99999999.ebuild
+++ b/app-vim/vimtex/vimtex-20180324-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -23,10 +23,7 @@ VIM_PLUGIN_HELPFILES="${PN}"
RDEPEND="
!app-vim/vim-latex
- !app-vim/automatictexplugin
- virtual/latex-base
- dev-tex/latexmk
-"
+ !app-vim/automatictexplugin"
src_prepare() {
default
diff --git a/app-vim/vimtex/vimtex-99999999.ebuild b/app-vim/vimtex/vimtex-99999999.ebuild
index d4031034c01..fc0060ecefd 100644
--- a/app-vim/vimtex/vimtex-99999999.ebuild
+++ b/app-vim/vimtex/vimtex-99999999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -23,10 +23,7 @@ VIM_PLUGIN_HELPFILES="${PN}"
RDEPEND="
!app-vim/vim-latex
- !app-vim/automatictexplugin
- virtual/latex-base
- dev-tex/latexmk
-"
+ !app-vim/automatictexplugin"
src_prepare() {
default
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-vim/vimtex/
@ 2019-12-13 8:26 Patrice Clement
0 siblings, 0 replies; 10+ messages in thread
From: Patrice Clement @ 2019-12-13 8:26 UTC (permalink / raw
To: gentoo-commits
commit: 735c47979740f2d67bcd56188aa47d7fb4a6a6d2
Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 13 08:26:25 2019 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Fri Dec 13 08:26:31 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=735c4797
app-vim/vimtex: clean up old.
Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
app-vim/vimtex/Manifest | 1 -
app-vim/vimtex/vimtex-20160324.ebuild | 20 -------------------
app-vim/vimtex/vimtex-20180324.ebuild | 36 -----------------------------------
3 files changed, 57 deletions(-)
diff --git a/app-vim/vimtex/Manifest b/app-vim/vimtex/Manifest
index a943ac802bd..85f64aacf84 100644
--- a/app-vim/vimtex/Manifest
+++ b/app-vim/vimtex/Manifest
@@ -1,2 +1 @@
-DIST vimtex-20160324.tar.bz2 95040 BLAKE2B a6ea2c0ace2aea108545347e0dd624dd838005d752d3e823d230f6fff04ba37f82c98ff472b06b6b5b58a8481824ba1ffad3c756d50a96ea9c79e8e506783131 SHA512 0c0d2a95f3b62239f47113f5b8876728d6d9fddf7e526477e92ef1f09317cb607ddd3b2aa07f6e8bebd357308adf21e4c353795952dc30372b493963bd0554ff
DIST vimtex-20180324.tar.gz 684092 BLAKE2B 4472c9e62c5795b621a9230fbd7ea1f018c6df440f58065e7b439f64ae67f4064b158094c8d0b8a6eba6202bc9e6729b792fced02ea9deeaf400f0240537795d SHA512 59038aff6ec761a9f73db7d638a70e9ea5ba4d3ef4bd9283f3a62beb5e412f1a3c752dd0d739dc4c9c5e33e4a00a84a91da56e8fea2b8113b7ef73d219997409
diff --git a/app-vim/vimtex/vimtex-20160324.ebuild b/app-vim/vimtex/vimtex-20160324.ebuild
deleted file mode 100644
index 3b8069b4db5..00000000000
--- a/app-vim/vimtex/vimtex-20160324.ebuild
+++ /dev/null
@@ -1,20 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit vim-plugin
-
-DESCRIPTION="vim plugin: a modern vim plugin for editing LaTeX files"
-HOMEPAGE="https://github.com/lervag/vimtex"
-LICENSE="MIT"
-KEYWORDS="~amd64 ~x86"
-
-VIM_PLUGIN_HELPFILES="${PN}"
-
-RDEPEND="!app-vim/vim-latex
- virtual/latex-base
- dev-tex/latexmk"
-
-src_prepare() {
- rm -rf *.md test || die
-}
diff --git a/app-vim/vimtex/vimtex-20180324.ebuild b/app-vim/vimtex/vimtex-20180324.ebuild
deleted file mode 100644
index d4031034c01..00000000000
--- a/app-vim/vimtex/vimtex-20180324.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit vim-plugin
-
-if [[ ${PV} == 9999* ]]; then
- EGIT_REPO_URI="https://github.com/lervag/vimtex.git"
- inherit git-r3
-else
- inherit vcs-snapshot
- COMMIT_HASH="17d809706edcb277f1ee7fa5e33aff3619926fe4"
- SRC_URI="https://github.com/lervag/vimtex/archive/${COMMIT_HASH}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~x86"
-fi
-
-DESCRIPTION="vim plugin: a modern vim plugin for editing LaTeX files"
-HOMEPAGE="https://github.com/lervag/vimtex"
-LICENSE="MIT"
-
-VIM_PLUGIN_HELPFILES="${PN}"
-
-RDEPEND="
- !app-vim/vim-latex
- !app-vim/automatictexplugin
- virtual/latex-base
- dev-tex/latexmk
-"
-
-src_prepare() {
- default
-
- # remove unwanted files
- rm -r *.md media test || die
-}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-vim/vimtex/
@ 2018-03-25 0:10 Tim Harder
0 siblings, 0 replies; 10+ messages in thread
From: Tim Harder @ 2018-03-25 0:10 UTC (permalink / raw
To: gentoo-commits
commit: b5767ffb9d191fb5c88f8c7798138e5af0244be7
Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 24 23:54:05 2018 +0000
Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
CommitDate: Sun Mar 25 00:09:51 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5767ffb
app-vim/vimtex: version bump to 20180324
app-vim/vimtex/Manifest | 1 +
app-vim/vimtex/vimtex-20180324.ebuild | 36 +++++++++++++++++++++++++++++++++++
app-vim/vimtex/vimtex-99999999.ebuild | 36 +++++++++++++++++++++++++++++++++++
3 files changed, 73 insertions(+)
diff --git a/app-vim/vimtex/Manifest b/app-vim/vimtex/Manifest
index ab1c9291010..a943ac802bd 100644
--- a/app-vim/vimtex/Manifest
+++ b/app-vim/vimtex/Manifest
@@ -1 +1,2 @@
DIST vimtex-20160324.tar.bz2 95040 BLAKE2B a6ea2c0ace2aea108545347e0dd624dd838005d752d3e823d230f6fff04ba37f82c98ff472b06b6b5b58a8481824ba1ffad3c756d50a96ea9c79e8e506783131 SHA512 0c0d2a95f3b62239f47113f5b8876728d6d9fddf7e526477e92ef1f09317cb607ddd3b2aa07f6e8bebd357308adf21e4c353795952dc30372b493963bd0554ff
+DIST vimtex-20180324.tar.gz 684092 BLAKE2B 4472c9e62c5795b621a9230fbd7ea1f018c6df440f58065e7b439f64ae67f4064b158094c8d0b8a6eba6202bc9e6729b792fced02ea9deeaf400f0240537795d SHA512 59038aff6ec761a9f73db7d638a70e9ea5ba4d3ef4bd9283f3a62beb5e412f1a3c752dd0d739dc4c9c5e33e4a00a84a91da56e8fea2b8113b7ef73d219997409
diff --git a/app-vim/vimtex/vimtex-20180324.ebuild b/app-vim/vimtex/vimtex-20180324.ebuild
new file mode 100644
index 00000000000..d4031034c01
--- /dev/null
+++ b/app-vim/vimtex/vimtex-20180324.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit vim-plugin
+
+if [[ ${PV} == 9999* ]]; then
+ EGIT_REPO_URI="https://github.com/lervag/vimtex.git"
+ inherit git-r3
+else
+ inherit vcs-snapshot
+ COMMIT_HASH="17d809706edcb277f1ee7fa5e33aff3619926fe4"
+ SRC_URI="https://github.com/lervag/vimtex/archive/${COMMIT_HASH}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~x86"
+fi
+
+DESCRIPTION="vim plugin: a modern vim plugin for editing LaTeX files"
+HOMEPAGE="https://github.com/lervag/vimtex"
+LICENSE="MIT"
+
+VIM_PLUGIN_HELPFILES="${PN}"
+
+RDEPEND="
+ !app-vim/vim-latex
+ !app-vim/automatictexplugin
+ virtual/latex-base
+ dev-tex/latexmk
+"
+
+src_prepare() {
+ default
+
+ # remove unwanted files
+ rm -r *.md media test || die
+}
diff --git a/app-vim/vimtex/vimtex-99999999.ebuild b/app-vim/vimtex/vimtex-99999999.ebuild
new file mode 100644
index 00000000000..d4031034c01
--- /dev/null
+++ b/app-vim/vimtex/vimtex-99999999.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit vim-plugin
+
+if [[ ${PV} == 9999* ]]; then
+ EGIT_REPO_URI="https://github.com/lervag/vimtex.git"
+ inherit git-r3
+else
+ inherit vcs-snapshot
+ COMMIT_HASH="17d809706edcb277f1ee7fa5e33aff3619926fe4"
+ SRC_URI="https://github.com/lervag/vimtex/archive/${COMMIT_HASH}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~x86"
+fi
+
+DESCRIPTION="vim plugin: a modern vim plugin for editing LaTeX files"
+HOMEPAGE="https://github.com/lervag/vimtex"
+LICENSE="MIT"
+
+VIM_PLUGIN_HELPFILES="${PN}"
+
+RDEPEND="
+ !app-vim/vim-latex
+ !app-vim/automatictexplugin
+ virtual/latex-base
+ dev-tex/latexmk
+"
+
+src_prepare() {
+ default
+
+ # remove unwanted files
+ rm -r *.md media test || die
+}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-vim/vimtex/
@ 2016-03-26 15:49 Tim Harder
0 siblings, 0 replies; 10+ messages in thread
From: Tim Harder @ 2016-03-26 15:49 UTC (permalink / raw
To: gentoo-commits
commit: e39e80be5700c151c4c668b8be5a9e543a056380
Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 26 15:38:56 2016 +0000
Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
CommitDate: Sat Mar 26 15:49:25 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e39e80be
app-vim/vimtex: initial import
app-vim/vimtex/Manifest | 1 +
app-vim/vimtex/metadata.xml | 11 +++++++++++
app-vim/vimtex/vimtex-20160324.ebuild | 21 +++++++++++++++++++++
3 files changed, 33 insertions(+)
diff --git a/app-vim/vimtex/Manifest b/app-vim/vimtex/Manifest
new file mode 100644
index 0000000..74f6dca
--- /dev/null
+++ b/app-vim/vimtex/Manifest
@@ -0,0 +1 @@
+DIST vimtex-20160324.tar.bz2 95040 SHA256 4afc63478fc6480bb2240613efef89c498806be5b17383edf3f2e5ed3c1f11c0 SHA512 0c0d2a95f3b62239f47113f5b8876728d6d9fddf7e526477e92ef1f09317cb607ddd3b2aa07f6e8bebd357308adf21e4c353795952dc30372b493963bd0554ff WHIRLPOOL a7bb550a7ebf4f3b9395d44620e883c91ae238729b0cdc912baf4a83fd95f0ffc145edf0c2b34a6b08ad6953467e0610ea8e57101d5ad188c0349d87ff1345cb
diff --git a/app-vim/vimtex/metadata.xml b/app-vim/vimtex/metadata.xml
new file mode 100644
index 0000000..761c713
--- /dev/null
+++ b/app-vim/vimtex/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>
+ <name>Gentoo Vim Project</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">lervag/vimtex</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/app-vim/vimtex/vimtex-20160324.ebuild b/app-vim/vimtex/vimtex-20160324.ebuild
new file mode 100644
index 0000000..b45bf56
--- /dev/null
+++ b/app-vim/vimtex/vimtex-20160324.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit vim-plugin
+
+DESCRIPTION="vim plugin: a modern vim plugin for editing LaTeX files"
+HOMEPAGE="https://github.com/lervag/vimtex"
+LICENSE="MIT"
+KEYWORDS="~amd64 ~x86"
+
+VIM_PLUGIN_HELPFILES="${PN}"
+
+RDEPEND="!app-vim/vim-latex
+ virtual/latex-base
+ dev-tex/latexmk"
+
+src_prepare() {
+ rm -rf *.md test || die
+}
^ permalink raw reply related [flat|nested] 10+ messages in thread
end of thread, other threads:[~2024-08-18 17:56 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-12-25 19:26 [gentoo-commits] repo/gentoo:master commit in: app-vim/vimtex/ Andreas Sturmlechner
-- strict thread matches above, loose matches on Subject: below --
2024-08-18 17:56 Arthur Zamarin
2023-12-26 2:37 Conrad Kostecki
2021-08-05 14:02 Yixun Lan
2020-11-03 9:05 Patrice Clement
2020-11-03 9:05 Patrice Clement
2019-12-13 8:26 Patrice Clement
2019-12-13 8:26 Patrice Clement
2018-03-25 0:10 Tim Harder
2016-03-26 15:49 Tim Harder
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox