Adding debian version 1.9.1+dfsg-1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
dafef1aa3b
commit
88851e34c2
8 changed files with 106 additions and 0 deletions
7
debian/TODO
vendored
Normal file
7
debian/TODO
vendored
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
TODO
|
||||||
|
====
|
||||||
|
|
||||||
|
* build documentation and font files (needs lots of nodejs build-dependencies
|
||||||
|
package first) and ship it in additional binary packages.
|
||||||
|
|
||||||
|
-- Daniel Baumann <daniel.baumann@progress-linux.org> Sat, 23 Jul 2022 10:43:35 +0200
|
1
debian/bootstrap-icons.install
vendored
Normal file
1
debian/bootstrap-icons.install
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
icons/* /usr/share/bootstrap-icons/svg
|
5
debian/changelog
vendored
Normal file
5
debian/changelog
vendored
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
bootstrap-icons (1.9.1+dfsg-1) experimental; urgency=low
|
||||||
|
|
||||||
|
* Initial upload to sid (Closes: #991713).
|
||||||
|
|
||||||
|
-- Daniel Baumann <daniel.baumann@progress-linux.org> Sat, 23 Jul 2022 10:44:50 +0200
|
44
debian/control
vendored
Normal file
44
debian/control
vendored
Normal file
|
@ -0,0 +1,44 @@
|
||||||
|
Source: bootstrap-icons
|
||||||
|
Section: web
|
||||||
|
Priority: optional
|
||||||
|
Maintainer: Daniel Baumann <daniel.baumann@progress-linux.org>
|
||||||
|
Build-Depends:
|
||||||
|
debhelper-compat (= 13),
|
||||||
|
Rules-Requires-Root: no
|
||||||
|
Standards-Version: 4.6.1
|
||||||
|
Homepage: https://icons.getbootstrap.com
|
||||||
|
Vcs-Browser: https://git.progress-linux.org/users/daniel.baumann/debian/packages/boottrap-icons
|
||||||
|
Vcs-Git: https://git.progress-linux.org/users/daniel.baumann/debian/packages/bootstrap-icons
|
||||||
|
|
||||||
|
Package: bootstrap-icons
|
||||||
|
Section: web
|
||||||
|
Architecture: all
|
||||||
|
Depends:
|
||||||
|
${misc:Depends},
|
||||||
|
Description: icon library for Bootstrap (SVG files)
|
||||||
|
Bootstrap Icons is a icon library with over 1'600 icons to use with or without
|
||||||
|
the Bootstrap HTML toolkit.
|
||||||
|
.
|
||||||
|
This package contains the SVG files.
|
||||||
|
|
||||||
|
#Package: bootstrap-icons-doc
|
||||||
|
#Section: web
|
||||||
|
#Architecture: all
|
||||||
|
#Depends:
|
||||||
|
# ${misc:Depends},
|
||||||
|
#Description: icon library for Bootstrap (documentation)
|
||||||
|
# Bootstrap Icons is a icon library with over 1'600 icons to use with or without
|
||||||
|
# the Bootstrap HTML toolkit.
|
||||||
|
# .
|
||||||
|
# This package contains the documentation (e.g. catalog for every icon).
|
||||||
|
|
||||||
|
#Package: fonts-bootstrap-icons
|
||||||
|
#Section: fonts
|
||||||
|
#Architecture: all
|
||||||
|
#Depends:
|
||||||
|
# ${misc:Depends},
|
||||||
|
#Description: icon library for Bootstrap (Webfont)
|
||||||
|
# Bootstrap Icons is a icon library with over 1'600 icons to use with or without
|
||||||
|
# the Bootstrap HTML toolkit.
|
||||||
|
# .
|
||||||
|
# This package contains the webfont files.
|
37
debian/copyright
vendored
Normal file
37
debian/copyright
vendored
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||||
|
Upstream-Name: Bootstrap Icons
|
||||||
|
Upstream-Contact: https://github.com/twbs/icons/issues
|
||||||
|
Source: https://github.com/twbs/icons/releases
|
||||||
|
Files-excluded: docs font/fonts
|
||||||
|
|
||||||
|
Files: *
|
||||||
|
Copyright: 2019-2021 The Bootstrap Authors
|
||||||
|
License: MIT
|
||||||
|
|
||||||
|
Files: build/vnu-jar.js
|
||||||
|
Copyright: 2017-2022 The Bootstrap Authors
|
||||||
|
2017-2022 Twitter, Inc.
|
||||||
|
License: MIT
|
||||||
|
|
||||||
|
Files: debian/*
|
||||||
|
Copyright: 2022 Daniel Baumann <daniel.baumann@progress-linux.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.
|
8
debian/rules
vendored
Executable file
8
debian/rules
vendored
Executable file
|
@ -0,0 +1,8 @@
|
||||||
|
#!/usr/bin/make -f
|
||||||
|
|
||||||
|
%:
|
||||||
|
dh ${@}
|
||||||
|
|
||||||
|
upstream:
|
||||||
|
rm -rf docs
|
||||||
|
rm -rf font/fonts
|
1
debian/source/format
vendored
Normal file
1
debian/source/format
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
3.0 (quilt)
|
3
debian/watch
vendored
Normal file
3
debian/watch
vendored
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
version=4
|
||||||
|
opts="pgpmode=auto, uversionmangle=s/(\d)\-?((pre|rc)\d*)$/$1~$2/" \
|
||||||
|
https://download.savannah.gnu.org/releases/lzip/@PACKAGE@@ANY_VERSION@\.tar\.lz
|
Loading…
Add table
Reference in a new issue