Adding debian version 0.20200629-6.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
This commit is contained in:
parent
ab07386d8b
commit
995afd5ae4
7 changed files with 115 additions and 0 deletions
41
debian/changelog
vendored
Normal file
41
debian/changelog
vendored
Normal file
|
@ -0,0 +1,41 @@
|
|||
vim-nftables (0.20200629-6) sid; urgency=medium
|
||||
|
||||
* Updating to standards version 4.7.1.
|
||||
* Updating to standards version 4.7.2.
|
||||
|
||||
-- Daniel Baumann <daniel@debian.org> Wed, 19 Mar 2025 20:46:14 +0100
|
||||
|
||||
vim-nftables (0.20200629-5) sid; urgency=medium
|
||||
|
||||
* Updating source url in copyright.
|
||||
|
||||
-- Daniel Baumann <daniel@debian.org> Thu, 20 Feb 2025 21:15:36 +0100
|
||||
|
||||
vim-nftables (0.20200629-4) sid; urgency=medium
|
||||
|
||||
* Updating vcs fields.
|
||||
* Updating email address.
|
||||
* Trimming changelog.
|
||||
* Updating year in debian copyright for 2025.
|
||||
|
||||
-- Daniel Baumann <daniel@debian.org> Thu, 06 Feb 2025 23:39:26 +0100
|
||||
|
||||
vim-nftables (0.20200629-3) sid; urgency=medium
|
||||
|
||||
* Removing watch file as no proper tags or releases are available
|
||||
upstream.
|
||||
|
||||
-- Daniel Baumann <daniel@debian.org> Thu, 25 Jul 2024 06:18:47 +0200
|
||||
|
||||
vim-nftables (0.20200629-2) sid; urgency=medium
|
||||
|
||||
* Updating to standards-version 4.7.0.
|
||||
* Using codename in changelog instead of suitename.
|
||||
|
||||
-- Daniel Baumann <daniel@debian.org> Sun, 21 Apr 2024 21:49:44 +0200
|
||||
|
||||
vim-nftables (0.20200629-1) sid; urgency=medium
|
||||
|
||||
* Initial upload to sid.
|
||||
|
||||
-- Daniel Baumann <daniel@debian.org> Fri, 08 Mar 2024 22:12:06 +0100
|
25
debian/control
vendored
Normal file
25
debian/control
vendored
Normal file
|
@ -0,0 +1,25 @@
|
|||
Source: vim-nftables
|
||||
Section: editors
|
||||
Priority: optional
|
||||
Maintainer: Daniel Baumann <daniel@debian.org>
|
||||
Build-Depends:
|
||||
debhelper-compat (= 13),
|
||||
Rules-Requires-Root: no
|
||||
Standards-Version: 4.7.2
|
||||
Homepage: https://github.com/nfnty/vim-nftables
|
||||
Vcs-Browser: https://forgejo.debian.net/linux/vim-nftables
|
||||
Vcs-Git: https://forgejo.debian.net/linux/vim-nftables
|
||||
|
||||
Package: vim-nftables
|
||||
Section: editors
|
||||
Architecture: all
|
||||
Depends:
|
||||
${misc:Depends},
|
||||
Recommends:
|
||||
vim-addon-manager,
|
||||
Description: syntax highlighting for nftables configuration files
|
||||
The vim-nftables package provides filetype detection and syntax highlighting
|
||||
for nftables configuration files.
|
||||
.
|
||||
As per the Debian vim policy, installed addons are not activated
|
||||
automatically, but the "vim-addon-manager" tool can be used for this purpose.
|
31
debian/copyright
vendored
Normal file
31
debian/copyright
vendored
Normal file
|
@ -0,0 +1,31 @@
|
|||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||
Upstream-Name: vim-nftables
|
||||
Upstream-Contact: https://github.com/nfnty/vim-nftables/issues
|
||||
Source: https://github.com/nfnty/vim-nftables/tags
|
||||
|
||||
Files: *
|
||||
Copyright: 2015-2020 nfnty <git@nfnty.se>
|
||||
License: MIT
|
||||
|
||||
Files: debian/*
|
||||
Copyright: 2024-2025 Daniel Baumann <daniel@debian.org>
|
||||
License: MIT
|
||||
|
||||
License: MIT
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
.
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
.
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
7
debian/local/registry/nftables.yaml
vendored
Normal file
7
debian/local/registry/nftables.yaml
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
addon: nftables
|
||||
description: "Syntax highlighting for nftables"
|
||||
files:
|
||||
- ftdetect/nftables.vim
|
||||
- ftplugin/nftables.vim
|
||||
- indent/nftables.vim
|
||||
- syntax/nftables.vim
|
4
debian/rules
vendored
Executable file
4
debian/rules
vendored
Executable file
|
@ -0,0 +1,4 @@
|
|||
#!/usr/bin/make -f
|
||||
|
||||
%:
|
||||
dh ${@}
|
1
debian/source/format
vendored
Normal file
1
debian/source/format
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
3.0 (quilt)
|
6
debian/vim-nftables.install
vendored
Normal file
6
debian/vim-nftables.install
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
ftdetect/* /usr/share/vim/addons/ftdetect
|
||||
ftplugin/* /usr/share/vim/addons/ftplugin
|
||||
indent/* /usr/share/vim/addons/indent
|
||||
syntax/* /usr/share/vim/addons/syntax
|
||||
|
||||
debian/local/registry/* /usr/share/vim/registry
|
Loading…
Add table
Add a link
Reference in a new issue