Compare commits
69 commits
b1ad5a3f48
...
49383ed236
Author | SHA1 | Date | |
---|---|---|---|
49383ed236 | |||
a74e1ee87c | |||
bae457770e | |||
522e203444 | |||
44812fd196 | |||
b690ed4858 | |||
f81abdb920 | |||
24e6c20ec0 | |||
6258865f96 | |||
2fdf17d6e1 | |||
44a5055f3b | |||
3bb4130341 | |||
9d8f19b1a6 | |||
1721a123a8 | |||
6b773ff1c2 | |||
e43b4b3bc9 | |||
42f0040946 | |||
558f58d6fa | |||
499edeb25f | |||
60f92875ed | |||
7b3aa4604c | |||
bf2e2cd789 | |||
6780330b88 | |||
d5c1c76f9a | |||
43edaeb809 | |||
e345a9fc95 | |||
d294fbed7a | |||
|
7cb9aea1de | ||
95596b6f65 | |||
7f4864cbe2 | |||
080c776289 | |||
0ec00ccdb6 | |||
694366e0eb | |||
cf358db55b | |||
a427cce1f4 | |||
083b83bf24 | |||
3ba730d142 | |||
76e247104b | |||
f27a985c01 | |||
64b4d90ef7 | |||
022dcd5756 | |||
3e87249e98 | |||
|
259aaaf08b | ||
|
15c5dd4114 | ||
|
e9bf6bcb59 | ||
|
64c6d5f800 | ||
|
bfb4afe051 | ||
|
f81aa8d9cb | ||
|
d3ab685152 | ||
|
fd284a10b4 | ||
|
e816bdd337 | ||
|
42d56cc9d0 | ||
|
2b9eb8f099 | ||
|
ca93021b62 | ||
|
f69173360f | ||
|
527ec4c432 | ||
|
51eb3c5f34 | ||
|
cab411550f | ||
|
50b84ec67f | ||
|
4da7240297 | ||
|
5a9b3b7e3b | ||
|
a99e9668fe | ||
|
88a073568f | ||
|
eef28bd77e | ||
|
eb1906dad6 | ||
|
aaee2927cd | ||
|
94a18ee81b | ||
|
e2776838bf | ||
|
bfc0ec69ac |
13 changed files with 307 additions and 0 deletions
24
UNLICENSE
Normal file
24
UNLICENSE
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
This is free and unencumbered software released into the public domain.
|
||||||
|
|
||||||
|
Anyone is free to copy, modify, publish, use, compile, sell, or
|
||||||
|
distribute this software, either in source code form or as a compiled
|
||||||
|
binary, for any purpose, commercial or non-commercial, and by any
|
||||||
|
means.
|
||||||
|
|
||||||
|
In jurisdictions that recognize copyright laws, the author or authors
|
||||||
|
of this software dedicate any and all copyright interest in the
|
||||||
|
software to the public domain. We make this dedication for the benefit
|
||||||
|
of the public at large and to the detriment of our heirs and
|
||||||
|
successors. We intend this dedication to be an overt act of
|
||||||
|
relinquishment in perpetuity of all present and future rights to this
|
||||||
|
software under copyright law.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||||
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||||
|
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
||||||
|
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
||||||
|
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
||||||
|
OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
|
For more information, please refer to <http://unlicense.org/>
|
22
sublime-text-4/.SRCINFO
Normal file
22
sublime-text-4/.SRCINFO
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
pkgbase = sublime-text-4
|
||||||
|
pkgdesc = Sophisticated text editor for code, html and prose - stable build
|
||||||
|
pkgver = 4.4126
|
||||||
|
pkgrel = 1
|
||||||
|
url = https://www.sublimetext.com/download
|
||||||
|
install = sublime-text-4.install
|
||||||
|
arch = x86_64
|
||||||
|
arch = aarch64
|
||||||
|
license = custom
|
||||||
|
depends = libpng
|
||||||
|
depends = gtk3
|
||||||
|
optdepends = gksu: sudo-save support
|
||||||
|
provides = sublime-text
|
||||||
|
conflicts = sublime-text
|
||||||
|
source = sublime_text.desktop
|
||||||
|
sha256sums = e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf
|
||||||
|
source_x86_64 = https://download.sublimetext.com/sublime_text_build_4126_x64.tar.xz
|
||||||
|
sha256sums_x86_64 = 5c64e534cce0032e54d3c7028e8d6b3bdef28f3fd28a26244a360a2ce75450a1
|
||||||
|
source_aarch64 = https://download.sublimetext.com/sublime_text_build_4126_arm64.tar.xz
|
||||||
|
sha256sums_aarch64 = 0ad4ac168d47034c47ab31faaa0d8b6b4f27e233ea4e48634b930bf999efb63e
|
||||||
|
|
||||||
|
pkgname = sublime-text-4
|
40
sublime-text-4/PKGBUILD
Normal file
40
sublime-text-4/PKGBUILD
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
# Maintainer: Manuel Hüsers <aur@huesers.de>
|
||||||
|
|
||||||
|
pkgname=sublime-text-4
|
||||||
|
pkgver=4.4126
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="Sophisticated text editor for code, html and prose - stable build"
|
||||||
|
arch=('x86_64' 'aarch64')
|
||||||
|
url="https://www.sublimetext.com/download"
|
||||||
|
license=('custom')
|
||||||
|
depends=('libpng' 'gtk3')
|
||||||
|
optdepends=('gksu: sudo-save support')
|
||||||
|
conflicts=('sublime-text')
|
||||||
|
provides=('sublime-text')
|
||||||
|
install=${pkgname}.install
|
||||||
|
|
||||||
|
source=('sublime_text.desktop')
|
||||||
|
source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_x64.tar.xz")
|
||||||
|
source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz")
|
||||||
|
|
||||||
|
sha256sums=('e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf')
|
||||||
|
sha256sums_x86_64=('5c64e534cce0032e54d3c7028e8d6b3bdef28f3fd28a26244a360a2ce75450a1')
|
||||||
|
sha256sums_aarch64=('0ad4ac168d47034c47ab31faaa0d8b6b4f27e233ea4e48634b930bf999efb63e')
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cd "${srcdir}"
|
||||||
|
|
||||||
|
install -dm755 "${pkgdir}/opt"
|
||||||
|
cp --preserve=mode -r "sublime_text" "${pkgdir}/opt/sublime_text"
|
||||||
|
|
||||||
|
for res in 128x128 16x16 256x256 32x32 48x48; do
|
||||||
|
install -dm755 "${pkgdir}/usr/share/icons/hicolor/${res}/apps"
|
||||||
|
ln -s "/opt/sublime_text/Icon/${res}/sublime-text.png" "${pkgdir}/usr/share/icons/hicolor/${res}/apps/sublime-text.png"
|
||||||
|
done
|
||||||
|
|
||||||
|
install -dm755 "${pkgdir}/usr/share/applications"
|
||||||
|
install -Dm644 "sublime_text.desktop" "${pkgdir}/usr/share/applications/sublime_text.desktop"
|
||||||
|
|
||||||
|
install -dm755 "${pkgdir}/usr/bin"
|
||||||
|
ln -s "/opt/sublime_text/sublime_text" "${pkgdir}/usr/bin/subl"
|
||||||
|
}
|
8
sublime-text-4/sublime-text-4.install
Normal file
8
sublime-text-4/sublime-text-4.install
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
post_install() {
|
||||||
|
# Update icon cache.
|
||||||
|
gtk-update-icon-cache -f '/usr/share/icons/hicolor' > /dev/null 2>&1
|
||||||
|
}
|
||||||
|
|
||||||
|
post_upgrade() {
|
||||||
|
post_install
|
||||||
|
}
|
24
sublime-text-4/sublime_text.desktop
Normal file
24
sublime-text-4/sublime_text.desktop
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
[Desktop Entry]
|
||||||
|
Version=1.0
|
||||||
|
Type=Application
|
||||||
|
Name=Sublime Text
|
||||||
|
GenericName=Text Editor
|
||||||
|
Comment=Sophisticated text editor for code, markup and prose
|
||||||
|
Exec=subl %F
|
||||||
|
Terminal=false
|
||||||
|
MimeType=text/plain;
|
||||||
|
Icon=sublime-text
|
||||||
|
Categories=TextEditor;Development;
|
||||||
|
StartupNotify=true
|
||||||
|
StartupWMClass=subl
|
||||||
|
Actions=Window;Document;
|
||||||
|
|
||||||
|
[Desktop Action Window]
|
||||||
|
Name=New Window
|
||||||
|
Exec=subl -n
|
||||||
|
OnlyShowIn=Unity;
|
||||||
|
|
||||||
|
[Desktop Action Document]
|
||||||
|
Name=New File
|
||||||
|
Exec=subl --command new_file
|
||||||
|
OnlyShowIn=Unity;
|
22
sublime-text-dev/.SRCINFO
Normal file
22
sublime-text-dev/.SRCINFO
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
pkgbase = sublime-text-dev
|
||||||
|
pkgdesc = Sophisticated text editor for code, html and prose - dev build
|
||||||
|
pkgver = 4.4138
|
||||||
|
pkgrel = 1
|
||||||
|
url = https://www.sublimetext.com/dev
|
||||||
|
install = sublime-text-dev.install
|
||||||
|
arch = x86_64
|
||||||
|
arch = aarch64
|
||||||
|
license = custom
|
||||||
|
depends = libpng
|
||||||
|
depends = gtk3
|
||||||
|
optdepends = gksu: sudo-save support
|
||||||
|
provides = sublime-text
|
||||||
|
conflicts = sublime-text
|
||||||
|
source = sublime_text.desktop
|
||||||
|
sha256sums = e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf
|
||||||
|
source_x86_64 = https://download.sublimetext.com/sublime_text_build_4138_x64.tar.xz
|
||||||
|
sha256sums_x86_64 = 0c1c5660ed8b39ed7409d13879b87627d03ec29f2782f71e5791ae4bbe1350b7
|
||||||
|
source_aarch64 = https://download.sublimetext.com/sublime_text_build_4138_arm64.tar.xz
|
||||||
|
sha256sums_aarch64 = def23facff20b497631726a8aeb1b3a572c2a8abd9a2179b639f56af74feb581
|
||||||
|
|
||||||
|
pkgname = sublime-text-dev
|
42
sublime-text-dev/PKGBUILD
Normal file
42
sublime-text-dev/PKGBUILD
Normal file
|
@ -0,0 +1,42 @@
|
||||||
|
# Maintainer: Manuel Hüsers <aur@huesers.de>
|
||||||
|
# Contributor: Sander Boom <sanderboom@gmail.com>
|
||||||
|
# Contributor: realitygaps <realitygaps at yahoo dot com>
|
||||||
|
|
||||||
|
pkgname=sublime-text-dev
|
||||||
|
pkgver=4.4138
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="Sophisticated text editor for code, html and prose - dev build"
|
||||||
|
arch=('x86_64' 'aarch64')
|
||||||
|
url="https://www.sublimetext.com/dev"
|
||||||
|
license=('custom')
|
||||||
|
depends=('libpng' 'gtk3')
|
||||||
|
optdepends=('gksu: sudo-save support')
|
||||||
|
conflicts=('sublime-text')
|
||||||
|
provides=('sublime-text')
|
||||||
|
install=${pkgname}.install
|
||||||
|
|
||||||
|
source=('sublime_text.desktop')
|
||||||
|
source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_x64.tar.xz")
|
||||||
|
source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz")
|
||||||
|
|
||||||
|
sha256sums=('e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf')
|
||||||
|
sha256sums_x86_64=('0c1c5660ed8b39ed7409d13879b87627d03ec29f2782f71e5791ae4bbe1350b7')
|
||||||
|
sha256sums_aarch64=('def23facff20b497631726a8aeb1b3a572c2a8abd9a2179b639f56af74feb581')
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cd "${srcdir}"
|
||||||
|
|
||||||
|
install -dm755 "${pkgdir}/opt"
|
||||||
|
cp --preserve=mode -r "sublime_text" "${pkgdir}/opt/sublime_text"
|
||||||
|
|
||||||
|
for res in 128x128 16x16 256x256 32x32 48x48; do
|
||||||
|
install -dm755 "${pkgdir}/usr/share/icons/hicolor/${res}/apps"
|
||||||
|
ln -s "/opt/sublime_text/Icon/${res}/sublime-text.png" "${pkgdir}/usr/share/icons/hicolor/${res}/apps/sublime-text.png"
|
||||||
|
done
|
||||||
|
|
||||||
|
install -dm755 "${pkgdir}/usr/share/applications"
|
||||||
|
install -Dm644 "sublime_text.desktop" "${pkgdir}/usr/share/applications/sublime_text.desktop"
|
||||||
|
|
||||||
|
install -dm755 "${pkgdir}/usr/bin"
|
||||||
|
ln -s "/opt/sublime_text/sublime_text" "${pkgdir}/usr/bin/subl"
|
||||||
|
}
|
28
sublime-text-dev/sublime-text-dev.install
Normal file
28
sublime-text-dev/sublime-text-dev.install
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
post_install() {
|
||||||
|
cat << _EOF
|
||||||
|
|
||||||
|
==> sublime-text-dev install note:
|
||||||
|
------------------------------------------------------------------------------
|
||||||
|
This package is used for the actual 'dev' branch of Sublime Text that
|
||||||
|
requires a license to be purchased from the Sublime Text website.
|
||||||
|
If you want to keep using the latest stable release you should instead
|
||||||
|
install 'sublime-text-4' or use the official repos provided by Sublime Text.
|
||||||
|
|
||||||
|
To disable in-application reminders about new Sublime Text dev versions,
|
||||||
|
add the following setting to your User Preferences file:
|
||||||
|
"update_check": false
|
||||||
|
|
||||||
|
_EOF
|
||||||
|
}
|
||||||
|
|
||||||
|
post_upgrade() {
|
||||||
|
cat << _EOF
|
||||||
|
|
||||||
|
==> sublime-text-dev upgrade note:
|
||||||
|
------------------------------------------------------------------------------
|
||||||
|
To disable in-application reminders about new Sublime Text dev versions,
|
||||||
|
add the following setting to your User Preferences file:
|
||||||
|
"update_check": false
|
||||||
|
|
||||||
|
_EOF
|
||||||
|
}
|
24
sublime-text-dev/sublime_text.desktop
Normal file
24
sublime-text-dev/sublime_text.desktop
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
[Desktop Entry]
|
||||||
|
Version=1.0
|
||||||
|
Type=Application
|
||||||
|
Name=Sublime Text
|
||||||
|
GenericName=Text Editor
|
||||||
|
Comment=Sophisticated text editor for code, markup and prose
|
||||||
|
Exec=subl %F
|
||||||
|
Terminal=false
|
||||||
|
MimeType=text/plain;
|
||||||
|
Icon=sublime-text
|
||||||
|
Categories=TextEditor;Development;
|
||||||
|
StartupNotify=true
|
||||||
|
StartupWMClass=subl
|
||||||
|
Actions=Window;Document;
|
||||||
|
|
||||||
|
[Desktop Action Window]
|
||||||
|
Name=New Window
|
||||||
|
Exec=subl -n
|
||||||
|
OnlyShowIn=Unity;
|
||||||
|
|
||||||
|
[Desktop Action Document]
|
||||||
|
Name=New File
|
||||||
|
Exec=subl --command new_file
|
||||||
|
OnlyShowIn=Unity;
|
27
tuned/.SRCINFO
Normal file
27
tuned/.SRCINFO
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
pkgbase = tuned
|
||||||
|
pkgdesc = Daemon that performs monitoring and adaptive configuration of devices in the system
|
||||||
|
pkgver = 2.19.0
|
||||||
|
pkgrel = 1
|
||||||
|
url = https://github.com/redhat-performance/tuned
|
||||||
|
install = tuned.install
|
||||||
|
arch = any
|
||||||
|
license = GPL
|
||||||
|
makedepends = desktop-file-utils
|
||||||
|
depends = dbus-glib
|
||||||
|
depends = ethtool
|
||||||
|
depends = gawk
|
||||||
|
depends = hdparm
|
||||||
|
depends = polkit
|
||||||
|
depends = python-configobj
|
||||||
|
depends = python-dbus
|
||||||
|
depends = python-gobject
|
||||||
|
depends = python-linux-procfs
|
||||||
|
depends = python-perf
|
||||||
|
depends = python-pyudev
|
||||||
|
optdepends = virt-what: For use with virtual machines
|
||||||
|
optdepends = systemtap: Disk and net statistic monitoring systemtap scripts
|
||||||
|
backup = etc/tuned/active_profile
|
||||||
|
source = https://github.com/redhat-performance/tuned/archive/v2.19.0.tar.gz
|
||||||
|
sha256sums = 3cb2aeb9ecebd66a1a1c3aaff9589f5c5402201d16f7caa01acf0b9374ed8724
|
||||||
|
|
||||||
|
pkgname = tuned
|
39
tuned/PKGBUILD
Normal file
39
tuned/PKGBUILD
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
# Maintainer: Manuel Hüsers <aur@huesers.de>
|
||||||
|
# Contributor: Iwan Timmer <irtimmer@gmail.com>
|
||||||
|
# Contributor: Timothée Ravier <tim at siosm dot fr>
|
||||||
|
# Contributor: Tom <reztho at archlinux dot org>
|
||||||
|
|
||||||
|
pkgname=tuned
|
||||||
|
pkgver=2.19.0
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc='Daemon that performs monitoring and adaptive configuration of devices in the system'
|
||||||
|
arch=('any')
|
||||||
|
url="https://github.com/redhat-performance/${pkgname}"
|
||||||
|
license=('GPL')
|
||||||
|
depends=('dbus-glib' 'ethtool' 'gawk' 'hdparm' 'polkit' 'python-configobj' 'python-dbus' 'python-gobject' 'python-linux-procfs' 'python-perf' 'python-pyudev')
|
||||||
|
optdepends=('virt-what: For use with virtual machines' 'systemtap: Disk and net statistic monitoring systemtap scripts')
|
||||||
|
makedepends=('desktop-file-utils')
|
||||||
|
backup=('etc/tuned/active_profile')
|
||||||
|
install="${pkgname}.install"
|
||||||
|
source=("https://github.com/redhat-performance/${pkgname}/archive/v${pkgver}.tar.gz")
|
||||||
|
sha256sums=('3cb2aeb9ecebd66a1a1c3aaff9589f5c5402201d16f7caa01acf0b9374ed8724')
|
||||||
|
|
||||||
|
prepare() {
|
||||||
|
cd "${pkgname}-${pkgver}"
|
||||||
|
mv libexec lib
|
||||||
|
|
||||||
|
sed -i 's/libexec/lib/g' Makefile
|
||||||
|
sed -i 's/sbin/bin/g' Makefile
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cd "${pkgname}-${pkgver}"
|
||||||
|
|
||||||
|
make DESTDIR="${pkgdir}" install
|
||||||
|
rm -r "${pkgdir}"/{run,var}
|
||||||
|
|
||||||
|
python -m compileall -d /usr/lib "${pkgdir}/usr/lib"
|
||||||
|
python -O -m compileall -d /usr/lib "${pkgdir}/usr/lib"
|
||||||
|
|
||||||
|
install -Dm644 tuned.service "${pkgdir}/usr/lib/systemd/system/"
|
||||||
|
}
|
7
tuned/tuned.install
Normal file
7
tuned/tuned.install
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
post_install() {
|
||||||
|
systemd-tmpfiles --create tuned.conf
|
||||||
|
}
|
||||||
|
|
||||||
|
pre_remove() {
|
||||||
|
systemd-tmpfiles --remove tuned.conf
|
||||||
|
}
|
Loading…
Reference in a new issue