Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Eric Sandall (a3c10f418a0d849a1e56bf48d7e00c2274cc045f)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Eric Sandall <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Eric Sandall (a3c10f418a0d849a1e56bf48d7e00c2274cc045f)
  • Date: Mon, 26 Oct 2015 17:50:59 +0000

GIT changes to master grimoire by Eric Sandall <sandalle AT sourcemage.org>:

dev/null |binary
devel/cmake/DEPENDS | 2 +-
devel/cmake/HISTORY | 3 +++
video/handbrake/BUILD | 12 +++++++++---
video/handbrake/DEPENDS | 24 +++++++++++++++---------
video/handbrake/DETAILS | 2 +-
video/handbrake/HISTORY | 9 +++++++++
video/handbrake/HandBrake-0.10.2.tar.bz2.sig |binary
8 files changed, 38 insertions(+), 14 deletions(-)

New commits:
commit ba48f7382e32dfb7c3d1b0f5d5bf1838b733ca0c
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

handbrake: Updated to 0.10.2.
Matches upstream posted SHA1.
GUI is now gtk+3 (untested).
Optionally use local yasm and cmake (autotools option breaks build).
LIBAVCODEC parameter changed to --enable-libav-aac .
libsamplerate is required for libhb sync.
Enable fdk-aac if LIBAVCODEC is built with faac (non-free).

commit ee362b9e46304212a2964fe1817d4483a829d7b5
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

cmake: "internation" -> "&al" in DEPENDS :)

diff --git a/devel/cmake/DEPENDS b/devel/cmake/DEPENDS
index e7f67e5..1359d62 100755
--- a/devel/cmake/DEPENDS
+++ b/devel/cmake/DEPENDS
@@ -5,7 +5,7 @@ depends expat '--system-expat' &&
depends zlib '--system-zlib' &&
depends bzip2 '--system-bzip2' &&
depends libarchive '--system-libarchive' &&
-optional_depends libidn '' '' 'internation domain name support' &&
+optional_depends libidn '' '' 'international domain name support' &&
optional_depends qt4 \
"--qt-gui" \
"--no-qt-gui" \
diff --git a/devel/cmake/HISTORY b/devel/cmake/HISTORY
index 2758e41..9c46904 100644
--- a/devel/cmake/HISTORY
+++ b/devel/cmake/HISTORY
@@ -1,3 +1,6 @@
+2015-10-26 Eric Sandall <sandalle AT sourcemage.org>
+ * DEPENDS: "internation" -> "&al" :)
+
2015-09-26 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 3.3.2

diff --git a/video/handbrake/BUILD b/video/handbrake/BUILD
index ed76ba2..f2f5756 100755
--- a/video/handbrake/BUILD
+++ b/video/handbrake/BUILD
@@ -1,6 +1,12 @@
-OPTS="--launch --launch-jobs=$MAKE_NJOBS $OPTS" &&
+if is_depends_enabled $(get_spell_provider $SPELL LIBAVCODEC) faac; then
+ OPTS="--enable-fdk-aac ${OPTS}"
+else
+ OPTS="--disable-fdk-aac ${OPTS}"
+fi &&

-./configure --prefix=${INSTALL_ROOT}/usr \
- $OPTS &&
+./configure --prefix="${INSTALL_ROOT}/usr" \
+ --launch \
+ --launch-jobs=${MAKE_NJOBS} \
+ ${OPTS} &&
cd build &&
make
diff --git a/video/handbrake/DEPENDS b/video/handbrake/DEPENDS
index b707b75..b7d51a7 100755
--- a/video/handbrake/DEPENDS
+++ b/video/handbrake/DEPENDS
@@ -3,25 +3,31 @@ depends $HANDBRAKE_FETCH "--fetch=$HANDBRAKE_FETCH" &&
depends fribidi &&
depends python &&
depends hal &&
+depends libsamplerate &&

optional_depends 'gstreamer' \
'--enable-gst' \
'--disable-gst' \
'enable live preview (works only in GUI)' &&

-optional_depends 'gtk+2' \
- '--enable-gtk' \
+optional_depends 'gtk+3' \
+ '--enable-gtk' \
'--disable-gtk' \
- 'for GTK+ GUI' &&
+ 'for GTK+3 GUI' &&

-optional_depends 'yasm' \
- '--enable-local-yasm' \
- '--disable-local-yasm' \
+optional_depends 'cmake' \
+ '--enable-local-cmake' \
+ '' \
+ 'build and use local cmake' &&
+
+optional_depends 'yasm' \
+ '--enable-local-yasm' \
+ '' \
'build and use local yasm' &&

-optional_depends 'LIBAVCODEC' \
- '--enable-ff-mpeg2' \
- '--disable-ff-mpeg2' \
+optional_depends 'LIBAVCODEC' \
+ '--enable-libav-aac' \
+ '--disable-libav-aac' \
'for ffmpeg MPEG2 decoding' &&

suggest_depends 'libdvdcss' '' '' 'for DVD CSS decryption'
diff --git a/video/handbrake/DETAILS b/video/handbrake/DETAILS
index 1ebfd66..850b875 100755
--- a/video/handbrake/DETAILS
+++ b/video/handbrake/DETAILS
@@ -1,5 +1,5 @@
SPELL=handbrake
- VERSION=0.9.8
+ VERSION=0.10.2
SOURCE=HandBrake-$VERSION.tar.bz2
SOURCE_DIRECTORY=$BUILD_DIRECTORY/HandBrake-$VERSION
SOURCE_URL[0]=http://handbrake.fr/rotation.php?file=$SOURCE
diff --git a/video/handbrake/HISTORY b/video/handbrake/HISTORY
index aa78664..a9dd3be 100644
--- a/video/handbrake/HISTORY
+++ b/video/handbrake/HISTORY
@@ -1,3 +1,12 @@
+2015-10-25 Eric Sandall <sandalle AT sourcemage.org>
+ * DETAILS: Updated to 0.10.2.
+ Matches upstream posted SHA1.
+ * DEPENDS: GUI is now gtk+3 (untested).
+ Optionally use local yasm and cmake (autotools option breaks build).
+ LIBAVCODEC parameter changed to --enable-libav-aac .
+ libsamplerate is required for libhb sync.
+ * BUILD: Enable fdk-aac if LIBAVCODEC is built with faac (non-free).
+
2012-09-25 Eric Sandall <sandalle AT sourcemage.org>
* DEPENDS: Optionally depend on LIBAVCODEC for ffmpeg support

diff --git a/video/handbrake/HandBrake-0.10.2.tar.bz2.sig
b/video/handbrake/HandBrake-0.10.2.tar.bz2.sig
new file mode 100644
index 0000000..a7417a0
Binary files /dev/null and b/video/handbrake/HandBrake-0.10.2.tar.bz2.sig
differ
diff --git a/video/handbrake/HandBrake-0.9.8.tar.bz2.sig
b/video/handbrake/HandBrake-0.9.8.tar.bz2.sig
deleted file mode 100644
index d297037..0000000
Binary files a/video/handbrake/HandBrake-0.9.8.tar.bz2.sig and /dev/null
differ



  • [SM-Commit] GIT changes to master grimoire by Eric Sandall (a3c10f418a0d849a1e56bf48d7e00c2274cc045f), Eric Sandall, 10/26/2015

Archive powered by MHonArc 2.6.24.

Top of Page