[vlc-commits] macOS: Remove BGHUDAppKit in build scripts

2017-01-31 Thread Marvin Scholz
vlc | branch: master | Marvin Scholz  | Mon Jan 30 12:15:23 
2017 +0100| [6b536f65fdf037203fa73a9a3a9b78a42b22a056] | committer: 
Jean-Baptiste Kempf

macOS: Remove BGHUDAppKit in build scripts

This removes BGHUDAppKit from the Xcode project, package and codesign script.

Signed-off-by: Jean-Baptiste Kempf 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=6b536f65fdf037203fa73a9a3a9b78a42b22a056
---

 extras/package/macosx/codesign.sh   | 3 ---
 extras/package/macosx/package.mak   | 2 --
 extras/package/macosx/vlc.xcodeproj/project.pbxproj | 6 --
 3 files changed, 11 deletions(-)

diff --git a/extras/package/macosx/codesign.sh 
b/extras/package/macosx/codesign.sh
index 8131d2c..a45c513 100755
--- a/extras/package/macosx/codesign.sh
+++ b/extras/package/macosx/codesign.sh
@@ -92,8 +92,6 @@ else
 find VLC.app/Contents/Frameworks -type f -name "*.txt" -exec rm '{}' \;
 
 info "Signing frameworks"
-IDENTIFIER="com.binarymethod.BGHUDAppKit"
-codesign --force --verbose -s "$IDENTITY" 
--preserve-metadata=identifier,entitlements --requirements 
"$FIRSTPARTOF_REQUIREMENT$IDENTIFIER$SECONDPARTOF_REQUIREMENT" --timestamp=none 
VLC.app/Contents/Frameworks/BGHUDAppKit.framework/Versions/A
 IDENTIFIER="com.growl.growlframework"
 codesign --force --verbose -s "$IDENTITY" 
--preserve-metadata=identifier,entitlements --requirements 
"$FIRSTPARTOF_REQUIREMENT$IDENTIFIER$SECONDPARTOF_REQUIREMENT" --timestamp=none 
VLC.app/Contents/Frameworks/Growl.framework/Versions/A
 IDENTIFIER="org.sparkle-project.Sparkle.Autoupdate"
@@ -184,7 +182,6 @@ fi
 info "all items signed, validating..."
 
 info "Validating frameworks"
-codesign --verify -vv VLC.app/Contents/Frameworks/BGHUDAppKit.framework
 codesign --verify -vv VLC.app/Contents/Frameworks/Growl.framework
 codesign --verify -vv VLC.app/Contents/Frameworks/Sparkle.framework
 
diff --git a/extras/package/macosx/package.mak 
b/extras/package/macosx/package.mak
index 0206af0..29fbd9a 100644
--- a/extras/package/macosx/package.mak
+++ b/extras/package/macosx/package.mak
@@ -18,8 +18,6 @@ VLC-dev.app: VLC-tmp
 VLC.app: VLC-tmp
rm -Rf $@
cp -R VLC-tmp $@
-   rm -Rf 
$@/Contents/Frameworks/BGHUDAppKit.framework/Versions/A/Resources/BGHUDAppKitPlugin.ibplugin
-   rm -Rf 
$@/Contents/Frameworks/BGHUDAppKit.framework/Versions/A/Resources/README.textile
PRODUCT="$@" ACTION="release-makefile" src_dir=$(srcdir) 
build_dir=$(top_builddir) sh $(srcdir)/extras/package/macosx/build-package.sh
bin/vlc-cache-gen $@/Contents/MacOS/plugins
find $@ -type d -exec chmod ugo+rx '{}' \;
diff --git a/extras/package/macosx/vlc.xcodeproj/project.pbxproj 
b/extras/package/macosx/vlc.xcodeproj/project.pbxproj
index 6c3f61e..5241549 100644
--- a/extras/package/macosx/vlc.xcodeproj/project.pbxproj
+++ b/extras/package/macosx/vlc.xcodeproj/project.pbxproj
@@ -644,8 +644,6 @@
CC426FD11020D44F00A32659 /* Sparkle.framework in Frameworks */ 
= {isa = PBXBuildFile; fileRef = CC426FD01020D44F00A32659 /* Sparkle.framework 
*/; };
CC4EFC2D13E96BD00091D19A /* dropzone.png in Resources */ = {isa 
= PBXBuildFile; fileRef = CC4EFC2C13E96BD00091D19A /* dropzone.png */; };
CC8062641021F8790021EB9A /* dsa_pub.pem in Resources */ = {isa 
= PBXBuildFile; fileRef = CC8062631021F8790021EB9A /* dsa_pub.pem */; };
-   CC84FB2D130083BB00816D38 /* BGHUDAppKit.framework in Frameworks 
*/ = {isa = PBXBuildFile; fileRef = CC84FB2C130083BB00816D38 /* 
BGHUDAppKit.framework */; };
-   CC84FB481300843200816D38 /* BGHUDAppKit.framework in Copy 
Frameworks */ = {isa = PBXBuildFile; fileRef = CC84FB2C130083BB00816D38 /* 
BGHUDAppKit.framework */; };
CC91906E159B4BB800E634A7 /* volume-high_d...@2x.png in 
Resources */ = {isa = PBXBuildFile; fileRef = CC91903C159B4BB800E634A7 /* 
volume-high_d...@2x.png */; };
CC91906F159B4BB800E634A7 /* volume-low_d...@2x.png in Resources 
*/ = {isa = PBXBuildFile; fileRef = CC91903D159B4BB800E634A7 /* 
volume-low_d...@2x.png */; };
CC919070159B4BB800E634A7 /* volume-slider-knob_d...@2x.png in 
Resources */ = {isa = PBXBuildFile; fileRef = CC91903E159B4BB800E634A7 /* 
volume-slider-knob_d...@2x.png */; };
@@ -796,7 +794,6 @@
dstPath = "";
dstSubfolderSpec = 10;
files = (
-   CC84FB481300843200816D38 /* 
BGHUDAppKit.framework in Copy Frameworks */,
);
name = "Copy Frameworks";
runOnlyForDeploymentPostprocessing = 0;
@@ -1446,7 +1443,6 @@
CC707EC4137464CD0003010A /* 
VLCTrackSynchronizationWindowController.m */ = {isa = PBXFileReference; 
fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = 
VLCTrackSynchronizationWindowController.m; path = 

[vlc-commits] macOS: Remove BGHUDAppKit in build scripts

2017-01-31 Thread epira...@gmail.com
vlc | branch: master | epira...@gmail.com  | Mon Jan 30 
12:15:23 2017 +0100| [70f9a30c3315bfdcb82c92fad087b1949b218634] | committer: 
Jean-Baptiste Kempf

macOS: Remove BGHUDAppKit in build scripts

This removes BGHUDAppKit from the Xcode project, package and codesign script.

Signed-off-by: Jean-Baptiste Kempf 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=70f9a30c3315bfdcb82c92fad087b1949b218634
---

 extras/package/macosx/codesign.sh   | 3 ---
 extras/package/macosx/package.mak   | 2 --
 extras/package/macosx/vlc.xcodeproj/project.pbxproj | 6 --
 3 files changed, 11 deletions(-)

diff --git a/extras/package/macosx/codesign.sh 
b/extras/package/macosx/codesign.sh
index 8131d2c..a45c513 100755
--- a/extras/package/macosx/codesign.sh
+++ b/extras/package/macosx/codesign.sh
@@ -92,8 +92,6 @@ else
 find VLC.app/Contents/Frameworks -type f -name "*.txt" -exec rm '{}' \;
 
 info "Signing frameworks"
-IDENTIFIER="com.binarymethod.BGHUDAppKit"
-codesign --force --verbose -s "$IDENTITY" 
--preserve-metadata=identifier,entitlements --requirements 
"$FIRSTPARTOF_REQUIREMENT$IDENTIFIER$SECONDPARTOF_REQUIREMENT" --timestamp=none 
VLC.app/Contents/Frameworks/BGHUDAppKit.framework/Versions/A
 IDENTIFIER="com.growl.growlframework"
 codesign --force --verbose -s "$IDENTITY" 
--preserve-metadata=identifier,entitlements --requirements 
"$FIRSTPARTOF_REQUIREMENT$IDENTIFIER$SECONDPARTOF_REQUIREMENT" --timestamp=none 
VLC.app/Contents/Frameworks/Growl.framework/Versions/A
 IDENTIFIER="org.sparkle-project.Sparkle.Autoupdate"
@@ -184,7 +182,6 @@ fi
 info "all items signed, validating..."
 
 info "Validating frameworks"
-codesign --verify -vv VLC.app/Contents/Frameworks/BGHUDAppKit.framework
 codesign --verify -vv VLC.app/Contents/Frameworks/Growl.framework
 codesign --verify -vv VLC.app/Contents/Frameworks/Sparkle.framework
 
diff --git a/extras/package/macosx/package.mak 
b/extras/package/macosx/package.mak
index 0206af0..29fbd9a 100644
--- a/extras/package/macosx/package.mak
+++ b/extras/package/macosx/package.mak
@@ -18,8 +18,6 @@ VLC-dev.app: VLC-tmp
 VLC.app: VLC-tmp
rm -Rf $@
cp -R VLC-tmp $@
-   rm -Rf 
$@/Contents/Frameworks/BGHUDAppKit.framework/Versions/A/Resources/BGHUDAppKitPlugin.ibplugin
-   rm -Rf 
$@/Contents/Frameworks/BGHUDAppKit.framework/Versions/A/Resources/README.textile
PRODUCT="$@" ACTION="release-makefile" src_dir=$(srcdir) 
build_dir=$(top_builddir) sh $(srcdir)/extras/package/macosx/build-package.sh
bin/vlc-cache-gen $@/Contents/MacOS/plugins
find $@ -type d -exec chmod ugo+rx '{}' \;
diff --git a/extras/package/macosx/vlc.xcodeproj/project.pbxproj 
b/extras/package/macosx/vlc.xcodeproj/project.pbxproj
index 6c3f61e..5241549 100644
--- a/extras/package/macosx/vlc.xcodeproj/project.pbxproj
+++ b/extras/package/macosx/vlc.xcodeproj/project.pbxproj
@@ -644,8 +644,6 @@
CC426FD11020D44F00A32659 /* Sparkle.framework in Frameworks */ 
= {isa = PBXBuildFile; fileRef = CC426FD01020D44F00A32659 /* Sparkle.framework 
*/; };
CC4EFC2D13E96BD00091D19A /* dropzone.png in Resources */ = {isa 
= PBXBuildFile; fileRef = CC4EFC2C13E96BD00091D19A /* dropzone.png */; };
CC8062641021F8790021EB9A /* dsa_pub.pem in Resources */ = {isa 
= PBXBuildFile; fileRef = CC8062631021F8790021EB9A /* dsa_pub.pem */; };
-   CC84FB2D130083BB00816D38 /* BGHUDAppKit.framework in Frameworks 
*/ = {isa = PBXBuildFile; fileRef = CC84FB2C130083BB00816D38 /* 
BGHUDAppKit.framework */; };
-   CC84FB481300843200816D38 /* BGHUDAppKit.framework in Copy 
Frameworks */ = {isa = PBXBuildFile; fileRef = CC84FB2C130083BB00816D38 /* 
BGHUDAppKit.framework */; };
CC91906E159B4BB800E634A7 /* volume-high_d...@2x.png in 
Resources */ = {isa = PBXBuildFile; fileRef = CC91903C159B4BB800E634A7 /* 
volume-high_d...@2x.png */; };
CC91906F159B4BB800E634A7 /* volume-low_d...@2x.png in Resources 
*/ = {isa = PBXBuildFile; fileRef = CC91903D159B4BB800E634A7 /* 
volume-low_d...@2x.png */; };
CC919070159B4BB800E634A7 /* volume-slider-knob_d...@2x.png in 
Resources */ = {isa = PBXBuildFile; fileRef = CC91903E159B4BB800E634A7 /* 
volume-slider-knob_d...@2x.png */; };
@@ -796,7 +794,6 @@
dstPath = "";
dstSubfolderSpec = 10;
files = (
-   CC84FB481300843200816D38 /* 
BGHUDAppKit.framework in Copy Frameworks */,
);
name = "Copy Frameworks";
runOnlyForDeploymentPostprocessing = 0;
@@ -1446,7 +1443,6 @@
CC707EC4137464CD0003010A /* 
VLCTrackSynchronizationWindowController.m */ = {isa = PBXFileReference; 
fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = 
VLCTrackSynchronizationWindowController.m;