debian/0000755000000000000000000000000012224032650007162 5ustar debian/libuninameslist-dev.docs0000644000000000000000000000001612224032560014007 0ustar debian/README debian/source/0000755000000000000000000000000012224032560010462 5ustar debian/source/format0000644000000000000000000000001412224032560011670 0ustar 3.0 (quilt) debian/watch0000644000000000000000000000036412224032560010216 0ustar version=3 opts=uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha|b|a)\d*)$/$1~$2/,dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$// \ https://github.com/fontforge/libuninameslist/tags .*/Version_(\d.*)\.(?:tgz|tbz2|txz|tar\.(?:gz|bz2|xz)) debian/patches/0000755000000000000000000000000012224032560010611 5ustar debian/patches/series0000644000000000000000000000001712224032560012024 0ustar use_bash.patch debian/patches/use_bash.patch0000644000000000000000000000075312224032560013430 0ustar Description: avoid build failure by /bin/sh Debian/Ubuntu uses dash as /bin/sh, it's more strict as sh but libtools seems to need bash behavior Author: Hideki Yamane --- Origin: vendor Last-Update: 2013-05-04 --- libuninameslist-0.3.20130501.orig/Makefile.am +++ libuninameslist-0.3.20130501/Makefile.am @@ -1,6 +1,6 @@ # Makefile.am - Top level automakefile for libuninameslist -SHELL = /bin/sh +SHELL = /bin/bash ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS} debian/copyright0000644000000000000000000000342612224032560011122 0ustar This package was debianized by Kęstutis Biliūnas on Tue, 4 Apr 2006 23:31:56 +0300. It was downloaded from http://fontforge.sourceforge.net/ Upstream Author: George Williams Copyright: is copyright (C) 2003 by George Williams 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 name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. The configure script is subject to the GNU public license. Debian GNU/Linux users may find the full text of the GPL version 2 in /usr/share/common-licenses/GPL-2. debian/compat0000644000000000000000000000000212224032560010360 0ustar 9 debian/rules0000755000000000000000000000030212224032560010235 0ustar #!/usr/bin/make -f # -*- makefile -*- # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 export DEB_BUILD_MAINT_OPTIONS := hardening=+all %: dh $@ --with autotools-dev,autoreconf debian/libuninameslist-dev.install0000644000000000000000000000006212224032560014526 0ustar usr/include/* usr/lib/*/lib*.a usr/lib/*/lib*.so debian/README0000644000000000000000000000350212224032560010042 0ustar A Library of Unicode annotation data ====================================== The Unicode consortium provides a file containing annotations on many unicode characters. This library contains a compiled version of this file so that programs can access these data easily. The library contains a very large (sparse) array with one entry for each unicode code point (U+0000 - U+10FFFF). Each entry contains two strings, a name and an annotation. Either or both may be NULL. The library also contains a (much smaller) list of all the Unicode blocks. struct unicode_block { int start, end; const char *name; }; struct unicode_nameannot { const char *name, *annot; }; extern const struct unicode_block UnicodeBlock[185]; #define UNICODE_NAME_MAX 83 #define UNICODE_ANNOT_MAX 462 extern const struct unicode_nameannot * const *const UnicodeNameAnnot[]; /* Index by: UnicodeNameAnnot[(uni>>16)&0x1f][(uni>>8)&0xff][uni&0xff] */ /* At the beginning of lines (after a tab) within the annotation string, a */ /* * should be replaced by a bullet U+2022 */ /* x should be replaced by a right arrow U+2192 */ /* : should be replaced by an equivalent U+224D */ /* # should be replaced by an approximate U+2245 */ /* = should remain itself */ This package consists of one header file and one library file. The header is . To find the name of a given unicode character uni use UnicodeNameAnnot[(uni>>16)&0x1f][(uni>>8)&0xff][uni&0xff].name while the annotation string is: UnicodeNameAnnot[(uni>>16)&0x1f][(uni>>8)&0xff][uni&0xff].annot The both strings are in US ASCII, but the annotation string is intended to be modified slightly by the having any '*' characters which immediately follow a tab at the start of a line converted to a bullet character. Etc. debian/changelog0000644000000000000000000001136612224032560011043 0ustar libuninameslist (0.3.20130501-3) unstable; urgency=low [ Vasudev Kamath ] * Fixed the watch file [ Hideki Yamane ] * debian/control: add Homepage field -- Hideki Yamane Sun, 06 Oct 2013 00:49:26 +0900 libuninameslist (0.3.20130501-2) unstable; urgency=low * upload to unstable * debian/watch - update it to watch github -- Hideki Yamane Fri, 03 May 2013 21:29:10 +0900 libuninameslist (0.3.20130501-1) experimental; urgency=low * New upstream release * debian/patches - remove delete_aclocal_m4.patch since upstream drops aclocal_m4 - remove libtool-shell.patch since upstream drops Makefile.in - drop CPPFLAGS.patch since it's unnecessary anymore - add use_bash.patch -- Hideki Yamane Fri, 03 May 2013 09:40:22 +0900 libuninameslist (0.0.20091231-5) unstable; urgency=low * Upload to unstable -- Hideki Yamane Fri, 03 May 2013 09:38:48 +0900 libuninameslist (0.0.20091231-4) experimental; urgency=low * debian/control - fix lintian warning: "description-synopsis-starts-with-article" * debian/patches/CPPFLAGS.patch - more hardening with missing CPPFLAGS -- Hideki Yamane Sat, 20 Apr 2013 07:43:44 +0900 libuninameslist (0.0.20091231-3) experimental; urgency=low * debian/rules - enable hardening -- Hideki Yamane Fri, 19 Apr 2013 11:15:45 +0900 libuninameslist (0.0.20091231-2) unstable; urgency=low * debian/control - New maintainer, thanks to Kęstutis Biliūnas for the work you've done (Closes: #704969) - remove obsolete Dm-Upload-Allowed: field - set "Standards-Version: 3.9.4" - set "Build-Depends: debhelper (>= 9) - use "Build-Depends: dh-autoreconf" - add "Pre-Depends: {misc:Pre-Depends}" for Multi-Arch * debian/compat - set 9 * debian/rules - use dh style * debian/patches - add delete_aclocal_m4.patch to avoid build failure * libuninameslist-dev.install - don't install *.la files - adjust library path for Multi-Arch * libuninameslist0.install - adjust library path for Multi-Arch -- Hideki Yamane Fri, 19 Apr 2013 10:41:05 +0900 libuninameslist (0.0.20091231-1.1) unstable; urgency=low * Non-maintainer upload. * Fix "FTBFS: eval: 1: base_compile+= -c: not found": add patch from Ubuntu / Colin Watson: - Set SHELL in Makefile.in so that the expansion of @LIBTOOL@ works Closes: #621933 LP: #829445 -- gregor herrmann Thu, 29 Sep 2011 17:12:11 +0200 libuninameslist (0.0.20091231-1) unstable; urgency=low * New upstream release. Updated to Unicode 5.2 (Closes: #562596). * Switched to 3.0 (quilt) source format. * debian/control: - switched to debhelper v7; - add ${misc:Depends} to dependencies to properly cope with debhelper-triggerred dependencies; - bumped Standards-Version to 3.8.3. No changes required. * debian/patches: removed the patch 001_add_libtool_mode.diff - fixed upstream. -- Kęstutis Biliūnas Fri, 01 Jan 2010 13:51:47 +0200 libuninameslist (0.0.20080409-2) unstable; urgency=low * debian/control: - added the autotools-dev and quilt packages to Build-Depends; - bumped Standards-Version to 3.8.1. No changes required. * debian/patches: - added the patch 001_add_libtool_mode.diff for fixing Makefile intall target. * debian/rules: - added copying files config.sub and config.guess from the autotools-dev package (Closes: #526548). -- Kęstutis Biliūnas Sat, 02 May 2009 10:16:44 +0300 libuninameslist (0.0.20080409-1) unstable; urgency=low * New upstream release. * debian/control: - bumped Standards-Version to 3.8.0. No changes required. - added DM-Upload-Allowed: yes. * Fixed debian/rules clean target. * debian/watch: updated. -- Kęstutis Biliūnas Sat, 14 Feb 2009 19:12:30 +0200 libuninameslist (0.0.20060907-2) unstable; urgency=low * debian/control: added the libtool and automake packages to Build-Depends and removed autotools-dev package. * debian/rules: added 'libtoolize -c -f" in the configure stage (Closes: #401702). * Fixed debian/watch file. -- Kęstutis Biliūnas Fri, 12 Jan 2007 22:29:35 +0200 libuninameslist (0.0.20060907-1) unstable; urgency=low * New upstream release. * Bumped Standards-Version to 3.7.2. No changes required. * Fixed debian/watch file. -- Kęstutis Biliūnas Mon, 23 Oct 2006 16:15:12 +0300 libuninameslist (0.0.20050712-1) unstable; urgency=low * Initial release (Closes: Bug#361538). -- Kęstutis Biliūnas Tue, 4 Apr 2006 23:31:56 +0300 debian/libuninameslist0.install0000644000000000000000000000002412224032560014030 0ustar usr/lib/*/lib*.so.* debian/control0000644000000000000000000000237612224032560010575 0ustar Source: libuninameslist Priority: optional Maintainer: Debian Fonts Task Force Uploaders: Hideki Yamane Build-Depends: debhelper (>= 9), autotools-dev, dh-autoreconf Standards-Version: 3.9.4 Section: libs Homepage: https://github.com/fontforge/libuninameslist Package: libuninameslist-dev Section: libdevel Architecture: any Depends: ${misc:Depends}, libuninameslist0 (= ${binary:Version}) Description: library of Unicode annotation data (development files) The library contains a large array with one entry for each unicode code point (U+0000 - U+10FFFF). Each entry contains two strings, a name and an annotation. The library also contains a list of all the Unicode blocks. . This package contains the runtime library's development files. Package: libuninameslist0 Section: libs Architecture: any Pre-Depends: ${misc:Pre-Depends} Depends: ${misc:Depends}, ${shlibs:Depends} Description: library of Unicode annotation data The library contains a large array with one entry for each unicode code point (U+0000 - U+10FFFF). Each entry contains two strings, a name and an annotation. The library also contains a list of all the Unicode blocks. . This package contains the runtime library.