Compare commits
No commits in common. "49383ed2368afe0061b74cfb02794e54e5278942" and "b1ad5a3f4889f9451b85b57fbd2d7f15690c82de" have entirely different histories.
49383ed236
...
b1ad5a3f48
13 changed files with 0 additions and 307 deletions
24
UNLICENSE
24
UNLICENSE
|
@ -1,24 +0,0 @@
|
|||
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/>
|
|
@ -1,22 +0,0 @@
|
|||
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
|
|
@ -1,40 +0,0 @@
|
|||
# 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"
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
post_install() {
|
||||
# Update icon cache.
|
||||
gtk-update-icon-cache -f '/usr/share/icons/hicolor' > /dev/null 2>&1
|
||||
}
|
||||
|
||||
post_upgrade() {
|
||||
post_install
|
||||
}
|
|
@ -1,24 +0,0 @@
|
|||
[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;
|
|
@ -1,22 +0,0 @@
|
|||
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
|
|
@ -1,42 +0,0 @@
|
|||
# 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"
|
||||
}
|
|
@ -1,28 +0,0 @@
|
|||
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
|
||||
}
|
|
@ -1,24 +0,0 @@
|
|||
[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;
|
|
@ -1,27 +0,0 @@
|
|||
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
|
|
@ -1,39 +0,0 @@
|
|||
# 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/"
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
post_install() {
|
||||
systemd-tmpfiles --create tuned.conf
|
||||
}
|
||||
|
||||
pre_remove() {
|
||||
systemd-tmpfiles --remove tuned.conf
|
||||
}
|
Loading…
Reference in a new issue