Skip to content

Commit

Permalink
arch: drop i686 support
Browse files Browse the repository at this point in the history
  • Loading branch information
anthraxx committed Nov 15, 2017
1 parent fe3afa2 commit 942ce1b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 105 deletions.
4 changes: 2 additions & 2 deletions Makefile
Expand Up @@ -9,7 +9,7 @@ all: update

setup: submodule
mkdir -p ./pacman/{cache,log}
mkdir -p ./pacman/arch/{i686,x86_64}/db
mkdir -p ./pacman/arch/{x86_64}/db
./db_create

submodule:
Expand All @@ -26,4 +26,4 @@ open-coverage: coverage

clean:
rm -rf ./pacman/{cache,log}
rm -rf ./pacman/arch/{i686,x86_64}/db
rm -rf ./pacman/arch/{x86_64}/db
5 changes: 2 additions & 3 deletions app/pacman.py
Expand Up @@ -6,10 +6,9 @@
from os import chdir
from time import time

archs = ['i686', 'x86_64']
archs = ['x86_64']
primary_arch = 'x86_64'
repos = {'i686': ['core', 'extra', 'community', 'testing', 'community-testing'],
'x86_64': ['core', 'extra', 'community', 'multilib', 'testing', 'community-testing', 'multilib-testing']}
repos = {'x86_64': ['core', 'extra', 'community', 'multilib', 'testing', 'community-testing', 'multilib-testing']}
configpath = './pacman/arch/{}/pacman.conf'
handles = {}
chdir(basedir)
Expand Down
100 changes: 0 additions & 100 deletions pacman/arch/i686/pacman.conf

This file was deleted.

0 comments on commit 942ce1b

Please sign in to comment.