Skip to content

Commit

Permalink
Update versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Ri0n committed Jun 1, 2017
1 parent 3e8474a commit 5f90858
Show file tree
Hide file tree
Showing 22 changed files with 89 additions and 516 deletions.
8 changes: 4 additions & 4 deletions aspell/package_info
@@ -1,7 +1,7 @@
PACKAGES="aspell aspell_en"

aspell_file=aspell-0.60.6.1.tar.gz
aspell_url=ftp://ftp.gnu.org/gnu/aspell/aspell-0.60.6.1.tar.gz
aspell_file=aspell-0.60.7-rc1.tar.gz
aspell_url=ftp://ftp.gnu.org/gnu/aspell/aspell-0.60.7-rc1.tar.gz

aspell_en_file=aspell6-en-7.1-0.tar.bz2
aspell_en_url=ftp://ftp.gnu.org/gnu/aspell/dict/en/aspell6-en-7.1-0.tar.bz2
aspell_en_file=aspell6-en-2017.01.22-0.tar.bz2
aspell_en_url=ftp://ftp.gnu.org/gnu/aspell/dict/en/aspell6-en-2017.01.22-0.tar.bz2
17 changes: 17 additions & 0 deletions detect_platform.mk
@@ -0,0 +1,17 @@
UNAME := $(shell uname)

ifeq ($(PLATFORM),)
ifeq ($(UNAME), Darwin)
PLATFORM = mac
else ifeq ($(findstring MINGW,$(UNAME)),MINGW)
PLATFORM = win
endif
PLATFORM =
endif
export PLATFORM

ifeq($(PLATFORM),)
DEFAULT_TARGET=default-unknown
else
DEFAULT_TARGET=default-$(PLATFORM)
endif
19 changes: 19 additions & 0 deletions detect_platform.sh
@@ -0,0 +1,19 @@
#!/bin/sh

if [ -z "$PLATFORM" ]; then
platform=`uname -s`
if [ "$platform" == "Darwin" ]; then
platform=mac
elif [ "$platform" == "MINGW32_NT-6.1" ]; then
platform=win
else
echo "error: unsupported platform $platform"
exit 1
fi
else
platform="$PLATFORM"
fi

if [ "$platform" == "mac" ]; then
export MACOSX_DEPLOYMENT_TARGET=10.10
fi
19 changes: 6 additions & 13 deletions gstbundle/Makefile
@@ -1,22 +1,15 @@
UNAME := $(shell uname)
include ../detect_platform.mk

PREFIX = /psidepsbase/gstbundle
VERSION = 0.10.36

include package_info

ifeq ($(UNAME), Darwin)
PLATFORM = mac
all: default-mac
else ifeq ($(UNAME), MINGW32_NT-6.1)
PLATFORM = win
all: default-mingw
else
all: default-unknown
endif
all: $(DEFAULT_TARGET)

default-mac: dist-mac

default-mingw: dist-mingw
default-win: dist-win

clean:
rm -rf build $(PREFIX) dist
Expand All @@ -31,7 +24,7 @@ endif

dist-mac: gstbundle-$(VERSION)-mac.tar.bz2

dist-mingw: gstbundle-$(VERSION)-win.zip
dist-win: gstbundle-$(VERSION)-win.zip

packages/$(libiconv_file):
mkdir -p packages
Expand Down Expand Up @@ -229,7 +222,7 @@ build/x86_64/gstgood/ok: packages/$(gstgood_file)
./build_package.sh gstgood x86_64 $(PREFIX) $(PWD)/install
touch build/x86_64/gstgood/ok

dist/gstbundle-$(VERSION)-mac: build/i386/gettext/ok build/x86_64/gettext/ok build/i386/glib/ok build/x86_64/glib/ok build/i386/pkgconfig/ok build/x86_64/pkgconfig/ok build/i386/libjpeg/ok build/x86_64/libjpeg/ok build/i386/libogg/ok build/x86_64/libogg/ok build/i386/libvorbis/ok build/x86_64/libvorbis/ok build/i386/libtheora/ok build/x86_64/libtheora/ok build/i386/libspeex/ok build/x86_64/libspeex/ok build/i386/orc/ok build/x86_64/orc/ok build/i386/gstreamer/ok build/x86_64/gstreamer/ok build/i386/gstbase/ok build/x86_64/gstbase/ok build/i386/gstgood/ok build/x86_64/gstgood/ok
dist/gstbundle-$(VERSION)-mac: build/x86_64/gettext/ok build/x86_64/glib/ok build/x86_64/pkgconfig/ok build/x86_64/libjpeg/ok build/x86_64/libogg/ok build/x86_64/libvorbis/ok build/x86_64/libtheora/ok build/x86_64/libspeex/ok build/x86_64/orc/ok build/x86_64/gstreamer/ok build/x86_64/gstbase/ok build/x86_64/gstgood/ok
./prep_dist.sh $(PWD)/install $(PREFIX) dist/gstbundle-$(VERSION)-mac

dist/gstbundle-$(VERSION)-win: build/i386/libiconv/ok build/x86_64/libiconv/ok build/i386/libffi/ok build/x86_64/libffi/ok build/i386/gettext/ok build/x86_64/gettext/ok build/i386/glib/ok build/x86_64/glib/ok build/i386/pkgconfig/ok build/x86_64/pkgconfig/ok build/i386/libjpeg/ok build/x86_64/libjpeg/ok build/i386/libogg/ok build/x86_64/libogg/ok build/i386/libvorbis/ok build/x86_64/libvorbis/ok build/i386/libtheora/ok build/x86_64/libtheora/ok build/i386/libspeex/ok build/x86_64/libspeex/ok build/i386/orc/ok build/x86_64/orc/ok build/i386/gstreamer/ok build/x86_64/gstreamer/ok build/i386/gstbase/ok build/x86_64/gstbase/ok build/i386/gstgood/ok build/x86_64/gstgood/ok
Expand Down
11 changes: 1 addition & 10 deletions gstbundle/build_package.sh
Expand Up @@ -6,15 +6,7 @@ if [ $# != 4 ]; then
exit 1
fi

platform=`uname -s`
if [ "$platform" == "Darwin" ]; then
platform=mac
elif [ "$platform" == "MINGW32_NT-6.1" ]; then
platform=win
else
echo "error: unsupported platform $platform"
exit 1
fi
. ../detect_platform.sh

source ./package_info

Expand All @@ -25,7 +17,6 @@ destdir=$4

if [ "$platform" == "mac" ]; then
target_platform=$target_arch-apple-darwin
export MACOSX_DEPLOYMENT_TARGET=10.5
else
if [ "$target_arch" == "x86_64" ]; then
export PATH=/c/mingw64/bin:$PATH
Expand Down
32 changes: 16 additions & 16 deletions gstbundle/package_info
Expand Up @@ -3,36 +3,36 @@ PACKAGES="libiconv libffi gettext glib pkgconfig libjpeg libogg libvorbis libthe
libiconv_file=libiconv-1.14.tar.gz
libiconv_url=http://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.14.tar.gz

libffi_file=libffi-3.0.10.tar.gz
libffi_url=ftp://sourceware.org/pub/libffi/libffi-3.0.10.tar.gz
libffi_file=libffi-3.0.13.tar.gz
libffi_url=ftp://sourceware.org/pub/libffi/libffi-3.0.13.tar.gz

gettext_file=gettext-0.18.1.1.tar.gz
gettext_url=http://ftp.gnu.org/pub/gnu/gettext/gettext-0.18.1.1.tar.gz
gettext_file=gettext-0.19.8.1.tar.gz
gettext_url=http://ftp.gnu.org/pub/gnu/gettext/gettext-0.19.8.1.tar.gz

# repackaged as bz2 and hosted on psi-im.org, so you don't need xzdec
glib_file=glib-2.32.0.tar.bz2
glib_url=http://psi-im.org/files/deps/glib-2.32.0.tar.bz2
glib_file=glib-2.50.3.tar.bz2
glib_url=http://psi-im.org/files/deps/glib-2.50.3.tar.bz2

pkgconfig_file=pkg-config-0.26.tar.gz
pkgconfig_url=http://pkgconfig.freedesktop.org/releases/pkg-config-0.26.tar.gz
pkgconfig_file=pkg-config-0.29.2.tar.gz
pkgconfig_url=http://pkgconfig.freedesktop.org/releases/pkg-config-0.29.2.tar.gz

libjpeg_file=jpegsrc.v6b.tar.gz
libjpeg_url=http://www.ijg.org/files/jpegsrc.v6b.tar.gz

libogg_file=libogg-1.3.0.tar.gz
libogg_url=http://downloads.xiph.org/releases/ogg/libogg-1.3.0.tar.gz
libogg_file=libogg-1.3.2.tar.gz
libogg_url=http://downloads.xiph.org/releases/ogg/libogg-1.3.2.tar.gz

libvorbis_file=libvorbis-1.3.2.tar.bz2
libvorbis_url=http://downloads.xiph.org/releases/vorbis/libvorbis-1.3.2.tar.bz2
libvorbis_file=libvorbis-1.3.5.tar.bz2
libvorbis_url=http://downloads.xiph.org/releases/vorbis/libvorbis-1.3.5.tar.bz2

libtheora_file=libtheora-1.1.1.tar.bz2
libtheora_url=http://downloads.xiph.org/releases/theora/libtheora-1.1.1.tar.bz2

libspeex_file=speex-1.2rc1.tar.gz
libspeex_url=http://downloads.xiph.org/releases/speex/speex-1.2rc1.tar.gz
libspeex_file=speex-1.2.0.tar.gz
libspeex_url=http://downloads.xiph.org/releases/speex/speex-1.2.0.tar.gz

orc_file=orc-0.4.16.tar.gz
orc_url=http://code.entropywave.com/download/orc/orc-0.4.16.tar.gz
orc_file=orc-0.4.26.tar.gz
orc_url=https://gstreamer.freedesktop.org/src/orc/orc-0.4.26.tar.gz

gstreamer_file=gstreamer-0.10.36.tar.bz2
gstreamer_url=http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-0.10.36.tar.bz2
Expand Down
13 changes: 4 additions & 9 deletions openssl/Makefile
@@ -1,17 +1,12 @@
UNAME := $(shell uname)
PREFIX = /psidepsbase/openssl
VERSION = 1.0.1c
VERSION = 1.0.2l

include package_info

ifeq ($(UNAME), MINGW32_NT-6.1)
PLATFORM = win
all: default-mingw
else
all: default-unknown
endif
../detect_platform.mk
all: $(DEFAULT_TARGET)

default-mingw: dist
default-win: dist

clean:
rm -rf build $(PREFIX) dist
Expand Down
4 changes: 2 additions & 2 deletions openssl/package_info
@@ -1,4 +1,4 @@
PACKAGES="openssl"

openssl_file=openssl-1.0.1c.tar.gz
openssl_url=http://openssl.org/source/openssl-1.0.1c.tar.gz
openssl_file=openssl-1.0.2l.tar.gz
openssl_url=http://openssl.org/source/openssl-1.0.2l.tar.gz
16 changes: 4 additions & 12 deletions psimedia/Makefile
@@ -1,22 +1,14 @@
UNAME := $(shell uname)
include ../detect_platform.mk
PREFIX = /psidepsbase/psimedia
VERSION = 20120725
VERSION = 1.0.5

include package_info

ifeq ($(UNAME), Darwin)
PLATFORM = mac
all: default-mac
else ifeq ($(UNAME), MINGW32_NT-6.1)
PLATFORM = win
all: default-mingw
else
all: default-unknown
endif
all: $(DEFAULT_TARGET)

default-mac: dist-mac

default-mingw: dist-mingw
default-win: dist-win

clean:
rm -rf build $(PREFIX) dist
Expand Down
12 changes: 1 addition & 11 deletions psimedia/build_package.sh
Expand Up @@ -6,16 +6,7 @@ if [ $# != 4 ]; then
exit 1
fi

platform=`uname -s`
if [ "$platform" == "Darwin" ]; then
platform=mac
elif [ "$platform" == "MINGW32_NT-6.1" ]; then
platform=win
else
echo "error: unsupported platform $platform"
exit 1
fi

. ../detect_platform.sh
source ./package_info

package_name=$1
Expand All @@ -25,7 +16,6 @@ destdir=$4

if [ "$platform" == "mac" ]; then
target_platform=$target_arch-apple-darwin
export MACOSX_DEPLOYMENT_TARGET=10.5
else
if [ "$target_arch" == "x86_64" ]; then
export PATH=/c/mingw64/bin:$PATH
Expand Down
4 changes: 2 additions & 2 deletions psimedia/package_info
@@ -1,4 +1,4 @@
PACKAGES="psimedia"

psimedia_file=psimedia-20120725.tar.bz2
psimedia_url=http://psi-im.org/files/deps/psimedia-20120725.tar.bz2
psimedia_file=psimedia-1.0.5.tar.bz2
psimedia_url=https://github.com/psi-plus/psimedia/archive/v1.0.5.zip
2 changes: 1 addition & 1 deletion qca/Makefile
@@ -1,6 +1,6 @@
UNAME := $(shell uname)
PREFIX = /psidepsbase/qca
VERSION = 2.0.3
VERSION = 2.1.4_rc1

include package_info

Expand Down

0 comments on commit 5f90858

Please sign in to comment.