--- tomboy-blogposter-0.4.3.orig/debian/README.Debian +++ tomboy-blogposter-0.4.3/debian/README.Debian @@ -0,0 +1,7 @@ +tomboy-blogposter for Ubuntu +---------------------------- + +This package installs the addin globally. To use restart Tomboy and activate the +addin under preferences/add-ins. + + -- Hanno Stock Sun, 06 Jul 2008 17:22:00 +0100 --- tomboy-blogposter-0.4.3.orig/debian/README.source +++ tomboy-blogposter-0.4.3/debian/README.source @@ -0,0 +1,57 @@ +This package uses quilt to manage all modifications to the upstream +source. Changes are stored in the source package as diffs in +debian/patches and applied during the build. + +To configure quilt to use debian/patches instead of patches, you want +either to export QUILT_PATCHES=debian/patches in your environment +or use this snippet in your ~/.quiltrc: + + for where in ./ ../ ../../ ../../../ ../../../../ ../../../../../; do + if [ -e ${where}debian/rules -a -d ${where}debian/patches ]; then + export QUILT_PATCHES=debian/patches + fi + done + +To get the fully patched source after unpacking the source package, cd to +the root level of the source package and run: + + quilt push -a + +The last patch listed in debian/patches/series will become the current +patch. + +To add a new set of changes, first run quilt push -a, and then run: + + quilt new + +where is a descriptive name for the patch, used as the filename in +debian/patches. Then, for every file that will be modified by this patch, +run: + + quilt add + +before editing those files. You must tell quilt with quilt add what files +will be part of the patch before making changes or quilt will not work +properly. After editing the files, run: + + quilt refresh + +to save the results as a patch. + +Alternately, if you already have an external patch and you just want to +add it to the build system, run quilt push -a and then: + + quilt import -P /path/to/patch + quilt push -a + +(add -p 0 to quilt import if needed). as above is the filename to +use in debian/patches. The last quilt push -a will apply the patch to +make sure it works properly. + +To remove an existing patch from the list of patches that will be applied, +run: + + quilt delete + +You may need to run quilt pop -a to unapply patches first before running +this command. --- tomboy-blogposter-0.4.3.orig/debian/changelog +++ tomboy-blogposter-0.4.3/debian/changelog @@ -0,0 +1,41 @@ +tomboy-blogposter (0.4.3-0ubuntu5) xenial; urgency=high + + * No change rebuild against mono. + + -- Dimitri John Ledkov Mon, 14 Dec 2015 12:03:02 +0000 + +tomboy-blogposter (0.4.3-0ubuntu4) oneiric; urgency=low + + * Update watch file. + * Bump Standards-Version to 3.9.2, no changes needed. + + -- Ilya Barygin Sat, 03 Sep 2011 17:21:27 +0400 + +tomboy-blogposter (0.4.3-0ubuntu3) oneiric; urgency=low + + * No-change rebuild against Mono's 4.0 class library. + + -- Jo Shields Sat, 02 Jul 2011 21:55:26 +0100 + +tomboy-blogposter (0.4.3-0ubuntu2) maverick; urgency=low + + [ David Stansby ] + * Fix typo in short package description (fixes LP: #561019) + + [ Iain Lane ] + * debian/control, debian/rules: Build with mono-csc as compiler + * debian/source/format: Specify 1.0 format explicitly + * debian/patches/reference_gtk_sharp, debian/control: Reference GTK# when + building, fixing FTBFS. Add BD on GTK# too. + * debian/patches/dont_reference_system_web: No need to reference System.Web + any more; Tomboy removed this dep. Infact there is an FTBFS if we do + reference it + + -- Iain Lane Fri, 02 Jul 2010 12:00:17 +0100 + +tomboy-blogposter (0.4.3-0ubuntu1) jaunty; urgency=low + + * Initial release (LP: #188677) + * Authored manpage tomboy-blogposter.1 + + -- Hanno Stock Sat, 07 Feb 2009 17:17:04 +0100 --- tomboy-blogposter-0.4.3.orig/debian/compat +++ tomboy-blogposter-0.4.3/debian/compat @@ -0,0 +1 @@ +6 --- tomboy-blogposter-0.4.3.orig/debian/control +++ tomboy-blogposter-0.4.3/debian/control @@ -0,0 +1,18 @@ +Source: tomboy-blogposter +Section: web +Priority: optional +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Hanno Stock +Build-Depends: cdbs, debhelper (>= 6), quilt +Build-Depends-Indep: tomboy (>= 0.8), pkg-config, cli-common-dev (>= 0.6), + mono-devel (>= 2.4.3), libgtk2.0-cil-dev +Standards-Version: 3.9.2 +Homepage: http://flukkost.nu/blog/tomboyblogposter + +Package: tomboy-blogposter +Architecture: all +Depends: tomboy (>= 0.8), ${cli:Depends}, ${misc:Depends} +Description: Tomboy add-in for posting notes to a blog + Tomboy Blogposter is a Tomboy plugin to post notes + to a Wordpress blog, Blogger blog or (hopefully) any + other APP enabled website. --- tomboy-blogposter-0.4.3.orig/debian/copyright +++ tomboy-blogposter-0.4.3/debian/copyright @@ -0,0 +1,36 @@ +Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat +Upstream-Name: TomboyBlogposter +Upstream-Maintainer: Robin Sonefors +Upstream-Source: http://flukkost.nu/blog/tomboyblogposter/ + +Files: * +Copyright: Copyright (C) 2007-2008 Robin Sonefors +License: LGPL-2.1+ + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + + On Debian and Ubuntu systems, you can find a copy of the LGPL under + `/usr/share/common-licenses/LGPL-2.1'. + +Files: Blogposter.xsl +Copyright: Copyright (C) 2004-2007 The Tomboy Project and +Copyright: Copyright (C) 2007-2008 Robin Sonefors +License: LGPL-2.1+ + See above. + +Files: debian/* +Copyright: Copyright 2008-2009 Hanno Stock +License: LGPL-2.1+ + See above. + --- tomboy-blogposter-0.4.3.orig/debian/dirs +++ tomboy-blogposter-0.4.3/debian/dirs @@ -0,0 +1 @@ +/usr/lib/tomboy/addins --- tomboy-blogposter-0.4.3.orig/debian/manpage.xml +++ tomboy-blogposter-0.4.3/debian/manpage.xml @@ -0,0 +1,111 @@ + +.
will be generated. You may view the +manual page with: nroff -man .
| less'. A +typical entry in a Makefile or Makefile.am is: + +DB2MAN=/usr/share/sgml/docbook/stylesheet/xsl/nwalsh/\ +manpages/docbook.xsl +XP=xsltproc -''-nonet + +manpage.1: manpage.dbk + $(XP) $(DB2MAN) $< + +The xsltproc binary is found in the xsltproc package. The +XSL files are in docbook-xsl. Please remember that if you +create the nroff version in one of the debian/rules file +targets (such as build), you will need to include xsltproc +and docbook-xsl in your Build-Depends control field. + +--> + + + Hanno"> + Stock"> + + Januar 24, 2008"> + + 1"> + hanno.stock@gmx.net"> + + tomboy-blogposter"> + + + Ubuntu"> + GNU"> + LGPL"> +]> + + + +
+ &dhemail; +
+ + 2008 + &dhusername; + + &dhdate; +
+ + &dhucpackage; + + &dhsection; + + + &dhpackage; + + Allows Tomboy to post notes to a blog. + + + DESCRIPTION + + This manual page documents briefly the + &dhpackage; package. + + To use it access Tomboy Settings and activate the Add-In under + Add-Ins. You can find it in the Tools section. + + This manual page was written for the &debian; distribution + because the original program does not have a manual page. + + + CONFIGURATION +Documentation taken from http://flukkost.nu/blog/tomboyblogposter/ +When you add an account, it will ask you for your APP Service or Collection URL. Here's a short guide on how to find it: + +On Wordpress, the URL to your Service document is <blog_url>/wp-app.php/service - in my case, that means http://flukkost.nu/blog/wp-app.php/service. However, that returns two Collections - "Posts" and "Media". I can promise you that you don't want media, since that only accepts media types this plugin won't upload, so you could instead just add the Posts collection, that has the url <blog_url>/wp-app.php/posts + +Blogger uses an older draft of the APP protocol, which means it's Service Document is simply... Broken, with respect to a modern draft. That means you cannot add it, as it will not work. Instead, use the Collection for each individual blog. You can find it if you view the source to your Blogger blog - it's the address in the <link> tag that has the rel attribute set to service.post. It follows the template http://www.blogger.com/feeds/<blog_id>/posts/default. My blog has id 4164605321218185513, which means my Collection document is http://www.blogger.com/feeds/4164605321218185513/posts/default. + + + + SEE ALSO + + tomboy (1). + + + AUTHOR + + This manual page was written by &dhusername; &dhemail; for + the &debian; system (but may be used by others). Permission is + granted to copy, distribute and/or modify this document under + the terms of the &gnu; Lesser General Public License, Version 2 or any + later version published by the Free Software Foundation. + + + On Debian systems, the complete text of the GNU General Public + License can be found under +'/usr/share/common-licenses/LGPL-2.1'. + + + +
--- tomboy-blogposter-0.4.3.orig/debian/patches/01_makefile_destdir +++ tomboy-blogposter-0.4.3/debian/patches/01_makefile_destdir @@ -0,0 +1,13 @@ +Replaces hardcoded destination directory in Makefile by +variable DESTDIR (to be used in debian/rules). +--- tomboy-blogposter-0.4.3.orig/Makefile ++++ tomboy-blogposter-0.4.3/Makefile +@@ -11,7 +11,7 @@ + -resource:$(NAME).addin.xml + + install: +- cp $(OUT) ~/.tomboy/addins/ ++ cp $(OUT) $(DESTDIR) + + clean: + rm -f *.dll *.mdb --- tomboy-blogposter-0.4.3.orig/debian/patches/dont_reference_system_web +++ tomboy-blogposter-0.4.3/debian/patches/dont_reference_system_web @@ -0,0 +1,16 @@ +Description: Referencing System.Web is no longer required as Tomboy doesn't carry this dep any more +Forwarded: yes + +Index: tomboy-blogposter/Makefile +=================================================================== +--- tomboy-blogposter.orig/Makefile 2010-07-02 11:36:43.648602672 +0100 ++++ tomboy-blogposter/Makefile 2010-07-02 11:36:48.958603598 +0100 +@@ -5,7 +5,7 @@ + + all: + $(CC) -debug -out:$(OUT) -target:library -pkg:tomboy-addins \ +- -r:System.Web -r:Mono.Posix AuthenticationTypes.cs -pkg:gtk-sharp-2.0 \ ++ -r:Mono.Posix AuthenticationTypes.cs -pkg:gtk-sharp-2.0 \ + Blogposter.cs BlogposterPreferences.cs Misc.cs \ + -resource:$(NAME).xsl \ + -resource:$(NAME).addin.xml --- tomboy-blogposter-0.4.3.orig/debian/patches/reference_gtk_sharp +++ tomboy-blogposter-0.4.3/debian/patches/reference_gtk_sharp @@ -0,0 +1,19 @@ +Description: We need to reference GTK# now to avoid a build failure +Forwarded: yes + + +Index: tomboy-blogposter/Makefile +=================================================================== +--- tomboy-blogposter.orig/Makefile 2010-07-02 11:26:33.479851517 +0100 ++++ tomboy-blogposter/Makefile 2010-07-02 11:27:51.548602039 +0100 +@@ -5,8 +5,8 @@ + + all: + $(CC) -debug -out:$(OUT) -target:library -pkg:tomboy-addins \ +- -r:System.Web -r:Mono.Posix AuthenticationTypes.cs Blogposter.cs \ +- BlogposterPreferences.cs Misc.cs \ ++ -r:System.Web -r:Mono.Posix AuthenticationTypes.cs -pkg:gtk-sharp-2.0 \ ++ Blogposter.cs BlogposterPreferences.cs Misc.cs \ + -resource:$(NAME).xsl \ + -resource:$(NAME).addin.xml + --- tomboy-blogposter-0.4.3.orig/debian/patches/series +++ tomboy-blogposter-0.4.3/debian/patches/series @@ -0,0 +1,3 @@ +01_makefile_destdir +reference_gtk_sharp +dont_reference_system_web --- tomboy-blogposter-0.4.3.orig/debian/rules +++ tomboy-blogposter-0.4.3/debian/rules @@ -0,0 +1,19 @@ +#!/usr/bin/make -f + +include /usr/share/cli-common/cli.make +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/rules/patchsys-quilt.mk +include /usr/share/cdbs/1/class/makefile.mk + +DEB_MAKE_CLEAN_TARGET := clean +DEB_MAKE_BUILD_TARGET := all CC=/usr/bin/mono-csc +DEB_MAKE_INSTALL_TARGET := install DESTDIR=$(CURDIR)/debian/$(DEB_SOURCE_PACKAGE)/usr/lib/tomboy/addins +# no check for this software +DEB_MAKE_CHECK_TARGET := +DEB_INSTALL_MANPAGES_$(DEB_SOURCE_PACKAGE) := debian/tomboy-blogposter.1 + +binary-fixup/$(DEB_SOURCE_PACKAGE):: + chmod 0644 debian/$(DEB_SOURCE_PACKAGE)/usr/lib/tomboy/addins/Blogposter.dll + +common-binary-predeb-indep:: + dh_clideps -d --- tomboy-blogposter-0.4.3.orig/debian/source/format +++ tomboy-blogposter-0.4.3/debian/source/format @@ -0,0 +1 @@ +1.0 --- tomboy-blogposter-0.4.3.orig/debian/tomboy-blogposter.1 +++ tomboy-blogposter-0.4.3/debian/tomboy-blogposter.1 @@ -0,0 +1,39 @@ +'\" -*- coding: us-ascii -*- +.if \n(.g .ds T< \\FC +.if \n(.g .ds T> \\F[\n[.fam]] +.de URL +\\$2 \(la\\$1\(ra\\$3 +.. +.if \n(.g .mso www.tmac +.TH tomboy-blogposter 1 "Januar 24, 2008" "" "" +.SH NAME +tomboy-blogposter \- Allows Tomboy to post notes to a blog. +.SH DESCRIPTION +This manual page documents briefly the +\fBtomboy-blogposter\fR package. +.PP +To use it access Tomboy Settings and activate the Add-In under +Add-Ins. You can find it in the Tools section. +.PP +This manual page was written for the Ubuntu distribution +because the original program does not have a manual page. +.SH CONFIGURATION +Documentation taken from http://flukkost.nu/blog/tomboyblogposter/ +.PP +When you add an account, it will ask you for your APP Service or Collection URL. Here's a short guide on how to find it: +.PP +On Wordpress, the URL to your Service document is /wp-app.php/service - in my case, that means http://flukkost.nu/blog/wp-app.php/service. However, that returns two Collections - "Posts" and "Media". I can promise you that you don't want media, since that only accepts media types this plugin won't upload, so you could instead just add the Posts collection, that has the url /wp-app.php/posts +.PP +Blogger uses an older draft of the APP protocol, which means it's Service Document is simply... Broken, with respect to a modern draft. That means you cannot add it, as it will not work. Instead, use the Collection for each individual blog. You can find it if you view the source to your Blogger blog - it's the address in the tag that has the rel attribute set to service.post. It follows the template http://www.blogger.com/feeds//posts/default. My blog has id 4164605321218185513, which means my Collection document is http://www.blogger.com/feeds/4164605321218185513/posts/default. +.SH "SEE ALSO" +tomboy (1). +.SH AUTHOR +This manual page was written by Hanno Stock <\*(T> for +the Ubuntu system (but may be used by others). Permission is +granted to copy, distribute and/or modify this document under +the terms of the GNU Lesser General Public License, Version 2 or any +later version published by the Free Software Foundation. +.PP +On Debian systems, the complete text of the GNU General Public +License can be found under +\&'/usr/share/common-licenses/LGPL-2.1'. --- tomboy-blogposter-0.4.3.orig/debian/watch +++ tomboy-blogposter-0.4.3/debian/watch @@ -0,0 +1,5 @@ +version=3 + +http://flukkost.nu/blog/tomboyblogposter/ \ +(?:http://.*/)?[Tt]omboy-?[Bb]logposter-(.*)\.tar\.(?:gz|bz2) \ +debian uupdate