[Assorted-commits] SF.net SVN: assorted:[1124] sandbox/trunk/src/deb
Brought to you by:
yangzhang
From: <yan...@us...> - 2009-01-09 08:36:02
|
Revision: 1124 http://assorted.svn.sourceforge.net/assorted/?rev=1124&view=rev Author: yangzhang Date: 2009-01-09 08:35:58 +0000 (Fri, 09 Jan 2009) Log Message: ----------- added (and uploaded) helloworld example Added Paths: ----------- sandbox/trunk/src/deb/helloworld/ sandbox/trunk/src/deb/helloworld/helloworld-1.0/ sandbox/trunk/src/deb/helloworld/helloworld-1.0/debian/ sandbox/trunk/src/deb/helloworld/helloworld-1.0/debian/changelog sandbox/trunk/src/deb/helloworld/helloworld-1.0/debian/compat sandbox/trunk/src/deb/helloworld/helloworld-1.0/debian/control sandbox/trunk/src/deb/helloworld/helloworld-1.0/debian/copyright sandbox/trunk/src/deb/helloworld/helloworld-1.0/debian/install sandbox/trunk/src/deb/helloworld/helloworld-1.0/debian/rules sandbox/trunk/src/deb/helloworld/helloworld-1.0/helloworld sandbox/trunk/src/deb/helloworld/helloworld_1.0.orig.tar.gz Added: sandbox/trunk/src/deb/helloworld/helloworld-1.0/debian/changelog =================================================================== --- sandbox/trunk/src/deb/helloworld/helloworld-1.0/debian/changelog (rev 0) +++ sandbox/trunk/src/deb/helloworld/helloworld-1.0/debian/changelog 2009-01-09 08:35:58 UTC (rev 1124) @@ -0,0 +1,12 @@ +helloworld (1.0-1ubuntu1) intrepid; urgency=low + + * Fixing something + + -- Yang Zhang <ya...@gm...> Fri, 09 Jan 2009 03:08:32 -0500 + +helloworld (1.0-1) unstable; urgency=low + + * Initial release + + -- Yang Zhang <ya...@gm...> Fri, 09 Jan 2009 01:28:13 -0500 + Added: sandbox/trunk/src/deb/helloworld/helloworld-1.0/debian/compat =================================================================== --- sandbox/trunk/src/deb/helloworld/helloworld-1.0/debian/compat (rev 0) +++ sandbox/trunk/src/deb/helloworld/helloworld-1.0/debian/compat 2009-01-09 08:35:58 UTC (rev 1124) @@ -0,0 +1 @@ +5 Added: sandbox/trunk/src/deb/helloworld/helloworld-1.0/debian/control =================================================================== --- sandbox/trunk/src/deb/helloworld/helloworld-1.0/debian/control (rev 0) +++ sandbox/trunk/src/deb/helloworld/helloworld-1.0/debian/control 2009-01-09 08:35:58 UTC (rev 1124) @@ -0,0 +1,14 @@ +Source: helloworld +Section: utils +Priority: extra +Maintainer: Yang Zhang <ya...@gm...> +Build-Depends: cdbs, debhelper (>= 7) +Standards-Version: 3.8.0 +Homepage: http://assorted.sf.net/ + +Package: helloworld +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: Yang's first package! + This is Yang's first package. It was created following + <http://ubuntuforums.org/showthread.php?t=929498>. Added: sandbox/trunk/src/deb/helloworld/helloworld-1.0/debian/copyright =================================================================== --- sandbox/trunk/src/deb/helloworld/helloworld-1.0/debian/copyright (rev 0) +++ sandbox/trunk/src/deb/helloworld/helloworld-1.0/debian/copyright 2009-01-09 08:35:58 UTC (rev 1124) @@ -0,0 +1,22 @@ +This package was debianized by Yang Zhang <ya...@gm...> on +Fri, 09 Jan 2009 01:28:13 -0500. + +It was downloaded from http://assorted.sf.net/ + +Upstream Author(s): + + Yang Zhang <ya...@gm...> + +Copyright: + + Copyright (C) 2009 Yang Zhang + +License: + + This software (including its Debian packaging) + is available to you under the terms + of the GPL-3, see "/usr/share/common-licenses/GPL-3". + You can also use it under the terms of any other GPL version. + +The Debian packaging is (C) 2009, Yang Zhang <ya...@gm...> and +is licensed under the GPL, see `/usr/share/common-licenses/GPL'. Added: sandbox/trunk/src/deb/helloworld/helloworld-1.0/debian/install =================================================================== --- sandbox/trunk/src/deb/helloworld/helloworld-1.0/debian/install (rev 0) +++ sandbox/trunk/src/deb/helloworld/helloworld-1.0/debian/install 2009-01-09 08:35:58 UTC (rev 1124) @@ -0,0 +1 @@ +helloworld /usr/bin/ Added: sandbox/trunk/src/deb/helloworld/helloworld-1.0/debian/rules =================================================================== --- sandbox/trunk/src/deb/helloworld/helloworld-1.0/debian/rules (rev 0) +++ sandbox/trunk/src/deb/helloworld/helloworld-1.0/debian/rules 2009-01-09 08:35:58 UTC (rev 1124) @@ -0,0 +1,9 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/debhelper.mk + +binary-install/helloworld:: + dh_icons + +binary-fixup/helloworld:: + dh_gconf --priority=16 Property changes on: sandbox/trunk/src/deb/helloworld/helloworld-1.0/debian/rules ___________________________________________________________________ Added: svn:executable + * Added: sandbox/trunk/src/deb/helloworld/helloworld-1.0/helloworld =================================================================== --- sandbox/trunk/src/deb/helloworld/helloworld-1.0/helloworld (rev 0) +++ sandbox/trunk/src/deb/helloworld/helloworld-1.0/helloworld 2009-01-09 08:35:58 UTC (rev 1124) @@ -0,0 +1,2 @@ +#!/usr/bin/env bash +echo 'Hello, world!' Property changes on: sandbox/trunk/src/deb/helloworld/helloworld-1.0/helloworld ___________________________________________________________________ Added: svn:executable + * Added: sandbox/trunk/src/deb/helloworld/helloworld_1.0.orig.tar.gz =================================================================== (Binary files differ) Property changes on: sandbox/trunk/src/deb/helloworld/helloworld_1.0.orig.tar.gz ___________________________________________________________________ Added: svn:mime-type + application/octet-stream This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |