forked from vlc-qt/vlc-qt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
13 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.9.0 | ||
0.8.90 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#!/bin/bash | ||
############################################################################# | ||
# VLC-Qt - Qt and libvlc connector library | ||
# Copyright (C) 2012 Tadej Novak <[email protected]> | ||
# Copyright (C) 2013 Tadej Novak <[email protected]> | ||
# | ||
# This library is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU Lesser General Public License as published | ||
|
@@ -21,14 +21,16 @@ set -eu | |
|
||
DEVEL="" | ||
TARGET="" | ||
while getopts "hdt:" OPTION | ||
BUILD="1" | ||
while getopts "hdt:b:" OPTION | ||
do | ||
case $OPTION in | ||
h) | ||
echo "Quick build system for VLC-Qt library." | ||
echo "" | ||
echo "Use -t to specify target (in targets directory)" | ||
echo "Use -d to ignore dependency requests" | ||
echo "Use -b to specify build number (defaults to 1)" | ||
exit 0 | ||
;; | ||
d) | ||
|
@@ -37,6 +39,9 @@ do | |
t) | ||
TARGET="$OPTARG" | ||
;; | ||
b) | ||
BUILD="$OPTARG" | ||
;; | ||
esac | ||
done | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
libvlc-qt (0.8.0) unstable; urgency=low | ||
libvlc-qt (0.8.90-1) unstable; urgency=low | ||
|
||
* The full changelog can be found in NEWS | ||
or by running 'git log' when using Git | ||
|
||
-- Tadej Novak <[email protected]> Sat, 12 Jan 2013 13:25:00 +0100 | ||
-- Tadej Novak <[email protected]> Wed, 17 Jul 2013 19:58:34 +0200 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,19 @@ | ||
BUILD_DEPS=`awk 'BEGIN {cnt = 1;} /^Build-Depends:/ {split($0, line, ":");split(line[2], deps, ",");for (i in deps) {d = deps[i];sub(/^ */, "", d);sub(/ *$/, "", d);split(d, tokens, " ");packages[cnt] = tokens[1];cnt++;}} END {out = ""; for(i = 1; i <= cnt; i++) {out = out packages[i] " ";} print out; }' debian/control` | ||
CHANGELOG=debian/changelog | ||
NOW=`date -R` | ||
VER=`git describe | sed "s/\([0-9]*\)\.\([0-9]*\)-\([0-9]*\)-.*/\1.\2.\3/"` | ||
#VER=`git describe | sed "s/\([0-9]*\)\.\([0-9]*\)-\([0-9]*\)-.*/\1.\2.\3/"` | ||
VER=`cat VERSION` | ||
|
||
build() | ||
{ | ||
echo >${CHANGELOG} "libvlc-qt (${VER}) unstable; urgency=low" | ||
echo >${CHANGELOG} "libvlc-qt (${VER}-${BUILD}) unstable; urgency=low" | ||
echo >>${CHANGELOG} | ||
echo >>${CHANGELOG} " * The full changelog can be found in NEWS" | ||
echo >>${CHANGELOG} " or by running 'git log' when using Git" | ||
echo >>${CHANGELOG} | ||
echo >>${CHANGELOG} " -- Tadej Novak <[email protected]> ${NOW}" | ||
|
||
dpkg-buildpackage -b -us -uc ${DEVEL} | ||
|
||
for a in ../libvlc-qt*${VER}*.deb; do | ||
versioned_artifact "$a" deb application/x-deb `basename $a` | ||
done | ||
|
||
for a in ../libvlc-qt*${VER}*.changes; do | ||
versioned_artifact "$a" changes text/plain `basename $a` | ||
done | ||
} | ||
|
||
clean() | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.