Merge pull request #732 from aptly-dev/move-to-aptly-dev

Fix paths after repository transfer to aptly-dev
This commit is contained in:
Andrey Smirnov
2018-04-18 22:43:53 +03:00
committed by GitHub
105 changed files with 214 additions and 214 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ sudo: required
language: go language: go
go_import_path: github.com/smira/aptly go_import_path: github.com/aptly-dev/aptly
addons: addons:
apt: apt:
+6 -6
View File
@@ -15,7 +15,7 @@ Please report unacceptable behavior to [team@aptly.info](mailto:team@aptly.info)
### List of Repositories ### List of Repositories
* [smira/aptly](https://github.com/smira/aptly) - aptly source code, functional tests, man page * [aptly-dev/aptly](https://github.com/aptly-dev/aptly) - aptly source code, functional tests, man page
* [apty-dev/aptly-dev.github.io](https://github.com/aptly-dev/aptly-dev.github.io) - aptly website (https://www.aptly.info/) * [apty-dev/aptly-dev.github.io](https://github.com/aptly-dev/aptly-dev.github.io) - aptly website (https://www.aptly.info/)
* [aptly-dev/aptly-fixture-db](https://github.com/aptly-dev/aptly-fixture-db) & [aptly-dev/aptly-fixture-pool](https://github.com/aptly-dev/aptly-fixture-pool) provide * [aptly-dev/aptly-fixture-db](https://github.com/aptly-dev/aptly-fixture-db) & [aptly-dev/aptly-fixture-pool](https://github.com/aptly-dev/aptly-fixture-pool) provide
fixtures for aptly functional tests fixtures for aptly functional tests
@@ -24,15 +24,15 @@ Please report unacceptable behavior to [team@aptly.info](mailto:team@aptly.info)
### Reporting Bugs ### Reporting Bugs
1. Please search for similar bug report in [issue tracker](https://github.com/smira/aptly/issues) 1. Please search for similar bug report in [issue tracker](https://github.com/aptly-dev/aptly/issues)
2. Please verify that bug is not fixed in latest aptly nightly ([download information](https://www.aptly.info/download/)) 2. Please verify that bug is not fixed in latest aptly nightly ([download information](https://www.aptly.info/download/))
3. Steps to reproduce increases chances for bug to be fixed quickly. If possible, submit PR with new functional test which fails. 3. Steps to reproduce increases chances for bug to be fixed quickly. If possible, submit PR with new functional test which fails.
4. If bug is reproducible with specific package, please provide link to package file. 4. If bug is reproducible with specific package, please provide link to package file.
5. Open issue at [GitHub](https://github.com/smira/aptly/issues) 5. Open issue at [GitHub](https://github.com/aptly-dev/aptly/issues)
### Suggesting Enhancements ### Suggesting Enhancements
1. Please search [issue tracker](https://github.com/smira/aptly/issues) for similar feature requests. 1. Please search [issue tracker](https://github.com/aptly-dev/aptly/issues) for similar feature requests.
2. Describe why enhancement is important to you. 2. Describe why enhancement is important to you.
3. Include any additional details or implementation details. 3. Include any additional details or implementation details.
@@ -45,7 +45,7 @@ There are two kinds of documentation:
Core content is mostly the same, but website contains more information, tutorials, examples. Core content is mostly the same, but website contains more information, tutorials, examples.
If you want to update `man` page, please open PR to [main aptly repo](https://github.com/smira/aptly), If you want to update `man` page, please open PR to [main aptly repo](https://github.com/aptly-dev/aptly),
details in [man page](#man-page) section. details in [man page](#man-page) section.
If you want to update website, please follow steps below: If you want to update website, please follow steps below:
@@ -88,7 +88,7 @@ As Go is using repository path in import paths, it's better to clone aptly repo
mkdir -p ~/go/src/github.com/smira mkdir -p ~/go/src/github.com/smira
cd ~/go/src/github.com/smira cd ~/go/src/github.com/smira
git clone git@github.com:smira/aptly.git git clone git@github.com:aptly-dev/aptly.git
cd aptly cd aptly
For main repo under your GitHub user and add it as another Git remote: For main repo under your GitHub user and add it as another Git remote:
+10 -10
View File
@@ -2,17 +2,17 @@
aptly aptly
===== =====
.. image:: https://api.travis-ci.org/smira/aptly.svg?branch=master .. image:: https://api.travis-ci.org/aptly-dev/aptly.svg?branch=master
:target: https://travis-ci.org/smira/aptly :target: https://travis-ci.org/aptly-dev/aptly
.. image:: https://codecov.io/gh/smira/aptly/branch/master/graph/badge.svg .. image:: https://codecov.io/gh/aptly-dev/aptly/branch/master/graph/badge.svg
:target: https://codecov.io/gh/smira/aptly :target: https://codecov.io/gh/aptly-dev/aptly
.. image:: https://badges.gitter.im/Join Chat.svg .. image:: https://badges.gitter.im/Join Chat.svg
:target: https://gitter.im/smira/aptly?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge :target: https://gitter.im/aptly-dev/aptly?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge
.. image:: http://goreportcard.com/badge/smira/aptly .. image:: http://goreportcard.com/badge/aptly-dev/aptly
:target: http://goreportcard.com/report/smira/aptly :target: http://goreportcard.com/report/aptly-dev/aptly
Aptly is a swiss army knife for Debian repository management. Aptly is a swiss army knife for Debian repository management.
@@ -66,9 +66,9 @@ Binary executables (depends almost only on libc) are available for download from
If you have Go environment set up, you can build aptly from source by running (go 1.8+ required):: If you have Go environment set up, you can build aptly from source by running (go 1.8+ required)::
mkdir -p $GOPATH/src/github.com/smira/aptly mkdir -p $GOPATH/src/github.com/aptly-dev/aptly
git clone https://github.com/smira/aptly $GOPATH/src/github.com/smira/aptly git clone https://github.com/aptly-dev/aptly $GOPATH/src/github.com/aptly-dev/aptly
cd $GOPATH/src/github.com/smira/aptly cd $GOPATH/src/github.com/aptly-dev/aptly
make install make install
Binary would be installed to ```$GOPATH/bin/aptly``. Binary would be installed to ```$GOPATH/bin/aptly``.
+1 -1
View File
@@ -10,7 +10,7 @@ import (
"strings" "strings"
"text/template" "text/template"
"github.com/smira/aptly/cmd" "github.com/aptly-dev/aptly/cmd"
"github.com/smira/commander" "github.com/smira/commander"
"github.com/smira/flag" "github.com/smira/flag"
) )
+3 -3
View File
@@ -6,10 +6,10 @@ import (
"sort" "sort"
"time" "time"
"github.com/aptly-dev/aptly/aptly"
"github.com/aptly-dev/aptly/deb"
"github.com/aptly-dev/aptly/query"
"github.com/gin-gonic/gin" "github.com/gin-gonic/gin"
"github.com/smira/aptly/aptly"
"github.com/smira/aptly/deb"
"github.com/smira/aptly/query"
) )
// Lock order acquisition (canonical): // Lock order acquisition (canonical):
+1 -1
View File
@@ -8,8 +8,8 @@ import (
"os" "os"
"os/exec" "os/exec"
"github.com/aptly-dev/aptly/deb"
"github.com/gin-gonic/gin" "github.com/gin-gonic/gin"
"github.com/smira/aptly/deb"
) )
// GET /api/graph.:ext?layout=[vertical|horizontal(default)] // GET /api/graph.:ext?layout=[vertical|horizontal(default)]
+3 -3
View File
@@ -4,10 +4,10 @@ import (
"fmt" "fmt"
"strings" "strings"
"github.com/aptly-dev/aptly/deb"
"github.com/aptly-dev/aptly/pgp"
"github.com/aptly-dev/aptly/utils"
"github.com/gin-gonic/gin" "github.com/gin-gonic/gin"
"github.com/smira/aptly/deb"
"github.com/smira/aptly/pgp"
"github.com/smira/aptly/utils"
) )
// SigningOptions is a shared between publish API GPG options structure // SigningOptions is a shared between publish API GPG options structure
+4 -4
View File
@@ -5,11 +5,11 @@ import (
"os" "os"
"path/filepath" "path/filepath"
"github.com/aptly-dev/aptly/aptly"
"github.com/aptly-dev/aptly/database"
"github.com/aptly-dev/aptly/deb"
"github.com/aptly-dev/aptly/utils"
"github.com/gin-gonic/gin" "github.com/gin-gonic/gin"
"github.com/smira/aptly/aptly"
"github.com/smira/aptly/database"
"github.com/smira/aptly/deb"
"github.com/smira/aptly/utils"
) )
// GET /api/repos // GET /api/repos
+1 -1
View File
@@ -3,8 +3,8 @@ package api
import ( import (
"net/http" "net/http"
ctx "github.com/aptly-dev/aptly/context"
"github.com/gin-gonic/gin" "github.com/gin-gonic/gin"
ctx "github.com/smira/aptly/context"
) )
var context *ctx.AptlyContext var context *ctx.AptlyContext
+2 -2
View File
@@ -3,9 +3,9 @@ package api
import ( import (
"fmt" "fmt"
"github.com/aptly-dev/aptly/database"
"github.com/aptly-dev/aptly/deb"
"github.com/gin-gonic/gin" "github.com/gin-gonic/gin"
"github.com/smira/aptly/database"
"github.com/smira/aptly/deb"
) )
// GET /api/snapshots // GET /api/snapshots
+1 -1
View File
@@ -7,7 +7,7 @@ import (
"io" "io"
"os" "os"
"github.com/smira/aptly/utils" "github.com/aptly-dev/aptly/utils"
) )
// ReadSeekerCloser = ReadSeeker + Closer // ReadSeekerCloser = ReadSeeker + Closer
+3 -3
View File
@@ -7,9 +7,9 @@ import (
"net/url" "net/url"
"os" "os"
"github.com/smira/aptly/api" "github.com/aptly-dev/aptly/api"
"github.com/smira/aptly/systemd/activation" "github.com/aptly-dev/aptly/systemd/activation"
"github.com/smira/aptly/utils" "github.com/aptly-dev/aptly/utils"
"github.com/smira/commander" "github.com/smira/commander"
"github.com/smira/flag" "github.com/smira/flag"
) )
+2 -2
View File
@@ -8,8 +8,8 @@ import (
"text/template" "text/template"
"time" "time"
"github.com/smira/aptly/aptly" "github.com/aptly-dev/aptly/aptly"
"github.com/smira/aptly/deb" "github.com/aptly-dev/aptly/deb"
"github.com/smira/commander" "github.com/smira/commander"
"github.com/smira/flag" "github.com/smira/flag"
) )
+1 -1
View File
@@ -1,7 +1,7 @@
package cmd package cmd
import ( import (
ctx "github.com/smira/aptly/context" ctx "github.com/aptly-dev/aptly/context"
"github.com/smira/flag" "github.com/smira/flag"
) )
+2 -2
View File
@@ -5,8 +5,8 @@ import (
"sort" "sort"
"strings" "strings"
"github.com/smira/aptly/deb" "github.com/aptly-dev/aptly/deb"
"github.com/smira/aptly/utils" "github.com/aptly-dev/aptly/utils"
"github.com/smira/commander" "github.com/smira/commander"
) )
+1 -1
View File
@@ -1,7 +1,7 @@
package cmd package cmd
import ( import (
"github.com/smira/aptly/database" "github.com/aptly-dev/aptly/database"
"github.com/smira/commander" "github.com/smira/commander"
) )
+2 -2
View File
@@ -12,8 +12,8 @@ import (
"strings" "strings"
"time" "time"
"github.com/smira/aptly/deb" "github.com/aptly-dev/aptly/deb"
"github.com/smira/aptly/utils" "github.com/aptly-dev/aptly/utils"
"github.com/smira/commander" "github.com/smira/commander"
) )
+1 -1
View File
@@ -3,7 +3,7 @@ package cmd
import ( import (
"strings" "strings"
"github.com/smira/aptly/pgp" "github.com/aptly-dev/aptly/pgp"
"github.com/smira/commander" "github.com/smira/commander"
"github.com/smira/flag" "github.com/smira/flag"
) )
+2 -2
View File
@@ -4,8 +4,8 @@ import (
"fmt" "fmt"
"strings" "strings"
"github.com/smira/aptly/deb" "github.com/aptly-dev/aptly/deb"
"github.com/smira/aptly/query" "github.com/aptly-dev/aptly/query"
"github.com/smira/commander" "github.com/smira/commander"
"github.com/smira/flag" "github.com/smira/flag"
) )
+2 -2
View File
@@ -3,8 +3,8 @@ package cmd
import ( import (
"fmt" "fmt"
"github.com/smira/aptly/pgp" "github.com/aptly-dev/aptly/pgp"
"github.com/smira/aptly/query" "github.com/aptly-dev/aptly/query"
"github.com/smira/commander" "github.com/smira/commander"
"github.com/smira/flag" "github.com/smira/flag"
) )
+1 -1
View File
@@ -4,7 +4,7 @@ import (
"fmt" "fmt"
"sort" "sort"
"github.com/smira/aptly/deb" "github.com/aptly-dev/aptly/deb"
"github.com/smira/commander" "github.com/smira/commander"
) )
+1 -1
View File
@@ -3,7 +3,7 @@ package cmd
import ( import (
"fmt" "fmt"
"github.com/smira/aptly/deb" "github.com/aptly-dev/aptly/deb"
"github.com/smira/commander" "github.com/smira/commander"
) )
+2 -2
View File
@@ -4,8 +4,8 @@ import (
"fmt" "fmt"
"strings" "strings"
"github.com/smira/aptly/deb" "github.com/aptly-dev/aptly/deb"
"github.com/smira/aptly/utils" "github.com/aptly-dev/aptly/utils"
"github.com/smira/commander" "github.com/smira/commander"
"github.com/smira/flag" "github.com/smira/flag"
) )
+4 -4
View File
@@ -5,10 +5,10 @@ import (
"strings" "strings"
"sync" "sync"
"github.com/smira/aptly/aptly" "github.com/aptly-dev/aptly/aptly"
"github.com/smira/aptly/deb" "github.com/aptly-dev/aptly/deb"
"github.com/smira/aptly/query" "github.com/aptly-dev/aptly/query"
"github.com/smira/aptly/utils" "github.com/aptly-dev/aptly/utils"
"github.com/smira/commander" "github.com/smira/commander"
"github.com/smira/flag" "github.com/smira/flag"
) )
+2 -2
View File
@@ -3,8 +3,8 @@ package cmd
import ( import (
"fmt" "fmt"
"github.com/smira/aptly/deb" "github.com/aptly-dev/aptly/deb"
"github.com/smira/aptly/query" "github.com/aptly-dev/aptly/query"
"github.com/smira/commander" "github.com/smira/commander"
"github.com/smira/flag" "github.com/smira/flag"
) )
+3 -3
View File
@@ -5,9 +5,9 @@ import (
"fmt" "fmt"
"os" "os"
"github.com/smira/aptly/aptly" "github.com/aptly-dev/aptly/aptly"
"github.com/smira/aptly/deb" "github.com/aptly-dev/aptly/deb"
"github.com/smira/aptly/query" "github.com/aptly-dev/aptly/query"
"github.com/smira/commander" "github.com/smira/commander"
"github.com/smira/flag" "github.com/smira/flag"
) )
+1 -1
View File
@@ -1,7 +1,7 @@
package cmd package cmd
import ( import (
"github.com/smira/aptly/pgp" "github.com/aptly-dev/aptly/pgp"
"github.com/smira/commander" "github.com/smira/commander"
"github.com/smira/flag" "github.com/smira/flag"
) )
+1 -1
View File
@@ -3,7 +3,7 @@ package cmd
import ( import (
"fmt" "fmt"
"github.com/smira/aptly/deb" "github.com/aptly-dev/aptly/deb"
"github.com/smira/commander" "github.com/smira/commander"
) )
+1 -1
View File
@@ -4,7 +4,7 @@ import (
"fmt" "fmt"
"sort" "sort"
"github.com/smira/aptly/deb" "github.com/aptly-dev/aptly/deb"
"github.com/smira/commander" "github.com/smira/commander"
) )
+1 -1
View File
@@ -4,7 +4,7 @@ import (
"fmt" "fmt"
"strings" "strings"
"github.com/smira/aptly/deb" "github.com/aptly-dev/aptly/deb"
"github.com/smira/commander" "github.com/smira/commander"
) )
+3 -3
View File
@@ -4,9 +4,9 @@ import (
"fmt" "fmt"
"strings" "strings"
"github.com/smira/aptly/aptly" "github.com/aptly-dev/aptly/aptly"
"github.com/smira/aptly/deb" "github.com/aptly-dev/aptly/deb"
"github.com/smira/aptly/utils" "github.com/aptly-dev/aptly/utils"
"github.com/smira/commander" "github.com/smira/commander"
"github.com/smira/flag" "github.com/smira/flag"
) )
+2 -2
View File
@@ -4,8 +4,8 @@ import (
"fmt" "fmt"
"strings" "strings"
"github.com/smira/aptly/deb" "github.com/aptly-dev/aptly/deb"
"github.com/smira/aptly/utils" "github.com/aptly-dev/aptly/utils"
"github.com/smira/commander" "github.com/smira/commander"
"github.com/smira/flag" "github.com/smira/flag"
) )
+1 -1
View File
@@ -3,7 +3,7 @@ package cmd
import ( import (
"fmt" "fmt"
"github.com/smira/aptly/deb" "github.com/aptly-dev/aptly/deb"
"github.com/smira/commander" "github.com/smira/commander"
"github.com/smira/flag" "github.com/smira/flag"
) )
+3 -3
View File
@@ -4,9 +4,9 @@ import (
"fmt" "fmt"
"os" "os"
"github.com/smira/aptly/aptly" "github.com/aptly-dev/aptly/aptly"
"github.com/smira/aptly/deb" "github.com/aptly-dev/aptly/deb"
"github.com/smira/aptly/utils" "github.com/aptly-dev/aptly/utils"
"github.com/smira/commander" "github.com/smira/commander"
"github.com/smira/flag" "github.com/smira/flag"
) )
+1 -1
View File
@@ -3,7 +3,7 @@ package cmd
import ( import (
"fmt" "fmt"
"github.com/smira/aptly/deb" "github.com/aptly-dev/aptly/deb"
"github.com/smira/commander" "github.com/smira/commander"
"github.com/smira/flag" "github.com/smira/flag"
) )
+1 -1
View File
@@ -4,7 +4,7 @@ import (
"fmt" "fmt"
"github.com/AlekSi/pointer" "github.com/AlekSi/pointer"
"github.com/smira/aptly/deb" "github.com/aptly-dev/aptly/deb"
"github.com/smira/commander" "github.com/smira/commander"
"github.com/smira/flag" "github.com/smira/flag"
) )
+4 -4
View File
@@ -7,10 +7,10 @@ import (
"path/filepath" "path/filepath"
"text/template" "text/template"
"github.com/smira/aptly/aptly" "github.com/aptly-dev/aptly/aptly"
"github.com/smira/aptly/deb" "github.com/aptly-dev/aptly/deb"
"github.com/smira/aptly/query" "github.com/aptly-dev/aptly/query"
"github.com/smira/aptly/utils" "github.com/aptly-dev/aptly/utils"
"github.com/smira/commander" "github.com/smira/commander"
"github.com/smira/flag" "github.com/smira/flag"
) )
+1 -1
View File
@@ -4,7 +4,7 @@ import (
"fmt" "fmt"
"sort" "sort"
"github.com/smira/aptly/deb" "github.com/aptly-dev/aptly/deb"
"github.com/smira/commander" "github.com/smira/commander"
) )
+2 -2
View File
@@ -4,8 +4,8 @@ import (
"fmt" "fmt"
"sort" "sort"
"github.com/smira/aptly/deb" "github.com/aptly-dev/aptly/deb"
"github.com/smira/aptly/query" "github.com/aptly-dev/aptly/query"
"github.com/smira/commander" "github.com/smira/commander"
"github.com/smira/flag" "github.com/smira/flag"
) )
+2 -2
View File
@@ -3,8 +3,8 @@ package cmd
import ( import (
"fmt" "fmt"
"github.com/smira/aptly/deb" "github.com/aptly-dev/aptly/deb"
"github.com/smira/aptly/query" "github.com/aptly-dev/aptly/query"
"github.com/smira/commander" "github.com/smira/commander"
"github.com/smira/flag" "github.com/smira/flag"
) )
+1 -1
View File
@@ -3,7 +3,7 @@ package cmd
import ( import (
"fmt" "fmt"
"github.com/smira/aptly/deb" "github.com/aptly-dev/aptly/deb"
"github.com/smira/commander" "github.com/smira/commander"
) )
+1 -1
View File
@@ -4,7 +4,7 @@ import (
"fmt" "fmt"
"os" "os"
ctx "github.com/smira/aptly/context" ctx "github.com/aptly-dev/aptly/context"
"github.com/smira/commander" "github.com/smira/commander"
) )
+3 -3
View File
@@ -8,9 +8,9 @@ import (
"sort" "sort"
"strings" "strings"
"github.com/smira/aptly/aptly" "github.com/aptly-dev/aptly/aptly"
"github.com/smira/aptly/deb" "github.com/aptly-dev/aptly/deb"
"github.com/smira/aptly/utils" "github.com/aptly-dev/aptly/utils"
"github.com/smira/commander" "github.com/smira/commander"
"github.com/smira/flag" "github.com/smira/flag"
) )
+1 -1
View File
@@ -3,7 +3,7 @@ package cmd
import ( import (
"fmt" "fmt"
"github.com/smira/aptly/deb" "github.com/aptly-dev/aptly/deb"
"github.com/smira/commander" "github.com/smira/commander"
) )
+2 -2
View File
@@ -5,8 +5,8 @@ import (
"sort" "sort"
"strings" "strings"
"github.com/smira/aptly/deb" "github.com/aptly-dev/aptly/deb"
"github.com/smira/aptly/query" "github.com/aptly-dev/aptly/query"
"github.com/smira/commander" "github.com/smira/commander"
"github.com/smira/flag" "github.com/smira/flag"
) )
+1 -1
View File
@@ -3,7 +3,7 @@ package cmd
import ( import (
"fmt" "fmt"
"github.com/smira/aptly/deb" "github.com/aptly-dev/aptly/deb"
"github.com/smira/commander" "github.com/smira/commander"
) )
+1 -1
View File
@@ -4,7 +4,7 @@ import (
"fmt" "fmt"
"strings" "strings"
"github.com/smira/aptly/deb" "github.com/aptly-dev/aptly/deb"
"github.com/smira/commander" "github.com/smira/commander"
) )
+2 -2
View File
@@ -5,8 +5,8 @@ import (
"sort" "sort"
"strings" "strings"
"github.com/smira/aptly/deb" "github.com/aptly-dev/aptly/deb"
"github.com/smira/aptly/query" "github.com/aptly-dev/aptly/query"
"github.com/smira/commander" "github.com/smira/commander"
"github.com/smira/flag" "github.com/smira/flag"
) )
+1 -1
View File
@@ -3,7 +3,7 @@ package cmd
import ( import (
"fmt" "fmt"
"github.com/smira/aptly/deb" "github.com/aptly-dev/aptly/deb"
"github.com/smira/commander" "github.com/smira/commander"
) )
+2 -2
View File
@@ -4,8 +4,8 @@ import (
"fmt" "fmt"
"sort" "sort"
"github.com/smira/aptly/deb" "github.com/aptly-dev/aptly/deb"
"github.com/smira/aptly/query" "github.com/aptly-dev/aptly/query"
"github.com/smira/commander" "github.com/smira/commander"
"github.com/smira/flag" "github.com/smira/flag"
) )
+1 -1
View File
@@ -3,7 +3,7 @@ package cmd
import ( import (
"fmt" "fmt"
"github.com/smira/aptly/deb" "github.com/aptly-dev/aptly/deb"
"github.com/smira/commander" "github.com/smira/commander"
"github.com/smira/flag" "github.com/smira/flag"
) )
+1 -1
View File
@@ -4,7 +4,7 @@ import (
"fmt" "fmt"
"sort" "sort"
"github.com/smira/aptly/deb" "github.com/aptly-dev/aptly/deb"
"github.com/smira/commander" "github.com/smira/commander"
) )
+1 -1
View File
@@ -3,7 +3,7 @@ package cmd
import ( import (
"fmt" "fmt"
"github.com/smira/aptly/aptly" "github.com/aptly-dev/aptly/aptly"
"github.com/smira/commander" "github.com/smira/commander"
) )
+1 -1
View File
@@ -5,8 +5,8 @@ import (
"os" "os"
"strings" "strings"
"github.com/aptly-dev/aptly/aptly"
"github.com/cheggaaa/pb" "github.com/cheggaaa/pb"
"github.com/smira/aptly/aptly"
"github.com/wsxiaoys/terminal/color" "github.com/wsxiaoys/terminal/color"
) )
+10 -10
View File
@@ -14,16 +14,16 @@ import (
"sync" "sync"
"time" "time"
"github.com/smira/aptly/aptly" "github.com/aptly-dev/aptly/aptly"
"github.com/smira/aptly/console" "github.com/aptly-dev/aptly/console"
"github.com/smira/aptly/database" "github.com/aptly-dev/aptly/database"
"github.com/smira/aptly/deb" "github.com/aptly-dev/aptly/deb"
"github.com/smira/aptly/files" "github.com/aptly-dev/aptly/files"
"github.com/smira/aptly/http" "github.com/aptly-dev/aptly/http"
"github.com/smira/aptly/pgp" "github.com/aptly-dev/aptly/pgp"
"github.com/smira/aptly/s3" "github.com/aptly-dev/aptly/s3"
"github.com/smira/aptly/swift" "github.com/aptly-dev/aptly/swift"
"github.com/smira/aptly/utils" "github.com/aptly-dev/aptly/utils"
"github.com/smira/commander" "github.com/smira/commander"
"github.com/smira/flag" "github.com/smira/flag"
) )
+1 -1
View File
@@ -77,7 +77,7 @@ func (s *AptlyContextSuite) SetUpTest(c *C) {
} }
func (s *AptlyContextSuite) TestGetPublishedStorageBadFS(c *C) { func (s *AptlyContextSuite) TestGetPublishedStorageBadFS(c *C) {
// https://github.com/smira/aptly/issues/711 // https://github.com/aptly-dev/aptly/issues/711
// This will fail on account of us not having a config, so the // This will fail on account of us not having a config, so the
// storage never exists. // storage never exists.
c.Assert(func() { s.context.GetPublishedStorage("filesystem:fuji") }, c.Assert(func() { s.context.GetPublishedStorage("filesystem:fuji") },
+3 -3
View File
@@ -9,9 +9,9 @@ import (
"sort" "sort"
"strings" "strings"
"github.com/smira/aptly/aptly" "github.com/aptly-dev/aptly/aptly"
"github.com/smira/aptly/pgp" "github.com/aptly-dev/aptly/pgp"
"github.com/smira/aptly/utils" "github.com/aptly-dev/aptly/utils"
) )
// Changes is a result of .changes file parsing // Changes is a result of .changes file parsing
+3 -3
View File
@@ -3,9 +3,9 @@ package deb
import ( import (
"bytes" "bytes"
"github.com/smira/aptly/aptly" "github.com/aptly-dev/aptly/aptly"
"github.com/smira/aptly/database" "github.com/aptly-dev/aptly/database"
"github.com/smira/aptly/utils" "github.com/aptly-dev/aptly/utils"
"github.com/ugorji/go/codec" "github.com/ugorji/go/codec"
) )
+2 -2
View File
@@ -1,8 +1,8 @@
package deb package deb
import ( import (
"github.com/smira/aptly/database" "github.com/aptly-dev/aptly/database"
"github.com/smira/aptly/utils" "github.com/aptly-dev/aptly/utils"
. "gopkg.in/check.v1" . "gopkg.in/check.v1"
) )
+1 -1
View File
@@ -3,7 +3,7 @@ package deb
import ( import (
"sync" "sync"
"github.com/smira/aptly/database" "github.com/aptly-dev/aptly/database"
) )
// CollectionFactory is a single place to generate all desired collections // CollectionFactory is a single place to generate all desired collections
+1 -1
View File
@@ -6,7 +6,7 @@ import (
"fmt" "fmt"
"io" "io"
"github.com/smira/aptly/database" "github.com/aptly-dev/aptly/database"
"github.com/smira/go-uuid/uuid" "github.com/smira/go-uuid/uuid"
) )
+1 -1
View File
@@ -14,7 +14,7 @@ import (
"github.com/mkrautz/goar" "github.com/mkrautz/goar"
"github.com/pkg/errors" "github.com/pkg/errors"
"github.com/smira/aptly/pgp" "github.com/aptly-dev/aptly/pgp"
"github.com/smira/go-xz" "github.com/smira/go-xz"
"github.com/smira/lzma" "github.com/smira/lzma"
) )
+1 -1
View File
@@ -5,7 +5,7 @@ import (
"path/filepath" "path/filepath"
"runtime" "runtime"
"github.com/smira/aptly/pgp" "github.com/aptly-dev/aptly/pgp"
. "gopkg.in/check.v1" . "gopkg.in/check.v1"
) )
+3 -3
View File
@@ -6,9 +6,9 @@ import (
"sort" "sort"
"strings" "strings"
"github.com/smira/aptly/aptly" "github.com/aptly-dev/aptly/aptly"
"github.com/smira/aptly/pgp" "github.com/aptly-dev/aptly/pgp"
"github.com/smira/aptly/utils" "github.com/aptly-dev/aptly/utils"
) )
// CollectPackageFiles walks filesystem collecting all candidates for package files // CollectPackageFiles walks filesystem collecting all candidates for package files
+3 -3
View File
@@ -8,9 +8,9 @@ import (
"path/filepath" "path/filepath"
"strings" "strings"
"github.com/smira/aptly/aptly" "github.com/aptly-dev/aptly/aptly"
"github.com/smira/aptly/pgp" "github.com/aptly-dev/aptly/pgp"
"github.com/smira/aptly/utils" "github.com/aptly-dev/aptly/utils"
) )
type indexFiles struct { type indexFiles struct {
+2 -2
View File
@@ -5,8 +5,8 @@ import (
"sort" "sort"
"strings" "strings"
"github.com/smira/aptly/aptly" "github.com/aptly-dev/aptly/aptly"
"github.com/smira/aptly/utils" "github.com/aptly-dev/aptly/utils"
) )
// Dependency options // Dependency options
+1 -1
View File
@@ -6,7 +6,7 @@ import (
"log" "log"
"sync" "sync"
"github.com/smira/aptly/database" "github.com/aptly-dev/aptly/database"
"github.com/smira/go-uuid/uuid" "github.com/smira/go-uuid/uuid"
"github.com/ugorji/go/codec" "github.com/ugorji/go/codec"
) )
+1 -1
View File
@@ -3,7 +3,7 @@ package deb
import ( import (
"errors" "errors"
"github.com/smira/aptly/database" "github.com/aptly-dev/aptly/database"
. "gopkg.in/check.v1" . "gopkg.in/check.v1"
) )
+2 -2
View File
@@ -7,8 +7,8 @@ import (
"strconv" "strconv"
"strings" "strings"
"github.com/smira/aptly/aptly" "github.com/aptly-dev/aptly/aptly"
"github.com/smira/aptly/utils" "github.com/aptly-dev/aptly/utils"
) )
// Package is single instance of Debian package // Package is single instance of Debian package
+2 -2
View File
@@ -5,8 +5,8 @@ import (
"fmt" "fmt"
"path/filepath" "path/filepath"
"github.com/smira/aptly/aptly" "github.com/aptly-dev/aptly/aptly"
"github.com/smira/aptly/database" "github.com/aptly-dev/aptly/database"
"github.com/ugorji/go/codec" "github.com/ugorji/go/codec"
) )
+2 -2
View File
@@ -1,8 +1,8 @@
package deb package deb
import ( import (
"github.com/smira/aptly/database" "github.com/aptly-dev/aptly/database"
"github.com/smira/aptly/utils" "github.com/aptly-dev/aptly/utils"
. "gopkg.in/check.v1" . "gopkg.in/check.v1"
) )
+2 -2
View File
@@ -9,8 +9,8 @@ import (
"strconv" "strconv"
"strings" "strings"
"github.com/smira/aptly/aptly" "github.com/aptly-dev/aptly/aptly"
"github.com/smira/aptly/utils" "github.com/aptly-dev/aptly/utils"
) )
// PackageFile is a single file entry in package // PackageFile is a single file entry in package
+3 -3
View File
@@ -4,9 +4,9 @@ import (
"io/ioutil" "io/ioutil"
"path/filepath" "path/filepath"
"github.com/smira/aptly/aptly" "github.com/aptly-dev/aptly/aptly"
"github.com/smira/aptly/files" "github.com/aptly-dev/aptly/files"
"github.com/smira/aptly/utils" "github.com/aptly-dev/aptly/utils"
. "gopkg.in/check.v1" . "gopkg.in/check.v1"
) )
+1 -1
View File
@@ -6,7 +6,7 @@ import (
"path/filepath" "path/filepath"
"regexp" "regexp"
"github.com/smira/aptly/files" "github.com/aptly-dev/aptly/files"
. "gopkg.in/check.v1" . "gopkg.in/check.v1"
) )
+1 -1
View File
@@ -6,7 +6,7 @@ import (
"regexp" "regexp"
"strings" "strings"
"github.com/smira/aptly/utils" "github.com/aptly-dev/aptly/utils"
) )
var ppaRegexp = regexp.MustCompile("^ppa:([^/]+)/(.+)$") var ppaRegexp = regexp.MustCompile("^ppa:([^/]+)/(.+)$")
+1 -1
View File
@@ -1,7 +1,7 @@
package deb package deb
import ( import (
"github.com/smira/aptly/utils" "github.com/aptly-dev/aptly/utils"
. "gopkg.in/check.v1" . "gopkg.in/check.v1"
) )
+4 -4
View File
@@ -17,10 +17,10 @@ import (
"github.com/smira/go-uuid/uuid" "github.com/smira/go-uuid/uuid"
"github.com/ugorji/go/codec" "github.com/ugorji/go/codec"
"github.com/smira/aptly/aptly" "github.com/aptly-dev/aptly/aptly"
"github.com/smira/aptly/database" "github.com/aptly-dev/aptly/database"
"github.com/smira/aptly/pgp" "github.com/aptly-dev/aptly/pgp"
"github.com/smira/aptly/utils" "github.com/aptly-dev/aptly/utils"
) )
type repoSourceItem struct { type repoSourceItem struct {
+3 -3
View File
@@ -8,9 +8,9 @@ import (
"os" "os"
"path/filepath" "path/filepath"
"github.com/smira/aptly/aptly" "github.com/aptly-dev/aptly/aptly"
"github.com/smira/aptly/database" "github.com/aptly-dev/aptly/database"
"github.com/smira/aptly/files" "github.com/aptly-dev/aptly/files"
"github.com/ugorji/go/codec" "github.com/ugorji/go/codec"
. "gopkg.in/check.v1" . "gopkg.in/check.v1"
+1 -1
View File
@@ -3,7 +3,7 @@ package deb
import ( import (
"errors" "errors"
"github.com/smira/aptly/database" "github.com/aptly-dev/aptly/database"
. "gopkg.in/check.v1" . "gopkg.in/check.v1"
) )
+5 -5
View File
@@ -15,11 +15,11 @@ import (
"syscall" "syscall"
"time" "time"
"github.com/smira/aptly/aptly" "github.com/aptly-dev/aptly/aptly"
"github.com/smira/aptly/database" "github.com/aptly-dev/aptly/database"
"github.com/smira/aptly/http" "github.com/aptly-dev/aptly/http"
"github.com/smira/aptly/pgp" "github.com/aptly-dev/aptly/pgp"
"github.com/smira/aptly/utils" "github.com/aptly-dev/aptly/utils"
"github.com/smira/go-uuid/uuid" "github.com/smira/go-uuid/uuid"
"github.com/ugorji/go/codec" "github.com/ugorji/go/codec"
) )
+7 -7
View File
@@ -7,13 +7,13 @@ import (
"os" "os"
"sort" "sort"
"github.com/smira/aptly/aptly" "github.com/aptly-dev/aptly/aptly"
"github.com/smira/aptly/console" "github.com/aptly-dev/aptly/console"
"github.com/smira/aptly/database" "github.com/aptly-dev/aptly/database"
"github.com/smira/aptly/files" "github.com/aptly-dev/aptly/files"
"github.com/smira/aptly/http" "github.com/aptly-dev/aptly/http"
"github.com/smira/aptly/pgp" "github.com/aptly-dev/aptly/pgp"
"github.com/smira/aptly/utils" "github.com/aptly-dev/aptly/utils"
. "gopkg.in/check.v1" . "gopkg.in/check.v1"
) )
+2 -2
View File
@@ -10,8 +10,8 @@ import (
"sync" "sync"
"time" "time"
"github.com/smira/aptly/database" "github.com/aptly-dev/aptly/database"
"github.com/smira/aptly/utils" "github.com/aptly-dev/aptly/utils"
"github.com/smira/go-uuid/uuid" "github.com/smira/go-uuid/uuid"
"github.com/ugorji/go/codec" "github.com/ugorji/go/codec"
) )
+1 -1
View File
@@ -3,7 +3,7 @@ package deb
import ( import (
"errors" "errors"
"github.com/smira/aptly/database" "github.com/aptly-dev/aptly/database"
. "gopkg.in/check.v1" . "gopkg.in/check.v1"
) )
+2 -2
View File
@@ -6,8 +6,8 @@ import (
"os" "os"
"github.com/DisposaBoy/JsonConfigReader" "github.com/DisposaBoy/JsonConfigReader"
"github.com/smira/aptly/pgp" "github.com/aptly-dev/aptly/pgp"
"github.com/smira/aptly/utils" "github.com/aptly-dev/aptly/utils"
) )
// UploadersRule is single rule of format: what packages can group or key upload // UploadersRule is single rule of format: what packages can group or key upload
+1 -1
View File
@@ -1,7 +1,7 @@
package deb package deb
import ( import (
"github.com/smira/aptly/pgp" "github.com/aptly-dev/aptly/pgp"
. "gopkg.in/check.v1" . "gopkg.in/check.v1"
) )
+2 -2
View File
@@ -1,8 +1,8 @@
package files package files
import ( import (
"github.com/smira/aptly/aptly" "github.com/aptly-dev/aptly/aptly"
"github.com/smira/aptly/utils" "github.com/aptly-dev/aptly/utils"
) )
type mockChecksumStorage struct { type mockChecksumStorage struct {
+2 -2
View File
@@ -11,8 +11,8 @@ import (
"github.com/smira/go-uuid/uuid" "github.com/smira/go-uuid/uuid"
"github.com/smira/aptly/aptly" "github.com/aptly-dev/aptly/aptly"
"github.com/smira/aptly/utils" "github.com/aptly-dev/aptly/utils"
) )
// PackagePool is deduplicated storage of package files on filesystem // PackagePool is deduplicated storage of package files on filesystem
+2 -2
View File
@@ -8,8 +8,8 @@ import (
"runtime" "runtime"
"syscall" "syscall"
"github.com/smira/aptly/aptly" "github.com/aptly-dev/aptly/aptly"
"github.com/smira/aptly/utils" "github.com/aptly-dev/aptly/utils"
. "gopkg.in/check.v1" . "gopkg.in/check.v1"
) )
+2 -2
View File
@@ -8,8 +8,8 @@ import (
"strings" "strings"
"syscall" "syscall"
"github.com/smira/aptly/aptly" "github.com/aptly-dev/aptly/aptly"
"github.com/smira/aptly/utils" "github.com/aptly-dev/aptly/utils"
) )
// PublishedStorage abstract file system with public dirs (published repos) // PublishedStorage abstract file system with public dirs (published repos)
+2 -2
View File
@@ -6,8 +6,8 @@ import (
"path/filepath" "path/filepath"
"syscall" "syscall"
"github.com/smira/aptly/aptly" "github.com/aptly-dev/aptly/aptly"
"github.com/smira/aptly/utils" "github.com/aptly-dev/aptly/utils"
. "gopkg.in/check.v1" . "gopkg.in/check.v1"
) )
+2 -2
View File
@@ -10,8 +10,8 @@ import (
"os" "os"
"strings" "strings"
"github.com/smira/aptly/aptly" "github.com/aptly-dev/aptly/aptly"
"github.com/smira/aptly/utils" "github.com/aptly-dev/aptly/utils"
xz "github.com/smira/go-xz" xz "github.com/smira/go-xz"
) )
+1 -1
View File
@@ -6,7 +6,7 @@ import (
"io" "io"
"net/url" "net/url"
"github.com/smira/aptly/utils" "github.com/aptly-dev/aptly/utils"
. "gopkg.in/check.v1" . "gopkg.in/check.v1"
) )
+2 -2
View File
@@ -12,10 +12,10 @@ import (
"syscall" "syscall"
"time" "time"
"github.com/aptly-dev/aptly/aptly"
"github.com/aptly-dev/aptly/utils"
"github.com/mxk/go-flowrate/flowrate" "github.com/mxk/go-flowrate/flowrate"
"github.com/pkg/errors" "github.com/pkg/errors"
"github.com/smira/aptly/aptly"
"github.com/smira/aptly/utils"
"github.com/smira/go-ftp-protocol/protocol" "github.com/smira/go-ftp-protocol/protocol"
) )
+3 -3
View File
@@ -8,9 +8,9 @@ import (
"net/http" "net/http"
"os" "os"
"github.com/smira/aptly/aptly" "github.com/aptly-dev/aptly/aptly"
"github.com/smira/aptly/console" "github.com/aptly-dev/aptly/console"
"github.com/smira/aptly/utils" "github.com/aptly-dev/aptly/utils"
. "gopkg.in/check.v1" . "gopkg.in/check.v1"
) )
+2 -2
View File
@@ -7,8 +7,8 @@ import (
"os" "os"
"path/filepath" "path/filepath"
"github.com/smira/aptly/aptly" "github.com/aptly-dev/aptly/aptly"
"github.com/smira/aptly/utils" "github.com/aptly-dev/aptly/utils"
) )
type expectedRequest struct { type expectedRequest struct {
+2 -2
View File
@@ -6,8 +6,8 @@ import (
"os" "os"
"path/filepath" "path/filepath"
"github.com/smira/aptly/aptly" "github.com/aptly-dev/aptly/aptly"
"github.com/smira/aptly/utils" "github.com/aptly-dev/aptly/utils"
) )
// DownloadTemp starts new download to temporary file and returns File // DownloadTemp starts new download to temporary file and returns File
+1 -1
View File
@@ -3,7 +3,7 @@ package http
import ( import (
"os" "os"
"github.com/smira/aptly/utils" "github.com/aptly-dev/aptly/utils"
. "gopkg.in/check.v1" . "gopkg.in/check.v1"
) )
+2 -2
View File
@@ -5,8 +5,8 @@ import (
"os" "os"
"time" "time"
"github.com/smira/aptly/aptly" "github.com/aptly-dev/aptly/aptly"
"github.com/smira/aptly/cmd" "github.com/aptly-dev/aptly/cmd"
) )
// Version variable, filled in at link time // Version variable, filled in at link time
+1 -1
View File
@@ -2,7 +2,7 @@
package query package query
import ( import (
"github.com/smira/aptly/deb" "github.com/aptly-dev/aptly/deb"
) )
/* /*
+1 -1
View File
@@ -7,7 +7,7 @@ import (
"unicode" "unicode"
"unicode/utf8" "unicode/utf8"
"github.com/smira/aptly/deb" "github.com/aptly-dev/aptly/deb"
) )
type parser struct { type parser struct {

Some files were not shown because too many files have changed in this diff Show More