Page MenuHomeSolus

D13485.diff
No OneTemporary

D13485.diff

diff --git a/MAINTAINERS.md b/MAINTAINERS.md
new file mode 100644
--- /dev/null
+++ b/MAINTAINERS.md
@@ -0,0 +1,5 @@
+This file is used to indicate responsibility for the maintenance of this package. Individuals on this list should be the sole modifiers of the package, excluding cases where the Solus Team may need to perform necessary rebuilds, upgrades, or security fixes. This list should not be used for any direct contact usage. If you believe this package requires a package update, follow documentation from <https://getsol.us/articles/packaging/request-a-package-update/en/>. In the event this package no longer becomes sufficiently maintained, Core Team reserves the right to request a new maintainer or remove this package from the repository.
+
+- Gavin Zhao
+ - Email: me@gzgz.dev
+ - Matrix: @gzgavinzhao:matrix.org
diff --git a/Makefile b/Makefile
new file mode 100644
--- /dev/null
+++ b/Makefile
@@ -0,0 +1 @@
+include ../Makefile.common
diff --git a/abi_used_libs b/abi_used_libs
new file mode 100644
--- /dev/null
+++ b/abi_used_libs
@@ -0,0 +1 @@
+libc.so.6
diff --git a/abi_used_symbols b/abi_used_symbols
new file mode 100644
--- /dev/null
+++ b/abi_used_symbols
@@ -0,0 +1,34 @@
+libc.so.6:__errno_location
+libc.so.6:__stack_chk_fail
+libc.so.6:abort
+libc.so.6:fprintf
+libc.so.6:fputc
+libc.so.6:free
+libc.so.6:freeaddrinfo
+libc.so.6:fwrite
+libc.so.6:gai_strerror
+libc.so.6:getaddrinfo
+libc.so.6:malloc
+libc.so.6:mmap
+libc.so.6:munmap
+libc.so.6:nanosleep
+libc.so.6:pthread_attr_destroy
+libc.so.6:pthread_attr_getstacksize
+libc.so.6:pthread_attr_init
+libc.so.6:pthread_cond_broadcast
+libc.so.6:pthread_cond_wait
+libc.so.6:pthread_create
+libc.so.6:pthread_detach
+libc.so.6:pthread_mutex_lock
+libc.so.6:pthread_mutex_unlock
+libc.so.6:pthread_sigmask
+libc.so.6:setenv
+libc.so.6:sigaction
+libc.so.6:sigaddset
+libc.so.6:sigemptyset
+libc.so.6:sigfillset
+libc.so.6:sigismember
+libc.so.6:stderr
+libc.so.6:strerror
+libc.so.6:unsetenv
+libc.so.6:vfprintf
diff --git a/package.yml b/package.yml
new file mode 100644
--- /dev/null
+++ b/package.yml
@@ -0,0 +1,30 @@
+name : glab
+version : 1.22.0
+release : 1
+source :
+ - https://gitlab.com/gitlab-org/cli/-/archive/v1.22.0/cli-v1.22.0.tar.gz : 4d9bceb6818c8bf9f681119dae3a65f1c895fa21e9da6b38e8f88d245f524e10
+license : MIT
+component : system.utils
+summary : A GitLab CLI tool bringing GitLab to your command line
+description: |
+ GLab is an open source GitLab CLI tool bringing GitLab to your terminal next to where you are already working with git and your code without switching between windows and browser tabs. Work with issues, merge requests, watch running pipelines directly from your CLI among other features. Inspired by gh, the official GitHub CLI tool.
+networking : yes
+builddeps :
+ - golang
+build : |
+ go build -o glab -ldflags "-s -w -X main.version=%version%" ./cmd/glab
+
+ # manpages
+ go run cmd/gen-docs/docs.go --manpage --path ./
+
+ # command-line completions
+ for s in bash fish zsh; do
+ ./glab completion -s $s > $s.completions
+ done
+install : |
+ install -Dm00755 glab -t $installdir/usr/bin/
+ install -Dm00644 glab.1 -t $installdir/usr/share/man/man1/
+
+ install -Dm00644 bash.completions $installdir/usr/share/bash-completion/completions/glab
+ install -Dm00644 fish.completions $installdir/usr/share/fish/vendor_completions.d/glab.fish
+ install -Dm00644 zsh.completions $installdir/usr/share/zsh/site-functions/_glab
diff --git a/pspec_x86_64.xml b/pspec_x86_64.xml
new file mode 100644
--- /dev/null
+++ b/pspec_x86_64.xml
@@ -0,0 +1,38 @@
+<PISI>
+ <Source>
+ <Name>glab</Name>
+ <Packager>
+ <Name>Gavin Zhao</Name>
+ <Email>me@gzgz.dev</Email>
+ </Packager>
+ <License>MIT</License>
+ <PartOf>system.utils</PartOf>
+ <Summary xml:lang="en">A GitLab CLI tool bringing GitLab to your command line</Summary>
+ <Description xml:lang="en">GLab is an open source GitLab CLI tool bringing GitLab to your terminal next to where you are already working with git and your code without switching between windows and browser tabs. Work with issues, merge requests, watch running pipelines directly from your CLI among other features. Inspired by gh, the official GitHub CLI tool.
+</Description>
+ <Archive type="binary" sha1sum="79eb0752a961b8e0d15c77d298c97498fbc89c5a">https://getsol.us/sources/README.Solus</Archive>
+ </Source>
+ <Package>
+ <Name>glab</Name>
+ <Summary xml:lang="en">A GitLab CLI tool bringing GitLab to your command line</Summary>
+ <Description xml:lang="en">GLab is an open source GitLab CLI tool bringing GitLab to your terminal next to where you are already working with git and your code without switching between windows and browser tabs. Work with issues, merge requests, watch running pipelines directly from your CLI among other features. Inspired by gh, the official GitHub CLI tool.
+</Description>
+ <PartOf>system.utils</PartOf>
+ <Files>
+ <Path fileType="executable">/usr/bin/glab</Path>
+ <Path fileType="data">/usr/share/bash-completion/completions/glab</Path>
+ <Path fileType="data">/usr/share/fish/vendor_completions.d/glab.fish</Path>
+ <Path fileType="man">/usr/share/man/man1/glab.1</Path>
+ <Path fileType="data">/usr/share/zsh/site-functions/_glab</Path>
+ </Files>
+ </Package>
+ <History>
+ <Update release="1">
+ <Date>2022-08-20</Date>
+ <Version>1.22.0</Version>
+ <Comment>Packaging update</Comment>
+ <Name>Gavin Zhao</Name>
+ <Email>me@gzgz.dev</Email>
+ </Update>
+ </History>
+</PISI>
\ No newline at end of file

File Metadata

Mime Type
text/plain
Expires
Wed, Jul 26, 7:37 AM (1 w, 6 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
5802873
Default Alt Text
D13485.diff (5 KB)

Event Timeline