Thread: [Abtlinux-svn] SF.net SVN: abtlinux: [232] src/trunk/packages/ipc.rb
Status: Alpha
Brought to you by:
eschabell
From: <esc...@us...> - 2006-11-22 20:02:34
|
Revision: 232 http://svn.sourceforge.net/abtlinux/?rev=232&view=rev Author: eschabell Date: 2006-11-22 12:02:34 -0800 (Wed, 22 Nov 2006) Log Message: ----------- Removed copied over override method for configure, missed that one on the initial commit. Ipc is now installing thru the configure stage. Modified Paths: -------------- src/trunk/packages/ipc.rb Modified: src/trunk/packages/ipc.rb =================================================================== --- src/trunk/packages/ipc.rb 2006-11-22 20:01:11 UTC (rev 231) +++ src/trunk/packages/ipc.rb 2006-11-22 20:02:34 UTC (rev 232) @@ -42,7 +42,7 @@ 'version' => $version, 'srcDir' => $srcDir, 'homepage' => "http://isotopatcalc.sourceforge.net/", - 'srcUrl' => "http://osdn.dl.sourceforge.net/sourceforge/isotopatcalc/#{$srcdir}.tar.gz", + 'srcUrl' => "http://osdn.dl.sourceforge.net/sourceforge/isotopatcalc/#{$srcDir}.tar.gz", 'dependsOn' => "", 'reliesOn' => "", 'optionalDO' => "", @@ -67,13 +67,4 @@ def initialize() super( $packageData ) end - - ## - # Overriding configure. - # - # <b>RETURN</b> <i>boolean</i> - returns true. - ## - def configure - return true # nothing to do, standard makefile is fine. - end end This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <esc...@us...> - 2006-11-25 15:17:50
|
Revision: 236 http://svn.sourceforge.net/abtlinux/?rev=236&view=rev Author: eschabell Date: 2006-11-25 07:17:51 -0800 (Sat, 25 Nov 2006) Log Message: ----------- Using global sourceforge var. Modified Paths: -------------- src/trunk/packages/ipc.rb Modified: src/trunk/packages/ipc.rb =================================================================== --- src/trunk/packages/ipc.rb 2006-11-25 15:14:27 UTC (rev 235) +++ src/trunk/packages/ipc.rb 2006-11-25 15:17:51 UTC (rev 236) @@ -42,7 +42,7 @@ 'version' => $version, 'srcDir' => $srcDir, 'homepage' => "http://isotopatcalc.sourceforge.net/", - 'srcUrl' => "http://osdn.dl.sourceforge.net/sourceforge/isotopatcalc/#{$srcDir}.tar.gz", + 'srcUrl' => "#{$SOURCEFORGE_URL}/isotopatcalc/#{$srcDir}.tar.gz", 'dependsOn' => "", 'reliesOn' => "", 'optionalDO' => "", This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <esc...@us...> - 2006-12-03 12:52:05
|
Revision: 253 http://svn.sourceforge.net/abtlinux/?rev=253&view=rev Author: eschabell Date: 2006-12-03 04:52:04 -0800 (Sun, 03 Dec 2006) Log Message: ----------- Some cleanup in the tabs. Modified Paths: -------------- src/trunk/packages/ipc.rb Modified: src/trunk/packages/ipc.rb =================================================================== --- src/trunk/packages/ipc.rb 2006-12-03 12:51:24 UTC (rev 252) +++ src/trunk/packages/ipc.rb 2006-12-03 12:52:04 UTC (rev 253) @@ -33,26 +33,26 @@ private - $name = "Ipc" + $name = "Ipc" $version = "1.4" - $srcDir = "#{$name.downcase}-#{$version}" + $srcDir = "#{$name.downcase}-#{$version}" $packageData = { - 'name' => $name, - 'execName' => $name.downcase, - 'version' => $version, - 'srcDir' => $srcDir, - 'homepage' => "http://isotopatcalc.sourceforge.net/", - 'srcUrl' => "#{$SOURCEFORGE_URL}/isotopatcalc/#{$srcDir}.tar.gz", - 'dependsOn' => "", - 'reliesOn' => "", - 'optionalDO' => "", - 'optionalRO' => "", - 'hashCheck' => "sha512:d759b651e343beddc0b3bd06af85881486b72319c979a2e7f752d5a34edd8b7c1c19391c5c7a2e8f6685746cc7a046bf2c8e082b31458a1dd043ed90a4cebcd1", - 'patches' => "", + 'name' => $name, + 'execName' => $name.downcase, + 'version' => $version, + 'srcDir' => $srcDir, + 'homepage' => "http://isotopatcalc.sourceforge.net/", + 'srcUrl' => "#{$SOURCEFORGE_URL}/isotopatcalc/#{$srcDir}.tar.gz", + 'dependsOn' => "", + 'reliesOn' => "", + 'optionalDO' => "", + 'optionalRO' => "", + 'hashCheck' => "sha512:d759b651e343beddc0b3bd06af85881486b72319c979a2e7f752d5a34edd8b7c1c19391c5c7a2e8f6685746cc7a046bf2c8e082b31458a1dd043ed90a4cebcd1", + 'patches' => "", 'patchesHashCheck' => "", - 'mirrorPath' => "", - 'license' => "GPL", - 'description' => "IPC is a program that calculates the isotopic distribution of a given chemical formula." + 'mirrorPath' => "", + 'license' => "GPL", + 'description' => "IPC is a program that calculates the isotopic distribution of a given chemical formula." } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <esc...@us...> - 2007-07-19 18:31:28
|
Revision: 382 http://svn.sourceforge.net/abtlinux/?rev=382&view=rev Author: eschabell Date: 2007-07-19 11:31:29 -0700 (Thu, 19 Jul 2007) Log Message: ----------- Some coding standard adjustments (single quotes) and added ruby std lib digest/sha1 generated hash to be used in all packages. For some reason the function used to generate this hash is not the same as the command line 'sha1sum' tool generates... so be it, by using the ruby generated hash we avoid system calls. Modified Paths: -------------- src/trunk/packages/ipc.rb Modified: src/trunk/packages/ipc.rb =================================================================== --- src/trunk/packages/ipc.rb 2007-07-18 14:54:29 UTC (rev 381) +++ src/trunk/packages/ipc.rb 2007-07-19 18:31:29 UTC (rev 382) @@ -1,6 +1,6 @@ #!/usr/bin/ruby -w -require "abtpackage" +require 'abtpackage' ## # ipc.rb @@ -33,26 +33,27 @@ private - $name = "Ipc" + $name = "Ipc" $version = "1.4" - $srcDir = "#{$name.downcase}-#{$version}" + $srcDir = "#{$name.downcase}-#{$version}" + $srcFile = "#{$srcDir}.tar.gz" $packageData = { - 'name' => $name, - 'execName' => $name.downcase, - 'version' => $version, - 'srcDir' => $srcDir, - 'homepage' => "http://isotopatcalc.sourceforge.net/", - 'srcUrl' => "#{$SOURCEFORGE_URL}/isotopatcalc/#{$srcDir}.tar.gz", - 'dependsOn' => "", - 'reliesOn' => "", - 'optionalDO' => "", - 'optionalRO' => "", - 'hashCheck' => "sha512:d759b651e343beddc0b3bd06af85881486b72319c979a2e7f752d5a34edd8b7c1c19391c5c7a2e8f6685746cc7a046bf2c8e082b31458a1dd043ed90a4cebcd1", - 'patches' => "", + 'name' => $name, + 'execName' => $name.downcase, + 'version' => $version, + 'srcDir' => $srcDir, + 'homepage' => "http://isotopatcalc.sourceforge.net/", + 'srcUrl' => "#{$SOURCEFORGE_URL}/isotopatcalc/#{$srcFile}", + 'dependsOn' => "", + 'reliesOn' => "", + 'optionalDO' => "", + 'optionalRO' => "", + 'hashCheck' => "e81278607b1d65dcb18c3613ec00fbf588b50319", + 'patches' => "", 'patchesHashCheck' => "", - 'mirrorPath' => "", - 'license' => "GPL", - 'description' => "IPC is a program that calculates the isotopic distribution of a given chemical formula." + 'mirrorPath' => "", + 'license' => "GPL", + 'description' => "IPC is a program that calculates the isotopic distribution of a given chemical formula." } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <esc...@us...> - 2008-01-20 20:07:24
|
Revision: 481 http://abtlinux.svn.sourceforge.net/abtlinux/?rev=481&view=rev Author: eschabell Date: 2008-01-20 12:07:24 -0800 (Sun, 20 Jan 2008) Log Message: ----------- Updated new files verifcation hash. Modified Paths: -------------- src/trunk/packages/ipc.rb Modified: src/trunk/packages/ipc.rb =================================================================== --- src/trunk/packages/ipc.rb 2008-01-20 16:47:12 UTC (rev 480) +++ src/trunk/packages/ipc.rb 2008-01-20 20:07:24 UTC (rev 481) @@ -50,7 +50,7 @@ 'reliesOn' => "", 'optionalDO' => "", 'optionalRO' => "", - 'hashCheck' => "e81278607b1d65dcb18c3613ec00fbf588b50319", + 'hashCheck' => "c7100a74f4f6cafa4607bc5bd68a1175a1876ecc", 'patches' => "", 'patchesHashCheck' => "", 'mirrorPath' => "", This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |