Skip to content

Commit 4a9b445

Browse files
committed
1 parent 62ca992 commit 4a9b445

34 files changed

+26
-18
lines changed
File renamed without changes.

src/appimaged/appimage.go cmd/appimaged/appimage.go

+6-5
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,20 @@ import (
44
"bytes"
55
"crypto/md5"
66
"encoding/hex"
7-
"net/url"
8-
9-
"gopkg.in/ini.v1"
10-
117
"log"
8+
"net/url"
129
"os"
1310
"path/filepath"
1411
"strings"
1512
"time"
1613

14+
"gopkg.in/ini.v1"
15+
1716
"github.com/adrg/xdg"
17+
1818
"github.com/probonopd/go-appimage/internal/helpers"
19-
"github.com/probonopd/go-appimage/src/goappimage"
19+
"github.com/probonopd/go-appimage/pkg/goappimage"
20+
2021
"go.lsp.dev/uri"
2122
)
2223

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

src/appimagetool/cli.go cmd/appimagetool/cli.go

+14-9
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111

1212
"github.com/probonopd/go-appimage/internal/helpers"
1313
"github.com/probonopd/go-appimage/internal/signing"
14-
"github.com/probonopd/go-appimage/src/goappimage"
14+
"github.com/probonopd/go-appimage/pkg/goappimage"
1515
)
1616

1717
// array of string, Sections contains
@@ -23,7 +23,8 @@ var Sections = []string{".upd_info", ".sha256_sig", ".sig_key", ".digest_md5"}
2323

2424
// bootstrapAppImageDeploy wrapper function to deploy an AppImage
2525
// from Desktop file
26-
// Args: c: cli.Context
26+
//
27+
// Args: c: cli.Context
2728
func bootstrapAppImageDeploy(c *cli.Context) error {
2829
// make sure the user provided one and one only desktop
2930
if c.NArg() != 1 {
@@ -41,7 +42,8 @@ func bootstrapAppImageDeploy(c *cli.Context) error {
4142
}
4243

4344
// bootstrapValidateAppImage wrapper function to validate a AppImage
44-
// Args: c: cli.Context
45+
//
46+
// Args: c: cli.Context
4547
func bootstrapValidateAppImage(c *cli.Context) error {
4648

4749
// make sure that we received only 1 file path
@@ -82,14 +84,16 @@ func bootstrapValidateAppImage(c *cli.Context) error {
8284

8385
// bootstrapSetupSigning wrapper function to setup signing in
8486
// the current Git repository
85-
// Args: c: cli.Context
87+
//
88+
// Args: c: cli.Context
8689
func bootstrapSetupSigning(c *cli.Context) error {
8790
return signing.Setup(c.Bool("overwrite"))
8891
}
8992

9093
// bootstrapAppImageSections is a function which converts cli.Context to
9194
// string based arguments. Wrapper function to show the sections of the AppImage
92-
// Args: c: cli.Context
95+
//
96+
// Args: c: cli.Context
9397
func bootstrapAppImageSections(c *cli.Context) error {
9498
// check if the number of arguments are stictly 1, if not
9599
// return
@@ -138,7 +142,8 @@ func bootstrapAppImageSections(c *cli.Context) error {
138142
// check if all the necessary dependencies exist,
139143
// finally check if the provided argument, AppDir is a directly.
140144
// Call GenerateAppImage with the converted arguments
141-
// Args: c: cli.Context
145+
//
146+
// Args: c: cli.Context
142147
func bootstrapAppImageBuild(c *cli.Context) error {
143148

144149
// check if the number of arguments are stictly 1, if not
@@ -225,7 +230,7 @@ func main() {
225230

226231
// Add the location of the executable to the $PATH
227232
helpers.AddHereToPath()
228-
233+
229234
// fmt.Println("PATH:", os.Getenv("PATH"))
230235

231236
// Check for needed files on $PATH
@@ -236,12 +241,12 @@ func main() {
236241
if err != nil {
237242
os.Exit(1)
238243
}
239-
244+
240245
// Check whether we have a sufficient version of mksquashfs for -offset
241246
if helpers.CheckIfSquashfsVersionSufficient("mksquashfs") == false {
242247
os.Exit(1)
243248
}
244-
249+
245250
// define subcommands, like 'deploy', 'validate', ...
246251
app.Commands = []*cli.Command{
247252
{
File renamed without changes.
File renamed without changes.

src/mkappimage/mkappimage.go cmd/mkappimage/mkappimage.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"github.com/urfave/cli/v2"
1010

1111
"github.com/probonopd/go-appimage/internal/helpers"
12-
"github.com/probonopd/go-appimage/src/goappimage"
12+
"github.com/probonopd/go-appimage/pkg/goappimage"
1313
)
1414

1515
// https://blog.kowalczyk.info/article/vEja/embedding-build-number-in-go-executable.html
@@ -45,7 +45,8 @@ func listLongFilesInAppImage(path string) {
4545
// check if all the necessary dependencies exist,
4646
// finally check if the provided argument, AppDir is a directly.
4747
// Call GenerateAppImage with the converted arguments
48-
// Args: c: cli.Context
48+
//
49+
// Args: c: cli.Context
4950
func bootstrapMkAppImage(c *cli.Context) error {
5051

5152
// check if the number of arguments are stictly 1, if not
File renamed without changes.

src/goappimage/appimage.go pkg/goappimage/appimage.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@ import (
1313
"time"
1414

1515
"github.com/CalebQ42/squashfs"
16-
"github.com/probonopd/go-appimage/internal/helpers"
1716
"gopkg.in/ini.v1"
17+
18+
"github.com/probonopd/go-appimage/internal/helpers"
1819
)
1920

2021
/*
File renamed without changes.
File renamed without changes.
File renamed without changes.

scripts/build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ build () {
9797
echo CC: $CC
9898
which zig
9999
zig env
100-
CGO_ENABLED=1 go build -o $BUILDDIR -v -trimpath -ldflags="-linkmode=external -extldflags \"-static\" -s -w -X main.commit=$COMMIT" $PROJECT/src/$PROG
100+
CGO_ENABLED=1 go build -o $BUILDDIR -v -trimpath -ldflags="-linkmode=external -extldflags \"-static\" -s -w -X main.commit=$COMMIT" $PROJECT/cmd/$PROG
101101
ls -lh $PROG
102102
file $PROG
103103
# common appimage steps

0 commit comments

Comments
 (0)