debian/0000755000000000000000000000000012241144375007171 5ustar debian/control0000644000000000000000000000426712240707613010604 0ustar Source: globus-gridmap-verify-myproxy-callout Priority: optional Maintainer: Mattias Ellert Build-Depends: debhelper (>= 5), autotools-dev, grid-packaging-tools (>= 3.4), globus-core (>= 8.16), libglobus-gssapi-gsi-dev (>= 10.10), libglobus-gss-assist-dev (>= 9), libglobus-gridmap-callout-error-dev (>= 1.2-4~), libglobus-gsi-credential-dev (>= 6), libglobus-gsi-sysconfig-dev (>= 5.3-3~) Standards-Version: 3.9.4 Section: net Vcs-Browser: http://svn.nordugrid.org/trac/packaging/browser/debian/globus-gridmap-verify-myproxy-callout Vcs-Svn: http://svn.nordugrid.org/repos/packaging/debian/globus-gridmap-verify-myproxy-callout Homepage: http://www.globus.org/ Package: libglobus-gridmap-verify-myproxy-callout0 Section: libs Architecture: any Multi-Arch: same Pre-Depends: ${misc:Pre-Depends} Depends: ${shlibs:Depends}, ${misc:Depends} Description: Globus Toolkit - Globus gridmap myproxy callout The Globus Toolkit is an open source software toolkit used for building Grid systems and applications. It is being developed by the Globus Alliance and many others all over the world. A growing number of projects and companies are using the Globus Toolkit to unlock the potential of grids for their cause. . The libglobus-gridmap-verify-myproxy-callout0 package contains: Globus gridmap myproxy callout Package: libglobus-gridmap-verify-myproxy-callout-dbg Section: debug Priority: extra Architecture: any Multi-Arch: same Provides: globus-gridmap-verify-myproxy-callout-dbg Replaces: globus-gridmap-verify-myproxy-callout-dbg (<< 1.5) Conflicts: globus-gridmap-verify-myproxy-callout-dbg (<< 1.5) Depends: libglobus-gridmap-verify-myproxy-callout0 (= ${binary:Version}), ${misc:Depends} Description: Globus Toolkit - Globus gridmap myproxy callout Debug Symbols The Globus Toolkit is an open source software toolkit used for building Grid systems and applications. It is being developed by the Globus Alliance and many others all over the world. A growing number of projects and companies are using the Globus Toolkit to unlock the potential of grids for their cause. . The libglobus-gridmap-verify-myproxy-callout-dbg package contains: Globus gridmap myproxy callout Debug Symbols debian/rules0000755000000000000000000000707212240264263010255 0ustar #!/usr/bin/make -f # -*- makefile -*- name = globus-gridmap-verify-myproxy-callout _name = globus_gridmap_verify_myproxy_callout soname = 0 INSTALLDIR = $(CURDIR)/debian/tmp GLOBUSPACKAGEDIR = $(INSTALLDIR)$(_datadir)/globus/packages _prefix = /usr _bindir = $(_prefix)/bin _sbindir = $(_prefix)/sbin _libdir = $(_prefix)/lib/$(DEB_HOST_MULTIARCH) _datadir = $(_prefix)/share _mandir = $(_datadir)/man _docdir = $(_datadir)/doc/lib$(name)-dev DEB_HOST_ARCH_BITS ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_BITS) DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH) ifeq ($(DEB_HOST_ARCH_BITS), 64) flavor = gcc64-$(DEB_HOST_MULTIARCH) else flavor = gcc32-$(DEB_HOST_MULTIARCH) endif configure: configure-stamp configure-stamp: dh_testdir dh_autotools-dev_updateconfig /usr/share/globus/globus-bootstrap.sh ./configure \ --disable-static \ --with-flavor=$(flavor) \ --with-docdir=$(_docdir) # Reduce overlinking sed 's!CC -shared !CC \\$${wl}--as-needed -shared !g' -i libtool touch $@ build: build-arch build-indep build-arch: build-stamp build-indep: build-stamp: configure-stamp dh_testdir $(MAKE) touch $@ clean: dh_testdir dh_testroot if [ -r Makefile ] ; then $(MAKE) distclean ; fi dh_autotools-dev_restoreconfig # Remove autogenerated files rm -f aclocal.m4 rm -f compile rm -f configure rm -f install-sh rm -f ltmain.sh rm -f missing rm -f mkinstalldirs rm -f doxygen/Doxyfile* rm -f doxygen/Makefile.am rm -f pkgdata/Makefile.am rm -f pkgdata/*.filelist rm -f pkgdata/*.gpt rm -f pkgdata/$(name).pc rm -f pkgdata/pkg_data_src.pc.in rm -f gptdata.sh rm -f globus_automake* rm -rf autom4te.cache find . -name Makefile.in -exec rm {} ';' rm -f build-stamp configure-stamp dh_clean debian/*.install install: build-stamp dh_testdir dh_testroot dh_prep $(MAKE) install DESTDIR=$(INSTALLDIR) # This library is opened using lt_dlopenext, so the libtool archive # (.la file) can not be removed - fix libdir and clear dependency_libs # ... and move it to the main package for lib in `find $(INSTALLDIR)$(_libdir) -name 'lib*.la'` ; do \ sed -e "s!^libdir=.*!libdir=\'$(_libdir)\'!" \ -e "s!^dependency_libs=.*!dependency_libs=\'\'!" -i $$lib ; \ done grep 'lib.*\.la$$' $(GLOBUSPACKAGEDIR)/$(_name)/$(flavor)_dev.filelist \ >> $(GLOBUSPACKAGEDIR)/$(_name)/$(flavor)_rtl.filelist sed '/lib.*\.la$$/d' \ -i $(GLOBUSPACKAGEDIR)/$(_name)/$(flavor)_dev.filelist # Devel package is redundant rm $(INSTALLDIR)$(_libdir)/lib$(_name).so rm $(INSTALLDIR)$(_libdir)/pkgconfig/$(name).pc rm $(GLOBUSPACKAGEDIR)/$(_name)/$(flavor)_dev.filelist rm $(GLOBUSPACKAGEDIR)/$(_name)/pkg_data_$(flavor)_dev.gpt # Remove installed license file rm -f $(INSTALLDIR)$(_docdir)/GLOBUS_LICENSE sed /GLOBUS_LICENSE/d \ -i $(GLOBUSPACKAGEDIR)/$(_name)/noflavor_doc.filelist # Generate package filelists cat $(GLOBUSPACKAGEDIR)/$(_name)/$(flavor)_rtl.filelist \ $(GLOBUSPACKAGEDIR)/$(_name)/noflavor_doc.filelist \ $(GLOBUSPACKAGEDIR)/$(_name)/noflavor_data.filelist \ | sed -e s!^!debian/tmp$(_prefix)! \ -e s!$(_prefix)/etc!/etc! > debian/lib$(name)$(soname).install binary: binary-arch binary-indep binary-arch: install dh_testdir dh_testroot dh_installdocs debian/README dh_installchangelogs dh_install --fail-missing dh_installman dh_link dh_strip --dbg-package=lib$(name)-dbg dh_compress dh_fixperms dh_perl dh_makeshlibs dh_installdeb dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb binary-indep: .PHONY: binary binary-arch binary-indep build build-arch build-indep clean configure install debian/README0000644000000000000000000000150512240261332010042 0ustar This package is part of the Grid Security Infrastructure in C (GSI C) component of the Globus Toolkit. For more information visit: http://www.globus.org/toolkit/docs/latest-stable/gsic/ Admin Guide: http://www.globus.org/toolkit/docs/latest-stable/gsic/admin/ User's Guide: http://www.globus.org/toolkit/docs/latest-stable/gsic/user/ Developer's Guide: http://www.globus.org/toolkit/docs/latest-stable/gsic/developer/ Release Notes: http://www.globus.org/toolkit/docs/latest-stable/gsic/rn/ Public Interface Guide: http://www.globus.org/toolkit/docs/latest-stable/gsic/pi/ Quality Profile: http://www.globus.org/toolkit/docs/latest-stable/gsic/qp/ Migrating Guide: http://www.globus.org/toolkit/docs/latest-stable/gsic/mig/ Globus debian packaging is supported by the Initiative for Globus in Europe: http://www.ige-project.eu/ debian/copyright0000644000000000000000000000124612240261332011117 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: globus_gridmap_verify_myproxy_callout Upstream-Contact: http://www.globus.org/ Source: http://www.globus.org/ftppub/gt5/5.2/5.2.5/packages/src/globus_gridmap_verify_myproxy_callout-1.5.tar.gz Files: * Copyright: 1999-2013 University of Chicago License: Apache-2.0 Files: debian/* Copyright: 2008-2013 Mattias Ellert 2010-2013 Initiative for Globus in Europe (IGE), http://www.ige-project.eu/ License: Apache-2.0 License: Apache-2.0 On Debian systems the full text of the Apache license version 2 can be found in /usr/share/common-licenses/Apache-2.0. debian/compat0000644000000000000000000000000212063434507010370 0ustar 5 debian/libglobus-gridmap-verify-myproxy-callout0.shlibs0000644000000000000000000000013412063434507020551 0ustar libglobus_gridmap_verify_myproxy_callout 0 libglobus-gridmap-verify-myproxy-callout0 (>= 1) debian/patches/0000755000000000000000000000000012240265013010610 5ustar debian/patches/series0000644000000000000000000000006112063434373012034 0ustar globus-gridmap-verify-myproxy-callout-desc.patch debian/patches/globus-gridmap-verify-myproxy-callout-desc.patch0000644000000000000000000000112312237161741022157 0ustar --- globus_gridmap_verify_myproxy_callout-1.0.orig/pkgdata/pkg_data_src.gpt.in 2012-08-20 20:30:15.000000000 +0200 +++ globus_gridmap_verify_myproxy_callout-1.0/pkgdata/pkg_data_src.gpt.in 2013-06-13 14:49:58.398258394 +0200 @@ -60,8 +60,7 @@ @GPT_PKG_CFLAGS@ @GPT_EXTERNAL_INCLUDES@ - - + @GPT_EXTERNAL_LIBS@ debian/changelog0000644000000000000000000000117512240715224011043 0ustar globus-gridmap-verify-myproxy-callout (1.5-1) unstable; urgency=low * Update to Globus Toolkit 5.2.5 * Implement Multi-Arch support * Rename dbg package -- Mattias Ellert Tue, 12 Nov 2013 00:03:54 +0100 globus-gridmap-verify-myproxy-callout (1.0-2) unstable; urgency=low * Add arm64 to the list of 64 bit architectures -- Mattias Ellert Mon, 27 May 2013 06:36:42 +0200 globus-gridmap-verify-myproxy-callout (1.0-1) unstable; urgency=low * Initial release (Closes: #696118) -- Mattias Ellert Sun, 16 Dec 2012 22:12:39 +0100 debian/libglobus-gridmap-verify-myproxy-callout-doc.doc-base0000644000000000000000000000060512063432713021425 0ustar Document: globus-gridmap-verify-myproxy-callout Title: Debian globus-gridmap-verify-myproxy-callout Manual Author: Globus Alliance Abstract: The Globus toolkit, Globus gridmap myproxy callout Section: Programming Format: HTML Index: /usr/share/doc/libglobus-gridmap-verify-myproxy-callout-dev/html/index.html Files: /usr/share/doc/libglobus-gridmap-verify-myproxy-callout-dev/html/*.html debian/source/0000755000000000000000000000000012063432713010467 5ustar debian/source/format0000644000000000000000000000001412063432713011675 0ustar 3.0 (quilt)