public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-haskell/language-haskell-extract: metadata.xml ChangeLog
@ 2014-07-25  8:59 Sergei Trofimovich (slyfox)
  0 siblings, 0 replies; 2+ messages in thread
From: Sergei Trofimovich (slyfox) @ 2014-07-25  8:59 UTC (permalink / raw
  To: gentoo-commits

slyfox      14/07/25 08:59:20

  Modified:             metadata.xml ChangeLog
  Log:
  Drop redundant '<maintainer>' field, leave only '<herd>'.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 611FF3AA)

Revision  Changes    Path
1.2                  dev-haskell/language-haskell-extract/metadata.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/language-haskell-extract/metadata.xml?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/language-haskell-extract/metadata.xml?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/language-haskell-extract/metadata.xml?r1=1.1&r2=1.2

Index: metadata.xml
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-haskell/language-haskell-extract/metadata.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- metadata.xml	25 Aug 2013 06:31:47 -0000	1.1
+++ metadata.xml	25 Jul 2014 08:59:20 -0000	1.2
@@ -2,9 +2,6 @@
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
 	<herd>haskell</herd>
-	<maintainer>
-		<email>haskell@gentoo.org</email>
-	</maintainer>
 	<longdescription>
 		@language-haskell-extract@ contains some useful helper functions on top of Template Haskell.
 		



1.2                  dev-haskell/language-haskell-extract/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/language-haskell-extract/ChangeLog?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/language-haskell-extract/ChangeLog?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/language-haskell-extract/ChangeLog?r1=1.1&r2=1.2

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-haskell/language-haskell-extract/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog	25 Aug 2013 06:31:47 -0000	1.1
+++ ChangeLog	25 Jul 2014 08:59:20 -0000	1.2
@@ -1,6 +1,9 @@
 # ChangeLog for dev-haskell/language-haskell-extract
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-haskell/language-haskell-extract/ChangeLog,v 1.1 2013/08/25 06:31:47 qnikst Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-haskell/language-haskell-extract/ChangeLog,v 1.2 2014/07/25 08:59:20 slyfox Exp $
+
+  25 Jul 2014; Sergei Trofimovich <slyfox@gentoo.org> metadata.xml:
+  Drop redundant '<maintainer>' field, leave only '<herd>'.
 
 *language-haskell-extract-0.2.4 (25 Aug 2013)
 





^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-haskell/language-haskell-extract: metadata.xml ChangeLog
@ 2015-06-06 12:06 Justin Lecher (jlec)
  0 siblings, 0 replies; 2+ messages in thread
From: Justin Lecher (jlec) @ 2015-06-06 12:06 UTC (permalink / raw
  To: gentoo-commits

jlec        15/06/06 12:06:55

  Modified:             metadata.xml ChangeLog
  Log:
  Add github to remote-id in metadata.xml
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key E9402A79B03529A2!)

Revision  Changes    Path
1.3                  dev-haskell/language-haskell-extract/metadata.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/language-haskell-extract/metadata.xml?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/language-haskell-extract/metadata.xml?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/language-haskell-extract/metadata.xml?r1=1.2&r2=1.3

Index: metadata.xml
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-haskell/language-haskell-extract/metadata.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- metadata.xml	25 Jul 2014 08:59:20 -0000	1.2
+++ metadata.xml	6 Jun 2015 12:06:55 -0000	1.3
@@ -7,13 +7,13 @@
 		
 		@functionExtractor@ extracts all functions after a regexp-pattern.
 		
-		&gt; foo = &quot;test&quot;
-		&gt; boo = &quot;testing&quot;
-		&gt; bar = $(functionExtractor &quot;oo$&quot;)
+		&gt; foo = "test"
+		&gt; boo = "testing"
+		&gt; bar = $(functionExtractor "oo$")
 		
 		will automagically extract the functions ending with @oo@ such as
 		
-		&gt; bar = [(&quot;foo&quot;,foo), (&quot;boo&quot;,boo)]
+		&gt; bar = [("foo",foo), ("boo",boo)]
 		
 		This can be useful if you wish to extract all functions beginning with test (for a test-framework)
 		or all functions beginning with wc (for a web service).
@@ -25,8 +25,8 @@
 		Example:
 		
 		&gt; secondTypeclassTest =
-		&gt;   do let expected = [&quot;45&quot;, &quot;88.8&quot;, &quot;\&quot;hej\&quot;&quot;]
-		&gt;          actual = $(functionExtractorMap &quot;^tc&quot; [|\n f -&gt; show f|] )
+		&gt;   do let expected = ["45", "88.8", "\"hej\""]
+		&gt;          actual = $(functionExtractorMap "^tc" [|\n f -&gt; show f|] )
 		&gt;      expected @=? actual
 		&gt;
 		&gt; tcInt :: Integer
@@ -36,6 +36,9 @@
 		&gt; tcDouble = 88.8
 		&gt;
 		&gt; tcString :: String
-		&gt; tcString = &quot;hej&quot;
+		&gt; tcString = "hej"
 	</longdescription>
+	<upstream>
+		<remote-id type="github">finnsson/template-helper</remote-id>
+	</upstream>
 </pkgmetadata>



1.4                  dev-haskell/language-haskell-extract/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/language-haskell-extract/ChangeLog?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/language-haskell-extract/ChangeLog?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/language-haskell-extract/ChangeLog?r1=1.3&r2=1.4

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-haskell/language-haskell-extract/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog	25 Jul 2014 09:16:46 -0000	1.3
+++ ChangeLog	6 Jun 2015 12:06:55 -0000	1.4
@@ -1,6 +1,9 @@
 # ChangeLog for dev-haskell/language-haskell-extract
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-haskell/language-haskell-extract/ChangeLog,v 1.3 2014/07/25 09:16:46 slyfox Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-haskell/language-haskell-extract/ChangeLog,v 1.4 2015/06/06 12:06:55 jlec Exp $
+
+  06 Jun 2015; Justin Lecher <jlec@gentoo.org> metadata.xml:
+  Add github to remote-id in metadata.xml
 
   25 Jul 2014; Sergei Trofimovich <slyfox@gentoo.org>
   language-haskell-extract-0.2.4.ebuild:





^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-06-06 12:07 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-06 12:06 [gentoo-commits] gentoo-x86 commit in dev-haskell/language-haskell-extract: metadata.xml ChangeLog Justin Lecher (jlec)
  -- strict thread matches above, loose matches on Subject: below --
2014-07-25  8:59 Sergei Trofimovich (slyfox)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox