This repository has been archived by the owner on Jun 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* debianized * fixed memory leak
- Loading branch information
kgraefe
committed
Mar 18, 2010
1 parent
a815467
commit 201bced
Showing
20 changed files
with
285 additions
and
58 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
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 @@ | ||
1.1-pre1 | ||
1.1 |
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 |
---|---|---|
@@ -0,0 +1,50 @@ | ||
#!/bin/bash | ||
|
||
PROJECT=pidgin-znchelper | ||
VERSION=$(cat VERSION) | ||
REPOSITORY=ppa:konradgraefe/pidgin-plugins | ||
DEB_REVISION=1 | ||
|
||
src_dir=$(pwd) | ||
|
||
echo -n "make dist? (y/N) " | ||
read -n 1 in | ||
echo "" | ||
|
||
if [ "$in" == "y" ]; then | ||
make dist | ||
fi | ||
|
||
rm -rf deb-pkg | ||
mkdir deb-pkg | ||
cd deb-pkg | ||
|
||
tar xzvf ../${PROJECT}-${VERSION}.tar.gz | ||
|
||
cd ${PROJECT}-${VERSION} | ||
|
||
cp -r ${src_dir}/debian . | ||
sed \ | ||
-e "s/@@VERSION@@/${VERSION}/" \ | ||
-e "s/@@DATE@@/$(date -R)/" \ | ||
-e "s/@@DEB_REVISION@@/${DEB_REVISION}/" \ | ||
debian/changelog.in >debian/changelog | ||
|
||
sed \ | ||
-e "s/@@DATE@@/$(date -R)/" \ | ||
debian/copyright.in >debian/copyright | ||
|
||
dpkg-buildpackage -S -rfakeroot | ||
|
||
cd .. | ||
lintian -i *.dsc | ||
|
||
echo "" | ||
echo -n "Upload ${PROJECT}_${VERSION}-${DEB_REVISION} to repository (y/N) " | ||
read -n 1 in | ||
echo "" | ||
|
||
if [ "$in" == "y" ]; then | ||
dput ${REPOSITORY} ${PROJECT}_${VERSION}-${DEB_REVISION}_source.changes | ||
fi | ||
|
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
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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
pidgin-znchelper for Debian | ||
--------------------------- | ||
|
||
<possible notes regarding this package - if none, delete this file> | ||
|
||
-- Konrad Gräfe <konradgraefe@aol.com> Thu, 18 Mar 2010 21:33:25 +0100 |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
pidgin-znchelper (@@VERSION@@-@@DEB_REVISION@@) karmic; urgency=low | ||
|
||
* release version @@VERSION@@ | ||
|
||
-- Konrad Gräfe <konradgraefe@aol.com> @@DATE@@ |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
7 |
Oops, something went wrong.