Update to 1.2.0 (close RHBZ#2250584)

This commit is contained in:
Benjamin A. Beasley 2023-11-23 09:00:56 -05:00
commit 2f331f2e08
3 changed files with 9 additions and 7 deletions

2
.gitignore vendored
View file

@ -1,3 +1,5 @@
/editorconfig-core-test-0.13.tar.gz
/editorconfig-plugin-tests-cb7ae15d16ab3d72a1139f7a629b11cfe16d972f.tar.gz
/editorconfig-vim-1.1.1.tar.gz
/editorconfig-vim-1.2.0.tar.gz
/editorconfig-core-test-5ca0b296dc31124d0303895c163013450bd97958.tar.gz

View file

@ -1,3 +1,3 @@
SHA512 (editorconfig-core-test-0.13.tar.gz) = 655da56c688e06ec0fb6fee06c89ad2eeef7be48ec2df861ed5ce20417801b4fe8ddf2df31026a8b2fb35fe1ab96daadedceb34f4d3231f931c30f109a5d894b
SHA512 (editorconfig-vim-1.2.0.tar.gz) = 1101562e71f2a9f356a3773cc32f4f091d5a0b67c85a8d78d70f76a73ec3b709f5ac5b7db7448972409031d37176190922912945be05037b627d1cf766bbb731
SHA512 (editorconfig-core-test-5ca0b296dc31124d0303895c163013450bd97958.tar.gz) = df5f772cef2f97bb1a4ebc4fec4e51d0e49949a12649e07ff06d1afa45fca2f2f4fd69386a74f04b583e11235a9820392dffd8abd7c480ba7c1b75e944333099
SHA512 (editorconfig-plugin-tests-cb7ae15d16ab3d72a1139f7a629b11cfe16d972f.tar.gz) = 0f003fbe538c03bc18fcda9c2f6f20d4f6c451b22f7957806487792bffe529ab5dd608a2b602f895f61b3c442237b2640918c7052b49f19b68297964d3db227c
SHA512 (editorconfig-vim-1.1.1.tar.gz) = 7b94db4b2f641ecd2d2623bf55bf9b457c007b2b5c8553cba5b7a75bc34823d6995d3c9ed13febe0f59de6f87c52eb0367591213c43c6fcd7c331c529126f4d6

View file

@ -6,7 +6,7 @@
# In Fedora, vim plugin packages should ideally start with the vim- prefix:
Name: vim-editorconfig
Summary: EditorConfig Vim Plugin
Version: 1.1.1
Version: 1.2.0
Release: %autorelease
# The editorconfig core tests are included as a git submodule do not appear in
@ -14,8 +14,8 @@ Release: %autorelease
# for them. We do not treat this as a bundled library because the tests do not
# contribute to the installed files in any way. When the package is updated,
# the maintainer should check that we still have the correct (latest) version
# of the tests.
%global core_tests_version 0.13
# or snapshot of the tests.
%global core_tests_commit 5ca0b296dc31124d0303895c163013450bd97958
%global core_tests_url https://github.com/editorconfig/editorconfig-core-test/
# Same for the plugin tests; these do not tag releases, so we reference a
# particular commit.
@ -30,7 +30,7 @@ Release: %autorelease
License: BSD-2-Clause AND (BSD-2-Clause AND PSF-2.0)
URL: https://github.com/editorconfig/editorconfig-vim
Source0: %{url}/archive/v%{version}/editorconfig-vim-%{version}.tar.gz
Source1: %{core_tests_url}/archive/v%{core_tests_version}/editorconfig-core-test-%{core_tests_version}.tar.gz
Source1: %{core_tests_url}/archive/%{core_tests_commit}/editorconfig-core-test-%{core_tests_commit}.tar.gz
# Files in this source are licensed CC-BY; however, nothing derived from them
# is installed, so this does not affect the License field.
Source2: %{plugin_tests_url}/archive/%{plugin_tests_commit}/editorconfig-plugin-tests-%{plugin_tests_commit}.tar.gz
@ -66,7 +66,7 @@ This is an EditorConfig plugin for Vim.
# tarballs.
rm -rvf tests/core/tests
%setup -q -T -D -b 1 -n editorconfig-vim-%{version}
cp -rp ../editorconfig-core-test-%{core_tests_version} tests/core/tests
cp -rp ../editorconfig-core-test-%{core_tests_commit} tests/core/tests
%if %{with plugin_tests}
rm -rvf tests/plugin/spec/plugin_tests
%setup -q -T -D -b 2 -n editorconfig-vim-%{version}