Skip to content
GitLab
Explore
Sign in
Register
Commits on Source
5
Fix with shared libfl needless linking
· 2c54fa22
Andreas Tille
authored
Feb 28, 2018
2c54fa22
Standards-Version: 4.1.3
· 86d99c02
Andreas Tille
authored
Feb 28, 2018
86d99c02
Do not create empty directories
· fae927cc
Andreas Tille
authored
Feb 28, 2018
fae927cc
Drop outdated text from README.Debian
· b140dade
Andreas Tille
authored
Feb 28, 2018
b140dade
Upload to unstable
· d6e50f99
Andreas Tille
authored
Feb 28, 2018
d6e50f99
Show whitespace changes
Inline
Side-by-side
debian/acedb-other.README.Debian
View file @
d6e50f99
...
...
@@ -7,27 +7,3 @@ source package. This source package also builds blixem which is
part of ACEDB as well but was never provided as a separate package.
-- Andreas Tille <tille@debian.org> Tue, 19 Dec 2017 13:00:46 +0100
To package ACEDB is a long term project that will grow with demands.
The initial packager was only interested in a very small subset, i.e.
the relatively small tools belvu, dotter and efetch, and has not
the slightest understanding of the rest. If there is not a sudden
raise of an ACEDB community eager to extend this packaging effort,
or other packages demanding parts of it, the remaining gems shall
remain hidden in the source tree.
Whoever feels like it please go ahead.
-- Steffen Moeller <moeller@debian.org> Mon, 17 Aug 2009 14:39:57 +0200
Note that there seems to be some more up to date code of the so called
NCBI-Version of this source:
ftp://ftp.ncbi.nlm.nih.gov/repository/acedb/Software/AceView/acedb_ncbi.tar.gz
For more info seek for the term "AceDB@NCBI" at page:
http://www.ncbi.nlm.nih.gov/IEB/Research/Acembly/downloads.html
debian/changelog
View file @
d6e50f99
acedb (4.9.39+dfsg.02-3) unstable; urgency=medium
[ Adrian Bunk ]
* Fix with shared libfl needless linking
Closes: #891529
[ Andreas Tille ]
* Standards-Version: 4.1.3
* Do not create empty directories
* Drop outdated text from README.Debian
-- Andreas Tille <tille@debian.org> Wed, 28 Feb 2018 11:11:58 +0100
acedb (4.9.39+dfsg.02-2) unstable; urgency=medium
[ Steffen Moeller ]
...
...
debian/control
View file @
d6e50f99
...
...
@@ -13,7 +13,7 @@ Build-Depends: debhelper (>= 10),
flex,
libfl-dev,
bison
Standards-Version: 4.1.
2
Standards-Version: 4.1.
3
Vcs-Browser: https://anonscm.debian.org/cgit/debian-med/acedb.git
Vcs-Git: https://anonscm.debian.org/git/debian-med/acedb.git
Homepage: http://www.acedb.org/
...
...
debian/dirs
deleted
100644 → 0
View file @
0e3e302c
usr/bin
usr/sbin
debian/patches/libfl.patch
0 → 100644
View file @
d6e50f99
Description: With shared libfl needless linking causes FTBFS
Due to libfl requiring yylex.
Author: Adrian Bunk <bunk@debian.org>
Last-Update: Mon, 26 Feb 2018 14:56:21 +0200
Bug-Debian: https://bugs.debian.org/891529
--- acedb-4.9.39+dfsg.02.orig/wmake/truemake
+++ acedb-4.9.39+dfsg.02/wmake/truemake
@@ -1017,7 +1017,7 @@
acelibtest : libfree.a libace.a acelibte
tagcount : libfree.a libace.a tagcount.c
$(CC) tagcount.c
- $(LINKER) -o tagcount tagcount.o -L. -lace -lfree $(LIBS) $(LEX_LIBS)
+ $(LINKER) -o tagcount tagcount.o -L. -lace -lfree $(LIBS)
##########################################
@@ -1268,7 +1268,7 @@
intron2 : libfree.a intron2.o
$(LINKER) -o intron2 intron2.o -L. -lfree $(LIBS)
metacheck : libfree.a libace.a metadata.o
- $(LINKER) -o metacheck metadata.o -L. -lace -lfree $(LIBS) $(LEX_LIBS)
+ $(LINKER) -o metacheck metadata.o -L. -lace -lfree $(LIBS)
makeUserPasswd: makeUserPasswd.c libfree.a libmd5.a
$(CC) $@.c
debian/patches/series
View file @
d6e50f99
...
...
@@ -9,3 +9,4 @@ fix_hardening_errors.patch
mayhem.patch
spelling.patch
no_dotter_and_belvu.patch
libfl.patch