[Git][haskell-team/DHG_packages][master] skylighting-core: Initial release of v0.7.3

Ilias Tsitsimpis gitlab at salsa.debian.org
Sun Oct 21 19:05:14 BST 2018


Ilias Tsitsimpis pushed to branch master at Debian Haskell Group / DHG_packages


Commits:
704321fc by Ilias Tsitsimpis at 2018-10-21T17:58:22Z
skylighting-core: Initial release of v0.7.3

This is a dependency for newer versions of skylighting (>= 0.7).

- - - - -


7 changed files:

- + p/haskell-skylighting-core/debian/changelog
- + p/haskell-skylighting-core/debian/compat
- + p/haskell-skylighting-core/debian/control
- + p/haskell-skylighting-core/debian/copyright
- + p/haskell-skylighting-core/debian/rules
- + p/haskell-skylighting-core/debian/source/format
- + p/haskell-skylighting-core/debian/watch


Changes:

=====================================
p/haskell-skylighting-core/debian/changelog
=====================================
@@ -0,0 +1,5 @@
+haskell-skylighting-core (0.7.3-1) unstable; urgency=low
+
+  * Initial release (Closes: #911543)
+
+ -- Ilias Tsitsimpis <iliastsi at debian.org>  Sun, 21 Oct 2018 19:46:49 +0300


=====================================
p/haskell-skylighting-core/debian/compat
=====================================
@@ -0,0 +1 @@
+10


=====================================
p/haskell-skylighting-core/debian/control
=====================================
@@ -0,0 +1,122 @@
+Source: haskell-skylighting-core
+Maintainer: Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.org>
+Uploaders: Ilias Tsitsimpis <iliastsi at debian.org>
+Priority: optional
+Section: haskell
+Rules-Requires-Root: no
+Build-Depends: debhelper (>= 10),
+ haskell-devscripts (>= 0.9),
+ cdbs,
+ ghc,
+ ghc-prof,
+ libghc-aeson-dev (>= 1.0),
+ libghc-aeson-prof,
+ libghc-ansi-terminal-dev (>= 0.7),
+ libghc-ansi-terminal-prof,
+ libghc-attoparsec-dev,
+ libghc-attoparsec-prof,
+ libghc-base64-bytestring-dev,
+ libghc-base64-bytestring-prof,
+ libghc-blaze-html-dev (>= 0.5),
+ libghc-blaze-html-prof,
+ libghc-case-insensitive-dev,
+ libghc-case-insensitive-prof,
+ libghc-colour-dev (>= 2.0),
+ libghc-colour-prof,
+ libghc-hxt-dev,
+ libghc-hxt-prof,
+ libghc-mtl-dev,
+ libghc-mtl-prof,
+ libghc-regex-pcre-dev,
+ libghc-regex-pcre-prof,
+ libghc-safe-dev,
+ libghc-safe-prof,
+ libghc-text-dev,
+ libghc-text-prof,
+ libghc-utf8-string-dev,
+ libghc-utf8-string-prof,
+ libghc-diff-dev,
+ libghc-diff-prof,
+ libghc-hunit-dev,
+ libghc-hunit-prof,
+ libghc-quickcheck2-dev,
+ libghc-quickcheck2-prof,
+ libghc-pretty-show-dev,
+ libghc-pretty-show-prof,
+ libghc-random-dev,
+ libghc-random-prof,
+ libghc-tasty-dev,
+ libghc-tasty-prof,
+ libghc-tasty-golden-dev,
+ libghc-tasty-golden-prof,
+ libghc-tasty-hunit-dev,
+ libghc-tasty-hunit-prof,
+ libghc-tasty-quickcheck-dev,
+ libghc-tasty-quickcheck-prof,
+Build-Depends-Indep: ghc-doc,
+ libghc-aeson-doc,
+ libghc-ansi-terminal-doc,
+ libghc-attoparsec-doc,
+ libghc-base64-bytestring-doc,
+ libghc-blaze-html-doc,
+ libghc-case-insensitive-doc,
+ libghc-colour-doc,
+ libghc-hxt-doc,
+ libghc-mtl-doc,
+ libghc-regex-pcre-doc,
+ libghc-safe-doc,
+ libghc-text-doc,
+ libghc-utf8-string-doc,
+Standards-Version: 4.2.1
+Homepage: https://github.com/jgm/skylighting
+Vcs-Browser: https://salsa.debian.org/haskell-team/DHG_packages/tree/master/p/haskell-skylighting-core
+Vcs-Git: https://salsa.debian.org/haskell-team/DHG_packages.git [p/haskell-skylighting-core]
+X-Description: syntax highlighting library
+ Skylighting is a syntax highlighting library. It derives its tokenizers
+ from XML syntax definitions used by KDE's KSyntaxHighlighting framework,
+ so any syntax supported by that framework can be added. An optional
+ command-line program is provided. Skylighting is intended to be the
+ successor to highlighting-kate.
+ .
+ This package provides the core highlighting functionality under a permissive
+ license. It also bundles XML parser definitions licensed under the GPL.
+
+Package: libghc-skylighting-core-dev
+Architecture: any
+Depends: ${haskell:Depends},
+ ${misc:Depends},
+ ${shlibs:Depends},
+Recommends: ${haskell:Recommends},
+Suggests: ${haskell:Suggests},
+Conflicts: ${haskell:Conflicts},
+Provides: ${haskell:Provides},
+Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
+ ${haskell:LongDescription}
+ .
+ ${haskell:Blurb}
+
+Package: libghc-skylighting-core-prof
+Architecture: any
+Depends: ${haskell:Depends},
+ ${misc:Depends},
+Recommends: ${haskell:Recommends},
+Suggests: ${haskell:Suggests},
+Conflicts: ${haskell:Conflicts},
+Provides: ${haskell:Provides},
+Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
+ ${haskell:LongDescription}
+ .
+ ${haskell:Blurb}
+
+Package: libghc-skylighting-core-doc
+Architecture: all
+Section: doc
+Depends: ${haskell:Depends},
+ ${misc:Depends},
+Recommends: ${haskell:Recommends},
+Suggests: ${haskell:Suggests},
+Conflicts: ${haskell:Conflicts},
+Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
+ ${haskell:LongDescription}
+ .
+ ${haskell:Blurb}


=====================================
p/haskell-skylighting-core/debian/copyright
=====================================
@@ -0,0 +1,154 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: skylighting-core
+Upstream-Contact: John MacFarlane <jgm at berkeley.edu>
+Source: https://hackage.haskell.org/package/skylighting-core
+
+Files: *
+Copyright: (C) 2016-2018 John MacFarlane
+License: BSD-3-clause
+
+Files: debian/*
+Copyright: held by the contributors mentioned in debian/changelog
+License: BSD-3-clause
+
+Files: xml/*
+Copyright: (C) 2004,2006,2008 Wilbert Berendsen <wilbert at kde.nl>
+           (C) 2004-2005 Dominik Haumann <dhdev at gmx.de>
+           (C) 2011 Caspar Hasenclever
+           (C) 2012-2015, 2017-2018 Alex Turbov <i.zaufi at gmail.com>
+           (C) 2007-2008, 2013-2014 Matthew Woehlke <mw_triad at users.sourceforge.net>
+           (C) 2004 Alexander Neundorf <neundorf at kde.org>
+           (C) 2007-2008 Diggory Hardy <diggory.hardy at gmail.com>
+           (C) 2007 Aziz Köksal <aziz.koeksal at gmail.com>
+           (C) 2007 Jari-Matti Mäkelä <jmjm at iki.fi>
+           (C) 2004 Simon J Mackenzie <project.katedxml at smackoz.fastmail.fm>
+           (C) 2016 Boris Egorov <egorov at linux.com>
+           (C) 2014 Rubén Caro <ruben.caro.estevez at gmail.com>
+           (C) 2002 John Zaitseff
+           (C) 2010-2011 Miquel Sabaté <mikisabate at gmail.com>
+           (C) 2001 Joseph Wenninger <jowenn at kde.org>
+           (C) 2001-2004 Anders Lund <anders at alweb.dk>
+           (C) 2003 Simon Huerlimann <simon.huerlimann at access.unizh.ch>
+           (C) 2004 Jan Villat <jan.villat at net2000.ch>
+           (C) 2008 Alexey V. Beshenov <al at beshenov.ru>
+           (C) 2012 Torsten Eichstädt
+           (C) 2010 Matt Williams <matt at milliams.com>
+           (C) 2004 Sebastian Vuorinen <sebastian dot vuorinen at helsinki dot fi>
+           (C) 2004 Stefan Lang <langstefan at gmx.at>
+           (C) 2005 Chris Martin <linux at chriscodes.com>
+           (C) 2006 Richard Dale <rdale at foton.es>
+           (C) 2008 Robin Pedersen <robinpeder at gmail.com>
+           (C) 2011 Jonathan Kolberg <bulldog98 at kubuntu-de.org>
+License: LGPL
+
+Files: xml/rust.xml
+Copyright: (C) 2015 The Rust Project Developers
+License: Expat
+
+Files: xml/tcl.xml xml/m4.xml
+Copyright: (C) Irsid - Arcelor Innovation R&D
+           (C) 2011 Cybernetica AS
+License: BSD-3-clause
+
+Files: xml/gnuassembler.xml xml/go.xml xml/r.xml
+Copyright: (C) 2002 John Zaitseff
+           (C) 2010 Miquel Sabaté <mikisabate at gmail.com>
+           (C) 2006 Thomas Friedrichsmeier, Arne Henningsen, and the RKWard Team
+License: GPL-2+
+
+Files: xml/markdown.xml
+Copyright: (C) 2008 Darrin Yeager
+License: GPL-2+ or BSD-3-clause
+
+License: BSD-3-clause
+ Copyright (c) 2016-2018, John MacFarlane.
+ All rights reserved.
+ .
+ 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.
+ .
+     * The names of the contributors may not 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: LGPL
+ 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
+ .
+ The full text of the license is included with this program in the file
+ `/usr/share/common-licenses/LGPL-2.1`.
+
+License: Expat
+ 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.
+
+License: GPL-2+
+ This package 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 program; if not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ .
+ On Debian systems, a copy of the GNU General Public License version 2
+ can be found in '/usr/share/common-licenses/GPL-2'.


=====================================
p/haskell-skylighting-core/debian/rules
=====================================
@@ -0,0 +1,11 @@
+#!/usr/bin/make -f
+
+DEB_ENABLE_TESTS = yes
+
+DEB_SETUP_GHC_CONFIGURE_ARGS += --flags="system-pcre"
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/hlibrary.mk
+
+# Run tests under C.UTF-8.
+check-ghc-stamp: export LC_ALL := C.UTF-8


=====================================
p/haskell-skylighting-core/debian/source/format
=====================================
@@ -0,0 +1 @@
+3.0 (quilt)


=====================================
p/haskell-skylighting-core/debian/watch
=====================================
@@ -0,0 +1,2 @@
+version=3
+https://hackage.haskell.org/package/skylighting-core/distro-monitor .*-([0-9\.]+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))



View it on GitLab: https://salsa.debian.org/haskell-team/DHG_packages/commit/704321fc483513d31a5b3d7ba801670d35c8424a

-- 
View it on GitLab: https://salsa.debian.org/haskell-team/DHG_packages/commit/704321fc483513d31a5b3d7ba801670d35c8424a
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-haskell-commits/attachments/20181021/cbc3fa42/attachment-0001.html>


More information about the Pkg-haskell-commits mailing list