debian/0000755000000000000000000000000012201367561007171 5ustar debian/README.Source0000644000000000000000000000034712172311306011305 0ustar git clone git://github.com/gorilla/context golang-context-dev (cd golang-context-dev; git checkout 708054d61e5a2918b9f4e9700000ee611dcf03f5) tar czvf golang-context-dev_0.0~git20130701.orig.tar.gz golang-context-dev --exclude=.git debian/compat0000644000000000000000000000000212172311306010360 0ustar 8 debian/docs0000644000000000000000000000001212172311306010026 0ustar README.md debian/golang-context-dev.install0000644000000000000000000000002512172311306014254 0ustar usr/share/gocode/src debian/golang-context-dev.lintian-overrides0000644000000000000000000000011412172311306016243 0ustar # There is no upstream changelog. golang-context-dev: no-upstream-changelog debian/rules0000755000000000000000000000175212172311306010247 0ustar #!/usr/bin/make -f # -*- makefile -*- # Sample debian/rules that uses debhelper. # This file was originally written by Joey Hess and Craig Small. # As a special exception, when this file is copied by dh-make into a # dh-make output file, you may use that output file without restriction. # This special exception was added by Craig Small in version 0.37 of dh-make. # Uncomment this to turn on verbose mode. export DH_VERBOSE=1 # GOPKG is the upstream path which you would normally “go get”. # Using it allows us to build applications without patching locations. GOPKG := github.com/gorilla/context # Temporary working directory to which the source will be copied, then # compiled. TMPGOPATH = $(CURDIR)/debian/tmp/usr/share/gocode override_dh_auto_install: mkdir -p ${TMPGOPATH}/src/${GOPKG} # Copy all .go files to /usr/share/gocode (we compile and ship). find . -path ./debian -prune -o -type f -name "*.go" -exec tar cf - {} + | (cd "${TMPGOPATH}/src/${GOPKG}" && tar xvf -) %: dh $@ debian/source/0000755000000000000000000000000012172311306010462 5ustar debian/source/format0000644000000000000000000000001412172311306011670 0ustar 3.0 (quilt) debian/source/lintian-overrides0000644000000000000000000000041212172311306014040 0ustar # debian/watch is missing intentionally. There are no releases, new code goes # directly into the repository. In case gorilla/context gets a new maintainer # who does it differently, debian/watch can be added. golang-context-dev source: debian-watch-file-is-missing debian/changelog0000644000000000000000000000026412201367561011045 0ustar golang-context-dev (0.0~git20130701-1) unstable; urgency=low * Initial release (Closes: #715521) -- Daniel Mizyrycki Mon, 22 Jul 2013 10:27:52 -0700 debian/control0000644000000000000000000000152712201367561010601 0ustar Source: golang-context-dev Section: devel Priority: extra Maintainer: Daniel Mizyrycki Build-Depends: debhelper (>= 9) Standards-Version: 3.9.4 Homepage: https://github.com/gorilla/context Vcs-Git: git://anonscm.debian.org/collab-maint/golang-context-dev.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=collab-maint/golang-context-dev.git;a=summary Package: golang-context-dev Architecture: all Depends: ${misc:Depends} Description: General purpose registry for global request variables context is part of the Gorilla web toolkit. It stores values shared during a request lifetime. For example, a router can set variables extracted from the URL and later application handlers can access those values, or it can be used to store sessions values to be saved at the end of a request. There are several others common uses. debian/copyright0000644000000000000000000000552312201367561011131 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: context Source: https://github.com/gorilla/context Files: * Copyright: 2012 Rodrigo Moraes License: Expat Copyright (c) 2012 Rodrigo Moraes. 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. * Neither the name of Google Inc. 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 OWNER 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. Files: debian/* Copyright: 2013 Daniel Mizyrycki 2012 Michael Stapelberg 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.