Adding debian version 20140808-1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
73a53afa8d
commit
4779200347
7 changed files with 103 additions and 0 deletions
5
debian/changelog
vendored
Normal file
5
debian/changelog
vendored
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
firmware-ast (20140808-1) sid; urgency=medium
|
||||||
|
|
||||||
|
* Initial upload to sid.
|
||||||
|
|
||||||
|
-- Daniel Baumann <daniel.baumann@progress-linux.org> Sat, 13 Mar 2021 06:38:29 +0100
|
30
debian/control
vendored
Normal file
30
debian/control
vendored
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
Source: firmware-ast
|
||||||
|
Section: kernel
|
||||||
|
Priority: optional
|
||||||
|
Maintainer: Daniel Baumann <daniel.baumann@progress-linux.org>
|
||||||
|
Build-Depends:
|
||||||
|
debhelper-compat (= 13),
|
||||||
|
vim-common,
|
||||||
|
Rules-Requires-Root: no
|
||||||
|
Standards-Version: 4.5.1
|
||||||
|
Homepage: https://gitlab.freedesktop.org/xorg/driver/xf86-video-ast
|
||||||
|
Vcs-Browser: https://git.progress-linux.org/users/daniel.baumann/debian/packages/firmware-ast
|
||||||
|
Vcs-Git: https://git.progress-linux.org/users/daniel.baumann/debian/packages/firmware-ast
|
||||||
|
|
||||||
|
Package: firmware-ast
|
||||||
|
Section: kernel
|
||||||
|
Architecture: all
|
||||||
|
Multi-Arch: foreign
|
||||||
|
Depends:
|
||||||
|
${misc:Depends},
|
||||||
|
Suggests:
|
||||||
|
initramfs-tools,
|
||||||
|
Enhances:
|
||||||
|
firmware-linux-free,
|
||||||
|
xserver-xorg-video-ast,
|
||||||
|
Description: Binary firmware for ASpeed Technologies graphics chips
|
||||||
|
This package contains the binary firmware for ASpeed Technologies graphics
|
||||||
|
chips supported by the xserver-xorg-video-ast driver.
|
||||||
|
.
|
||||||
|
Contents:
|
||||||
|
* AST microcode (ast_dp501_fw.bin)
|
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: xf86-video-ast
|
||||||
|
Upstream-Contact: Y.C. Chen <yc_chen@aspeedtech.com>
|
||||||
|
Source: https://gitlab.freedesktop.org/xorg/driver/xf86-video-ast
|
||||||
|
|
||||||
|
Files: *
|
||||||
|
Copyright: 2010-2021 Daniel Baumann <daniel.baumann@progress-linux.org>
|
||||||
|
License: MIT
|
||||||
|
|
||||||
|
Files: *.h
|
||||||
|
Copyright: 2005-2014 ASPEED Technology Inc.
|
||||||
|
License: MIT
|
||||||
|
|
||||||
|
License: MIT
|
||||||
|
Permission to use, copy, modify, distribute, and sell this software and its
|
||||||
|
documentation for any purpose is hereby granted without fee, provided that
|
||||||
|
the above copyright notice appear in all copies and that both that
|
||||||
|
copyright notice and this permission notice appear in supporting
|
||||||
|
documentation, and that the name of the authors not be used in
|
||||||
|
advertising or publicity pertaining to distribution of the software without
|
||||||
|
specific, written prior permission. The authors makes no representations
|
||||||
|
about the suitability of this software for any purpose. It is provided
|
||||||
|
"as is" without express or implied warranty.
|
||||||
|
.
|
||||||
|
THE AUTHORS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
||||||
|
INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
|
||||||
|
EVENT SHALL THE AUTHORS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
|
||||||
|
CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||||
|
DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||||
|
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||||
|
PERFORMANCE OF THIS SOFTWARE.
|
7
debian/firmware-ast.bug-presubj
vendored
Normal file
7
debian/firmware-ast.bug-presubj
vendored
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
You are about to report a bug on a firmware package.
|
||||||
|
This package does not contain any drivers and is probably not responsible
|
||||||
|
for the bug you have found.
|
||||||
|
|
||||||
|
If you want to report a bug in a Linux kernel module, use the 'modinfo'
|
||||||
|
command to find where it is installed and then give the filename to
|
||||||
|
'reportbug'.
|
22
debian/firmware-ast.postinst
vendored
Executable file
22
debian/firmware-ast.postinst
vendored
Executable file
|
@ -0,0 +1,22 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
case "${1}" in
|
||||||
|
configure)
|
||||||
|
dpkg-trigger --no-await update-initramfs
|
||||||
|
;;
|
||||||
|
|
||||||
|
abort-upgrade|abort-remove|abort-deconfigure)
|
||||||
|
|
||||||
|
;;
|
||||||
|
|
||||||
|
*)
|
||||||
|
echo "postinst called with unknown argument \`${1}'" >&2
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
#DEBHELPER#
|
||||||
|
|
||||||
|
exit 0
|
7
debian/rules
vendored
Executable file
7
debian/rules
vendored
Executable file
|
@ -0,0 +1,7 @@
|
||||||
|
#!/usr/bin/make -f
|
||||||
|
|
||||||
|
%:
|
||||||
|
dh ${@}
|
||||||
|
|
||||||
|
override_dh_auto_clean:
|
||||||
|
$(MAKE) clean
|
1
debian/source/format
vendored
Normal file
1
debian/source/format
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
3.0 (quilt)
|
Loading…
Add table
Reference in a new issue