first commit

This commit is contained in:
Your Name
2026-02-07 20:22:48 +08:00
commit 1b9711d5e4
2270 changed files with 805872 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
libcedrus (1~git.20160229.e129e79-0~xenial1.0) xenial; urgency=low
* package up libcedrus.2016
-- Simon Eisenmann <simon@longsleep.org> Sun, 1 May 2016 18:04:39 +0200

View File

@@ -0,0 +1 @@
9

View File

@@ -0,0 +1,32 @@
Source: libcedrus
Section: devel
Priority: optional
Maintainer: Simon Eisenmann <simon@longsleep.org>
Build-Depends:
debhelper (>= 9),
Standards-Version: 3.9.7
Vcs-Git: https://github.com/linux-sunxi/libcedrus
Vcs-Browser: https://github.com/linux-sunxi/libcedrus
Package: libcedrus1
Section: libs
Architecture: any
Depends:
${shlibs:Depends},
${misc:Depends},
Pre-Depends: ${misc:Pre-Depends}
Multi-Arch: same
Description: Low-level acces to video enginge ofr Allwinner sunxi SoCs
The Cedrus library is need for video engine access of Allwinner sunxi
SOCS. The vdpau sunxi driver depends on it.
Package: libcedrus1-dev
Section: libdevel
Architecture: any
Depends:
libcedrus1 (= ${binary:Version}),
${misc:Depends},
Multi-Arch: same
Description: Low-level acces to video enginge ofr Allwinner sunxi SoCs (development files)
The Cedrus library is need for video engine access of Allwinner sunxi
SOCS. This package is needed to build programs which link against libcedrus.

View File

@@ -0,0 +1,94 @@
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: libcedrus
Source: https://github.com/linux-sunxi/libcedrus
Files: *
Copyright: Copyright 1998 John Doe <jdoe@example.com>
License: LGPL-2.1+
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
.
On Debian systems, the full text of the GNU Lesser General Public
License version 2.1 can be found in the file
`/usr/share/common-licenses/LGPL-2.1'.
Files: kernel-headers/*
Copyright: Copyright 2011 Google, Inc.
License: GPL-2+
This program is free software; you can redistribute it
and/or modify it under the terms of the GNU General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later
version.
.
This program is distributed in the hope that it will be
useful, but WITHOUT ANY WARRANTY; without even the implied
warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the GNU General Public License for more
details.
.
You should have received a copy of the GNU General Public
License along with this package; if not, write to the Free
Software Foundation, Inc., 51 Franklin St, Fifth Floor,
Boston, MA 02110-1301 USA
.
On Debian systems, the full text of the GNU General Public
License version 2 can be found in the file
`/usr/share/common-licenses/GPL-2'.
Files: kernel-headers/cedardev_api.h
Copyright: Copyright (c) 2008-2015 Allwinner Technology Co. Ltd.
Copyright (c) 2014 BZ Chen <bzchen@allwinnertech.com>
License: LGPL-2.1+
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
.
On Debian systems, the full text of the GNU Lesser General Public
License version 2.1 can be found in the file
`/usr/share/common-licenses/LGPL-2.1'.
Files: debian/*
Copyright: Copyright 2016 Simon Eisenmann <simon@longsleep.org>
License: GPL-2+
This program is free software; you can redistribute it
and/or modify it under the terms of the GNU General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later
version.
.
This program is distributed in the hope that it will be
useful, but WITHOUT ANY WARRANTY; without even the implied
warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the GNU General Public License for more
details.
.
You should have received a copy of the GNU General Public
License along with this package; if not, write to the Free
Software Foundation, Inc., 51 Franklin St, Fifth Floor,
Boston, MA 02110-1301 USA
.
On Debian systems, the full text of the GNU General Public
License version 2 can be found in the file
`/usr/share/common-licenses/GPL-2'.

View File

@@ -0,0 +1,2 @@
usr/lib/*/libcedrus.so
usr/include/cedrus

View File

@@ -0,0 +1 @@
usr/lib/*/libcedrus.so.*

View File

@@ -0,0 +1,12 @@
#!/bin/sh
case "$1" in
install)
which udevadm > /dev/null && udevadm trigger --action=add --sysname-match=cedar_dev || true
which udevadm > /dev/null && udevadm trigger --action=add --sysname-match=ion || true
;;
esac
#DEBHELPER#
exit 0

View File

@@ -0,0 +1,2 @@
KERNEL=="cedar_dev", MODE="0660", GROUP="video"
KERNEL=="ion", MODE="0660", GROUP="video"

View File

@@ -0,0 +1,12 @@
#!/usr/bin/make -f
PACKAGE = libcedrus
#override_dh_auto_build:
# dh_auto_build -- USE_UMP=1
override_dh_auto_install:
dh_auto_install -- prefix=/usr libdir=\$${prefix}/lib/$(DEB_HOST_MULTIARCH)
%:
dh $@

View File

@@ -0,0 +1 @@
3.0 (quilt)