Skip to content

Commit

Permalink
Upgrade Makefile and bootstrap.sh to python3
Browse files Browse the repository at this point in the history
  • Loading branch information
aharter committed Oct 23, 2018
1 parent dae2a68 commit 28e52b3
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 20 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# You should have received a copy of the GNU General Public License
# along with pulseaudio-dlna. If not, see <http://www.gnu.org/licenses/>.

python ?= python2.7
python ?= python3
user ?= $(shell whoami)

all: pulseaudio_dlna.egg-info
Expand Down
37 changes: 18 additions & 19 deletions scripts/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -59,31 +59,30 @@ function install_fonts() {

function install_dev() {
sudo apt-get install \
python2.7 \
python-pip \
python-setuptools \
python-dbus \
python-docopt \
python-requests \
python-setproctitle \
python-gi \
python-protobuf \
python-notify2 \
python-psutil \
python-concurrent.futures \
python-chardet \
python-netifaces \
python-netaddr \
python-pyroute2 \
python-lxml \
python-zeroconf \
python3 \
python3-pip \
python3-setuptools \
python3-dbus \
python3-docopt \
python3-requests \
python3-setproctitle \
python3-gi \
python3-protobuf \
python3-notify2 \
python3-psutil \
python3-chardet \
python3-netifaces \
python3-netaddr \
python3-pyroute2 \
python3-lxml \
python3-zeroconf \
vorbis-tools \
sox \
lame \
flac \
opus-tools \
pavucontrol \
virtualenv python-dev git-core
virtualenv python3-dev git-core
[[ -d ~/pulseaudio-dlna ]] || \
git clone https://github.com/masmu/pulseaudio-dlna.git ~/pulseaudio-dlna
}
Expand Down

0 comments on commit 28e52b3

Please sign in to comment.