From cb82f0af6781d71b6cbed5af55cef56555f837a2 Mon Sep 17 00:00:00 2001 From: Tharre Date: Tue, 7 Dec 2021 07:26:28 +0100 Subject: Remove old packages --- .gitmodules | 6 -- albion-online-launcher-bin/Albion-Online | 16 ------ albion-online-launcher-bin/PKGBUILD | 35 ------------ .../albion-online-launcher.desktop | 8 --- eibd/PKGBUILD | 55 ------------------- eibd/eibd.conf | 2 - eibd/eibd.patch | 25 --------- eibd/eibd.service | 12 ---- eibd/eibd.socket | 8 --- ftl/.SRCINFO | 20 ------- ftl/PKGBUILD | 61 --------------------- ftl/ftl.desktop | 9 --- ftl/ftl.sh | 4 -- haskell-tasty-hspec | 1 - papersplease | 1 - spigot/.gitignore | 1 - spigot/PKGBUILD | 27 --------- spigot/spigot.install | 21 ------- spigot/spigot.service | 15 ----- the-binding-of-isaac/.gitignore | 1 - the-binding-of-isaac/PKGBUILD | 41 -------------- the-binding-of-isaac/isaac.desktop | 8 --- the-binding-of-isaac/isaac.png | Bin 5209 -> 0 bytes 23 files changed, 377 deletions(-) delete mode 100755 albion-online-launcher-bin/Albion-Online delete mode 100644 albion-online-launcher-bin/PKGBUILD delete mode 100644 albion-online-launcher-bin/albion-online-launcher.desktop delete mode 100644 eibd/PKGBUILD delete mode 100644 eibd/eibd.conf delete mode 100644 eibd/eibd.patch delete mode 100644 eibd/eibd.service delete mode 100644 eibd/eibd.socket delete mode 100644 ftl/.SRCINFO delete mode 100644 ftl/PKGBUILD delete mode 100644 ftl/ftl.desktop delete mode 100755 ftl/ftl.sh delete mode 160000 haskell-tasty-hspec delete mode 160000 papersplease delete mode 100644 spigot/.gitignore delete mode 100644 spigot/PKGBUILD delete mode 100644 spigot/spigot.install delete mode 100644 spigot/spigot.service delete mode 100644 the-binding-of-isaac/.gitignore delete mode 100644 the-binding-of-isaac/PKGBUILD delete mode 100644 the-binding-of-isaac/isaac.desktop delete mode 100644 the-binding-of-isaac/isaac.png diff --git a/.gitmodules b/.gitmodules index 3ec2e29..fec5137 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,6 +1,3 @@ -[submodule "papersplease"] - path = papersplease - url = ssh://aur@aur4.archlinux.org/papersplease.git [submodule "grokmirror"] path = grokmirror url = ssh://aur@aur.archlinux.org/grokmirror.git @@ -10,9 +7,6 @@ [submodule "diod"] path = diod url = ssh://aur@aur.archlinux.org/diod.git -[submodule "haskell-tasty-hspec"] - path = haskell-tasty-hspec - url = ssh://aur@aur.archlinux.org/haskell-tasty-hspec.git [submodule "pandoc-pyplot"] path = pandoc-pyplot url = ssh://aur@aur.archlinux.org/pandoc-pyplot.git diff --git a/albion-online-launcher-bin/Albion-Online b/albion-online-launcher-bin/Albion-Online deleted file mode 100755 index 73b4b11..0000000 --- a/albion-online-launcher-bin/Albion-Online +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/sh -XDG_DATA_HOME="${XDG_DATA_HOME-"$HOME/.local/share"}" -INSTALL_DIR="$XDG_DATA_HOME/albion-online" - -if ! cmp -s "$INSTALL_DIR/launcher/version.txt" /usr/share/albion-online/launcher/version.txt; then - mkdir -p "$INSTALL_DIR" - chmod 700 "$INSTALL_DIR" - rm -rf "$INSTALL_DIR/launcher" - cp -a /usr/share/albion-online/launcher "$INSTALL_DIR" -fi - -# FIXME: remove when qt scaling bug is fixed -export QT_AUTO_SCREEN_SCALE_FACTOR=0 - -export LD_PRELOAD="$INSTALL_DIR/game_x64/Albion-Online_Data/Plugins/x86_64/libSDL2-2.0.so.0" -"$INSTALL_DIR/launcher/Albion-Online" diff --git a/albion-online-launcher-bin/PKGBUILD b/albion-online-launcher-bin/PKGBUILD deleted file mode 100644 index 0e0e364..0000000 --- a/albion-online-launcher-bin/PKGBUILD +++ /dev/null @@ -1,35 +0,0 @@ -# Maintainer: Tharre - -pkgname=albion-online-launcher-bin -pkgver=1.0.34.178 -pkgrel=1 -epoch=1 -pkgdesc="The first true cross-platform Sandbox MMO -- launcher client" -url="https://albiononline.com/" -arch=('x86_64') -license=('custom') -depends=('libgl' 'qt5-webengine' 'libxinerama' 'ttf-font' 'sndio') -makedepends=('patchelf') -source=(${pkgname}-${pkgver}.zip::"https://live.albiononline.com/autoupdate/launcher-linux-setup-${pkgver}" - "Albion-Online" "albion-online-launcher.desktop") -options=(!strip) -sha256sums=('ab31e92ff30afcfe457eee7201be4486aba26c125b48bda329e070193efce188' - '6e3967409add36965304f7c09567b274c1e7d1dbd090d20d904c4180976cd965' - '33dd2dde06e27a18b04296c53998464080ccfd025bd0674acd7f08e8dc003660') - -prepare() { - cd data/launcher - patchelf --remove-rpath Albion-Online -} - -package() { - cd data/launcher - mkdir -p "${pkgdir}/usr/share/albion-online/launcher" - cp -a Albion-Online xdelta3 version.txt *.qm "${pkgdir}/usr/share/albion-online/launcher" - cd - - - install -Dm644 "${srcdir}/albion-online-launcher.desktop" -t "${pkgdir}/usr/share/applications" - install -Dm644 data/AlbionOnline.xpm -t "${pkgdir}/usr/share/albion-online/" - install -Dm644 data/eula.txt -t "${pkgdir}/usr/share/licenses/${pkgname}" - install -Dm755 Albion-Online -t "${pkgdir}/usr/bin/" -} diff --git a/albion-online-launcher-bin/albion-online-launcher.desktop b/albion-online-launcher-bin/albion-online-launcher.desktop deleted file mode 100644 index 42c2db4..0000000 --- a/albion-online-launcher-bin/albion-online-launcher.desktop +++ /dev/null @@ -1,8 +0,0 @@ -[Desktop Entry] -Type=Application -Name=Albion Online Launcher -Comment=The first true cross-platform Sandbox MMO -- game launcher -Exec=/usr/bin/Albion-Online -Icon=/usr/share/albion-online/AlbionOnline.xpm -Categories=Game -Terminal=false diff --git a/eibd/PKGBUILD b/eibd/PKGBUILD deleted file mode 100644 index bb512f6..0000000 --- a/eibd/PKGBUILD +++ /dev/null @@ -1,55 +0,0 @@ -# Maintainer: Sven Fischer -# Contributor: Thijs Vermeir - -pkgname=eibd -_pkgname=bcusdk -pkgver=0.0.5 -pkgrel=7 -pkgdesc="Daemon as interface to the EIB / KNX bus" -arch=('i686' 'x86_64' 'arm' 'armv7h') -url="http://www.auto.tuwien.ac.at/~mkoegler/index.php/bcusdk" -license=('GPL') -depends=('pthsem>=2.0.8' 'gcc-libs') -source=(http://www.auto.tuwien.ac.at/~mkoegler/eib/bcusdk_${pkgver}.tar.gz - eibd.patch eibd.socket eibd.service eibd.conf) -md5sums=('5f81bc4e6bb53564573d573e795a9a5f' - 'b9e50d68138fb74a4d0f6370a720d8fe' - '82e079c823fa226146ba49b47c76bab7' - '761bbad0f7d8cde42c4d2cd12bae3eb9' - '815323eebff8bc442c1e653a34e6b0b4') - -prepare() { - cd "${srcdir}/${_pkgname}-${pkgver}" - patch -p1 -i ${srcdir}/eibd.patch -} - -build() { - cd "${srcdir}/${_pkgname}-${pkgver}" - - ./configure \ - --prefix=/usr \ - --enable-onlyeibd \ - --enable-usb \ - --enable-ft12 \ - --enable-eibnetip \ - --enable-eibnetipserver \ - --enable-eibnetiptunnel - - cd "${srcdir}/${_pkgname}-${pkgver}/common" - make - - cd "${srcdir}/${_pkgname}-${pkgver}/eibd" - make -} - -package() { - cd "${srcdir}" - install -Dm644 eibd.socket eibd.service -t "${pkgdir}/usr/lib/systemd/system" - install -Dm644 eibd.conf -t "${pkgdir}/etc/conf.d" - - cd "${srcdir}/${_pkgname}-${pkgver}/common" - make DESTDIR="${pkgdir}" install - - cd "${srcdir}/${_pkgname}-${pkgver}/eibd" - make DESTDIR="${pkgdir}" install -} diff --git a/eibd/eibd.conf b/eibd/eibd.conf deleted file mode 100644 index 82d7147..0000000 --- a/eibd/eibd.conf +++ /dev/null @@ -1,2 +0,0 @@ -# Option file for eibd -EIBD_OPTS="-D -T -S -i " diff --git a/eibd/eibd.patch b/eibd/eibd.patch deleted file mode 100644 index daa9eb7..0000000 --- a/eibd/eibd.patch +++ /dev/null @@ -1,25 +0,0 @@ -diff -rupN bcusdk-0.0.5.orig/eibd/server/eibd.cpp bcusdk-0.0.5/eibd/server/eibd.cpp ---- bcusdk-0.0.5.orig/eibd/server/eibd.cpp 2011-02-27 19:57:20.000000000 +0100 -+++ bcusdk-0.0.5/eibd/server/eibd.cpp 2014-02-25 18:21:56.199884864 +0100 -@@ -358,7 +358,7 @@ main (int ac, char *ag[]) - } - - l2 = Create (ag[index], arg.backendflags, &t); -- if (!l2->init ()) -+ if (!l2 || !l2->init ()) - die ("initialisation of the backend failed"); - l3 = new Layer3 (l2, &t); - if (arg.port) -diff -rupN bcusdk-0.0.5.orig/eibd/usb/linux_usbfs.c bcusdk-0.0.5/eibd/usb/linux_usbfs.c ---- bcusdk-0.0.5.orig/eibd/usb/linux_usbfs.c 2011-01-26 11:50:08.000000000 +0100 -+++ bcusdk-0.0.5/eibd/usb/linux_usbfs.c 2014-02-25 18:23:21.549887409 +0100 -@@ -52,7 +52,8 @@ int pthread_mutex_trylock(pthread_mutex_ - return 0; - } - --int clock_gettime(clockid_t clk_id, struct timespec *tp) -+#define clock_gettime(A,B) xclock_gettime(A, B) -+int xclock_gettime(clockid_t clk_id, struct timespec *tp) - { - pth_int_time (tp); - return 0; diff --git a/eibd/eibd.service b/eibd/eibd.service deleted file mode 100644 index 362bf8c..0000000 --- a/eibd/eibd.service +++ /dev/null @@ -1,12 +0,0 @@ -[Unit] -Description=EIB Daemon -After=network.target - -[Service] -User=daemon -EnvironmentFile=/etc/conf.d/eibd.conf -ExecStart=/usr/bin/eibd $EIBD_OPTS -Restart=always - -[Install] -WantedBy=multi-user.target diff --git a/eibd/eibd.socket b/eibd/eibd.socket deleted file mode 100644 index 22831fe..0000000 --- a/eibd/eibd.socket +++ /dev/null @@ -1,8 +0,0 @@ -[Unit] -Conflicts=eibd.service - -[Socket] -ListenDatagram=6720 - -[Install] -WantedBy=sockets.target diff --git a/ftl/.SRCINFO b/ftl/.SRCINFO deleted file mode 100644 index df2b529..0000000 --- a/ftl/.SRCINFO +++ /dev/null @@ -1,20 +0,0 @@ -pkgbase = ftl - pkgdesc = FTL: Faster Than Light, a spaceship simulation real-time roguelike-like (requires full copy of the game) - pkgver = 1.5.13 - pkgrel = 1 - url = http://www.ftlgame.com/ - arch = i686 - arch = x86_64 - license = custom:commercial - makedepends = imagemagick - depends = gcc-libs - depends = glu - source = FTL.1.5.13.tar.gz::hib://FTL.1.5.13.tar.gz - source = ftl.sh - source = ftl.desktop - md5sums = 791e0bc8de73fcdcd5f461a4548ea2d8 - md5sums = c415361a58df0857d9a42653fdaadd5a - md5sums = f7a67ce1e0311d98f41e6d80d872cb97 - -pkgname = ftl - diff --git a/ftl/PKGBUILD b/ftl/PKGBUILD deleted file mode 100644 index 2c95a68..0000000 --- a/ftl/PKGBUILD +++ /dev/null @@ -1,61 +0,0 @@ -# Maintainer: Tharre -# Contributor: Dennis Hamester -# Contributor: J0k3r - -pkgname=ftl -pkgver=1.5.13 -pkgrel=1 -pkgdesc="FTL: Faster Than Light, a spaceship simulation real-time roguelike-like (requires full copy of the game)" -license=('custom:commercial') -arch=('i686' 'x86_64') -url="http://www.ftlgame.com/" -depends=('gcc-libs' 'glu') -makedepends=('imagemagick') -_gamepkg="FTL.${pkgver}.tar.gz" - -# You can download the Humble Indie Bundle file manually, or you can configure -# DLAGENTS in makepkg.conf to auto-download. -# -# For example, to use hib-dlagent to download files set something like this in -# your makepkg.conf (change/add -k and add -u/-p to your needs): -# DLAGENTS=('hib::/usr/bin/hib-dlagent -k 1a2b3c -o %o $(echo %u | cut -c 7-)') -# -# To auto-search through a directory containing Humble Bundle downloads, you -# could set: -# DLAGENTS=('hib::/usr/bin/find /path/to/downloads -name $(echo %u | cut -c 7-) -exec ln -s \{\} %o \; -quit') -DLAGENTS+=('hib::/usr/bin/echo "Could not find %u. Download manually to \"$(pwd)\" or setup hib:// DLAGENT in /etc/makepkg.conf."; exit 1') - -source=("${_gamepkg}"::"hib://${_gamepkg}" - ${pkgname}.sh - ${pkgname}.desktop) -md5sums=('791e0bc8de73fcdcd5f461a4548ea2d8' - 'c415361a58df0857d9a42653fdaadd5a' - 'f7a67ce1e0311d98f41e6d80d872cb97') -PKGEXT='.pkg.tar' - -package() { - install -dm755 "${pkgdir}/opt/${pkgname}" - cp -r "${srcdir}/FTL/"* "${pkgdir}/opt/${pkgname}/" - - # fix file permissions - find "${pkgdir}/opt/${pkgname}" -type d -exec chmod 755 {} + - find "${pkgdir}/opt/${pkgname}" -type f -exec chmod 644 {} + - chmod 755 "${pkgdir}/opt/${pkgname}/FTL" - chmod 755 "${pkgdir}/opt/${pkgname}/data/FTL" - - if [ "${CARCH}" = "i686" ]; then - rm -r "${pkgdir}/opt/${pkgname}/data/amd64" - find "${pkgdir}/opt/${pkgname}/data/x86" -type f -exec chmod 755 {} + - else - rm -r "${pkgdir}/opt/${pkgname}/data/x86" - find "${pkgdir}/opt/${pkgname}/data/amd64" -type f -exec chmod 755 {} + - fi - - install -Dm755 "${srcdir}/${pkgname}.sh" "${pkgdir}/usr/bin/${pkgname}" - install -Dm644 "${srcdir}/${pkgname}.desktop" "${pkgdir}/usr/share/applications/${pkgname}.desktop" - install -dm755 "${pkgdir}/usr/share/pixmaps/${pkgname}" - convert "${pkgdir}/opt/${pkgname}/data/exe_icon.bmp" "${pkgdir}/usr/share/pixmaps/${pkgname}/${pkgname}.png" - install -dm755 "${pkgdir}/usr/share/licenses" - ln -s "/opt/${pkgname}/data/licenses/" "${pkgdir}/usr/share/licenses/${pkgname}" -} - diff --git a/ftl/ftl.desktop b/ftl/ftl.desktop deleted file mode 100644 index 13c33a9..0000000 --- a/ftl/ftl.desktop +++ /dev/null @@ -1,9 +0,0 @@ -[Desktop Entry] -Name=FTL: Faster Than Light -GenericName=FTL: Faster Than Light -Comment=A spaceship simulation real-time roguelike-like -Exec=/usr/bin/ftl -Icon=/usr/share/pixmaps/ftl/ftl.png -Terminal=false -Type=Application -Categories=Game; diff --git a/ftl/ftl.sh b/ftl/ftl.sh deleted file mode 100755 index 68695f4..0000000 --- a/ftl/ftl.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh - -cd /opt/ftl -./FTL "$@" diff --git a/haskell-tasty-hspec b/haskell-tasty-hspec deleted file mode 160000 index dc4d287..0000000 --- a/haskell-tasty-hspec +++ /dev/null @@ -1 +0,0 @@ -Subproject commit dc4d2870f4d7753437610743628bf6e289d2b536 diff --git a/papersplease b/papersplease deleted file mode 160000 index c49ac5d..0000000 --- a/papersplease +++ /dev/null @@ -1 +0,0 @@ -Subproject commit c49ac5dfd169ccd49e2cba6a91675419d6216055 diff --git a/spigot/.gitignore b/spigot/.gitignore deleted file mode 100644 index b63f7d6..0000000 --- a/spigot/.gitignore +++ /dev/null @@ -1 +0,0 @@ -BuildTools.jar diff --git a/spigot/PKGBUILD b/spigot/PKGBUILD deleted file mode 100644 index 6dd3bd8..0000000 --- a/spigot/PKGBUILD +++ /dev/null @@ -1,27 +0,0 @@ -pkgname=spigot-custom -pkgver=1.8.3_R0.1 -pkgrel=1 -pkgdesc="High performance Minecraft server implementation" -arch=(any) -url="http://www.spigotmc.org" -license=("LGPL") -depends=(java-runtime-headless screen fontconfig) -makedepends=(java-environment git) -conflicts=(bukkit craftbukkit spigot-patcher spigot) -provides=(bukkit "craftbukkit=${pkgver%_*}") -install=spigot.install -source=("https://hub.spigotmc.org/jenkins/job/BuildTools/lastSuccessfulBuild/artifact/target/BuildTools.jar" -"spigot.service") -noextract=("BuildTools.jar") -md5sums=('eb95c9d92fcb90513b62586a8989dfa3' - '1c35e064da8ff6b62b804940309c651f') - -build() { - cd "$srcdir" - java -jar BuildTools.jar -} - -package() { - install -Dm644 "$srcdir/Spigot/Spigot-Server/target/spigot-${pkgver//_/-}-SNAPSHOT.jar" "$pkgdir/srv/craftbukkit/spigot.jar" - install -Dm644 "$srcdir/spigot.service" "$pkgdir/usr/lib/systemd/system/spigot.service" -} diff --git a/spigot/spigot.install b/spigot/spigot.install deleted file mode 100644 index 20067d1..0000000 --- a/spigot/spigot.install +++ /dev/null @@ -1,21 +0,0 @@ -post_install() { - getent group craftbukkit >/dev/null 2>&1 || groupadd craftbukkit - getent passwd craftbukkit >/dev/null 2>&1 || useradd -g craftbukkit -d /srv/craftbukkit -s /bin/bash craftbukkit - chown -R craftbukkit:craftbukkit /srv/craftbukkit/ -} - -post_upgrade() { - post_install $1 -} - -post_remove() { - if getent passwd craftbukkit >/dev/null 2>&1; then - userdel craftbukkit - fi - if getent group craftbukkit >/dev/null 2>&1; then - groupdel craftbukkit - fi - - echo "There are probably still files in /srv/craftbukkit, you must remove those manually!" >&2 -} - diff --git a/spigot/spigot.service b/spigot/spigot.service deleted file mode 100644 index 04860b5..0000000 --- a/spigot/spigot.service +++ /dev/null @@ -1,15 +0,0 @@ -[Unit] -Description=Spigot server daemon -After=network.target - -[Service] -Type=forking -WorkingDirectory=/srv/craftbukkit/ -KillMode=none -ExecStart=/usr/bin/screen -dmS craftbukkit su craftbukkit -c "/usr/bin/java -Xms1024M -Xmx1536M -XX:MaxPermSize=128M -XX:ParallelGCThreads=$(nproc) -jar /srv/craftbukkit/spigot.jar nogui" -ExecStop=/usr/bin/screen -S craftbukkit -X stuff 'stop\n' -Restart=always - -[Install] -WantedBy=multi-user.target - diff --git a/the-binding-of-isaac/.gitignore b/the-binding-of-isaac/.gitignore deleted file mode 100644 index 2edb83b..0000000 --- a/the-binding-of-isaac/.gitignore +++ /dev/null @@ -1 +0,0 @@ -the_binding_of_isaac_wrath_of_the_lamb-linux.tar.gz diff --git a/the-binding-of-isaac/PKGBUILD b/the-binding-of-isaac/PKGBUILD deleted file mode 100644 index c547758..0000000 --- a/the-binding-of-isaac/PKGBUILD +++ /dev/null @@ -1,41 +0,0 @@ -# Original maintainer: D. Can Celasun -# TODO: add license - -pkgname=the-binding-of-isaac -pkgver=20121219 -pkgrel=2 -pkgdesc="A randomly generated action RPG shooter with heavy Rogue-like elements." -url="http://www.bindingofisaac.com" -license=('custom: "commercial"') -arch=('i686' 'x86_64') -_gamepkg="the_binding_of_isaac_wrath_of_the_lamb-linux.tar.gz" -depends_x86_64=('lib32-sqlite3' 'lib32-libidn' 'lib32-libxt' 'lib32-libxxf86vm' 'lib32-gtk2' 'lib32-curl') -optdepends_x86_64=('lib32-libvdpau: For flash player hardware acceleration') -depends_i686=('sqlite3' 'libidn' 'libxt' 'libxxf86vm' 'gtk2' 'nss' 'curl') -optdepends_i686=('libvdpau: For flash player hardware acceleration') -options=(!strip) - -# You can download the Humble Indie Bundle file manually, or you can configure -# DLAGENTS in makepkg.conf to auto-download. -DLAGENTS+=('hib::/usr/bin/echo "Could not find %u. Download manually to \"$(pwd)\" or setup hib:// DLAGENT in /etc/makepkg.conf."; exit 1') - -# Disable compression of the package -PKGEXT='.pkg.tar' - -source=("${_gamepkg}"::"hib://${_gamepkg}" - "isaac.desktop" "isaac.png") -md5sums=('f56410cdbed698cb984745e898585087' - 'bd7ab23bafd88705b42c0c328f8f6717' - 'bbc59b1fabb6036e4db450811bd3ab39') - -package(){ - # create Launcher - install -d "${pkgdir}/usr/bin/" - mv "${srcdir}/Binding of Isaac/The Binding of Isaac + Wrath of the Lamb" "${srcdir}/isaac" - install -D -m755 "${srcdir}/isaac" "${pkgdir}/usr/bin/isaac" - # Install Desktop File and Icon - install -D -m644 "${srcdir}/isaac.desktop" \ - "${pkgdir}/usr/share/applications/isaac.desktop" - install -D -m644 "${srcdir}/isaac.png" \ - "${pkgdir}/usr/share/icons/isaac.png" -} diff --git a/the-binding-of-isaac/isaac.desktop b/the-binding-of-isaac/isaac.desktop deleted file mode 100644 index 46c85f4..0000000 --- a/the-binding-of-isaac/isaac.desktop +++ /dev/null @@ -1,8 +0,0 @@ -[Desktop Entry] -Categories=Game;ActionGame;AdventureGame; -Exec=/usr/bin/isaac -Icon=isaac -Terminal=false -Type=Application -Name=The Binding of Isaac -Comment=A randomly generated action RPG shooter with heavy Rogue-like elements. diff --git a/the-binding-of-isaac/isaac.png b/the-binding-of-isaac/isaac.png deleted file mode 100644 index 37b852c..0000000 Binary files a/the-binding-of-isaac/isaac.png and /dev/null differ -- cgit v1.2.3-70-g09d2