]> granicus.if.org Git - handbrake/commitdiff
LinGui: add Ubuntu Zesty nightly builds 1.0.4
authorJohn Stebbins <jstebbins.hb@gmail.com>
Sun, 9 Apr 2017 18:11:23 +0000 (12:11 -0600)
committerJohn Stebbins <jstebbins.hb@gmail.com>
Sun, 9 Apr 2017 18:19:22 +0000 (12:19 -0600)
(cherry picked from commit 183e0c71691453e39f1908562532c645161f6a30)

pkg/linux/debian/control.zesty [new file with mode: 0644]
pkg/linux/debian/rules.zesty [new file with mode: 0755]
pkg/linux/module.rules

diff --git a/pkg/linux/debian/control.zesty b/pkg/linux/debian/control.zesty
new file mode 100644 (file)
index 0000000..7c08681
--- /dev/null
@@ -0,0 +1,30 @@
+Source: handbrake
+Section: graphics
+Priority: optional
+Maintainer: John Stebbins <jstebbins.hb@gmail.com>
+Build-Depends: debhelper (>= 6), autotools-dev, libtool, libtool-bin, libgudev-1.0-dev, intltool, autoconf, yasm (>= 1.2.0), cmake, libbz2-dev, zlib1g-dev, libgtk-3-dev, libwebkitgtk-3.0-dev, libnotify-dev, libgstreamer1.0-dev, libgstreamer-plugins-base1.0-dev, python (>= 2.6), libappindicator3-dev, libfribidi-dev (>= 0.19.0), libxml2-dev, libogg-dev, libtheora-dev, libvorbis-dev, libopus-dev, libsamplerate0-dev, libfreetype6-dev, libfontconfig1-dev, libass-dev, libmp3lame-dev, libx264-dev, libjansson-dev
+Standards-Version: 3.8.4
+Homepage: http://www.handbrake.fr/
+
+Package: handbrake-cli
+Architecture: i386 amd64
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Conflicts: handbrake
+Description: versatile DVD ripper and video transcoder - command line
+ HandBrake is a versatile, easy-to-use tool for converting DVDs and other videos
+ into H.264, MPEG-4, or OGG formatted media. It's particularly useful for making
+ videos that are compatible with portable video devices such as the Apple
+ iPod/iPhone. This package contains the command-line variant,
+ HandBrakeCLI
+
+Package: handbrake-gtk
+Architecture: i386 amd64
+Depends: ${shlibs:Depends}, ${misc:Depends}, gstreamer1.0-libav, gstreamer1.0-plugins-base, gstreamer1.0-plugins-good, gstreamer1.0-plugins-bad, gstreamer1.0-plugins-ugly, gstreamer1.0-pulseaudio
+Conflicts: handbrake
+Description: versatile DVD ripper and video transcoder - GTK GUI
+ HandBrake is a versatile, easy-to-use tool for converting DVDs and other videos
+ into H.264, MPEG-4, or OGG formatted media. It's particularly useful for making
+ videos that are compatible with portable video devices such as the Apple
+ iPod/iPhone. This package contains the graphical variant, ghb.
+
+
diff --git a/pkg/linux/debian/rules.zesty b/pkg/linux/debian/rules.zesty
new file mode 100755 (executable)
index 0000000..bab615c
--- /dev/null
@@ -0,0 +1,85 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+
+# These are used for cross-compiling and for saving the configure script
+# from having to guess our platform (since we know it already)
+DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
+DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
+ifneq ($(DEB_HOST_GNU_TYPE),$(DEB_BUILD_GNU_TYPE))
+CROSS= --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE)
+else
+CROSS= --build $(DEB_BUILD_GNU_TYPE)
+endif
+
+PKGDESTDIR   = ../
+CONFIGURE    = ./configure
+BUILDDIR     = build
+FORCEVERSION = 
+
+$(BUILDDIR)/GNUmakefile: $(CONFIGURE)
+       dh_testdir
+       unset CFLAGS; unset CPPLAGS; unset CXXLAGS; $(CONFIGURE) --disable-gtk-update-checks --prefix=/usr
+
+build:  $(BUILDDIR)/GNUmakefile
+       dh_testdir
+       #We must build both the main project and the GTK project
+       unset CFLAGS ; unset CPPLAGS ; unset CXXLAGS; $(MAKE) -C $(BUILDDIR)
+
+clean: 
+       dh_testdir
+       dh_testroot
+
+       dh_clean
+
+install: build
+       dh_testdir
+       dh_testroot
+       dh_installdirs
+       $(MAKE) -C $(BUILDDIR) DESTDIR=$(CURDIR)/debian/tmp install
+
+# Build architecture-independent files here.
+binary-indep: build install
+       dh_testdir
+       dh_testroot
+       dh_installchangelogs -i
+       dh_installdocs -i
+       dh_install --sourcedir=debian/tmp -i
+       dh_icons -i
+       dh_link -i
+       dh_compress -i
+       dh_fixperms -i
+       dh_installdeb -i
+       dh_gencontrol -i $(FORCEVERSION)
+       dh_md5sums -i
+       dh_builddeb --destdir=$(PKGDESTDIR) -i
+
+# Build architecture-dependent files here.
+binary-arch: build install
+       dh_testdir
+       dh_testroot
+       dh_install --sourcedir=debian/tmp -a
+       dh_installchangelogs -a
+       dh_installdocs -a
+       dh_installexamples -a
+       dh_installman -a
+       dh_link -a
+       dh_icons -a
+       dh_strip -a
+       dh_compress -a
+       dh_fixperms -a
+       dh_installdeb -a
+       dh_shlibdeps -a
+       dh_gencontrol -a $(FORCEVERSION)
+       dh_md5sums -a
+       dh_builddeb -a --destdir=$(PKGDESTDIR) -- -Zbzip2
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install 
index eec601adaaefcd728e979376c893cbc4f68e278b..006a20073b3e0e67fa6ffba9166763b445dc7232 100644 (file)
@@ -113,6 +113,7 @@ $(PKG.cli.deb): $(PKG.gui.tmp.deb)
 # Debian source package rules
 #
 pkg.push.src.deb:: $(PKG.src.deb.stamp)
+       (cd $(STAGE.out.src/)zesty && dput handbrake-git-snapshots $(HB.name.lower)_$(HB.debversion)-zhb-1ppa1~zesty1_source.changes )
        (cd $(STAGE.out.src/)yakkety && dput handbrake-git-snapshots $(HB.name.lower)_$(HB.debversion)-zhb-1ppa1~yakkety1_source.changes )
        (cd $(STAGE.out.src/)xenial && dput handbrake-git-snapshots $(HB.name.lower)_$(HB.debversion)-zhb-1ppa1~xenial1_source.changes )
        (cd $(STAGE.out.src/)vivid && dput handbrake-git-snapshots $(HB.name.lower)_$(HB.debversion)-zhb-1ppa1~vivid1_source.changes )
@@ -121,6 +122,20 @@ pkg.push.src.deb:: $(PKG.src.deb.stamp)
 $(PKG.src.deb.stamp): GNUmakefile
        -$(RM.exe) -rf $(STAGE.out.src/)
        make contrib.fetch
+       $(MKDIR.exe) -p $(STAGE.out.src/)zesty
+       $(GIT.exe) -C $(SRC/) archive --format=tar --prefix=$(PKG.deb.basename)/ $(HB.repo.shorthash) | $(TAR.exe) -xC $(STAGE.out.src/)zesty/
+       $(SRC/)scripts/repo-info.sh $(SRC/) > $(STAGE.out.src/)zesty/$(PKG.deb.basename)/version.txt
+       $(CP.exe) -a $(SRC/)download $(STAGE.out.src/)zesty/$(PKG.deb.basename)
+       cp -a $(PWD)/$(PKG.debian) $(STAGE.out.src/)zesty/$(PKG.deb.basename)
+       $(CP.exe) $(STAGE.out.src/)zesty/$(PKG.deb.basename)/debian/control.zesty $(STAGE.out.src/)zesty/$(PKG.deb.basename)/debian/control
+       $(CP.exe) $(STAGE.out.src/)zesty/$(PKG.deb.basename)/debian/rules.zesty $(STAGE.out.src/)zesty/$(PKG.deb.basename)/debian/rules
+       echo "$(HB.name.lower) ($(HB.debversion)-zhb-1ppa1~zesty1) zesty; urgency=low" > $(STAGE.out.src/)zesty/$(PKG.deb.basename)/debian/changelog
+       echo "  * Snapshot" >> $(STAGE.out.src/)zesty/$(PKG.deb.basename)/debian/changelog
+       echo "    - See commit history at https://github.com/HandBrake/HandBrake/commits/master" >> $(STAGE.out.src/)zesty/$(PKG.deb.basename)/debian/changelog
+       echo "" >> $(STAGE.out.src/)zesty/$(PKG.deb.basename)/debian/changelog
+       echo " -- John Stebbins <jstebbins.hb@gmail.com>  Sun, 11 Apr 2010 9:51:07 -0800" >> $(STAGE.out.src/)zesty/$(PKG.deb.basename)/debian/changelog
+       $(TAR.exe) czf $(STAGE.out.src/)zesty/$(PKG.src.deb.tar) -C $(STAGE.out.src/)zesty $(PKG.deb.basename)
+       (cd $(STAGE.out.src/)zesty/$(PKG.deb.basename) && debuild -S -kjstebbins.hb)
        $(MKDIR.exe) -p $(STAGE.out.src/)yakkety
        $(GIT.exe) -C $(SRC/) archive --format=tar --prefix=$(PKG.deb.basename)/ $(HB.repo.shorthash) | $(TAR.exe) -xC $(STAGE.out.src/)yakkety/
        $(SRC/)scripts/repo-info.sh $(SRC/) > $(STAGE.out.src/)yakkety/$(PKG.deb.basename)/version.txt
@@ -144,7 +159,7 @@ $(PKG.src.deb.stamp): GNUmakefile
        $(CP.exe) $(STAGE.out.src/)xenial/$(PKG.deb.basename)/debian/rules.xenial $(STAGE.out.src/)xenial/$(PKG.deb.basename)/debian/rules
        echo "$(HB.name.lower) ($(HB.debversion)-zhb-1ppa1~xenial1) xenial; urgency=low" > $(STAGE.out.src/)xenial/$(PKG.deb.basename)/debian/changelog
        echo "  * Snapshot" >> $(STAGE.out.src/)xenial/$(PKG.deb.basename)/debian/changelog
-       echo "    - See commit history at https://github.com/HandBrake/HandBrake/commits/master" >> $(STAGE.out.src/)yakkety/$(PKG.deb.basename)/debian/changelog
+       echo "    - See commit history at https://github.com/HandBrake/HandBrake/commits/master" >> $(STAGE.out.src/)xenial/$(PKG.deb.basename)/debian/changelog
        echo "" >> $(STAGE.out.src/)xenial/$(PKG.deb.basename)/debian/changelog
        echo " -- John Stebbins <jstebbins.hb@gmail.com>  Sun, 11 Apr 2010 9:51:07 -0800" >> $(STAGE.out.src/)xenial/$(PKG.deb.basename)/debian/changelog
        $(TAR.exe) czf $(STAGE.out.src/)xenial/$(PKG.src.deb.tar) -C $(STAGE.out.src/)xenial $(PKG.deb.basename)
@@ -158,7 +173,7 @@ $(PKG.src.deb.stamp): GNUmakefile
        $(CP.exe) $(STAGE.out.src/)vivid/$(PKG.deb.basename)/debian/rules.vivid $(STAGE.out.src/)vivid/$(PKG.deb.basename)/debian/rules
        echo "$(HB.name.lower) ($(HB.debversion)-zhb-1ppa1~vivid1) vivid; urgency=low" > $(STAGE.out.src/)vivid/$(PKG.deb.basename)/debian/changelog
        echo "  * Snapshot" >> $(STAGE.out.src/)vivid/$(PKG.deb.basename)/debian/changelog
-       echo "    - See commit history at https://github.com/HandBrake/HandBrake/commits/master" >> $(STAGE.out.src/)yakkety/$(PKG.deb.basename)/debian/changelog
+       echo "    - See commit history at https://github.com/HandBrake/HandBrake/commits/master" >> $(STAGE.out.src/)vivid/$(PKG.deb.basename)/debian/changelog
        echo "" >> $(STAGE.out.src/)vivid/$(PKG.deb.basename)/debian/changelog
        echo " -- John Stebbins <jstebbins.hb@gmail.com>  Sun, 11 Apr 2010 9:51:07 -0800" >> $(STAGE.out.src/)vivid/$(PKG.deb.basename)/debian/changelog
        $(TAR.exe) czf $(STAGE.out.src/)vivid/$(PKG.src.deb.tar) -C $(STAGE.out.src/)vivid $(PKG.deb.basename)
@@ -172,7 +187,7 @@ $(PKG.src.deb.stamp): GNUmakefile
        $(CP.exe) $(STAGE.out.src/)trusty/$(PKG.deb.basename)/debian/rules.trusty $(STAGE.out.src/)trusty/$(PKG.deb.basename)/debian/rules
        echo "$(HB.name.lower) ($(HB.debversion)-zhb-1ppa1~trusty1) trusty; urgency=low" > $(STAGE.out.src/)trusty/$(PKG.deb.basename)/debian/changelog
        echo "  * Snapshot" >> $(STAGE.out.src/)trusty/$(PKG.deb.basename)/debian/changelog
-       echo "    - See commit history at https://github.com/HandBrake/HandBrake/commits/master" >> $(STAGE.out.src/)yakkety/$(PKG.deb.basename)/debian/changelog
+       echo "    - See commit history at https://github.com/HandBrake/HandBrake/commits/master" >> $(STAGE.out.src/)trusty/$(PKG.deb.basename)/debian/changelog
        echo "" >> $(STAGE.out.src/)trusty/$(PKG.deb.basename)/debian/changelog
        echo " -- John Stebbins <jstebbins.hb@gmail.com>  Sun, 11 Apr 2010 9:51:07 -0800" >> $(STAGE.out.src/)trusty/$(PKG.deb.basename)/debian/changelog
        $(TAR.exe) czf $(STAGE.out.src/)trusty/$(PKG.src.deb.tar) -C $(STAGE.out.src/)trusty $(PKG.deb.basename)