Godeps: use BSD-licensed version of gopkg.in/karalabe/cookiejar.v2

release/1.0.0
Felix Lange 10 years ago committed by Jeffrey Wilcke
parent abdc3d3c77
commit b738172dcc
  1. 2
      Godeps/Godeps.json
  2. 17
      Godeps/_workspace/src/gopkg.in/karalabe/cookiejar.v2/collections/prque/prque.go
  3. 17
      Godeps/_workspace/src/gopkg.in/karalabe/cookiejar.v2/collections/prque/prque_test.go
  4. 17
      Godeps/_workspace/src/gopkg.in/karalabe/cookiejar.v2/collections/prque/sstack.go
  5. 17
      Godeps/_workspace/src/gopkg.in/karalabe/cookiejar.v2/collections/prque/sstack_test.go

2
Godeps/Godeps.json generated vendored

@ -121,7 +121,7 @@
}, },
{ {
"ImportPath": "gopkg.in/karalabe/cookiejar.v2/collections/prque", "ImportPath": "gopkg.in/karalabe/cookiejar.v2/collections/prque",
"Rev": "0b2e270613f5d7ba262a5749b9e32270131497a2" "Rev": "8dcd6a7f4951f6ff3ee9cbb919a06d8925822e57"
} }
] ]
} }

@ -1,19 +1,10 @@
// CookieJar - A contestant's algorithm toolbox // CookieJar - A contestant's algorithm toolbox
// Copyright (c) 2013 Peter Szilagyi. All rights reserved. // Copyright (c) 2013 Peter Szilagyi. All rights reserved.
// //
// CookieJar is dual licensed: you can redistribute it and/or modify it under // CookieJar is dual licensed: use of this source code is governed by a BSD
// the terms of the GNU General Public License as published by the Free Software // license that can be found in the LICENSE file. Alternatively, the CookieJar
// Foundation, either version 3 of the License, or (at your option) any later // toolbox may be used in accordance with the terms and conditions contained
// version. // in a signed written agreement between you and the author(s).
//
// The toolbox 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.
//
// Alternatively, the CookieJar toolbox may be used in accordance with the terms
// and conditions contained in a signed written agreement between you and the
// author(s).
// Package prque implements a priority queue data structure supporting arbitrary // Package prque implements a priority queue data structure supporting arbitrary
// value types and float priorities. // value types and float priorities.

@ -1,19 +1,10 @@
// CookieJar - A contestant's algorithm toolbox // CookieJar - A contestant's algorithm toolbox
// Copyright (c) 2013 Peter Szilagyi. All rights reserved. // Copyright (c) 2013 Peter Szilagyi. All rights reserved.
// //
// CookieJar is dual licensed: you can redistribute it and/or modify it under // CookieJar is dual licensed: use of this source code is governed by a BSD
// the terms of the GNU General Public License as published by the Free Software // license that can be found in the LICENSE file. Alternatively, the CookieJar
// Foundation, either version 3 of the License, or (at your option) any later // toolbox may be used in accordance with the terms and conditions contained
// version. // in a signed written agreement between you and the author(s).
//
// The toolbox 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.
//
// Alternatively, the CookieJar toolbox may be used in accordance with the terms
// and conditions contained in a signed written agreement between you and the
// author(s).
package prque package prque

@ -1,19 +1,10 @@
// CookieJar - A contestant's algorithm toolbox // CookieJar - A contestant's algorithm toolbox
// Copyright (c) 2013 Peter Szilagyi. All rights reserved. // Copyright (c) 2013 Peter Szilagyi. All rights reserved.
// //
// CookieJar is dual licensed: you can redistribute it and/or modify it under // CookieJar is dual licensed: use of this source code is governed by a BSD
// the terms of the GNU General Public License as published by the Free Software // license that can be found in the LICENSE file. Alternatively, the CookieJar
// Foundation, either version 3 of the License, or (at your option) any later // toolbox may be used in accordance with the terms and conditions contained
// version. // in a signed written agreement between you and the author(s).
//
// The toolbox 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.
//
// Alternatively, the CookieJar toolbox may be used in accordance with the terms
// and conditions contained in a signed written agreement between you and the
// author(s).
package prque package prque

@ -1,19 +1,10 @@
// CookieJar - A contestant's algorithm toolbox // CookieJar - A contestant's algorithm toolbox
// Copyright (c) 2013 Peter Szilagyi. All rights reserved. // Copyright (c) 2013 Peter Szilagyi. All rights reserved.
// //
// CookieJar is dual licensed: you can redistribute it and/or modify it under // CookieJar is dual licensed: use of this source code is governed by a BSD
// the terms of the GNU General Public License as published by the Free Software // license that can be found in the LICENSE file. Alternatively, the CookieJar
// Foundation, either version 3 of the License, or (at your option) any later // toolbox may be used in accordance with the terms and conditions contained
// version. // in a signed written agreement between you and the author(s).
//
// The toolbox 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.
//
// Alternatively, the CookieJar toolbox may be used in accordance with the terms
// and conditions contained in a signed written agreement between you and the
// author(s).
package prque package prque

Loading…
Cancel
Save