Skip to content

Commit 0f18a37

Browse files
committed
remove deadname
1 parent 52eb517 commit 0f18a37

File tree

10 files changed

+19
-17
lines changed

10 files changed

+19
-17
lines changed

build.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import (
1919

2020
"path"
2121

22-
ll "github.com/ewen-lbh/label-logger-go"
22+
ll "github.com/gwennlbh/label-logger-go"
2323
jsoniter "github.com/json-iterator/go"
2424
)
2525

@@ -631,7 +631,7 @@ func (ctx *RunContext) DescriptionFilename(databaseDirectory string, workID stri
631631
}
632632

633633
// Build builds a single work given the database & output folders, as wells as a work ID.
634-
// BuiltAt is set and DescriptionHash are set.
634+
// BuiltAt and DescriptionHash are set.
635635
func (ctx *RunContext) Build(descriptionRaw string, outputFilename string, workID string) (work Work, usedCache bool, err error) {
636636
hash := md5.Sum([]byte(descriptionRaw))
637637
newDescriptionHash := base64.StdEncoding.EncodeToString(hash[:])

cmd/exporters.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
ortfodb "github.com/ortfo/db"
1414
"github.com/spf13/cobra"
1515
"github.com/spf13/pflag"
16-
ll "github.com/ewen-lbh/label-logger-go"
16+
ll "github.com/gwennlbh/label-logger-go"
1717
)
1818

1919
var exportersCmd = &cobra.Command{

configuration.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"path/filepath"
77
"strings"
88

9-
ll "github.com/ewen-lbh/label-logger-go"
9+
ll "github.com/gwennlbh/label-logger-go"
1010
jsoniter "github.com/json-iterator/go"
1111
"github.com/mitchellh/go-homedir"
1212
"github.com/xeipuuv/gojsonschema"

default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ ortfodb = buildGoModule rec {
1515
description = "A readable, easy and enjoyable way to manage portfolio databases using directories and text files.";
1616
homepage = "https://ortfo.org";
1717
license = licenses.mit;
18-
maintainers = with maintainers; [ ewen-lbh ];
18+
maintainers = with maintainers; [ gwennlbh ];
1919
}
2020
};

docs/building.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,5 +102,5 @@ Wanna integrate ortfo/db with a static site generator?
102102
: See the [Static site generator exporters](/db/exporters/static-site-generators.md)
103103

104104
Curious about how ortfo/db is used to actually make a portfolio site?
105-
: Check out [the repository](https://github.com/ewen-lbh/portfolio) for [my own portfolio](https://ewen.works), which is (of course) built with ortfo/db.
105+
: Check out [the repository](https://github.com/gwennlbh/portfolio) for [my own portfolio](https://ewen.works), which is (of course) built with ortfo/db.
106106
: You can also see how [net7](https://github.com/inp-net) uses ortfo/db to keep their [projects page](https://net7.dev/realisation.html) up to date: see [the repository](https://git.inpt.fr/net7/website/-/tree/master?ref_type=heads) (warning: french ahead)

docs/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ go install github.com/ortfo/db/cmd@latest
143143

144144
#### Steps
145145

146-
1. Clone the repository: `git clone https://github.com/ewen-lbh/portfoliodb`
146+
1. Clone the repository: `git clone https://github.com/gwennlbh/portfoliodb`
147147
2. `cd` into it: `cd portfoliodb`
148148
3. Compile & install in `~/.local/bin/` `just install`... or simply build a binary to your working directory: `just build`.
149149

examples/1/in/spotifydash/portfolio/description.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ wip: yes
88

99
:: fr
1010

11-
[Code source](https://github.com/ewen-lbh/spotifydash)
11+
[Code source](https://github.com/gwennlbh/spotifydash)
1212

1313
![une capture d'écran de l'application](../screen.png)
1414

1515
:: en
1616

17-
[Source code](https://github.com/ewen-lbh/spotifydash)
17+
[Source code](https://github.com/gwennlbh/spotifydash)
1818

1919
![a screenshot of the app](../screen.png)

examples/1/out/database.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,15 +88,15 @@
8888
"id": "source-code",
8989
"name": "Source code",
9090
"title": "",
91-
"url": "https://github.com/ewen-lbh/spotifydash"
91+
"url": "https://github.com/gwennlbh/spotifydash"
9292
}
9393
],
9494
"fr": [
9595
{
9696
"id": "code-source",
9797
"name": "Code source",
9898
"title": "",
99-
"url": "https://github.com/ewen-lbh/spotifydash"
99+
"url": "https://github.com/gwennlbh/spotifydash"
100100
}
101101
]
102102
},

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,15 @@ module github.com/ortfo/db
33
go 1.23.2
44

55
require (
6+
al.essio.dev/pkg/shellescape v1.6.0
67
github.com/EdlinOrg/prominentcolor v1.0.0
78
github.com/JohannesKaufmann/html-to-markdown v1.5.0
89
github.com/anaskhan96/soup v1.2.5
910
github.com/charmbracelet/huh v0.3.0
1011
github.com/ewen-lbh/label-logger-go v0.1.1
1112
github.com/gabriel-vasile/mimetype v1.4.3
1213
github.com/go-git/go-git/v5 v5.12.0
14+
github.com/gwennlbh/label-logger-go v0.1.5
1315
github.com/invopop/jsonschema v0.12.0
1416
github.com/json-iterator/go v1.1.12
1517
github.com/metal3d/go-slugify v0.0.0-20160607203414-7ac2014b2f23
@@ -37,7 +39,6 @@ require (
3739
github.com/Masterminds/goutils v1.1.1 // indirect
3840
github.com/Masterminds/semver/v3 v3.2.1 // indirect
3941
github.com/alecthomas/chroma v0.10.0 // indirect
40-
github.com/alessio/shellescape v1.4.2 // indirect
4142
github.com/atotto/clipboard v0.1.4 // indirect
4243
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
4344
github.com/bahlo/generic-list-go v0.2.0 // indirect
@@ -107,5 +108,4 @@ require (
107108
golang.org/x/image v0.15.0
108109
golang.org/x/net v0.24.0 // indirect
109110
golang.org/x/text v0.14.0
110-
gopkg.in/alessio/shellescape.v1 v1.0.0-20170105083845-52074bc9df61
111111
)

go.sum

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
al.essio.dev/pkg/shellescape v1.6.0 h1:NxFcEqzFSEVCGN2yq7Huv/9hyCEGVa/TncnOOBBeXHA=
2+
al.essio.dev/pkg/shellescape v1.6.0/go.mod h1:6sIqp7X2P6mThCQ7twERpZTuigpr6KbZWtls1U8I890=
13
github.com/EdlinOrg/prominentcolor v1.0.0 h1:sQNY8Dtsv3PK3J1LbmrDmtlZm9Y9U8Loi1iZIl4YN3Y=
24
github.com/EdlinOrg/prominentcolor v1.0.0/go.mod h1:mYmDsxfcmBz6izH/SqtSzfsUiZdPNPpPgUPKCZq70KQ=
35
github.com/JohannesKaufmann/html-to-markdown v1.5.0 h1:cEAcqpxk0hUJOXEVGrgILGW76d1GpyGY7PCnAaWQyAI=
@@ -16,8 +18,6 @@ github.com/PuerkitoBio/goquery v1.9.1 h1:mTL6XjbJTZdpfL+Gwl5U2h1l9yEkJjhmlTeV9VP
1618
github.com/PuerkitoBio/goquery v1.9.1/go.mod h1:cW1n6TmIMDoORQU5IU/P1T3tGFunOeXEpGP2WHRwkbY=
1719
github.com/alecthomas/chroma v0.10.0 h1:7XDcGkCQopCNKjZHfYrNLraA+M7e0fMiJ/Mfikbfjek=
1820
github.com/alecthomas/chroma v0.10.0/go.mod h1:jtJATyUxlIORhUOFNA9NZDWGAQ8wpxQQqNSB4rjA/1s=
19-
github.com/alessio/shellescape v1.4.2 h1:MHPfaU+ddJ0/bYWpgIeUnQUqKrlJ1S7BfEYPM4uEoM0=
20-
github.com/alessio/shellescape v1.4.2/go.mod h1:PZAiSCk0LJaZkiCSkPv8qIobYglO3FPpyFjDCtHLS30=
2121
github.com/anaskhan96/soup v1.2.5 h1:V/FHiusdTrPrdF4iA1YkVxsOpdNcgvqT1hG+YtcZ5hM=
2222
github.com/anaskhan96/soup v1.2.5/go.mod h1:6YnEp9A2yywlYdM4EgDz9NEHclocMepEtku7wg6Cq3s=
2323
github.com/andybalholm/cascadia v1.3.1/go.mod h1:R4bJ1UQfqADjvDa4P6HZHLh/3OxWWEqc0Sk8XGwHqvA=
@@ -67,6 +67,8 @@ github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/
6767
github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
6868
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
6969
github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg=
70+
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 h1:El6M4kTTCOh6aBiKaUGG7oYTSPP8MxqL4YI3kZKwcP4=
71+
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510/go.mod h1:pupxD2MaaD3pAXIBCelhxNneeOaAeabZDe5s4K6zSpQ=
7072
github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
7173
github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
7274
github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
@@ -76,6 +78,8 @@ github.com/gosuri/uilive v0.0.4 h1:hUEBpQDj8D8jXgtCdBu7sWsy5sbW/5GhuO8KBwJ2jyY=
7678
github.com/gosuri/uilive v0.0.4/go.mod h1:V/epo5LjjlDE5RJUcqx8dbw+zc93y5Ya3yg8tfZ74VI=
7779
github.com/gosuri/uiprogress v0.0.1 h1:0kpv/XY/qTmFWl/SkaJykZXrBBzwwadmW8fRb7RJSxw=
7880
github.com/gosuri/uiprogress v0.0.1/go.mod h1:C1RTYn4Sc7iEyf6j8ft5dyoZ4212h8G1ol9QQluh5+0=
81+
github.com/gwennlbh/label-logger-go v0.1.5 h1:8+oFLE9tFo4HRhi9k9H3e8zXNdKktxFsQ2Bu0RK2P+s=
82+
github.com/gwennlbh/label-logger-go v0.1.5/go.mod h1:U6iHdG06P6aBrX5WuSotkvOt06V+Cts8+Azrf+uW708=
7983
github.com/huandu/xstrings v1.3.3/go.mod h1:y5/lhBue+AyNmUVz9RLU9xbLR0o4KIIExikq4ovT0aE=
8084
github.com/huandu/xstrings v1.4.0 h1:D17IlohoQq4UcpqD7fDk80P7l+lwAmlFaBHgOipl2FU=
8185
github.com/huandu/xstrings v1.4.0/go.mod h1:y5/lhBue+AyNmUVz9RLU9xbLR0o4KIIExikq4ovT0aE=
@@ -310,8 +314,6 @@ golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc
310314
golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU=
311315
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
312316
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
313-
gopkg.in/alessio/shellescape.v1 v1.0.0-20170105083845-52074bc9df61 h1:8ajkpB4hXVftY5ko905id+dOnmorcS2CHNxxHLLDcFM=
314-
gopkg.in/alessio/shellescape.v1 v1.0.0-20170105083845-52074bc9df61/go.mod h1:IfMagxm39Ys4ybJrDb7W3Ob8RwxftP0Yy+or/NVz1O8=
315317
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
316318
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
317319
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk=

0 commit comments

Comments
 (0)