Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (6)
update changelog
· d00ccbe3
Sascha Steinbiss
authored
Jul 04, 2018
d00ccbe3
use Salsa Vcs-* fields
· bfbc6a2e
Sascha Steinbiss
authored
Jul 04, 2018
bfbc6a2e
bump Standards-Version
· eb8e0ee5
Sascha Steinbiss
authored
Jul 04, 2018
eb8e0ee5
remove unnecessary Testsuite field
· 0c41488c
Sascha Steinbiss
authored
Jul 04, 2018
0c41488c
use debhelper 11
· 5fedf1c2
Sascha Steinbiss
authored
Jul 04, 2018
5fedf1c2
improve hardening
· 267fe66b
Sascha Steinbiss
authored
Jul 04, 2018
267fe66b
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
267fe66b
fermi-lite (0.1-5) unstable; urgency=medium
[ Steffen Möller ]
* Add new d/u/metadata file
[ Sascha Steinbiss ]
* Update Vcs-* fields with Salsa addresses.
* Bump Standards-Version.
* Remove unnecessary Testsuite field.
* Use debhelper 11.
* Improve hardening.
-- Sascha Steinbiss <satta@debian.org> Wed, 04 Jul 2018 23:40:50 +0200
fermi-lite (0.1-4) unstable; urgency=medium
* Upload to unstable
...
...
debian/compat
View file @
267fe66b
9
11
debian/control
View file @
267fe66b
...
...
@@ -3,14 +3,13 @@ Maintainer: Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.
Uploaders: Sascha Steinbiss <satta@debian.org>
Section: science
Priority: optional
Build-Depends: debhelper (>=
9
),
Build-Depends: debhelper (>=
11
),
d-shlibs,
zlib1g-dev,
help2man
Standards-Version: 3.9.8
Testsuite: autopkgtest
Vcs-Browser: https://anonscm.debian.org/cgit/debian-med/fermi-lite.git
Vcs-Git: https://anonscm.debian.org/git/debian-med/fermi-lite.git
Standards-Version: 4.1.4
Vcs-Browser: https://salsa.debian.org/med-team/fermi-lite
Vcs-Git: https://salsa.debian.org/med-team/fermi-lite.git
Homepage: https://github.com/lh3/fermi-lite
Package: fml-asm
...
...
debian/patches/hardening
View file @
267fe66b
...
...
@@ -4,14 +4,16 @@ Author: Sascha Steinbiss <sascha@steinbiss.name>
Last-Update: 2016-01-08
--- a/Makefile
+++ b/Makefile
@@ -1,
5
+1,
5
@@
@@ -1,
6
+1,
6
@@
-CC= gcc
-CFLAGS= -g -Wall -O2 -fPIC #-fno-inline-functions -fno-inline-functions-called-once
-CPPFLAGS=
+CC?= gcc
+CFLAGS+= -g -Wall -O2 -fPIC #-fno-inline-functions -fno-inline-functions-called-once
CPPFLAGS=
+#
CPPFLAGS=
INCLUDES=
OBJS= kthread.o misc.o \
bseq.o htab.o bfc.o \
@@ -18,7 +18,7 @@
all:$(PROG) libfml.so.$(SONUMBER)
...
...