Codebase list golang-github-jinzhu-gorm / b14f111
Initial debian/ Tianon Gravi 8 years ago
7 changed file(s) with 93 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 golang-github-jinzhu-gorm (0.0~git20151012.0.20e37a0-1) UNRELEASED; urgency=medium
1
2 * Initial release
3
4 -- Tianon Gravi <tianon@debian.org> Mon, 12 Oct 2015 12:44:54 -0700
0 Source: golang-github-jinzhu-gorm
1 Section: devel
2 Priority: extra
3 Maintainer: Debian Go Packaging Team <pkg-go-maintainers@lists.alioth.debian.org>
4 Uploaders: Tianon Gravi <tianon@debian.org>
5 Build-Depends: debhelper (>= 9),
6 dh-golang,
7 # golang-github-denisenkom-go-mssqldb-dev,
8 # golang-github-erikstmartin-go-testdb-dev,
9 golang-github-go-sql-driver-mysql-dev,
10 # golang-github-jinzhu-now-dev,
11 golang-github-mattn-go-sqlite3-dev,
12 golang-github-qor-inflection-dev,
13 golang-go,
14 golang-pq-dev | golang-github-lib-pq-dev
15 Standards-Version: 3.9.6
16 Homepage: https://github.com/jinzhu/gorm
17 Vcs-Browser: https://anonscm.debian.org/cgit/pkg-go/packages/golang-github-jinzhu-gorm.git
18 Vcs-Git: git://anonscm.debian.org/pkg-go/packages/golang-github-jinzhu-gorm.git
19 XS-Go-Import-Path: github.com/jinzhu/gorm
20
21 Package: golang-github-jinzhu-gorm-dev
22 Architecture: all
23 Depends: golang-github-qor-inflection-dev,
24 golang-pq-dev | golang-github-lib-pq-dev,
25 ${misc:Depends},
26 ${shlibs:Depends}
27 Description: ORM library for Golang
28 The fantastic ORM library for Golang, aims to be developer friendly.
29 .
30 Overview
31 .
32 * Full-Featured ORM (almost)
33 * Chainable API
34 * Auto Migrations
35 * Relations (Has One, Has Many, Belongs To, Many To Many, Polymorphism)
36 * Callbacks (Before/After Create/Save/Update/Delete/Find)
37 * Preloading (eager loading)
38 * Transactions
39 * Embed Anonymous Struct
40 * Soft Deletes
41 * Customizable Logger
42 * Iteration Support via Rows
43 * Every feature comes with tests
44 * Developer Friendly
45 .
46 go doc format documentation for this project can be viewed online without
47 installing the package by using the GoDoc page at:
48 http://godoc.org/github.com/jinzhu/gorm
0 Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
1 Upstream-Name: gorm
2 Source: https://github.com/jinzhu/gorm
3
4 Files: *
5 Copyright: 2013 Jinzhu <wosmvp@gmail.com>
6 License: Expat
7
8 Files: debian/*
9 Copyright: 2015 Tianon Gravi <tianon@debian.org>
10 License: Expat
11 Comment: Debian packaging is licensed under the same terms as upstream
12
13 License: Expat
14 Permission is hereby granted, free of charge, to any person obtaining a copy of
15 this software and associated documentation files (the "Software"), to deal in
16 the Software without restriction, including without limitation the rights to
17 use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
18 of the Software, and to permit persons to whom the Software is furnished to do
19 so, subject to the following conditions:
20 .
21 The above copyright notice and this permission notice shall be included in all
22 copies or substantial portions of the Software.
23 .
24 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
26 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
27 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
28 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
29 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30 SOFTWARE.
0 [DEFAULT]
1 pristine-tar = True
0 #!/usr/bin/make -f
1
2 %:
3 dh $@ --buildsystem=golang --with=golang
0 3.0 (quilt)