Compare commits
39 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
cbd402db9b | ||
|
|
4ad5ddec00 | ||
|
|
faf6a27366 | ||
|
|
f7dd5cf6d3 | ||
|
|
06046d478d | ||
|
|
1f7ce8b6fb | ||
|
|
2a391702fd | ||
|
|
3d3125f4fe | ||
|
|
0aa4b0eba3 | ||
|
|
94e06bb116 | ||
|
|
c16ac69f0f | ||
|
|
1adbf2c0f6 | ||
|
|
286a06ac1b | ||
|
|
f1016e321e | ||
|
|
74ab7d14ce | ||
|
|
9599f80ff8 | ||
|
|
31d3d98a51 | ||
|
|
8e436e5036 | ||
|
|
8a599a3351 | ||
|
|
406d6145cc | ||
|
|
9e8d5c90e2 | ||
|
|
be3dc36490 | ||
|
|
cb3f60c85c | ||
|
|
2aee6245c5 | ||
|
|
0ef7e2786d | ||
|
|
05c4b1ee2d | ||
|
|
d0d1f3a76d | ||
|
|
ee01a250c9 | ||
|
|
04909a5a63 | ||
|
|
14fb2420ad | ||
|
|
a0d6b9185d | ||
|
|
e1d32fc6f3 | ||
|
|
50049bba08 | ||
|
|
d260dba766 | ||
|
|
f375f7ae69 | ||
|
|
6b4a055815 | ||
|
|
584b565146 | ||
|
|
05274e8525 | ||
|
|
609387b2b8 |
12
.gitignore
vendored
@@ -0,0 +1,12 @@
|
|||||||
|
Main/Black/x1/
|
||||||
|
Main/Black/x1_25/
|
||||||
|
Main/Black/x1_5/
|
||||||
|
Main/BlackTiny/x1/
|
||||||
|
Main/BlackTiny/x1_25/
|
||||||
|
Main/BlackTiny/x1_5/
|
||||||
|
Main/White/x1/
|
||||||
|
Main/White/x1_25/
|
||||||
|
Main/White/x1_5/
|
||||||
|
Main/WhiteTiny/x1/
|
||||||
|
Main/WhiteTiny/x1_25/
|
||||||
|
Main/WhiteTiny/x1_5/
|
||||||
|
|||||||
59
.gitlab-ci.yml
Normal file
@@ -0,0 +1,59 @@
|
|||||||
|
stages:
|
||||||
|
- package
|
||||||
|
|
||||||
|
package-aur:
|
||||||
|
image: archlinux/base
|
||||||
|
stage: package
|
||||||
|
dependencies: []
|
||||||
|
only:
|
||||||
|
- /^v(\d+\.)*\d+$/
|
||||||
|
before_script: []
|
||||||
|
script:
|
||||||
|
- cd ./pkg/aur
|
||||||
|
|
||||||
|
- _version=$(echo $CI_COMMIT_REF_NAME | cut -c 2-)
|
||||||
|
- echo "Pushing'v$_version'"
|
||||||
|
|
||||||
|
- sourceURL=https://git.auteiy.me/dmitry/cursorsPosy/-/archive/v$_version/cursorsPosy-v$_version.tar.gz?path=themes
|
||||||
|
- 'echo "Source: $sourceURL"'
|
||||||
|
- echo "Checking sha256sum checksums"
|
||||||
|
- 'sourceSHA=$(curl -sSL "$sourceURL" | sha256sum | cut -d" " -f1)'
|
||||||
|
|
||||||
|
# Update PKGBUILD parameters: version, source URL and SHA sum
|
||||||
|
- echo "Updating PKGBUILDS with release information..."
|
||||||
|
- sed "s/^pkgver=.*\$/pkgver=$_version/" -i posy-cursors/PKGBUILD
|
||||||
|
- sed "s/^source=(\"\(.*\)::.*\").*\$/source=(\"\1::$(echo $sourceURL | sed 's/\//\\\//g')\")/" -i posy-cursors/PKGBUILD
|
||||||
|
- sed "s/^sha256sums=.*\$/sha256sums=('$sourceSHA')/" -i posy-cursors/PKGBUILD
|
||||||
|
|
||||||
|
- echo "Installing Arch"
|
||||||
|
- pacman -Syu --noconfirm sudo base-devel openssh git openssl
|
||||||
|
|
||||||
|
# Make AUR package
|
||||||
|
- cd posy-cursors/
|
||||||
|
- echo "makepkg"
|
||||||
|
- sudo -u nobody makepkg -c
|
||||||
|
- sudo -u nobody makepkg --printsrcinfo > .SRCINFO
|
||||||
|
- cd ..
|
||||||
|
|
||||||
|
# Set up SSH for publishing
|
||||||
|
- mkdir -p /root/.ssh
|
||||||
|
- cp ./aur.pub /root/.ssh/id_rsa.pub
|
||||||
|
- echo "$sshAUR" | base64 -d > /root/.ssh/id_rsa
|
||||||
|
- echo "Host aur.archlinux.org" >> /root/.ssh/config
|
||||||
|
- echo " IdentityFile /root/.ssh/aur" >> /root/.ssh/config
|
||||||
|
- echo " User aur" >> /root/.ssh/config
|
||||||
|
- chmod 600 /root/.ssh/{id_rsa*,config}
|
||||||
|
- eval `ssh-agent -s`
|
||||||
|
- echo -en "${sshPASSPHRASE}" | ssh-add /root/.ssh/id_rsa
|
||||||
|
- ssh-keyscan -H aur.archlinux.org >> /root/.ssh/known_hosts
|
||||||
|
- git config --global user.name "Dmitry Porunov"
|
||||||
|
- git config --global user.email "dmitry@auteiy.me"
|
||||||
|
|
||||||
|
# Publish main package: clone AUR repo, commit update and push
|
||||||
|
- git clone ssh://aur@aur.archlinux.org/posy-cursors.git aur-posy-cursors
|
||||||
|
- cd aur-posy-cursors
|
||||||
|
- cp ../posy-cursors/{PKGBUILD,.SRCINFO} ./
|
||||||
|
- git add PKGBUILD .SRCINFO
|
||||||
|
- git commit -m "Release v$_version"
|
||||||
|
- git push
|
||||||
|
- cd ..
|
||||||
|
Before Width: | Height: | Size: 2.8 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 1.0 KiB |
|
Before Width: | Height: | Size: 936 B |
|
Before Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 2.3 KiB |
|
Before Width: | Height: | Size: 2.3 KiB |
|
Before Width: | Height: | Size: 2.9 KiB |
|
Before Width: | Height: | Size: 594 B |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 1016 B |
|
Before Width: | Height: | Size: 979 B |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 710 B |
|
Before Width: | Height: | Size: 907 B |
|
Before Width: | Height: | Size: 1.0 KiB |
|
Before Width: | Height: | Size: 2.4 KiB |
|
Before Width: | Height: | Size: 1017 B |
|
Before Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 979 B |
|
Before Width: | Height: | Size: 2.9 KiB |
|
Before Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |