Revision: 1912
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1912&view=rev
Author: hyperair
Date: 2011-02-09 16:40:05 +0000 (Wed, 09 Feb 2011)
Log Message:
-----------
Reorder EXTRA_DIST in geanylua/Makefile.am
Fixes the warnings thrown out by Automake about EXTRA_DIST being defined
twice
Modified Paths:
--------------
trunk/geany-plugins/geanylua/Makefile.am
Modified: trunk/geany-plugins/geanylua/Makefile.am
===================================================================
--- trunk/geany-plugins/geanylua/Makefile.am 2011-02-08 17:57:56 UTC (rev 1911)
+++ trunk/geany-plugins/geanylua/Makefile.am 2011-02-09 16:40:05 UTC (rev 1912)
@@ -1,12 +1,12 @@
-EXTRA_DIST = util
# don't install docs if disabled
if ENABLE_GEANYLUA
include $(top_srcdir)/build/vars.auxfiles.mk
plugin = geanylua
else
include $(top_srcdir)/build/vars.docs.mk
-EXTRA_DIST += $(AUXFILES)
+EXTRA_DIST = $(AUXFILES)
endif
+EXTRA_DIST += util
include $(top_srcdir)/build/vars.build.mk
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 1911
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1911&view=rev
Author: eht16
Date: 2011-02-08 17:57:56 +0000 (Tue, 08 Feb 2011)
Log Message:
-----------
For now, disable the new debugger plugin until it is well integrated, to unbreak autotools based build
Modified Paths:
--------------
trunk/geany-plugins/Makefile.am
Modified: trunk/geany-plugins/Makefile.am
===================================================================
--- trunk/geany-plugins/Makefile.am 2011-02-06 19:12:38 UTC (rev 1910)
+++ trunk/geany-plugins/Makefile.am 2011-02-08 17:57:56 UTC (rev 1911)
@@ -1,7 +1,6 @@
plugins = \
addons \
codenav \
- debugger \
geanycfp \
geanydoc \
geanyextrasel \
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 1908
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1908&view=rev
Author: dmaphy
Date: 2011-02-06 17:54:24 +0000 (Sun, 06 Feb 2011)
Log Message:
-----------
website: correct the public key in the gpg sig verify instructions
Modified Paths:
--------------
www/staging/content/downloads.html
Modified: www/staging/content/downloads.html
===================================================================
--- www/staging/content/downloads.html 2011-02-06 17:32:43 UTC (rev 1907)
+++ www/staging/content/downloads.html 2011-02-06 17:54:24 UTC (rev 1908)
@@ -107,9 +107,8 @@
these instructions:</p>
<ul>
- <li>Download the public key from <a href="http://download.geany.org/ntrel-pubkey.txt">
- http://download.geany.org/ntrel-pubkey.txt</a></li>
- <li>Import the key via <code>gpg --import < ntrel-pubkey.txt</code></li>
+ <li>Download the public key from <a href="http://download.geany.org/hyperair-pubkey.txt">http://download.geany.org/hyperair-pubkey.txt</a></li>
+ <li>Import the key via <code>gpg --import < hyperair-pubkey.txt</code></li>
<li>Verify the downloaded archive either with
<code>gpg --verify geany-plugins-0.20.tar.bz2.sig geany-plugins-0.20.tar.bz2</code> or
<code>gpg --verify geany-plugins-0.20.tar.gz.sig geany-plugins-0.20.tar.gz</code>
@@ -122,7 +121,7 @@
<p>Another complete example:</p>
<code>
-wget http://download.geany.org/ntrel-pubkey.txt<br />
-gpg --import < ntrel-pubkey.txt<br />
+wget http://download.geany.org/hyperair-pubkey.txt<br />
+gpg --import < hyperair-pubkey.txt<br />
gpg --verify geany-plugins-0.20.tar.bz2.sig geany-plugins-0.20.tar.bz2
</code>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 1907
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1907&view=rev
Author: dmaphy
Date: 2011-02-06 17:32:43 +0000 (Sun, 06 Feb 2011)
Log Message:
-----------
website: fix name of tarball in sig-instructions
Modified Paths:
--------------
www/staging/content/downloads.html
Modified: www/staging/content/downloads.html
===================================================================
--- www/staging/content/downloads.html 2011-02-06 17:20:57 UTC (rev 1906)
+++ www/staging/content/downloads.html 2011-02-06 17:32:43 UTC (rev 1907)
@@ -100,7 +100,7 @@
?>
-<h2>verifying signatures</h2>
+<h2>Verifying Signatures</h2>
<p>The tarballs are signed with a GPG key to make sure the source code
wasn't compromised somewhere on the net. You can verify you have the correct
tarballs by checking if the GPG signature is correct. To do this, follow
@@ -111,8 +111,8 @@
http://download.geany.org/ntrel-pubkey.txt</a></li>
<li>Import the key via <code>gpg --import < ntrel-pubkey.txt</code></li>
<li>Verify the downloaded archive either with
- <code>gpg --verify geany-0.20.tar.bz2.sig geany-0.20.tar.bz2</code> or
- <code>gpg --verify geany-0.20.tar.gz.sig geany-0.20.tar.gz</code>
+ <code>gpg --verify geany-plugins-0.20.tar.bz2.sig geany-plugins-0.20.tar.bz2</code> or
+ <code>gpg --verify geany-plugins-0.20.tar.gz.sig geany-plugins-0.20.tar.gz</code>
</li>
</ul>
@@ -124,5 +124,5 @@
<code>
wget http://download.geany.org/ntrel-pubkey.txt<br />
gpg --import < ntrel-pubkey.txt<br />
-gpg --verify geany-0.20.tar.bz2.sig geany-0.20.tar.bz2
+gpg --verify geany-plugins-0.20.tar.bz2.sig geany-plugins-0.20.tar.bz2
</code>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 1903
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1903&view=rev
Author: dmaphy
Date: 2011-02-06 16:29:30 +0000 (Sun, 06 Feb 2011)
Log Message:
-----------
website: add instructions on how to verify the GPG sigs of the tarballs
Modified Paths:
--------------
www/staging/content/downloads.html
Modified: www/staging/content/downloads.html
===================================================================
--- www/staging/content/downloads.html 2011-02-06 15:16:32 UTC (rev 1902)
+++ www/staging/content/downloads.html 2011-02-06 16:29:30 UTC (rev 1903)
@@ -100,3 +100,29 @@
?>
+<h2>verifying signatures</h2>
+<p>The tarballs are signed with a GPG key to make sure the source code
+wasn't compromised somewhere on the net. You can verify you have the correct
+tarballs by checking if the GPG signature is correct. To do this, follow
+these instructions:</p>
+
+<ul>
+ <li>Download the public key from <a href="http://download.geany.org/ntrel-pubkey.txt">
+ http://download.geany.org/ntrel-pubkey.txt</a></li>
+ <li>Import the key via <code>gpg --import < ntrel-pubkey.txt</code></li>
+ <li>Verify the downloaded archive either with
+ <code>gpg --verify geany-0.20.tar.bz2.sig geany-0.20.tar.bz2</code> or
+ <code>gpg --verify geany-0.20.tar.gz.sig geany-0.20.tar.gz</code>
+ </li>
+</ul>
+
+<p>The command's output should state something like "Good Signature" and
+should return exit code 0. If you get another exit code it's likely,
+something went wrong.</p>
+
+<p>Another complete example:</p>
+<code>
+wget http://download.geany.org/ntrel-pubkey.txt<br />
+gpg --import < ntrel-pubkey.txt<br />
+gpg --verify geany-0.20.tar.bz2.sig geany-0.20.tar.bz2
+</code>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.