[Pkg-freedict-commits] r180 - in /packages/freedict-tools/trunk/debian: Makefile.Debian README.devel changelog copyright install

kebil-guest at users.alioth.debian.org kebil-guest at users.alioth.debian.org
Tue Apr 22 08:45:25 UTC 2008


Author: kebil-guest
Date: Tue Apr 22 08:45:25 2008
New Revision: 180

URL: http://svn.debian.org/wsvn/pkg-freedict/?sc=1&rev=180
Log:
Updated README.devel file

Modified:
    packages/freedict-tools/trunk/debian/Makefile.Debian
    packages/freedict-tools/trunk/debian/README.devel
    packages/freedict-tools/trunk/debian/changelog
    packages/freedict-tools/trunk/debian/copyright
    packages/freedict-tools/trunk/debian/install

Modified: packages/freedict-tools/trunk/debian/Makefile.Debian
URL: http://svn.debian.org/wsvn/pkg-freedict/packages/freedict-tools/trunk/debian/Makefile.Debian?rev=180&op=diff
==============================================================================
--- packages/freedict-tools/trunk/debian/Makefile.Debian (original)
+++ packages/freedict-tools/trunk/debian/Makefile.Debian Tue Apr 22 08:45:25 2008
@@ -3,7 +3,7 @@
 #
 #  DICT = deu-nld
 #  FULLNAME = German-Dutch
-#  old ???
+#  WITH_EPOCH = true
 #
 #  include freedict-tools/mk/Makefile.Debian
 #
@@ -64,7 +64,6 @@
 	rm -f build-stamp
 
 	FREEDICTDIR=freedict-tools/mk dictname=$(DICT) $(MAKE) clean
-#	rm -rf $(DICT).c5 $(DICT).dic* $(DICT).index
 	rm -rf debian/README.Debian debian/postinst debian/postrm
 	rm -rf debian/dirs debian/links config.txt
 	rm -rf debian/*.dirs debian/*.links debian/*.install

Modified: packages/freedict-tools/trunk/debian/README.devel
URL: http://svn.debian.org/wsvn/pkg-freedict/packages/freedict-tools/trunk/debian/README.devel?rev=180&op=diff
==============================================================================
--- packages/freedict-tools/trunk/debian/README.devel (original)
+++ packages/freedict-tools/trunk/debian/README.devel Tue Apr 22 08:45:25 2008
@@ -1,8 +1,59 @@
-When you are finished to edit or to create a new patch, run:
+Editing and creating patches
+============================
+To start, you should be in the source package directory -- this is the
+directory that contains the debian/ directory.
+
+Editing an existing patch
+-------------------------
+Run:
+
+   quilt push yourpatchname.diff
+
+Make your edits now, directly in the source tree. If you're editing a file
+that wasn't previously included in the patch, you must let quilt know you're
+doing it by using:
+
+   quilt add filename
+or
+   quilt edit filename
+
+If you're not sure if you need this, you can run "quilt files"  to see if your
+file  is already in there, or "quilt patches filename" to see if the current
+patch edits the specified file. Once you're done editing, run:
 
    quilt refresh -u -p 0
 
-This will create a unified diff patch with a strip number of 0.
-You can then go in to the patches directory and document your patch
-by adding a description of it to the top of the patch file.
+to update your patch. This will create a unified diff patch with a strip
+number of 0. You can then go in to the patches directory and document your
+patch by adding a description of it to the top of the patch file. It is very
+advisable always to document the changes you have made in the header of the
+patch.
 
+Creating a new patch
+--------------------
+Decide where your patch belongs according to the number series. Once you do
+this, run:
+
+   quilt push patch-before-yours
+
+where "patch-before-yours" specifies the filename of the patch that will be
+the last one applied before your new patch. Then run:
+
+   quilt new patchname
+
+using the name of the patch (including the appropriate number). Then, as
+described above in the case of editing existing patches, you'll want to be
+sure quilt knows which files you are editing. Run:
+
+   quilt add filename
+
+Now make your edits to the source files, directly in the source tree. When you
+are finished, run:
+
+   quilt refresh -u -p 0
+
+Once you're all done with patch creation/editing, run:
+
+   debian/rules clean
+
+to get rid of the things that had to be set up.

Modified: packages/freedict-tools/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-freedict/packages/freedict-tools/trunk/debian/changelog?rev=180&op=diff
==============================================================================
--- packages/freedict-tools/trunk/debian/changelog (original)
+++ packages/freedict-tools/trunk/debian/changelog Tue Apr 22 08:45:25 2008
@@ -27,7 +27,6 @@
       stardict.dirs.in;
     - removed the message from postindt script about the needing to set the
       parameter --locale in /etc/default/dictd. 
-  * debian/README.devel: this file now simplified.
   * Removed the script teiaddphonetics from installing to this package.
     We can't to implement the phonetics import because of the license issue.
 

Modified: packages/freedict-tools/trunk/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-freedict/packages/freedict-tools/trunk/debian/copyright?rev=180&op=diff
==============================================================================
--- packages/freedict-tools/trunk/debian/copyright (original)
+++ packages/freedict-tools/trunk/debian/copyright Tue Apr 22 08:45:25 2008
@@ -7,8 +7,8 @@
 Upstream Authors: Horst Eyermann <Horst at freedict.de> and
  Michael Bunk <kleinerwurm at gmx.net>
 
-Copyright: Copyright (C) 1999, 2000 Horst Eyermann <Horst at freedict.de>,
- Copyright (C) 2002, 2005 Michael Bunk <kleinerwurm at gmx.net>
+Copyright: © 1999, 2000 Horst Eyermann <Horst at freedict.de>,
+           © 2002, 2005 Michael Bunk <kleinerwurm at gmx.net>
 
 License:
 
@@ -27,6 +27,6 @@
 Debian GNU/Linux users may find the full text of the GPL version 2 in
 /usr/share/common-licenses/GPL-2.
 
-The Debian packaging is (C) 2006, Debian FreeDict Packages
+The Debian packaging is © 2006, Debian FreeDict Packages
 <freedict-packages at lists.alioth.debian.org> and
 is licensed under the GPL, see `/usr/share/common-licenses/GPL'.

Modified: packages/freedict-tools/trunk/debian/install
URL: http://svn.debian.org/wsvn/pkg-freedict/packages/freedict-tools/trunk/debian/install?rev=180&op=diff
==============================================================================
--- packages/freedict-tools/trunk/debian/install (original)
+++ packages/freedict-tools/trunk/debian/install Tue Apr 22 08:45:25 2008
@@ -9,4 +9,3 @@
 xsl/inc/*			usr/share/freedict-tools/tools/xsl/inc
 debian/debian-scripts/*		usr/share/freedict-tools/debian-scripts
 xdf2tei.pl			usr/share/freedict-tools/scripts
-




More information about the Pkg-freedict-commits mailing list