summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorruki <[email protected]>2017-04-07 10:21:07 +0800
committerruki <[email protected]>2017-04-07 10:21:07 +0800
commit591dff94e078ce1064ec24e6b5550c78fc936807 (patch)
tree6beeeff8d5810d6eba7b2faecbe1f9f24870572e /scripts
parent3085ff44c910916e6378982f14a9bbf2bcbe50ac (diff)
modify debian changelog
Diffstat (limited to 'scripts')
-rw-r--r--scripts/debian/changelog4
-rw-r--r--scripts/debian/control7
-rwxr-xr-xscripts/debian/rules2
-rwxr-xr-xscripts/makeppa2
4 files changed, 10 insertions, 5 deletions
diff --git a/scripts/debian/changelog b/scripts/debian/changelog
index 9552c9259..266894a3d 100644
--- a/scripts/debian/changelog
+++ b/scripts/debian/changelog
@@ -1,5 +1,5 @@
-xmake (2.1.3-1) unstable; urgency=medium
+xmake (2.1.3-1) precise; urgency=medium
- * Initial release (Closes: #nnnn) <nnnn is the bug number of your ITP>
+ * Initial release
-- ruki <[email protected]> Thu, 06 Apr 2017 21:22:12 +0800
diff --git a/scripts/debian/control b/scripts/debian/control
index 992777bea..e36bf163e 100644
--- a/scripts/debian/control
+++ b/scripts/debian/control
@@ -1,5 +1,5 @@
Source: xmake
-Section: net
+Section: contrib/devel
Priority: optional
Maintainer: ruki <[email protected]>
Build-Depends: debhelper (>=9)
@@ -12,3 +12,8 @@ Package: xmake
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: A make-like build utility based on Lua
+ xmake focuses on making development and building easier and
+ provides many features (.e.g package, install, plugin, macro,
+ action, option, task ...), so that any developer can quickly
+ pick it up and enjoy the productivity boost when developing
+ and building project.
diff --git a/scripts/debian/rules b/scripts/debian/rules
index 3667ed25d..1fd9a293b 100755
--- a/scripts/debian/rules
+++ b/scripts/debian/rules
@@ -32,7 +32,7 @@ binary-indep: build install
binary-arch: build install
dh_testdir
dh_testroot
- dh_installchangelogs
+ dh_installchangelogs $(CURDIR)/CHANGELOG.md
dh_installdocs
dh_installexamples
dh_installman
diff --git a/scripts/makeppa b/scripts/makeppa
index 1a7ddaacf..56ff5a8ca 100755
--- a/scripts/makeppa
+++ b/scripts/makeppa
@@ -56,7 +56,7 @@ lintian ../xmake_$version-1.dsc
while true; do
read -p "Do you wish to upload this package? (y/n)" yn
case $yn in
- [Yy]* ) dput ppa:waruqi/xmake ../xmake_$version-1_source.changes; break;;
+ [Yy]* ) if [ -f ../xmake_$version-1_source.ppa.upload ]; then rm ../xmake_$version-1_source.ppa.upload; fi ; dput ppa:waruqi/xmake ../xmake_$version-1_source.changes; break;;
[Nn]* ) exit;;
* ) echo "Please answer y or n.";;
esac