feat!: drop luarocks release

This commit is contained in:
Christian Clason 2024-02-23 13:36:52 +01:00
parent 5817ff01b5
commit eb1b6ec542
3 changed files with 0 additions and 101 deletions

View file

@ -1,24 +0,0 @@
name: "release"
on:
push:
tags: # Will upload to luarocks.org
- "*"
pull_request: # Will test a local install without uploading to luarocks.org
paths:
- 'contrib/*.rockspec'
- .github/workflows/release.yml
jobs:
luarocks-upload:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: nvim-neorocks/luarocks-tag-release@v5
env:
LUAROCKS_API_KEY: ${{ secrets.LUAROCKS_API_KEY }}
with:
name: nvim-treesitter
detailed_description: |
The goal of nvim-treesitter is both to provide a simple and easy way to use the interface for tree-sitter in Neovim
and to provide some basic functionality such as highlighting based on it.
template: contrib/nvim-treesitter-luarocks.template

View file

@ -1,41 +0,0 @@
local git_ref = '$git_ref'
local modrev = '$modrev'
local specrev = '-1'
local repo_url = '$repo_url'
rockspec_format = '3.0'
package = '$package'
version = modrev .. specrev
description = {
summary = 'Nvim Treesitter configurations and abstraction layer',
detailed = $detailed_description,
labels = { 'neovim' },
homepage = 'https://github.com/nvim-treesitter/nvim-treesitter',
license = 'Apache-2.0',
}
dependencies = {
'lua >= 5.1',
}
-- source = file:///.
source = {
url = repo_url .. '/archive/' .. git_ref .. '.zip',
dir = '$repo_name-' .. '$archive_dir_suffix',
}
build = {
type = 'make',
build_pass = false,
install_variables = {
INST_PREFIX='$(PREFIX)',
INST_BINDIR='$(BINDIR)',
INST_LIBDIR='$(LIBDIR)',
INST_LUADIR='$(LUADIR)',
INST_CONFDIR='$(CONFDIR)',
},
copy_directories = $copy_directories,
}

View file

@ -1,36 +0,0 @@
local MODREV, SPECREV = 'scm', '-1'
rockspec_format = '3.0'
package = 'nvim-treesitter'
version = MODREV .. SPECREV
description = {
summary = 'Nvim Treesitter configurations and abstraction layer',
labels = { 'neovim' },
homepage = 'https://github.com/nvim-treesitter/nvim-treesitter',
license = 'Apache-2.0',
}
dependencies = {
'lua >= 5.1',
}
source = {
url = 'git://github.com/nvim-treesitter/nvim-treesitter',
}
build = {
type = 'make',
install_variables = {
INST_PREFIX='$(PREFIX)',
INST_BINDIR='$(BINDIR)',
INST_LIBDIR='$(LIBDIR)',
INST_LUADIR='$(LUADIR)',
INST_CONFDIR='$(CONFDIR)',
},
copy_directories = {
'autoload',
'doc',
'plugin',
'queries'
}
}