debian/0000755000000000000000000000000011644311737007175 5ustar debian/libbibutils2.install0000644000000000000000000000007411644307535013155 0ustar lib/libbibutils.so.2.* usr/lib lib/libbibutils.so.2 usr/lib debian/bibutils.install0000644000000000000000000000063011644307535012402 0ustar bin/bib2xml usr/bin bin/biblatex2xml usr/bin bin/ebi2xml usr/bin bin/copac2xml usr/bin bin/end2xml usr/bin bin/endx2xml usr/bin bin/isi2xml usr/bin bin/med2xml usr/bin bin/modsclean usr/bin bin/ris2xml usr/bin bin/wordbib2xml usr/bin bin/xml2ads usr/bin bin/xml2bib usr/bin bin/xml2end usr/bin bin/xml2isi usr/bin bin/xml2ris usr/bin bin/xml2wordbib usr/bin debian/rules0000755000000000000000000000223311644307535010256 0ustar #!/usr/bin/make -f # -*- makefile -*- # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 DATE=$(shell sed -n 's/^DATE=\(.*\)/\1/p' Makefile_start) VERSION=$(shell sed -n 's/^VERSION=\(.*\)/\1/p' Makefile_start) DB2MAN=/usr/share/sgml/docbook/stylesheet/xsl/nwalsh/manpages/docbook.xsl XP=xsltproc -''-nonet # Set SONAME SOMAJOR=2 SOMINOR=0 SONAME="libbibutils.so."$(SOMAJOR) DESTDIR=${CURDIR}/debian/tmp/ INSTALLDIR=${DESTDIR}/usr/bin LIBINSTALLDIR=${DESTDIR}/usr/lib %: dh $@ override_dh_auto_configure: @echo Skipping auto_configure @echo building bibutils $(VERSION), upstream date $(DATE) override_dh_auto_build: $(MAKE) -C lib -f Makefile.dynamic SONAME=$(SONAME) SOMINOR=$(SOMINOR) all $(MAKE) -C bin -f Makefile.dynamic VERSION=$(VERSION) DATE=$(DATE) all # this relies on target clean not removing the shared libs $(MAKE) -C lib -f Makefile.static clean $(MAKE) -C lib -f Makefile.static libbibutils.a libbibcore.a $(XP) -o bibutils.1 $(DB2MAN) bibutils.dbk sed 's/VERSION/${VERSION}/g' packageconfig_start > lib/bibutils.pc override_dh_auto_install: @echo Skipping auto_install override_dh_auto_test: make -C test all make -C test test debian/patches/0000755000000000000000000000000011644311737010624 5ustar debian/patches/series0000644000000000000000000000001711644311737012037 0ustar debian-changes debian/patches/debian-changes0000664000000000000000000002031511644312070013371 0ustar Packaging for bibutils is maintained in git; this diff represents several git commits. Please consider "debcheckout bibutils" in order to send patches. --- bibutils-4.12.orig/bibutils.dbk +++ bibutils-4.12/bibutils.dbk @@ -6,11 +6,11 @@ David"> Bremner"> - February 10, 2008"> + December 10, 2010"> 1"> - bremner@unb.ca"> + bremner@debian.org"> BIBUTILS"> @@ -18,14 +18,14 @@ Debian"> GNU"> GPL"> - + ]>
&dhemail;
- 2008 + 2010 &dhusername; (Manual) @@ -107,6 +107,13 @@ convert bibtex to MODS + + + + + convert biblatex to MODS + + @@ -117,6 +124,12 @@ + + + convert EBI XML to MODS + + + convert EndNote (Refer format) to MODS @@ -146,6 +159,13 @@ convert RIS format to MODS + + + + + convert Word2007 bibliography XML to MODS + + @@ -198,6 +218,28 @@ byte order mark + + -x + --xml-entities + + encode unicode characters as XML entities (opposite of -u) + + + + -nl + --no-latex + + do not convert latex-style character combinations + + + + -s + --single-refperfile + + one reference per output file + + + -d --drop-key don't put citation key in the @@ -213,6 +255,19 @@ + -a + --asis with argument specifying a + file containing a list of names be treated verbatim + + + + -nt + --nosplit-title + don't split titles into TITLE/SUBTITLE pairs + + + + --verbose verbose output @@ -235,6 +290,15 @@ standard input. bib2xml bibtex_file.bib > output_file.xml + + biblatex2xml + + bib2xml converts a biblatex + (not to be confused with bibtex) formatted reference file to an + XML-intermediate bibliography file. + . + bib2xml biblatex_file.bib > output_file.xml + copac2xml @@ -260,6 +324,13 @@ bib2xml. end2xml endnote_file.end > output_file.xml + + ebi2xml + + ebi2xml converts a EBI XML + file to a MODS XML-intermediate bibliography file. + + endx2xml @@ -292,6 +363,18 @@ bib2xml ris2xml ris_file.ris > output_file.xml + + wordbib2xml + + ris2xml converts a + RIS-formatted reference file to an XML-intermediate + bibliography file. + ris2xml usage is as + end2xml and + bib2xml + + + Converting from MODS @@ -364,6 +447,11 @@ put one reference per file name by the reference number + + -nb--no-bom + do not write Byte Order Mark if writing UTF8 + + --- bibutils-4.12.orig/packageconfig_start +++ bibutils-4.12/packageconfig_start @@ -1,10 +1,10 @@ prefix=/usr -exec_prefix=\${prefix} -libdir=\${prefix}/lib -includedir=\${prefix}/include +exec_prefix=${prefix} +libdir=${prefix}/lib +includedir=${prefix}/include Name: bibutils Description: Converter library for various bibliography formats Version: VERSION -Libs: -L\${libdir} -lbibutils -Cflags: -I\${includedir} +Libs: -L${libdir} -lbibutils +Cflags: -I${includedir} --- bibutils-4.12.orig/test/Makefile +++ bibutils-4.12/test/Makefile @@ -9,13 +9,13 @@ PROGS = newstr_test entities_test u all: $(PROGS) -entities_test : entities_test.o ../lib/libbibutils.a +entities_test : entities_test.o ../lib/libbibcore.a $(CC) $(LDFLAGS) $^ $(LOADLIBS) $(LDLIBS) -o $@ -utf8_test : utf8_test.o ../lib/libbibutils.a +utf8_test : utf8_test.o ../lib/libbibcore.a $(CC) $(LDFLAGS) $^ $(LOADLIBS) $(LDLIBS) -o $@ -newstr_test : newstr_test.o ../lib/libbibutils.a +newstr_test : newstr_test.o ../lib/libbibcore.a $(CC) $(LDFLAGS) $^ $(LOADLIBS) $(LDLIBS) -o $@ test: entities_test newstr_test FORCE @@ -29,4 +29,7 @@ clean: realclean: rm -f *.o core $(PROGS) +../lib/libbibcore.a: + make -C ../lib -f Makefile.static libbibcore.a + FORCE: --- bibutils-4.12.orig/lib/Makefile.dynamic +++ bibutils-4.12/lib/Makefile.dynamic @@ -27,6 +27,9 @@ BIBCORE_OBJS = $(SIMPLE_OBJS) $(NEWSTR_O BIBUTILS_OBJS = $(INPUT_OBJS) $(OUTPUT_OBJS) bibutils.o +SONAME=libbibutils.so.4 +SOMINOR=12 +SOFULL=$(SONAME).$(SOMINOR) all: libbibutils.so @@ -34,20 +37,21 @@ all: libbibutils.so $(CC) -fPIC -c $(CFLAGS) -o $@ $< libbibutils.so: $(BIBCORE_OBJS) $(BIBUTILS_OBJS) - $(CC) -shared -Wl,-soname,libbibutils.so.4 -o libbibutils.so.4.12 $^ - ln -s libbibutils.so.4.12 libbibutils.so.4 - ln -s libbibutils.so.4.12 libbibutils.so + $(CC) -shared -Wl,-soname,$(SONAME) -o $(SOFULL) $^ + ln -sf $(SOFULL) $(SONAME) + ln -sf $(SOFULL) libbibutils.so install: echo INSTALLING LIBRARIES TO $(LIBINSTALLDIR) - cp libbibutils.so.4.12 $(LIBINSTALLDIR) - ln -sf $(LIBINSTALLDIR)/libbibutils.so.4.12 $(LIBINSTALLDIR)/libbibutils.so - ln -sf $(LIBINSTALLDIR)/libbibutils.so.4.12 $(LIBINSTALLDIR)/libbibutils.so.4 + mkdir -p $(LIBINSTALLDIR) + cp $(SOFULL) $(LIBINSTALLDIR) + ln -sf $(LIBINSTALLDIR)/$(SOFULL) $(LIBINSTALLDIR)/libbibutils.so + ln -sf $(LIBINSTALLDIR)/$(SOFULL) $(LIBINSTALLDIR)/$(SONAME) clean: /bin/rm -f *.o core realclean: - /bin/rm -f *.o *.so *.so.4 *.so.4.12 core + /bin/rm -f *.o *.so $(SOFULL) $(SONAME) core test: debian/changelog0000644000000000000000000000777111644307535011064 0ustar bibutils (4.12-5) unstable; urgency=low * Remove extraneous backslashes from libbibutils.pc. (Closes: #644257). -- David Bremner Sun, 09 Oct 2011 09:10:45 -0300 bibutils (4.12-4) unstable; urgency=low * Install modsout.h and wordout.h (Closes: #637692). Thanks to Giovanni Mascellani for the patch. -- David Bremner Mon, 26 Sep 2011 19:11:43 -0300 bibutils (4.12-3) unstable; urgency=low * Bug fix: "CLI option --version does not display version at all", thanks to Patrice Pillot (Closes: #630707). * Update to standards version 3.9.2 (no changes) -- David Bremner Mon, 20 Jun 2011 19:48:26 -0300 bibutils (4.12-2) unstable; urgency=low * Upload to unstable -- David Bremner Fri, 06 May 2011 23:59:42 -0300 bibutils (4.12-1) experimental; urgency=low * New upstream release - new commands: biblatex2xml ebi2xml and wordbib2xml * Major packaging update, now using upstream build system to make shared libraries. * Update to standards version 3.9.1 (no changes) -- David Bremner Fri, 10 Dec 2010 21:46:26 -0400 bibutils (4.8-1) unstable; urgency=low * New upstream release -- David Bremner Wed, 03 Feb 2010 09:54:51 -0400 bibutils (4.6-1) unstable; urgency=low * New upstream release - name_comma: initialize pointer (Closes: #552570) * add versioned build dependency on quilt to support dh --quilt * add DM-Upload-Allowed flag -- David Bremner Tue, 03 Nov 2009 07:45:47 -0400 bibutils (4.3-1) unstable; urgency=low * New upstream release * make /usr/lib/libbibutils.so point to /usr/lib/libbibutils.so.1 (the soname) * Link binaries dynamically again * Update to new standards version 3.8.3 (no changes) -- David Bremner Sun, 23 Aug 2009 10:17:54 -0400 bibutils (4.1-1) unstable; urgency=low * New Upstream Version - patch from Rafael Laboissiere to lib/medin.c applied upstream (Closes: #506960) * Convert to topgit (Closes: #485243) * Change maintainer to debian-science-maintainers@lists.alioth.debian.org * Update Vcs-Git and Vcs-Browser * Converted packaging to topgit * Upgraded to standards version 3.8.1 (added debian/README.source) -- David Bremner Sun, 15 Mar 2009 12:48:29 -0300 bibutils (3.40-4) unstable; urgency=low * added reftypes.h (Closes: #477654) * remove obsolete libbibutils0-dev.dirs * adds /usr/lib/pkgconfig/bibutils.pc, courtesy of Thomas Fischer * adds extern "C" declarations to bibutils.h, also courtesy of Thomas Fischer. * added support for CFLAGS to libtoolized lib/Makefile -- David Bremner Tue, 29 Apr 2008 07:07:06 +0200 bibutils (3.40-3) unstable; urgency=low * updated long descriptions * added license clarification for lib/adsout_journals.c * first version in Debian. (Closes: #452577) -- David Bremner Fri, 29 Feb 2008 21:04:20 +0100 bibutils (3.40-2) unstable; urgency=low * moved to unversioned -dev package -- David Bremner Wed, 27 Feb 2008 16:34:07 +0100 bibutils (3.40-1) unstable; urgency=low * New upstream release * new command xml2ads * xml2word renamed to xml2wordbib * use bibutils.dbk shipped by upstream * split into binary, shared libraries and -dev package * remove debian/bibutils.dbk, now shipped upstream -- David Bremner Mon, 11 Feb 2008 20:51:08 +0100 bibutils (3.39-3) UNRELEASED; urgency=low * added quilt infrastructure -- David Bremner Fri, 01 Feb 2008 20:01:36 +0100 bibutils (3.39-2) UNRELEASED; urgency=low * remove build dependency on csh * updated copyright to GPL-2+ from GPL-2 * run test suite during build * use dh_link to create extra man pages -- David Bremner Tue, 29 Jan 2008 22:08:03 +0100 bibutils (3.39-1) UNRELEASED; urgency=low * Initial release -- David Bremner Tue, 27 Nov 2007 13:18:20 +0100 debian/bibutils.links0000644000000000000000000000216611644307535012062 0ustar usr/share/man/man1/bibutils.1.gz usr/share/man/man1/bib2xml.1.gz usr/share/man/man1/bibutils.1.gz usr/share/man/man1/biblatex2xml.1.gz usr/share/man/man1/bibutils.1.gz usr/share/man/man1/copac2xml.1.gz usr/share/man/man1/bibutils.1.gz usr/share/man/man1/ebi2xml.1.gz usr/share/man/man1/bibutils.1.gz usr/share/man/man1/end2xml.1.gz usr/share/man/man1/bibutils.1.gz usr/share/man/man1/endx2xml.1.gz usr/share/man/man1/bibutils.1.gz usr/share/man/man1/isi2xml.1.gz usr/share/man/man1/bibutils.1.gz usr/share/man/man1/med2xml.1.gz usr/share/man/man1/bibutils.1.gz usr/share/man/man1/modsclean.1.gz usr/share/man/man1/bibutils.1.gz usr/share/man/man1/ris2xml.1.gz usr/share/man/man1/bibutils.1.gz usr/share/man/man1/wordbib2xml.1.gz usr/share/man/man1/bibutils.1.gz usr/share/man/man1/xml2bib.1.gz usr/share/man/man1/bibutils.1.gz usr/share/man/man1/xml2end.1.gz usr/share/man/man1/bibutils.1.gz usr/share/man/man1/xml2isi.1.gz usr/share/man/man1/bibutils.1.gz usr/share/man/man1/xml2ris.1.gz usr/share/man/man1/bibutils.1.gz usr/share/man/man1/xml2wordbib.1.gz usr/share/man/man1/bibutils.1.gz usr/share/man/man1/xml2ads.1.gz debian/watch0000644000000000000000000000046411644307535010233 0ustar # Example watch control file for uscan # Rename this file to "watch" and then you can run the "uscan" command # to check for upstream updates and more. # See uscan(1) for format # Compulsory line, this is a version 3 file version=3 http://www.scripps.edu/~cdputnam/software/bibutils/bibutils_(.*)_src.tgz debian/TODO0000644000000000000000000000035211644307535007666 0ustar # Hey emacs: -*- readme-debian -*- TODO for bibutils * Update version in manual * Consider not generating bibutils.1 during build process * create -dbg package -- David Bremner , Sun, 19 Apr 2009 19:29:07 -0300 debian/dirs0000644000000000000000000000001011644307535010051 0ustar usr/bin debian/clean0000644000000000000000000000006611644307535010205 0ustar bibutils.1 lib/*.lo lib/*.la lib/*.so.* lib/*.so debian/libbibutils-dev.install0000644000000000000000000000071411644307535013650 0ustar lib/libbibutils.so usr/lib lib/libbibcore.a usr/lib lib/libbibutils.a usr/lib lib/bibl.h usr/include/bibutils lib/bibtexout.h usr/include/bibutils lib/bibutils.h usr/include/bibutils lib/fields.h usr/include/bibutils lib/list.h usr/include/bibutils lib/newstr.h usr/include/bibutils lib/strsearch.h usr/include/bibutils lib/reftypes.h usr/include/bibutils lib/modsout.h usr/include/bibutils lib/wordout.h usr/include/bibutils lib/bibutils.pc usr/lib/pkgconfig debian/bibutils.manpages0000644000000000000000000000001311644307535012522 0ustar bibutils.1 debian/control0000644000000000000000000000376111644307535010610 0ustar Source: bibutils Section: text Priority: optional Maintainer: Debian Science Maintainers Uploaders: David Bremner Build-Depends: debhelper (>= 7.0.50), xsltproc, docbook-xsl, docbook-xml Standards-Version: 3.9.2 Homepage: http://www.scripps.edu/~cdputnam/software/bibutils/ Vcs-Git: git://git.debian.org/git/debian-science/packages/bibutils/ Vcs-Browser: http://git.debian.org/?p=debian-science/packages/bibutils.git Package: bibutils Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, libbibutils2 Description: interconvert various bibliographic data formats Convert between the following bibliographic data formats: BibTeX, COPAC, EndNote refer, EndNote XML, Pubmed XML, ISI web of science, US Library of Congress MODS XML, RIS, and Word 2007 bibliography. . This package provides command line tools bib2xml, copac2xml, end2xml endx2xml, isi2xml, med2xml, ris2xml which convert to MODS XML format, modsclean which reformats MODS XML, and a matching set of commands xml2ads, xml2bib, xml2end, xml2isi, xml2ris, xml2wordbib which convert from MODS XML. Package: libbibutils-dev Section: libdevel Architecture: any Depends: libbibutils2 (= ${binary:Version}), ${misc:Depends} Description: bibliography file converter, development kit Convert between the following bibliographic data formats: BibTeX, COPAC, EndNote refer, EndNote XML, Pubmed XML, ISI web of science, US Library of Congress MODS, RIS, and Word 2007 bibliography. . This package contains the static library and headers for use by developers. Package: libbibutils2 Section: libs Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Description: bibliography file converter, shared library Convert between the following bibliographic data formats: BibTeX, COPAC, EndNote refer, EndNote XML, Pubmed XML, ISI web of science, US Library of Congress MODS, RIS, and Word 2007 bibliography. . This package contains the shared library doing most of the work debian/compat0000644000000000000000000000000211644307535010374 0ustar 7 debian/copyright0000644000000000000000000001073511644307535011137 0ustar % The format of this file is based on % http://wiki.debian.org/Proposals/CopyrightFormat Original source download from: http://www.scripps.edu/~cdputnam/software/bibutils/ Files: * Copyright: 1995-2009 Christopher Putnam License: GPL-2+ This program 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 St, Fifth Floor, Boston, MA 02110-1301, USA. Files: lib/adsout_journals.c Copyright: NASA Astrophysics Data System Project License: GPL-2+ From: Alberto Accomazzi Organization: Smithsonian Astrophysical Observatory User-Agent: Thunderbird 2.0.0.9 (X11/20071031) MIME-Version: 1.0 To: David Bremner CC: David Bremner , ads@cfa.harvard.edu, Chris Putnam Subject: Re: permission to use/distribute an ADS web page (round II) Hi David and Chris, We support this effort, and grant permission to distribute under the terms of the GNU General Public License as published by the Free Software Foundation the contents of the following URL: http://adsabs.harvard.edu/abs_doc/journals1.html Please be aware that we update the list occasionally (sometimes on a weekly basis), with both additions and corrections. Thanks, -- Alberto David Bremner wrote: >>>>>> "David" == David Bremner writes: > > David> Hi; > > David> I am working with Chris Putnam [1], the author of bibutils > David> [2], to package his software for Debian Linux [3]. One of > David> the new features of bibutils is that can convert to and > David> from the ADS format. To support this, the software needs a > David> list of journal abbreviations and expansions. This list > David> can be derived mechanically from the page [4]. We would > David> like your explicit permission to distribute this page and > David> modified or derived versions. An email permission to > David> distributed modified versions would suffice. A > David> clarification of who the copyright holder is for this page > David> would be helpful as well. > > David> I hope you will agree to help us make ADS more accessible > David> to millions of Linux users, > > David> David > David> [1] mailto:cdputnam@ucsd.edu [2] > David> http://www.scripps.edu/~cdputnam/software/bibutils/ [3] > David> http://www.debian.org [4] > David> http://adsabs.harvard.edu/abs_doc/journals1.html > > There must be some law of the Universe that says it is impossible to > get all the details right on the first email (special case of Murphy I > suppose). What we actually need is permission to > > "distribute under the terms of the GNU General Public License as > published by the Free Software Foundation" > > The practical difference is we need everybody who receives a copy to be > able to pass it on and or modify it. > > All the best, > > David > -- Dr. Alberto Accomazzi aaccomazzi(at)cfa harvard edu Project Manager NASA Astrophysics Data System ads.harvard.edu Harvard-Smithsonian Center for Astrophysics www.cfa.harvard.edu 60 Garden St, MS 67, Cambridge, MA 02138, USA Files: bibutils.dbk Copyright: 2007 David Bremner 2007 Christopher Putnam License: GPL-2 The man page is licensed under version 2 of the GNU General Public License Files: debian/* Copyright: 2007-2009 David Bremner License: GPL-2+ The Debian packaging is licensed under the same terms as the upstream source. On Debian systems, the complete text of version 2 of the GNU General Public License can be found in file "/usr/share/common-licenses/GPL-2". debian/libbibutils2.symbols0000644000000000000000000001517311644307535013205 0ustar libbibutils.so.2 libbibutils2 #MINVER# addsn@Base 4.12 adobeiso@Base 4.12 adobestd@Base 4.12 adobesym@Base 4.12 adsout_initparams@Base 4.12 adsout_write@Base 4.12 adsout_writeheader@Base 4.12 allcharconvert@Base 4.12 applecro@Base 4.12 applecyr@Base 4.12 applegk2@Base 4.12 applegrk@Base 4.12 appleice@Base 4.12 applerom@Base 4.12 applerum@Base 4.12 appletur@Base 4.12 arxiv_to_url@Base 4.12 atarist@Base 4.12 bibl_addref@Base 4.12 bibl_addtoasis@Base 4.12 bibl_addtocorps@Base 4.12 bibl_copy@Base 4.12 bibl_free@Base 4.12 bibl_freeparams@Base 4.12 bibl_init@Base 4.12 bibl_initparams@Base 4.12 bibl_read@Base 4.12 bibl_readasis@Base 4.12 bibl_readcorps@Base 4.12 bibl_reporterr@Base 4.12 bibl_verbose0@Base 4.12 bibl_verbose1@Base 4.12 bibl_verbose2@Base 4.12 bibl_write@Base 4.12 biblatex_all@Base 4.12 biblatex_nall@Base 4.12 biblatexin_cleanf@Base 4.12 biblatexin_convertf@Base 4.12 biblatexin_initparams@Base 4.12 biblatexin_processf@Base 4.12 biblatexin_readf@Base 4.12 biblatexin_typef@Base 4.12 bibtex_all@Base 4.12 bibtex_nall@Base 4.12 bibtexin_cleanf@Base 4.12 bibtexin_convertf@Base 4.12 bibtexin_initparams@Base 4.12 bibtexin_processf@Base 4.12 bibtexin_readf@Base 4.12 bibtexin_typef@Base 4.12 bibtexout_initparams@Base 4.12 bibtexout_write@Base 4.12 bibtexout_writeheader@Base 4.12 copac_all@Base 4.12 copac_nall@Base 4.12 copacin_convertf@Base 4.12 copacin_initparams@Base 4.12 copacin_processf@Base 4.12 copacin_readf@Base 4.12 cp1250@Base 4.12 cp1251@Base 4.12 cp1252@Base 4.12 cp1253@Base 4.12 cp1254@Base 4.12 cp1255@Base 4.12 cp1256@Base 4.12 cp1257@Base 4.12 cp1258@Base 4.12 cp437@Base 4.12 cp737@Base 4.12 cp775@Base 4.12 cp850@Base 4.12 cp851@Base 4.12 cp852@Base 4.12 cp853@Base 4.12 cp855@Base 4.12 cp857@Base 4.12 cp860@Base 4.12 cp861@Base 4.12 cp862@Base 4.12 cp863@Base 4.12 cp864@Base 4.12 cp865@Base 4.12 cp866@Base 4.12 cp869@Base 4.12 cp874@Base 4.12 cp895@Base 4.12 decmcs@Base 4.12 decode_entity@Base 4.12 doi_to_url@Base 4.12 ebc037@Base 4.12 ebc1026@Base 4.12 ebc1047@Base 4.12 ebc500@Base 4.12 ebc875@Base 4.12 ebiin_convertf@Base 4.12 ebiin_initparams@Base 4.12 ebiin_processf@Base 4.12 ebiin_readf@Base 4.12 end_all@Base 4.12 end_nall@Base 4.12 endin_cleanf@Base 4.12 endin_convertf@Base 4.12 endin_initparams@Base 4.12 endin_processf@Base 4.12 endin_readf@Base 4.12 endin_typef@Base 4.12 endout_initparams@Base 4.12 endout_write@Base 4.12 endout_writeheader@Base 4.12 endxmlin_contributor@Base 4.12 endxmlin_data@Base 4.12 endxmlin_datar@Base 4.12 endxmlin_initparams@Base 4.12 endxmlin_processf@Base 4.12 endxmlin_readf@Base 4.12 endxmlin_titles@Base 4.12 fields_add@Base 4.12 fields_add_tagsuffix@Base 4.12 fields_clearused@Base 4.12 fields_find@Base 4.12 fields_find_firstof@Base 4.12 fields_free@Base 4.12 fields_init@Base 4.12 fields_maxlevel@Base 4.12 fields_new@Base 4.12 fields_replace_or_add@Base 4.12 fields_setused@Base 4.12 find@Base 4.12 gb18030_decode@Base 4.12 gb18030_encode@Base 4.12 gb18030_to_unicode@Base 4.12 get_charset@Base 4.12 get_reftype@Base 4.12 hp48@Base 4.12 hproman8@Base 4.12 html_entities@Base 4.12 identifier_types@Base 4.12 is_doi@Base 4.12 is_ws@Base 4.12 isi_all@Base 4.12 isi_nall@Base 4.12 isiin_convertf@Base 4.12 isiin_initparams@Base 4.12 isiin_processf@Base 4.12 isiin_readf@Base 4.12 isiin_typef@Base 4.12 isiout_initparams@Base 4.12 isiout_write@Base 4.12 isiout_writeheader@Base 4.12 iso646@Base 4.12 iso646_ca@Base 4.12 iso646_ch@Base 4.12 iso646_de@Base 4.12 iso646_es@Base 4.12 iso646_fi@Base 4.12 iso646_fr@Base 4.12 iso646_gb@Base 4.12 iso646_irv@Base 4.12 iso646_it@Base 4.12 iso646_nl@Base 4.12 iso646_no@Base 4.12 iso646_pt@Base 4.12 iso646_se@Base 4.12 iso8859_10@Base 4.12 iso8859_13@Base 4.12 iso8859_14@Base 4.12 iso8859_15@Base 4.12 iso8859_1@Base 4.12 iso8859_2@Base 4.12 iso8859_3@Base 4.12 iso8859_4@Base 4.12 iso8859_5@Base 4.12 iso8859_6@Base 4.12 iso8859_7@Base 4.12 iso8859_8@Base 4.12 iso8859_9@Base 4.12 jstor_to_url@Base 4.12 koi8_r@Base 4.12 latex2char@Base 4.12 list_add@Base 4.12 list_charsets@Base 4.12 list_copy@Base 4.12 list_dup@Base 4.12 list_empty@Base 4.12 list_fill@Base 4.12 list_find@Base 4.12 list_find_or_add@Base 4.12 list_findnocase@Base 4.12 list_free@Base 4.12 list_getstr@Base 4.12 list_getstr_char@Base 4.12 list_init@Base 4.12 list_sort@Base 4.12 marc_findgenre@Base 4.12 marc_findresource@Base 4.12 medin_convertf@Base 4.12 medin_initparams@Base 4.12 medin_processf@Base 4.12 medin_readf@Base 4.12 mods_find_attrib@Base 4.12 mods_find_internal@Base 4.12 modsin_convertf@Base 4.12 modsin_initparams@Base 4.12 modsin_processf@Base 4.12 modsin_readf@Base 4.12 modsout_initparams@Base 4.12 modsout_write@Base 4.12 modsout_writefooter@Base 4.12 modsout_writeheader@Base 4.12 mslinedr@Base 4.12 nallcharconvert@Base 4.12 name_add@Base 4.12 name_comma@Base 4.12 name_nocomma@Base 4.12 newstr_addchar@Base 4.12 newstr_convert@Base 4.12 newstr_empty@Base 4.12 newstr_fget@Base 4.12 newstr_findreplace@Base 4.12 newstr_fprintf@Base 4.12 newstr_free@Base 4.12 newstr_init@Base 4.12 newstr_new@Base 4.12 newstr_newstrcat@Base 4.12 newstr_newstrcpy@Base 4.12 newstr_prepend@Base 4.12 newstr_segcat@Base 4.12 newstr_segcpy@Base 4.12 newstr_segdel@Base 4.12 newstr_strcat@Base 4.12 newstr_strcpy@Base 4.12 newstr_strdup@Base 4.12 newstr_swapstrings@Base 4.12 newstr_toupper@Base 4.12 newstr_trimendingws@Base 4.12 newstrs_empty@Base 4.12 newstrs_free@Base 4.12 newstrs_init@Base 4.12 nextstep@Base 4.12 ngb18030_enums@Base 4.12 ngenres@Base 4.12 nidentifier_types@Base 4.12 pmid_to_url@Base 4.12 process_findoldtag@Base 4.12 replace@Base 4.12 ris_all@Base 4.12 ris_nall@Base 4.12 risin_convertf@Base 4.12 risin_initparams@Base 4.12 risin_processf@Base 4.12 risin_readf@Base 4.12 risin_typef@Base 4.12 risout_initparams@Base 4.12 risout_write@Base 4.12 risout_writeheader@Base 4.12 skip_notws@Base 4.12 skip_ws@Base 4.12 strsearch@Base 4.12 symbol@Base 4.12 tex_dcr_in@Base 4.12 tex_dcr_out@Base 4.12 title_process@Base 4.12 uni2latex@Base 4.12 utf8_decode@Base 4.12 utf8_encode@Base 4.12 utf8_writebom@Base 4.12 wordin_convertf@Base 4.12 wordin_initparams@Base 4.12 wordin_processf@Base 4.12 wordin_readf@Base 4.12 wordout_initparams@Base 4.12 wordout_write@Base 4.12 wordout_writefooter@Base 4.12 wordout_writeheader@Base 4.12 xml_draw@Base 4.12 xml_findend@Base 4.12 xml_findstart@Base 4.12 xml_free@Base 4.12 xml_getattrib@Base 4.12 xml_getencoding@Base 4.12 xml_init@Base 4.12 xml_pns@Base 4.12 xml_tag_attrib@Base 4.12 xml_tagexact@Base 4.12 xml_tree@Base 4.12 debian/source/0000755000000000000000000000000011644307535010476 5ustar debian/source/options0000644000000000000000000000002411644307535012110 0ustar single-debian-patch debian/source/patch-header0000644000000000000000000000023111644307535012742 0ustar Packaging for bibutils is maintained in git; this diff represents several git commits. Please consider "debcheckout bibutils" in order to send patches. debian/source/format0000644000000000000000000000001411644307535011704 0ustar 3.0 (quilt)