Codebase list qoi / 13e215e
Import Debian changes 0+git20220615+ds-1 qoi (0+git20220615+ds-1) unstable; urgency=medium . * Initial release. (Closes: #1012837) Gürkan Myczko 1 year, 10 months ago
13 changed file(s) with 214 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 qoi (0+git20220615+ds-1) unstable; urgency=medium
1
2 * Initial release. (Closes: #1012837)
3
4 -- Gürkan Myczko <tar@debian.org> Wed, 15 Jun 2022 10:03:43 +0200
0 Source: qoi
1 Section: libs
2 Priority: optional
3 Maintainer: Gürkan Myczko <tar@debian.org>
4 Rules-Requires-Root: no
5 Build-Depends:
6 debhelper-compat (= 13),
7 libstb-dev,
8 libpng-dev
9 Standards-Version: 4.6.1
10 Homepage: https://github.com/phoboslab/qoi
11 Vcs-Browser: https://salsa.debian.org/debian/qoi
12 Vcs-Git: https://salsa.debian.org/debian/qoi.git
13
14 Package: qoi
15 Architecture: any
16 Depends:
17 ${shlibs:Depends},
18 ${misc:Depends},
19 Description: “Quite OK Image Format” for fast, lossless image compression
20 This is the original QOI implementation to work with images with C or C++.
21
22 Package: libqoi-dev
23 Section: libdevel
24 Architecture: all
25 Depends:
26 ${shlibs:Depends},
27 ${misc:Depends},
28 libstb-dev
29 Description: “Quite OK Image Format” for fast, lossless image compression (devel)
30 This is the original QOI implementation to work with images with C or C++.
31 .
32 This package contains the single header file.
0 Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
1 Source: https://github.com/phoboslab/qoi
2 Upstream-Name: qoi
3 Upstream-Contact: Dominic Szablewski - https://phoboslab.org
4
5 Files:
6 *
7 Copyright:
8 2021-2022 Dominic Szablewski
9 License: MIT
10
11 License: MIT
12 Permission is hereby granted, free of charge, to any person obtaining a copy of
13 this software and associated documentation files(the "Software"), to deal in
14 the Software without restriction, including without limitation the rights to
15 use, copy, modify, merge, publish, distribute, sublicense, and / or sell copies
16 of the Software, and to permit persons to whom the Software is furnished to do
17 so, subject to the following conditions :
18 The above copyright notice and this permission notice shall be included in all
19 copies or substantial portions of the Software.
20 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE
23 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26 SOFTWARE.
27
28 Files:
29 debian/*
30 Copyright:
31 2022 Gürkan Myczko <tar@debian.org>
32 License: MIT
0 README.md
0 qoiconv usr/bin
1 qoibench usr/bin
0 qoi.h usr/include
0 Description: <short summary of the patch>
1 TODO: Put a short summary on the line above and replace this paragraph
2 with a longer explanation of this change. Complete the meta-information
3 with other relevant fields (see below for details). To make it easier, the
4 information below has been extracted from the changelog. Adjust it or drop
5 it.
6 .
7 qoi (0+git20220615+ds-1) unstable; urgency=medium
8 .
9 * Initial release. (Closes: #1012837)
10 Author: Gürkan Myczko <tar@debian.org>
11 Bug-Debian: https://bugs.debian.org/1012837
12
13 ---
14 The information above should follow the Patch Tagging Guidelines, please
15 checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
16 are templates for supplementary fields that you might want to add:
17
18 Origin: <vendor|upstream|other>, <url of original patch>
19 Bug: <url in upstream bugtracker>
20 Bug-Debian: https://bugs.debian.org/<bugnumber>
21 Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
22 Forwarded: <no|not-needed|url proving that it has been forwarded>
23 Reviewed-By: <name and email of someone who approved the patch>
24 Last-Update: 2022-06-15
25
26 --- qoi-0+git20220615+ds.orig/Makefile
27 +++ qoi-0+git20220615+ds/Makefile
28 @@ -1,7 +1,7 @@
29 CC ?= gcc
30 -CFLAGS_BENCH ?= -std=gnu99 -O3 -I/usr/include/stb
31 +CFLAGS_BENCH ?= -std=gnu99 -g -I/usr/include/stb
32 LFLAGS_BENCH ?= -lpng
33 -CFLAGS_CONV ?= -std=c99 -O3 -I/usr/include/stb
34 +CFLAGS_CONV ?= -std=c99 -g -I/usr/include/stb
35
36 TARGET_BENCH ?= qoibench
37 TARGET_CONV ?= qoiconv
0 stb-path
1 drop-o3-add-debug
0 Description: <short summary of the patch>
1 TODO: Put a short summary on the line above and replace this paragraph
2 with a longer explanation of this change. Complete the meta-information
3 with other relevant fields (see below for details). To make it easier, the
4 information below has been extracted from the changelog. Adjust it or drop
5 it.
6 .
7 qoi (0+git20220615+ds-1) UNRELEASED; urgency=medium
8 .
9 * Initial release. (Closes: #nnnn) <nnnn is the bug number of your ITP>
10 Author: Gürkan Myczko <tar@debian.org>
11
12 ---
13 The information above should follow the Patch Tagging Guidelines, please
14 checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
15 are templates for supplementary fields that you might want to add:
16
17 Origin: <vendor|upstream|other>, <url of original patch>
18 Bug: <url in upstream bugtracker>
19 Bug-Debian: https://bugs.debian.org/<bugnumber>
20 Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
21 Forwarded: <no|not-needed|url proving that it has been forwarded>
22 Reviewed-By: <name and email of someone who approved the patch>
23 Last-Update: 2022-06-15
24
25 --- qoi-0+git20220615+ds.orig/Makefile
26 +++ qoi-0+git20220615+ds/Makefile
27 @@ -1,7 +1,7 @@
28 CC ?= gcc
29 -CFLAGS_BENCH ?= -std=gnu99 -O3
30 +CFLAGS_BENCH ?= -std=gnu99 -O3 -I/usr/include/stb
31 LFLAGS_BENCH ?= -lpng
32 -CFLAGS_CONV ?= -std=c99 -O3
33 +CFLAGS_CONV ?= -std=c99 -O3 -I/usr/include/stb
34
35 TARGET_BENCH ?= qoibench
36 TARGET_CONV ?= qoiconv
0 #!/usr/bin/make -f
1 #export DH_VERBOSE = 1
2
3 # See FEATURE AREAS in dpkg-buildflags(1).
4 #export DEB_BUILD_MAINT_OPTIONS = hardening=+all
5
6 # See ENVIRONMENT in dpkg-buildflags(1).
7 # Package maintainers to append CFLAGS.
8 #export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic
9 # Package maintainers to append LDFLAGS.
10 #export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
11
12 %:
13 dh $@
0 3.0 (quilt)
0 Bug-Database: https://github.com/phoboslab/qoi/issues
1 Bug-Submit: https://github.com/phoboslab/qoi/issues/new
2 Repository-Browse: https://github.com/phoboslab/qoi
3 Repository: https://github.com/phoboslab/qoi.git
0 # Example watch control file for uscan.
1 # Rename this file to "watch" and then you can run the "uscan" command
2 # to check for upstream updates and more.
3 # See uscan(1) for format.
4
5 # Compulsory line, this is a version 4 file.
6 version=4
7
8 # PGP signature mangle, so foo.tar.gz has foo.tar.gz.sig.
9 #opts="pgpsigurlmangle=s%$%.sig%"
10
11 # HTTP site (basic).
12 #http://example.com/downloads.html \
13 # files/qoi-([\d\.]+)\.tar\.gz debian uupdate
14
15 # Uncomment to examine an FTP server.
16 #ftp://ftp.example.com/pub/qoi-(.*)\.tar\.gz debian uupdate
17
18 # SourceForge hosted projects.
19 # http://sf.net/qoi/ qoi-(.*)\.tar\.gz debian uupdate
20
21 # GitHub hosted projects.
22 #opts="filenamemangle=s%(?:.*?)?v?(\d[\d.]*)\.tar\.gz%<project>-$1.tar.gz%" \
23 # https://github.com/<user>/qoi/tags \
24 # (?:.*?/)?v?(\d[\d.]*)\.tar\.gz debian uupdate
25
26 # GitLab hosted projects.
27 #opts="filenamemangle=s%(?:.*?)?v?@ANY_VERSION@(@ARCHIVE_EXT@)%<project>-$1$2%" \
28 # https://gitlab.com/<user>/<project>/-/tags \
29 # archive/v?@ANY_VERSION@/<project>-v?\d\S*@ARCHIVE_EXT@
30
31 # PyPI.
32 # https://pypi.debian.net/qoi/qoi-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))
33
34 # Direct Git.
35 # opts="mode=git" http://git.example.com/qoi.git \
36 # refs/tags/v([\d\.]+) debian uupdate
37
38
39
40
41 # Uncomment to find new files on GooglePages.
42 # http://example.googlepages.com/foo.html qoi-(.*)\.tar\.gz