Remove old apt stuff

This commit is contained in:
Jake Howard 2016-11-07 21:59:35 +00:00
parent 410a6e65d8
commit 151596e515
9 changed files with 0 additions and 145 deletions

View File

@ -1,3 +0,0 @@
# apt
The packages here are likely out of date. Now I've switched mostly over to Arch, I don't need to keep ubuntu dotfiles. Must try to keep this list as up-to-date as possible!

View File

@ -1,24 +0,0 @@
#!/usr/bin/env bash
HCLINE="deb http://downloads.hipchat.com/linux/apt stable main"
HCFILE=/etc/apt/sources.list.d/atlassian-hipchat.list
ILINE="deb http://apt.insynchq.com/ubuntu wily non-free contrib"
IFILE=/etc/apt/sources.list.d/atlassian-hipchat.list
VLINE="deb http://download.virtualbox.org/virtualbox/debian wily contrib"
VFILE=/etc/apt/sources.list.d/virtualbox.list
OCLINE="deb http://download.opensuse.org/repositories/isv:/ownCloud:/desktop/xUbuntu_15.10/ /"
OCFILE=/etc/apt/sources.list.d/owncloud-client.list
echo ">> Removing old files..."
rm -rf $HCFILE $IFILE $VFILE $OCFILE
touch $HCFILE $IFILE $VFILE $OCFILE
echo "Adding new sources..."
echo "$HCLINE" >> "$HCFILE"
echo "$ILINE" >> "$IFILE"
echo "$VLINE" >> "$VFILE"
echo "$OCLINE" >> "$OCFILE"

View File

@ -1,17 +0,0 @@
# SDK
- Android SDK
- Java
# Applications not installed automatically
- [Airplay](http://www.mediafire.com/download/v3h1dbwpqk04h58/airplay.jar)
- Android Studio
- Corebird
- GitKraken
- Messenger for desktop
- PlayOnLinux
- skype
- slack
- spotify
- WPS office
- xampp
- Yandex

View File

@ -1,27 +0,0 @@
[
"arduino",
"arduino-core",
"chromium-browser",
"clamtk",
"filezilla",
"gimp",
"git",
"gnome-paint",
"gparted",
"gufw",
"htop",
"hexchat",
"nautilus-dropbox",
"python-dev",
"python-pip",
"python3-dev",
"python3-pip",
"python3-venv",
"sl",
"ssh",
"steam",
"terminator",
"ttf-mscorefonts-installer",
"thunderbird",
"vlc"
]

View File

@ -1,12 +0,0 @@
[
"hipchat",
"insync",
"kodi",
"nodejs",
"owncloud-client",
"remmina",
"remmina-plugin-rdp",
"libfreerdp-plugins-standard",
"virtualbox-5.0",
"zeal"
]

View File

@ -1,6 +0,0 @@
[
"https://www.hipchat.com/keys/hipchat-linux.key",
"https://d2t3ff60b2tol4.cloudfront.net/services@insynchq.com.gpg.key",
"https://www.virtualbox.org/download/oracle_vbox.asc",
"http://download.opensuse.org/repositories/isv:ownCloud:desktop/xUbuntu_15.10/Release.key"
]

View File

@ -1,5 +0,0 @@
[
"ppa:team-xbmc/ppa",
"ppa:remmina-ppa-team/remmina-next",
"ppa:zeal-developers/ppa"
]

View File

@ -1,19 +0,0 @@
#!/usr/bin/env bash
echo ">> Collecting Packages..."
wget https://atom.io/download/deb -O atom.deb
wget "https://www.astrill.com/downloads/astrill-setup-linux64.deb?mirror=uk" -O astrill.deb
curl -sL https://deb.nodesource.com/setup_5.x | sudo -E bash -
echo ">> Installing Packages..."
dpkg -i atom.deb
dpkg -i astrill.deb
echo ">> Installing other packages..."
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.30.2/install.sh | bash
wget -O - https://raw.githubusercontent.com/nvbn/thefuck/master/install.sh | bash
wget -qO- http://plasmasturm.org/code/vistafonts-installer/vistafonts-installer | bash
echo ">> Cleaning up..."
rm -rf atom.deb astrill.deb

View File

@ -1,32 +0,0 @@
#!/usr/bin/env python3
import json, os
# Update currently installed packages
os.system('sudo apt-get update -y')
os.system('sudo apt-get upgrade -y')
os.system('sudo apt-get dist-upgrade -y')
# Install packages in pre-installed repos
packages = " ".join(json.load(open('apt-installs-core.json')))
os.system("sudo apt-get install {} -y".format(packages))
# Add keys for extra apt repos
for key in json.load(open('apt-keys.json')):
os.system("wget -O - {} | sudo apt-key add -".format(key))
# Add extra repos by url
os.system('sudo apt/add-apt-sources.sh')
# Add extra urls by PPA
for repo in json.load(open('apt-repos.json')):
os.system("sudo add-apt-repository {} -y".format(repo))
# Get package info from new repos
os.system('sudo apt-get update -y')
# Install extra packages from new repos
packages = " ".join(json.load(open('apt-installs-extra.json')))
os.system("sudo apt-get install {} -y".format(packages))
# Install packages with non-standard install
os.system('apt/custom-installs.sh')