autoproj 1.8.2.b10 → 1.8.2.b11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/bin/autoproj_bootstrap +38 -38
- data/lib/autoproj/version.rb +1 -1
- metadata +4 -4
data/bin/autoproj_bootstrap
CHANGED
|
@@ -1747,39 +1747,12 @@ end
|
|
|
1747
1747
|
|
|
1748
1748
|
DEFS = <<EODEFS
|
|
1749
1749
|
---
|
|
1750
|
-
autobuild: gem
|
|
1751
|
-
none: ignore
|
|
1752
|
-
cmake:
|
|
1753
|
-
arch: cmake
|
|
1754
|
-
debian,ubuntu: cmake
|
|
1755
|
-
gentoo: dev-util/cmake
|
|
1756
|
-
lsb_release:
|
|
1757
|
-
arch: ignore
|
|
1758
|
-
debian,ubuntu: lsb-release
|
|
1759
|
-
gentoo: sys-apps/lsb-release
|
|
1760
|
-
autotools:
|
|
1761
|
-
arch: automake autoconf
|
|
1762
|
-
debian,ubuntu:
|
|
1763
|
-
- automake1.9
|
|
1764
|
-
- autoconf
|
|
1765
|
-
gentoo:
|
|
1766
|
-
- sys-devel/automake:1.9
|
|
1767
|
-
- sys-devel/autoconf
|
|
1768
|
-
zlib:
|
|
1769
|
-
debian,ubuntu: zlib1g-dev
|
|
1770
1750
|
cvs:
|
|
1771
1751
|
debian,ubuntu: cvs
|
|
1772
|
-
|
|
1773
|
-
|
|
1774
|
-
ubuntu:
|
|
1775
|
-
gentoo: dev-vcs/git
|
|
1776
|
-
debian:
|
|
1777
|
-
default: git-core
|
|
1778
|
-
lenny: git
|
|
1752
|
+
autoproj: gem
|
|
1753
|
+
zlib:
|
|
1754
|
+
debian,ubuntu: zlib1g-dev
|
|
1779
1755
|
ruby19:
|
|
1780
|
-
arch:
|
|
1781
|
-
- ruby
|
|
1782
|
-
- rake
|
|
1783
1756
|
ubuntu:
|
|
1784
1757
|
- ruby1.9.1
|
|
1785
1758
|
- ruby1.9.1-dev
|
|
@@ -1787,6 +1760,9 @@ ruby19:
|
|
|
1787
1760
|
- ri1.9.1
|
|
1788
1761
|
- libopenssl-ruby1.9.1
|
|
1789
1762
|
- rake
|
|
1763
|
+
arch:
|
|
1764
|
+
- ruby
|
|
1765
|
+
- rake
|
|
1790
1766
|
gentoo:
|
|
1791
1767
|
- dev-lang/ruby:1.9
|
|
1792
1768
|
- rake
|
|
@@ -1807,25 +1783,49 @@ ruby18:
|
|
|
1807
1783
|
gentoo:
|
|
1808
1784
|
- dev-lang/ruby:1.8
|
|
1809
1785
|
- rake
|
|
1810
|
-
svn:
|
|
1811
|
-
arch: subversion
|
|
1812
|
-
debian,ubuntu: subversion
|
|
1813
|
-
gentoo: dev-util/subversion
|
|
1814
1786
|
archive:
|
|
1815
|
-
|
|
1787
|
+
debian,ubuntu:
|
|
1816
1788
|
- tar
|
|
1817
1789
|
- unzip
|
|
1818
|
-
|
|
1790
|
+
arch:
|
|
1819
1791
|
- tar
|
|
1820
1792
|
- unzip
|
|
1821
1793
|
gentoo:
|
|
1822
1794
|
- app-arch/tar
|
|
1823
1795
|
- app-arch/unzip
|
|
1824
|
-
|
|
1796
|
+
cmake:
|
|
1797
|
+
debian,ubuntu: cmake
|
|
1798
|
+
arch: cmake
|
|
1799
|
+
gentoo: dev-util/cmake
|
|
1825
1800
|
build-essential:
|
|
1826
|
-
arch: ignore
|
|
1827
1801
|
debian,ubuntu: build-essential
|
|
1802
|
+
arch: ignore
|
|
1828
1803
|
gentoo: ignore
|
|
1804
|
+
svn:
|
|
1805
|
+
debian,ubuntu: subversion
|
|
1806
|
+
arch: subversion
|
|
1807
|
+
gentoo: dev-util/subversion
|
|
1808
|
+
none: ignore
|
|
1809
|
+
lsb_release:
|
|
1810
|
+
debian,ubuntu: lsb-release
|
|
1811
|
+
arch: ignore
|
|
1812
|
+
gentoo: sys-apps/lsb-release
|
|
1813
|
+
autotools:
|
|
1814
|
+
debian,ubuntu:
|
|
1815
|
+
- automake1.9
|
|
1816
|
+
- autoconf
|
|
1817
|
+
arch: automake autoconf
|
|
1818
|
+
gentoo:
|
|
1819
|
+
- sys-devel/automake:1.9
|
|
1820
|
+
- sys-devel/autoconf
|
|
1821
|
+
git:
|
|
1822
|
+
ubuntu: git-core
|
|
1823
|
+
arch: git
|
|
1824
|
+
gentoo: dev-vcs/git
|
|
1825
|
+
debian:
|
|
1826
|
+
default: git-core
|
|
1827
|
+
lenny: git
|
|
1828
|
+
autobuild: gem
|
|
1829
1829
|
|
|
1830
1830
|
EODEFS
|
|
1831
1831
|
|
data/lib/autoproj/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: autoproj
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 1097016347
|
|
5
5
|
prerelease: 6
|
|
6
6
|
segments:
|
|
7
7
|
- 1
|
|
8
8
|
- 8
|
|
9
9
|
- 2
|
|
10
10
|
- b
|
|
11
|
-
-
|
|
12
|
-
version: 1.8.2.
|
|
11
|
+
- 11
|
|
12
|
+
version: 1.8.2.b11
|
|
13
13
|
platform: ruby
|
|
14
14
|
authors:
|
|
15
15
|
- Rock Core Developers
|
|
@@ -27,7 +27,7 @@ dependencies:
|
|
|
27
27
|
requirements:
|
|
28
28
|
- - ">="
|
|
29
29
|
- !ruby/object:Gem::Version
|
|
30
|
-
hash:
|
|
30
|
+
hash: -3362145234
|
|
31
31
|
segments:
|
|
32
32
|
- 1
|
|
33
33
|
- 6
|