Skip to content

Commit d165cd1

Browse files
committed
move repositories
1 parent b082a5f commit d165cd1

File tree

13 files changed

+32
-32
lines changed

13 files changed

+32
-32
lines changed

.goreleaser.yaml

+9-9
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ builds:
88
- -trimpath
99
ldflags:
1010
- -s -w
11-
- -X github.com/dmke/texd.version={{ .Version }}
12-
- -X github.com/dmke/texd.commit={{ .Commit }}
13-
- -X github.com/dmke/texd.commitat={{ .CommitDate }}
14-
- -X github.com/dmke/texd.buildat={{ .Date }}
11+
- -X github.com/digineo/texd.version={{ .Version }}
12+
- -X github.com/digineo/texd.commit={{ .Commit }}
13+
- -X github.com/digineo/texd.commitat={{ .CommitDate }}
14+
- -X github.com/digineo/texd.buildat={{ .Date }}
1515
env:
1616
- CGO_ENABLED=0
1717
goos:
@@ -27,8 +27,8 @@ archives:
2727
nfpms:
2828
- package_name: texd
2929
vendor: Dominik Menke
30-
homepage: https://github.com/dmke/texd
31-
maintainer: Dominik Menke <[email protected]>
30+
homepage: https://github.com/digineo/texd
31+
maintainer: Dominik Menke <[email protected]>
3232
description: |-
3333
texd wraps a local TeX installion into a web service.
3434
Alternatively, texd executes each compilation job in an isolated
@@ -52,9 +52,9 @@ dockers:
5252
- goos: linux
5353
goarch: amd64
5454
image_templates:
55-
- dmke/texd:latest
56-
- dmke/texd:{{ .Tag }}
57-
- dmke/texd:v{{ .Major }}
55+
- digineogmbh/texd:latest
56+
- digineogmbh/texd:{{ .Tag }}
57+
- digineogmbh/texd:v{{ .Major }}
5858
build_flag_templates:
5959
- "--pull"
6060
- "--label=org.opencontainers.image.created={{ .Date }}"

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ MAKEFLAGS += --no-print-directory
22

33
TARGET = texd
44
LDFLAGS = -s -w \
5-
-X 'github.com/dmke/texd.version=$(shell git describe --tags --always --dirty)' \
6-
-X 'github.com/dmke/texd.commitdate=$(shell git show -s --format=%cI HEAD)' \
7-
-X 'github.com/dmke/texd.builddate=$(shell date --iso-8601=seconds)'
5+
-X 'github.com/digineo/texd.version=$(shell git describe --tags --always --dirty)' \
6+
-X 'github.com/digineo/texd.commitdate=$(shell git show -s --format=%cI HEAD)' \
7+
-X 'github.com/digineo/texd.builddate=$(shell date --iso-8601=seconds)'
88
GOFLAGS = -trimpath -ldflags="$(LDFLAGS)"
99

1010
## help (prints target names with trailing "## comment")

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -78,14 +78,14 @@ viable alternative to the local mode. In fact, this mode is functionally equival
7878
To run texd as Docker service, use this command:
7979

8080
```console
81-
$ docker run --rm -t -p localhost:2201:2201 dmke/texd:latest
81+
$ docker run --rm -t -p localhost:2201:2201 digineogmbh/texd:latest
8282
```
8383

8484
When using Gitlab CI, you can add this line to your `.gitlab-ci.yml`:
8585

8686
```yml
8787
services:
88-
- name: dmke/texd:latest
88+
- name: digineogmbh/texd:latest
8989
alias: texd
9090

9191
variables:
@@ -103,7 +103,7 @@ Calling texd with options works in any mode; these commands are equivalent:
103103
```console
104104
$ texd -h
105105
$ texd texlive/texlive:latest -h
106-
$ docker run --rm -t dmke/texd:latest -h
106+
$ docker run --rm -t digineogmbh/texd:latest -h
107107
```
108108

109109
- `--help`, `-h`
@@ -504,7 +504,7 @@ Of course, this project was not created in a void, other solutions exist as well
504504

505505
This project is in its early stage.
506506

507-
Feel free to report bugs and feature request to <https://github.com/dmke/texd/issues>.
507+
Feel free to report bugs and feature request to <https://github.com/digineo/texd/issues>.
508508

509509
Pull requests are welcome, even minor ones for typo fixes. Before you start on a larger feature,
510510
please create a proposal (in form of an issue) first.

cmd/texd/main.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ import (
1111
"sync"
1212
"time"
1313

14-
"github.com/dmke/texd"
15-
"github.com/dmke/texd/exec"
16-
"github.com/dmke/texd/service"
17-
"github.com/dmke/texd/tex"
14+
"github.com/digineo/texd"
15+
"github.com/digineo/texd/exec"
16+
"github.com/digineo/texd/service"
17+
"github.com/digineo/texd/tex"
1818
flag "github.com/spf13/pflag"
1919
)
2020

debian/texd.service

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[Unit]
22
Description=texd - TeX web service
3-
Documentation=https://github.com/dmke/texd
3+
Documentation=https://github.com/digineo/texd
44
After=network.target
55

66
[Service]

exec/docker.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package exec
33
import (
44
"context"
55

6-
"github.com/dmke/texd/tex"
6+
"github.com/digineo/texd/tex"
77
)
88

99
type dockerExec struct {

exec/exec.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package exec
33
import (
44
"context"
55

6-
"github.com/dmke/texd/tex"
6+
"github.com/digineo/texd/tex"
77
)
88

99
type Exec interface {

exec/local.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"context"
66
"os/exec"
77

8-
"github.com/dmke/texd/tex"
8+
"github.com/digineo/texd/tex"
99
)
1010

1111
type localExec struct {

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/dmke/texd
1+
module github.com/digineo/texd
22

33
go 1.17
44

service/jobs.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"context"
55
"time"
66

7-
"github.com/dmke/texd/tex"
7+
"github.com/digineo/texd/tex"
88
)
99

1010
func (svc *service) acquire(ctx context.Context) error {

service/renderer.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"log"
99
"net/http"
1010

11-
"github.com/dmke/texd/tex"
11+
"github.com/digineo/texd/tex"
1212
)
1313

1414
func (svc *service) Close() {

service/service.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ import (
99
"os"
1010
"time"
1111

12-
"github.com/dmke/texd/exec"
13-
"github.com/dmke/texd/requestid"
14-
"github.com/dmke/texd/tex"
12+
"github.com/digineo/texd/exec"
13+
"github.com/digineo/texd/requestid"
14+
"github.com/digineo/texd/tex"
1515
"github.com/gorilla/handlers"
1616
"github.com/gorilla/mux"
1717
)

service/status.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"encoding/json"
55
"net/http"
66

7-
"github.com/dmke/texd"
8-
"github.com/dmke/texd/tex"
7+
"github.com/digineo/texd"
8+
"github.com/digineo/texd/tex"
99
)
1010

1111
type Status struct {

0 commit comments

Comments
 (0)