Compare commits
62 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7188d75a28 | ||
|
|
5b7f35508c | ||
|
|
6dfebca9e4 | ||
|
|
5186b9d282 | ||
|
|
801555b61f | ||
|
|
a6de703d44 | ||
|
|
e7d1355dc1 | ||
|
|
45155a96cd | ||
|
|
9022d5824a | ||
|
|
0852b26798 | ||
|
|
3a12078508 | ||
|
|
7b0249a14d | ||
|
|
c618acd9c9 | ||
|
|
e4c0b458cb | ||
|
|
1902ec6163 | ||
|
|
24267a06f5 | ||
|
|
c438e949e3 | ||
|
|
8877137026 | ||
|
|
cfb6b6cf86 | ||
|
|
dbbc00beaa | ||
|
|
14a371118c | ||
|
|
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 | ||
|
|
bfd00a3718 | ||
|
|
485d4b49a4 |
13
.gitignore
vendored
@@ -1 +1,12 @@
|
|||||||
/archives
|
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/
|
||||||
|
|||||||
58
.gitlab-ci.yml
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
stages:
|
||||||
|
- package
|
||||||
|
|
||||||
|
Update-AUR:
|
||||||
|
image: archlinux/base
|
||||||
|
stage: package
|
||||||
|
only:
|
||||||
|
- /^v(\d+\.)*\d+$/
|
||||||
|
script:
|
||||||
|
- cd ./pkg/aur
|
||||||
|
|
||||||
|
- VERSION=$(echo $CI_COMMIT_REF_NAME)
|
||||||
|
- echo "$CI_COMMIT_REF_NAME"
|
||||||
|
- echo "Pushing'v$VERSION'"
|
||||||
|
|
||||||
|
- sourceURL=https://gitlab.com/ykkzde/posy-cursors/-/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 version, source URL and sha256sum
|
||||||
|
- 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
|
||||||
|
|
||||||
|
# Makepkg and .SRCINFO
|
||||||
|
- cd posy-cursors/
|
||||||
|
- echo "makepkg"
|
||||||
|
- sudo -u nobody makepkg -c
|
||||||
|
- sudo -u nobody makepkg --printsrcinfo > .SRCINFO
|
||||||
|
- cd ..
|
||||||
|
|
||||||
|
# Configure SSH
|
||||||
|
- mkdir -p /root/.ssh
|
||||||
|
- cp ./aur.pub /root/.ssh/id_rsa.pub
|
||||||
|
- echo "${AUR_PRIVATE}" | 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 "${SSH_PASSPHRASE}" | 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@ykkz.de"
|
||||||
|
|
||||||
|
# Clone, commit 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 ..
|
||||||
@@ -1,61 +0,0 @@
|
|||||||
00000000000000020006000e7e9ffc3f progress
|
|
||||||
00008160000006810000408080010102 size_ver
|
|
||||||
03b6e0fcb3499374a867c041f52298f0 circle
|
|
||||||
08e8e1c95fe2fc01f976f1e063a24ccd progress
|
|
||||||
3ecb610c1bf2410f44200f48c40d3599 progress
|
|
||||||
5c6cd98b3f3ebcb1f9c7f1c204630408 help
|
|
||||||
9d800788f1b08800ae810202380a0822 pointer
|
|
||||||
640fb0e74195791501fd1ed57b41487f alias
|
|
||||||
1081e37283d90000800003c07f3ef6bf copy
|
|
||||||
3085a0e285430894940527032f8b26df alias
|
|
||||||
4498f0e0c1937ffe01fd06f973665830 dnd-move
|
|
||||||
6407b0e94181790501fd1e167b474872 copy
|
|
||||||
9081237383d90e509aa00f00170e968f dnd-move
|
|
||||||
a2a266d0498c3104214a47bd64ab0fc8 alias
|
|
||||||
b66166c04f8c3109214a4fbd64a50fc8 copy
|
|
||||||
d9ce0ab605698f320427677b458ad60b help
|
|
||||||
e29285e634086352946a0e7090d73106 pointer
|
|
||||||
fcf21c00b30f7e3f83fe0dfd12e71cff dnd-move
|
|
||||||
grabbing dnd-move
|
|
||||||
nwse-resize size_fdiag
|
|
||||||
nesw-resize size_bdiag
|
|
||||||
arrow default
|
|
||||||
circle not-allowed
|
|
||||||
closedhand dnd-move
|
|
||||||
col-resize size_hor
|
|
||||||
color-picker crosshair
|
|
||||||
copy dnd-move
|
|
||||||
cross crosshair
|
|
||||||
crossed_circle not-allowed
|
|
||||||
dnd-copy copy
|
|
||||||
dnd-none dnd-move
|
|
||||||
e-resize size_hor
|
|
||||||
forbidden no-drop
|
|
||||||
h_double_arrow size_hor
|
|
||||||
half-busy progress
|
|
||||||
grab openhand
|
|
||||||
hand1 pointer
|
|
||||||
hand2 pointer
|
|
||||||
ibeam text
|
|
||||||
left_ptr default
|
|
||||||
left_ptr_help help
|
|
||||||
left_ptr_watch progress
|
|
||||||
left_side left-arrow
|
|
||||||
link alias
|
|
||||||
move dnd-move
|
|
||||||
n-resize size_ver
|
|
||||||
plus cell
|
|
||||||
pointing_hand pointer
|
|
||||||
question_arrow help
|
|
||||||
right_side right-arrow
|
|
||||||
s-resize size_ver
|
|
||||||
sb_h_double_arrow size_hor
|
|
||||||
sb_v_double_arrow size_ver
|
|
||||||
size_all fleur
|
|
||||||
split_h col-resize
|
|
||||||
split_v row-resize
|
|
||||||
v_double_arrow size_ver
|
|
||||||
w-resize size_hor
|
|
||||||
watch wait
|
|
||||||
whats_this help
|
|
||||||
xterm text
|
|
||||||
|
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 |