From 5822baba1d687aab4b1ceafbad2382ae6b4703c3 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Mon, 1 Feb 2021 00:58:34 -0500 Subject: Removed remaining old files --- .gitignore | 56 ------------------------------------------------------ .travis.yml | 34 --------------------------------- .travis.yml.broken | 50 ------------------------------------------------ 3 files changed, 140 deletions(-) delete mode 100644 .gitignore delete mode 100644 .travis.yml delete mode 100644 .travis.yml.broken diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 3f0e9d0..0000000 --- a/.gitignore +++ /dev/null @@ -1,56 +0,0 @@ -# C++ objects and libs -*.slo -*.lo -*.o -*.a -*.la -*.lai -*.so -*.so.* -*.dll -*.dylib - -# Qt-es -object_script.*.Release -object_script.*.Debug -*_plugin_import.cpp -/.qmake.cache -/.qmake.stash -*.pro.user -*.pro.user.* -*.qbs.user -*.qbs.user.* -*.moc -moc_*.cpp -moc_*.h -qrc_*.cpp -ui_*.h -*.qmlc -*.jsc -Makefile* -*build-* -*.qm -*.prl - -# Qt unit tests -target_wrapper.* - -# QtCreator -*.autosave - -# QtCreator Qml -*.qmlproject.user -*.qmlproject.user.* - -# QtCreator CMake -CMakeLists.txt.user* - -# QtCreator 4.8< compilation database -compile_commands.json - -# QtCreator local machine specific files for imported projects -*creator.user* - -build - -android diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index aafbbd1..0000000 --- a/.travis.yml +++ /dev/null @@ -1,34 +0,0 @@ - -language: cpp -sudo: require -dist: trusty -before_install: - - sudo apt-get install libtag1-dev qt5-qmake libqt5x11extras5-dev qt5-default qttools5-dev-tools libqt5svg5-dev qtmultimedia5-dev libgtk2.0-dev -script: - - qmake - - make -j$(nproc) - - make install INSTALL_ROOT=appdir -j$(nproc) install ; find appdir/ - - wget -c -nv "https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage" - - chmod a+x linuxdeployqt-continuous-x86_64.AppImage - - "./linuxdeployqt-continuous-x86_64.AppImage appdir/usr/share/applications/*.desktop -bundle-non-qt-libs" - - "./linuxdeployqt-continuous-x86_64.AppImage appdir/usr/share/applications/*.desktop -appimage" -after_success: - - find appdir -executable -type f -exec ldd {} \; | grep " => /usr" | cut -d " " -f 2-3 | sort | uniq - - wget -c https://github.com/probonopd/uploadtool/raw/master/upload.sh - - bash upload.sh AleePlayer*.AppImage* - - wget https://raw.githubusercontent.com/k3rn31p4nic/travis-ci-discord-webhook/master/send.sh - - chmod +x send.sh - - ./send.sh success $WEBHOOK_URL -after_failure: - - wget https://raw.githubusercontent.com/k3rn31p4nic/travis-ci-discord-webhook/master/send.sh - - chmod +x send.sh - - ./send.sh failure $WEBHOOK_URL - -compiler: - - gcc -dist: xenial - -branches: - except: - - # Do not build tags that we create when we upload to GitHub Releases - - /^(?i:continuous)/ diff --git a/.travis.yml.broken b/.travis.yml.broken deleted file mode 100644 index ee45ede..0000000 --- a/.travis.yml.broken +++ /dev/null @@ -1,50 +0,0 @@ - -language: cpp -os: - - linux -# - osx -sudo: require -dist: trusty -#osx_image: xcode10.2 -before_install: - - export STAGE=before_install - - ./scripts/travis.sh -script: - - export STAGE=script - - ./scripts/travis.sh - -after_success: - - export STAGE=after_success - - ./scripts/travis.sh - - wget https://raw.githubusercontent.com/k3rn31p4nic/travis-ci-discord-webhook/master/send.sh - - chmod +x send.sh - - ./send.sh success $WEBHOOK_URL -after_failure: - - wget https://raw.githubusercontent.com/k3rn31p4nic/travis-ci-discord-webhook/master/send.sh - - chmod +x send.sh - - ./send.sh failure $WEBHOOK_URL - -compiler: - - gcc -dist: xenial - -#addons: -# homebrew: -# taps: -# - kde-mac/kde -# packages: -# - qt5 -# - gstreamer -# - gst-plugins-good -# - gst-plugins-bad -# - gst-plugins-ugly -# - cmake -# - libmusicbrainz -# - taglib -# - kf5-extra-cmake-modules -# update: true - -branches: - except: - - # Do not build tags that we create when we upload to GitHub Releases - - /^(?i:continuous)/ -- cgit v1.2.3