Thread: [Abtlinux-svn] SF.net SVN: abtlinux: [220] src/trunk/abtconfig.rb
Status: Alpha
Brought to you by:
eschabell
From: <esc...@us...> - 2006-11-19 13:52:13
|
Revision: 220 http://svn.sourceforge.net/abtlinux/?rev=220&view=rev Author: eschabell Date: 2006-11-19 05:52:10 -0800 (Sun, 19 Nov 2006) Log Message: ----------- Added default install prefix for configure phase. Modified Paths: -------------- src/trunk/abtconfig.rb Modified: src/trunk/abtconfig.rb =================================================================== --- src/trunk/abtconfig.rb 2006-11-19 13:51:20 UTC (rev 219) +++ src/trunk/abtconfig.rb 2006-11-19 13:52:10 UTC (rev 220) @@ -40,3 +40,4 @@ # default config options. # $removeBuildSources = false +$defaultPrefix = "/usr/local" 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:14:29
|
Revision: 235 http://svn.sourceforge.net/abtlinux/?rev=235&view=rev Author: eschabell Date: 2006-11-25 07:14:27 -0800 (Sat, 25 Nov 2006) Log Message: ----------- Added diverse globals to config file and organized it a bit. Modified Paths: -------------- src/trunk/abtconfig.rb Modified: src/trunk/abtconfig.rb =================================================================== --- src/trunk/abtconfig.rb 2006-11-25 15:12:55 UTC (rev 234) +++ src/trunk/abtconfig.rb 2006-11-25 15:14:27 UTC (rev 235) @@ -24,20 +24,37 @@ # AbTLinux; if not, write to the Free Software Foundation, Inc., 51 Franklin # St, Fifth Floor, Boston, MA 02110-1301 USA ## + +# default paths / locations. $PACKAGE_PATH = "./packages/" $SOURCES_REPOSITORY = "/var/spool/abt/sources" $BUILD_LOCATION = "/usr/src" - -$ABTNEWS = "http://abtlinux.org/e107_plugins/rss_menu/rss.php?1.2" -$ABTNEWS_THREADS = "http://abtlinux.org/e107_plugins/rss_menu/rss.php?6.2" -$ABTNEWS_POSTS = "http://abtlinux.org/e107_plugins/rss_menu/rss.php?7.2" - $ABT_LOGS = "/var/log/abt" $JOURNAL = "#{$ABT_LOGS}/journal.log" -$TIMESTAMP = Time.now.strftime( "%Y-%m-%d %H:%M:%S (%Z)" ) # default config options. # -$removeBuildSources = false -$defaultPrefix = "/usr/local" +$ABT_VERSION = "0.1" +$BUILD_ARCHITECTURE = "x86_64" +$BUILD_OPTIMIZATIONS = "strip" +$DEFAULT_PREFIX = "/usr/local" +$REMOVE_BUILD_SOURCES = false +$TIMESTAMP = Time.now.strftime( "%Y-%m-%d %H:%M:%S (%Z)" ) +$PAGER_DEFAULT = "less -R -E -X -f" + + +# default URL listing. +# +$ABTNEWS = "http://abtlinux.org/e107_plugins/rss_menu/rss.php?1.2" +$ABTNEWS_POSTS = "http://abtlinux.org/e107_plugins/rss_menu/rss.php?7.2" +$ABTNEWS_THREADS = "http://abtlinux.org/e107_plugins/rss_menu/rss.php?6.2" + +$APACHE_URL = "http://www.ibiblio.org/pub/mirrors/apache" +$CTAN_URL = "ftp://tug.ctan.org/tex-archive" +$GNOME_URL = "ftp://ftp.gnome.org/pub/GNOME" +$GNU_URL = "ftp://ftp.gnu.org/pub/gnu" +$KDE_URL = "ftp://ftp.kde.org/pub/kde" +$KERNEL_URL = "ftp://ftp.kernel.org" +$SOURCEFORGE_URL = "http://osdn.dl.sourceforge.net/sourceforge" +$XFREE86_URL = "ftp://ftp.xfree86.org/pub/XFree86" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <esc...@us...> - 2006-11-25 16:11:11
|
Revision: 240 http://svn.sourceforge.net/abtlinux/?rev=240&view=rev Author: eschabell Date: 2006-11-25 08:11:11 -0800 (Sat, 25 Nov 2006) Log Message: ----------- Sorted the globals. Modified Paths: -------------- src/trunk/abtconfig.rb Modified: src/trunk/abtconfig.rb =================================================================== --- src/trunk/abtconfig.rb 2006-11-25 16:09:51 UTC (rev 239) +++ src/trunk/abtconfig.rb 2006-11-25 16:11:11 UTC (rev 240) @@ -26,11 +26,12 @@ ## # default paths / locations. +$ABT_LOGS = "/var/log/abt" +$ABTNEWS_LOG = "#{$ABT_LOGS}/news.log" +$BUILD_LOCATION = "/usr/src" +$JOURNAL = "#{$ABT_LOGS}/journal.log" $PACKAGE_PATH = "./packages/" $SOURCES_REPOSITORY = "/var/spool/abt/sources" -$BUILD_LOCATION = "/usr/src" -$ABT_LOGS = "/var/log/abt" -$JOURNAL = "#{$ABT_LOGS}/journal.log" # default config options. 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:50:20
|
Revision: 251 http://svn.sourceforge.net/abtlinux/?rev=251&view=rev Author: eschabell Date: 2006-12-03 04:50:21 -0800 (Sun, 03 Dec 2006) Log Message: ----------- Added package installed path variable and some beautification with tabs. Modified Paths: -------------- src/trunk/abtconfig.rb Modified: src/trunk/abtconfig.rb =================================================================== --- src/trunk/abtconfig.rb 2006-12-03 12:48:55 UTC (rev 250) +++ src/trunk/abtconfig.rb 2006-12-03 12:50:21 UTC (rev 251) @@ -26,12 +26,14 @@ ## # default paths / locations. -$ABT_LOGS = "/var/log/abt" -$ABTNEWS_LOG = "#{$ABT_LOGS}/news.log" -$BUILD_LOCATION = "/usr/src" -$JOURNAL = "#{$ABT_LOGS}/journal.log" -$PACKAGE_PATH = "./packages/" -$SOURCES_REPOSITORY = "/var/spool/abt/sources" +$ABT_LOGS = "/var/log/abt" +$ABT_CACHES = "/var/spool/abt" +$ABTNEWS_LOG = "#{$ABT_LOGS}/news.log" +$BUILD_LOCATION = "/usr/src" +$JOURNAL = "#{$ABT_LOGS}/journal.log" +$PACKAGE_INSTALLED = "#{$ABT_CACHES}/installed" +$PACKAGE_PATH = "./packages/" +$SOURCES_REPOSITORY = "#{$ABT_CACHES}/sources" # default config options. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <esc...@us...> - 2006-12-06 19:47:54
|
Revision: 258 http://svn.sourceforge.net/abtlinux/?rev=258&view=rev Author: eschabell Date: 2006-12-06 11:47:46 -0800 (Wed, 06 Dec 2006) Log Message: ----------- Modified sourceforge default url to a working one for my test packages. Modified Paths: -------------- src/trunk/abtconfig.rb Modified: src/trunk/abtconfig.rb =================================================================== --- src/trunk/abtconfig.rb 2006-12-06 15:21:00 UTC (rev 257) +++ src/trunk/abtconfig.rb 2006-12-06 19:47:46 UTC (rev 258) @@ -60,4 +60,5 @@ $KDE_URL = "ftp://ftp.kde.org/pub/kde" $KERNEL_URL = "ftp://ftp.kernel.org" $SOURCEFORGE_URL = "http://osdn.dl.sourceforge.net/sourceforge" +$SOURCEFORGE_URL = "http://belnet.dl.sourceforge.net/sourceforge" $XFREE86_URL = "ftp://ftp.xfree86.org/pub/XFree86" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <esc...@us...> - 2007-02-26 20:16:32
|
Revision: 299 http://svn.sourceforge.net/abtlinux/?rev=299&view=rev Author: eschabell Date: 2007-02-26 12:16:27 -0800 (Mon, 26 Feb 2007) Log Message: ----------- Small alignment fixes in code. Modified Paths: -------------- src/trunk/abtconfig.rb Modified: src/trunk/abtconfig.rb =================================================================== --- src/trunk/abtconfig.rb 2007-02-26 16:18:20 UTC (rev 298) +++ src/trunk/abtconfig.rb 2007-02-26 20:16:27 UTC (rev 299) @@ -29,8 +29,8 @@ $ABT_LOGS = "/var/log/abt" $ABT_CACHES = "/var/spool/abt" $ABTNEWS_LOG = "#{$ABT_LOGS}/news.log" -$BUILD_LOCATION = "/usr/src" -$JOURNAL = "#{$ABT_LOGS}/journal.log" +$BUILD_LOCATION = "/usr/src" +$JOURNAL = "#{$ABT_LOGS}/journal.log" $PACKAGE_INSTALLED = "#{$ABT_CACHES}/installed" $PACKAGE_PATH = "./packages/" $SOURCES_REPOSITORY = "#{$ABT_CACHES}/sources" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <esc...@us...> - 2007-02-26 20:28:14
|
Revision: 300 http://svn.sourceforge.net/abtlinux/?rev=300&view=rev Author: eschabell Date: 2007-02-26 12:28:10 -0800 (Mon, 26 Feb 2007) Log Message: ----------- As the install is now being implemented, it is time to move the install and cached files to their correct locations as per the design. Modified Paths: -------------- src/trunk/abtconfig.rb Modified: src/trunk/abtconfig.rb =================================================================== --- src/trunk/abtconfig.rb 2007-02-26 20:16:27 UTC (rev 299) +++ src/trunk/abtconfig.rb 2007-02-26 20:28:10 UTC (rev 300) @@ -28,10 +28,12 @@ # default paths / locations. $ABT_LOGS = "/var/log/abt" $ABT_CACHES = "/var/spool/abt" +$ABT_STATE = "/var/state/abt" $ABTNEWS_LOG = "#{$ABT_LOGS}/news.log" $BUILD_LOCATION = "/usr/src" $JOURNAL = "#{$ABT_LOGS}/journal.log" -$PACKAGE_INSTALLED = "#{$ABT_CACHES}/installed" +$PACKAGE_INSTALLED = "#{$ABT_STATE}/installed" +$PACKAGE_CACHED = "#{$ABT_STATE}/cached" $PACKAGE_PATH = "./packages/" $SOURCES_REPOSITORY = "#{$ABT_CACHES}/sources" @@ -39,7 +41,7 @@ # default config options. # $ABT_VERSION = "0.1" -$BUILD_ARCHITECTURE = "x86_64" +$BUILD_ARCHITECTURE = "i686" $BUILD_OPTIMIZATIONS = "strip" $DEFAULT_PREFIX = "/usr/local" $REMOVE_BUILD_SOURCES = false This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <esc...@us...> - 2007-02-26 20:34:05
|
Revision: 301 http://svn.sourceforge.net/abtlinux/?rev=301&view=rev Author: eschabell Date: 2007-02-26 12:34:04 -0800 (Mon, 26 Feb 2007) Log Message: ----------- Added global tmp location for abt to use. Modified Paths: -------------- src/trunk/abtconfig.rb Modified: src/trunk/abtconfig.rb =================================================================== --- src/trunk/abtconfig.rb 2007-02-26 20:28:10 UTC (rev 300) +++ src/trunk/abtconfig.rb 2007-02-26 20:34:04 UTC (rev 301) @@ -29,6 +29,7 @@ $ABT_LOGS = "/var/log/abt" $ABT_CACHES = "/var/spool/abt" $ABT_STATE = "/var/state/abt" +$ABT_TMP = "/tmp/abt" $ABTNEWS_LOG = "#{$ABT_LOGS}/news.log" $BUILD_LOCATION = "/usr/src" $JOURNAL = "#{$ABT_LOGS}/journal.log" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <esc...@us...> - 2007-07-17 19:29:42
|
Revision: 372 http://svn.sourceforge.net/abtlinux/?rev=372&view=rev Author: eschabell Date: 2007-07-17 12:29:39 -0700 (Tue, 17 Jul 2007) Log Message: ----------- Build process good enough to default to remove build directory. Modified Paths: -------------- src/trunk/abtconfig.rb Modified: src/trunk/abtconfig.rb =================================================================== --- src/trunk/abtconfig.rb 2007-07-17 18:59:34 UTC (rev 371) +++ src/trunk/abtconfig.rb 2007-07-17 19:29:39 UTC (rev 372) @@ -59,7 +59,7 @@ $BUILD_ARCHITECTURE = "i686" $BUILD_OPTIMIZATIONS = "strip" $DEFAULT_PREFIX = "/usr/local" -$REMOVE_BUILD_SOURCES = false +$REMOVE_BUILD_SOURCES = true $TIMESTAMP = Time.now.strftime( "%Y-%m-%d %H:%M:%S (%Z)" ) $PAGER_DEFAULT = "less -R -E -X -f" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <esc...@us...> - 2007-09-18 20:19:02
|
Revision: 428 http://abtlinux.svn.sourceforge.net/abtlinux/?rev=428&view=rev Author: eschabell Date: 2007-09-18 13:19:00 -0700 (Tue, 18 Sep 2007) Log Message: ----------- Fixed file naming problem with the journal global var. Also added url for package repo. Modified Paths: -------------- src/trunk/abtconfig.rb Modified: src/trunk/abtconfig.rb =================================================================== --- src/trunk/abtconfig.rb 2007-09-17 18:15:44 UTC (rev 427) +++ src/trunk/abtconfig.rb 2007-09-18 20:19:00 UTC (rev 428) @@ -48,7 +48,7 @@ $ABT_TMP = "/tmp/abt" $ABTNEWS_LOG = "#{$ABT_LOGS}/news.log" $BUILD_LOCATION = "/usr/src" -$JOURNAL = "#{$ABT_LOGS}/journal.log, File::WRONLY | File::APPEND | File::CREAT" # use logger.info. +$JOURNAL = "#{$ABT_LOGS}/journal.log" # use logger.info. $PACKAGE_INSTALLED = "#{$ABT_STATE}/installed" $PACKAGE_CACHED = "#{$ABT_STATE}/cached" $PACKAGE_PATH = "#{$ABT_CACHES}/packages/" @@ -65,8 +65,8 @@ $TIMESTAMP = Time.now.strftime( "%Y-%m-%d %H:%M:%S (%Z)" ) $PAGER_DEFAULT = "less -R -E -X -f" $LOG_LEVEL = "Logger::DEBUG" +$ABTLINUX_PACKAGES = "https://abtlinux.svn.sourceforge.net/svnroot/abtlinux/src/trunk/packages" - # default URL listing. # $ABTNEWS = "http://abtlinux.org/e107_plugins/rss_menu/rss.php?1.2" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <esc...@us...> - 2007-12-31 12:50:37
|
Revision: 455 http://abtlinux.svn.sourceforge.net/abtlinux/?rev=455&view=rev Author: eschabell Date: 2007-12-31 04:50:39 -0800 (Mon, 31 Dec 2007) Log Message: ----------- Added actual lib path for all our classes. Modified Paths: -------------- src/trunk/abtconfig.rb Modified: src/trunk/abtconfig.rb =================================================================== --- src/trunk/abtconfig.rb 2007-12-31 12:49:44 UTC (rev 454) +++ src/trunk/abtconfig.rb 2007-12-31 12:50:39 UTC (rev 455) @@ -47,6 +47,7 @@ $ABT_STATE = "/var/state/abt" $ABT_TMP = "/tmp/abt" $ABT_CONFIG = "/etc/abt" +$ABT_LIBS = "/var/lib/abt" $ABT_LOCAL_CONFIG = "/etc/abt/local" $ABTNEWS_LOG = "#{$ABT_LOGS}/news.log" $BUILD_LOCATION = "/usr/src" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <esc...@us...> - 2007-12-31 14:08:42
|
Revision: 464 http://abtlinux.svn.sourceforge.net/abtlinux/?rev=464&view=rev Author: eschabell Date: 2007-12-31 06:08:19 -0800 (Mon, 31 Dec 2007) Log Message: ----------- Updated load path after libs move. Modified Paths: -------------- src/trunk/abtconfig.rb Modified: src/trunk/abtconfig.rb =================================================================== --- src/trunk/abtconfig.rb 2007-12-31 14:07:13 UTC (rev 463) +++ src/trunk/abtconfig.rb 2007-12-31 14:08:19 UTC (rev 464) @@ -1,5 +1,7 @@ #!/usr/bin/ruby -w +$LOAD_PATH.unshift '/var/lib/abt/' +$LOAD_PATH.unshift './libs/' # for development. ## # abtconfig.rb # This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <esc...@us...> - 2008-01-02 21:06:43
|
Revision: 471 http://abtlinux.svn.sourceforge.net/abtlinux/?rev=471&view=rev Author: eschabell Date: 2008-01-02 13:06:19 -0800 (Wed, 02 Jan 2008) Log Message: ----------- Removed the local libs path search. Modified Paths: -------------- src/trunk/abtconfig.rb Modified: src/trunk/abtconfig.rb =================================================================== --- src/trunk/abtconfig.rb 2008-01-02 21:05:42 UTC (rev 470) +++ src/trunk/abtconfig.rb 2008-01-02 21:06:19 UTC (rev 471) @@ -1,7 +1,6 @@ #!/usr/bin/ruby -w $LOAD_PATH.unshift '/var/lib/abt/' -$LOAD_PATH.unshift './libs/' # for development. ## # abtconfig.rb # This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <esc...@us...> - 2008-01-21 21:49:28
|
Revision: 485 http://abtlinux.svn.sourceforge.net/abtlinux/?rev=485&view=rev Author: eschabell Date: 2008-01-21 13:47:58 -0800 (Mon, 21 Jan 2008) Log Message: ----------- Small cosmetic fix, removed extra spaces. Modified Paths: -------------- src/trunk/abtconfig.rb Modified: src/trunk/abtconfig.rb =================================================================== --- src/trunk/abtconfig.rb 2008-01-21 21:22:35 UTC (rev 484) +++ src/trunk/abtconfig.rb 2008-01-21 21:47:58 UTC (rev 485) @@ -1,5 +1,5 @@ #!/usr/bin/ruby -w -$DEFAULT_PREFIX = "/usr/local" +$DEFAULT_PREFIX = "/usr/local" $LOAD_PATH.unshift "#{$DEFAULT_PREFIX}/var/lib/abt/" ## # abtconfig.rb This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <esc...@us...> - 2008-01-28 20:19:15
|
Revision: 499 http://abtlinux.svn.sourceforge.net/abtlinux/?rev=499&view=rev Author: eschabell Date: 2008-01-28 12:19:18 -0800 (Mon, 28 Jan 2008) Log Message: ----------- Uping version to 0.2, we are on the way. Modified Paths: -------------- src/trunk/abtconfig.rb Modified: src/trunk/abtconfig.rb =================================================================== --- src/trunk/abtconfig.rb 2008-01-28 20:13:07 UTC (rev 498) +++ src/trunk/abtconfig.rb 2008-01-28 20:19:18 UTC (rev 499) @@ -61,7 +61,7 @@ # default config options. # -$ABT_VERSION = "0.1" +$ABT_VERSION = "0.2" $BUILD_ARCHITECTURE = "i686" $BUILD_OPTIMIZATIONS = "strip" $REMOVE_BUILD_SOURCES = true This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <esc...@us...> - 2008-02-03 23:39:03
|
Revision: 512 http://abtlinux.svn.sourceforge.net/abtlinux/?rev=512&view=rev Author: eschabell Date: 2008-02-03 15:39:06 -0800 (Sun, 03 Feb 2008) Log Message: ----------- Updated the config arch specs for my build box, you all have to override this one in your local config. Modified Paths: -------------- src/trunk/abtconfig.rb Modified: src/trunk/abtconfig.rb =================================================================== --- src/trunk/abtconfig.rb 2008-02-03 23:11:18 UTC (rev 511) +++ src/trunk/abtconfig.rb 2008-02-03 23:39:06 UTC (rev 512) @@ -62,8 +62,9 @@ # default config options. # $ABT_VERSION = "0.2" -$BUILD_ARCHITECTURE = "i686" -$BUILD_OPTIMIZATIONS = "strip" +$BUILD_ARCHITECTURE = "-march=i486" # i486 +$BUILD_OPTIMIZATIONS = "-O2 -Os " # fast, small + $REMOVE_BUILD_SOURCES = true $TIMESTAMP = Time.now.strftime( "%Y-%m-%d %H:%M:%S (%Z)" ) $PAGER_DEFAULT = "less -R -E -X -f" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |