DFSG NEW Queue

DFSG, Licensing & New Packages Team

Review: haskell-asciidoc 0.1.0.1-1

New Package Report

.changes
Architecturesource amd64 all
Distributionunstable
DateMon, 02 Mar 2026 22:14:23 -0500
Sourcehaskell-asciidoc
Version0.1.0.1-1
Changed-ByScott Talbert
Changelog
haskell-asciidoc (0.1.0.1-1) unstable; urgency=low
 .
   * Initial release
.dsc
Sectionmisc
Priorityoptional
Componentmain
Package-Listhaskell-asciidoc-utils deb misc optional arch=any
libghc-asciidoc-dev deb haskell optional arch=any
libghc-asciidoc-doc deb doc optional arch=all
libghc-asciidoc-prof deb haskell optional arch=any
debian/copyright
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: asciidoc
Upstream-Contact: jgm@berkeley.edu
Source: https://hackage.haskell.org/package/asciidoc

Files: *
Copyright: (C) 2025 by John MacFarlane
License: BSD-3-Clause

Files: test/asciidoctor/*
Copyright: Copyright 2014-present Jakub Jirutka <jakub@jirutka.cz> and the Asciidoctor Project
License: MIT

Files: debian/*
Copyright: held by the contributors mentioned in debian/changelog
License: BSD-3-Clause

License: BSD-3-Clause
 Copyright (c) 2025, John MacFarlane
 .
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are met:
 .
     * Redistributions of source code must retain the above copyright
       notice, this list of conditions and the following disclaimer.
 .
     * Redistributions in binary form must reproduce the above
       copyright notice, this list of conditions and the following
       disclaimer in the documentation and/or other materials provided
       with the distribution.
 .
     * Neither the name of the copyright holder nor the names of its
       contributors may be used to endorse or promote products derived
       from this software without specific prior written permission.
 .
 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

License: MIT
 The MIT License
 .
 Copyright 2014-present Jakub Jirutka <jakub@jirutka.cz> and the Asciidoctor Project.
 .
 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the "Software"), to deal
 in the Software without restriction, including without limitation the rights
 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 copies of the Software, and to permit persons to whom the Software is
 furnished to do so, subject to the following conditions:
 .
 The above copyright notice and this permission notice shall be included in
 all copies or substantial portions of the Software.
 .
 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 THE SOFTWARE.

Review Information

accepted — allocated to awm 14 days ago, started 14 days ago, completed 14 days ago.

Final Comment

Public Notes

14 days ago ● public

Lintian

Command: lintian -Iiv -L '>=warning' --show-overrides --color=never ../$(basename $PWD)_*.changes
Exit code: 2

N:
E: libghc-asciidoc-dev: custom-library-search-path RUNPATH /usr/lib/haskell-packages/ghc/lib/x86_64-linux-ghc-9.10.3-inplace [usr/lib/haskell-packages/ghc/lib/x86_64-linux-ghc-9.10.3-inplace/libHSasciidoc-0.1.0.1-BbJJJcLuHjT8fY6O5eCEPt-ghc9.10.3.so]
N: 
N:   The binary or shared library sets RPATH or RUNPATH. This overrides the
N:   normal library search path, possibly interfering with local policy and
N:   causing problems for multilib, among other issues.
N:   
N:   The only time a binary or shared library in a Debian package should set
N:   RPATH or RUNPATH is if it is linked to private shared libraries in the
N:   same package. In that case, place those private shared libraries in
N:   /usr/lib/*package*. Libraries used by binaries in other packages should be
N:   placed in /lib or /usr/lib as appropriate, with a proper SONAME, in which
N:   case RPATH/RUNPATH is unnecessary.
N:   
N:   To fix this problem, look for link lines like:
N:   
N:       gcc test.o -o test -Wl,--rpath,/usr/local/lib
N:   
N:   or
N:   
N:       gcc test.o -o test -R/usr/local/lib
N:   
N:   and remove the -Wl,--rpath or -R argument. You can also use the chrpath
N:   utility to remove the RPATH.
N: 
N:   Please refer to https://wiki.debian.org/RpathIssue for details.
N: 
N:   Visibility: error
N:   Show-Always: no
N:   Check: binaries/rpath
N:   Renamed from: binary-or-shlib-defines-rpath
N: 
N:
W: haskell-asciidoc-utils: hardening-no-pie [usr/bin/hasciidoc]
N: 
N:   This package provides an ELF executable that was not compiled as a
N:   position independent executable (PIE).
N:   
N:   In Debian, since version 6.2.0-7 of the gcc-6 package GCC will compile ELF
N:   binaries with PIE by default. In most cases a simple rebuild will be
N:   sufficient to remove this tag.
N:   
N:   PIE is required for fully enabling Address Space Layout Randomization
N:   (ASLR), which makes "Return-oriented" attacks more difficult.
N:   
N:   Historically, PIE has been associated with noticeable performance overhead
N:   on i386. However, GCC >= 5 has implemented an optimization that can reduce
N:   the overhead significantly.
N:   
N:   If you use dpkg-buildflags with hardening=+all,-pie in
N:   DEB_BUILD_MAINT_OPTIONS, remove the -pie.
N: 
N:   Please refer to https://wiki.debian.org/Hardening,
N:   https://gcc.gnu.org/gcc-5/changes.html, and
N:   https://software.intel.com/en-us/blogs/2014/12/26/new-optimizations-for-x86-in-upcoming-gcc-50-32bit-pic-mode
N:   for details.
N: 
N:   Visibility: warning
N:   Show-Always: no
N:   Check: binaries/hardening
N: 
N:
W: haskell-asciidoc-utils: initial-upload-closes-no-bugs [usr/share/doc/haskell-asciidoc-utils/changelog.Debian.gz:1]
N: 
N:   This package appears to be the first packaging of a new upstream software
N:   package (there is only one changelog entry and the Debian revision is 1),
N:   but it does not close any bugs. The initial upload of a new package should
N:   close the corresponding ITP bug for that package.
N:   
N:   This warning can be ignored if the package is not intended for Debian or
N:   if it is a split of an existing Debian package.
N: 
N:   Please refer to New packages (Section 5.1) in the Debian Developer's
N:   Reference for details.
N: 
N:   Visibility: warning
N:   Show-Always: no
N:   Check: debian/changelog
N:   Renamed from: new-package-should-close-itp-bug
N: 
N:
W: libghc-asciidoc-dev: initial-upload-closes-no-bugs [usr/share/doc/libghc-asciidoc-dev/changelog.Debian.gz:1]
N:
W: libghc-asciidoc-doc: initial-upload-closes-no-bugs [usr/share/doc/libghc-asciidoc-doc/changelog.Debian.gz:1]
N:
W: libghc-asciidoc-prof: initial-upload-closes-no-bugs [usr/share/doc/libghc-asciidoc-prof/changelog.Debian.gz:1]
N:
W: haskell-asciidoc-utils: no-manual-page [usr/bin/hasciidoc]
N: 
N:   Each binary in /usr/bin, /usr/sbin, /bin, /sbin or /usr/games should have
N:   a manual page
N:   
N:   Note that though the man program has the capability to check for several
N:   program names in the NAMES section, each of these programs should have its
N:   own manual page (a symbolic link to the appropriate manual page is
N:   sufficient) because other manual page viewers such as xman or tkman don't
N:   support this.
N:   
N:   If the name of the manual page differs from the binary by case, man may be
N:   able to find it anyway; however, it is still best practice to match the
N:   exact capitalization of the executable in the manual page.
N:   
N:   If the manual pages are provided by another package on which this package
N:   depends, Lintian may not be able to determine that manual pages are
N:   available. In this case, after confirming that all binaries do have manual
N:   pages after this package and its dependencies are installed, please add a
N:   Lintian override.
N: 
N:   Please refer to Manual pages (Section 12.1) in the Debian Policy Manual
N:   for details.
N: 
N:   Visibility: warning
N:   Show-Always: no
N:   Check: documentation/manual
N:   Renamed from: binary-without-manpage
N: 

Back to Dashboard | View all reviews for this package