2015-08-11 06:39:34 +02:00
|
|
|
import com.typesafe.sbt.packager.Keys._
|
|
|
|
|
import com.typesafe.sbt.SbtNativePackager._
|
|
|
|
|
import util.control.Exception.catching
|
2015-08-11 07:30:16 +02:00
|
|
|
import _root_.bintray.InternalBintrayKeys._
|
|
|
|
|
import _root_.bintray.{BintrayRepo, Bintray}
|
2011-09-14 19:01:48 +02:00
|
|
|
|
2016-05-09 06:25:16 +02:00
|
|
|
lazy val sbtVersionToRelease = sys.props.getOrElse("sbt.build.version", sys.env.getOrElse("sbt.build.version", {
|
|
|
|
|
sys.error("-Dsbt.build.version must be set")
|
|
|
|
|
}))
|
|
|
|
|
lazy val isExperimental = (sbtVersionToRelease contains "RC") || (sbtVersionToRelease contains "M")
|
2015-08-11 06:39:34 +02:00
|
|
|
val sbtLaunchJarUrl = SettingKey[String]("sbt-launch-jar-url")
|
|
|
|
|
val sbtLaunchJarLocation = SettingKey[File]("sbt-launch-jar-location")
|
|
|
|
|
val sbtLaunchJar = TaskKey[File]("sbt-launch-jar", "Resolves SBT launch jar")
|
2016-05-09 06:25:16 +02:00
|
|
|
val moduleID = (organization) apply { (o) => ModuleID(o, "sbt", sbtVersionToRelease) }
|
2013-09-04 17:50:58 +02:00
|
|
|
|
2015-08-11 06:39:34 +02:00
|
|
|
val bintrayLinuxPattern = "[module]/[revision]/[module]-[revision].[ext]"
|
|
|
|
|
val bintrayGenericPattern = "[module]/[revision]/[module]/[revision]/[module]-[revision].[ext]"
|
|
|
|
|
val bintrayDebianUrl = "https://api.bintray.com/content/sbt/debian/"
|
2016-05-09 06:25:16 +02:00
|
|
|
val bintrayDebianExperimentalUrl = "https://api.bintray.com/content/sbt/debian-experimental/"
|
2015-08-11 06:39:34 +02:00
|
|
|
val bintrayRpmUrl = "https://api.bintray.com/content/sbt/rpm/"
|
2016-05-09 06:25:16 +02:00
|
|
|
val bintrayRpmExperimentalUrl = "https://api.bintray.com/content/sbt/rpm-experimental/"
|
2015-08-11 06:39:34 +02:00
|
|
|
val bintrayGenericPackagesUrl = "https://api.bintray.com/content/sbt/native-packages/"
|
2015-08-11 07:30:16 +02:00
|
|
|
val bintrayReleaseAllStaged = TaskKey[Unit]("bintray-release-all-staged", "Release all staged artifacts on bintray.")
|
2015-12-18 06:01:35 +01:00
|
|
|
val windowsBuildId = settingKey[Int]("build id for Windows installer")
|
2011-09-14 19:01:48 +02:00
|
|
|
|
2015-08-11 06:39:34 +02:00
|
|
|
// This build creates a SBT plugin with handy features *and* bundles the SBT script for distribution.
|
|
|
|
|
val root = (project in file(".")).
|
|
|
|
|
settings(
|
|
|
|
|
organization := "org.scala-sbt",
|
|
|
|
|
name := "sbt-launcher-packaging",
|
|
|
|
|
version := "0.1.0",
|
|
|
|
|
crossTarget <<= target,
|
|
|
|
|
packagerSettings,
|
|
|
|
|
deploymentSettings,
|
|
|
|
|
mapGenericFilesToLinux,
|
|
|
|
|
mapGenericFilesToWindows,
|
|
|
|
|
publishToSettings,
|
2016-05-09 06:25:16 +02:00
|
|
|
sbtLaunchJarUrl := downloadUrlForVersion(sbtVersionToRelease),
|
2015-08-11 06:39:34 +02:00
|
|
|
sbtLaunchJarLocation <<= target apply (_ / "sbt-launch.jar"),
|
|
|
|
|
sbtLaunchJar <<= (sbtLaunchJarUrl, sbtLaunchJarLocation) map { (uri, file) =>
|
|
|
|
|
import dispatch.classic._
|
|
|
|
|
if(!file.exists) {
|
|
|
|
|
// oddly, some places require us to create the file before writing...
|
|
|
|
|
IO.touch(file)
|
|
|
|
|
val writer = new java.io.BufferedOutputStream(new java.io.FileOutputStream(file))
|
|
|
|
|
try Http(url(uri) >>> writer)
|
|
|
|
|
finally writer.close()
|
|
|
|
|
}
|
|
|
|
|
// TODO - GPG Trust validation.
|
|
|
|
|
file
|
|
|
|
|
},
|
|
|
|
|
// GENERAL LINUX PACKAGING STUFFS
|
2016-08-22 12:25:30 +02:00
|
|
|
maintainer := "Eugene Yokota <eugene.yokota@lightbend.com>",
|
2015-08-11 07:34:13 +02:00
|
|
|
packageSummary := "sbt, the interactive build tool",
|
|
|
|
|
packageDescription := """This script provides a native way to run sbt,
|
|
|
|
|
a build tool for Scala and more.""",
|
2015-08-11 06:39:34 +02:00
|
|
|
// Here we remove the jar file and launch lib from the symlinks:
|
|
|
|
|
linuxPackageSymlinks <<= linuxPackageSymlinks map { links =>
|
2016-05-09 06:25:16 +02:00
|
|
|
for {
|
2015-08-11 06:39:34 +02:00
|
|
|
link <- links
|
|
|
|
|
if !(link.destination endsWith "sbt-launch-lib.bash")
|
|
|
|
|
if !(link.destination endsWith "sbt-launch.jar")
|
|
|
|
|
} yield link
|
|
|
|
|
},
|
2015-08-11 07:34:13 +02:00
|
|
|
// DEBIAN SPECIFIC
|
2015-08-11 06:39:34 +02:00
|
|
|
name in Debian := "sbt",
|
2016-05-09 06:25:16 +02:00
|
|
|
version in Debian := sbtVersionToRelease,
|
2015-08-11 06:39:34 +02:00
|
|
|
debianPackageDependencies in Debian ++= Seq("java6-runtime-headless", "bash (>= 2.05a-11)"),
|
|
|
|
|
debianPackageRecommends in Debian += "git",
|
|
|
|
|
linuxPackageMappings in Debian <+= (sourceDirectory) map { bd =>
|
|
|
|
|
(packageMapping(
|
|
|
|
|
(bd / "debian/changelog") -> "/usr/share/doc/sbt/changelog.gz"
|
|
|
|
|
) withUser "root" withGroup "root" withPerms "0644" gzipped) asDocs()
|
|
|
|
|
},
|
2016-05-09 06:25:16 +02:00
|
|
|
|
2015-08-11 06:39:34 +02:00
|
|
|
// RPM SPECIFIC
|
|
|
|
|
name in Rpm := "sbt",
|
2016-05-09 06:25:16 +02:00
|
|
|
version in Rpm := {
|
|
|
|
|
val stable = (sbtVersionToRelease split "[^\\d]" filterNot (_.isEmpty) mkString ".")
|
|
|
|
|
if (isExperimental) ((sbtVersionToRelease split "[^\\d]" filterNot (_.isEmpty)).toList match {
|
|
|
|
|
case List(a, b, c, d) => List(0, 99, c, d).mkString(".")
|
|
|
|
|
})
|
|
|
|
|
else stable
|
|
|
|
|
},
|
2015-08-11 06:39:34 +02:00
|
|
|
rpmRelease := "1",
|
|
|
|
|
rpmVendor := "typesafe",
|
2015-08-11 07:34:13 +02:00
|
|
|
rpmUrl := Some("http://github.com/sbt/sbt-launcher-package"),
|
2015-08-11 06:39:34 +02:00
|
|
|
rpmLicense := Some("BSD"),
|
|
|
|
|
rpmRequirements :=Seq("java","java-devel","jpackage-utils"),
|
|
|
|
|
rpmProvides := Seq("sbt"),
|
2016-05-09 06:25:16 +02:00
|
|
|
|
2015-08-11 06:39:34 +02:00
|
|
|
// WINDOWS SPECIFIC
|
|
|
|
|
name in Windows := "sbt",
|
2015-12-18 06:01:35 +01:00
|
|
|
windowsBuildId := 1,
|
2016-05-09 06:25:16 +02:00
|
|
|
version in Windows <<= (windowsBuildId) apply { (bid) =>
|
|
|
|
|
val sv = sbtVersionToRelease
|
2015-08-11 06:39:34 +02:00
|
|
|
(sv split "[^\\d]" filterNot (_.isEmpty)) match {
|
2015-12-18 06:01:35 +01:00
|
|
|
case Array(major,minor,bugfix, _*) => Seq(major, minor, bugfix, bid.toString) mkString "."
|
|
|
|
|
case Array(major,minor) => Seq(major, minor, "0", bid.toString) mkString "."
|
|
|
|
|
case Array(major) => Seq(major, "0", "0", bid.toString) mkString "."
|
2015-08-11 06:39:34 +02:00
|
|
|
}
|
|
|
|
|
},
|
2016-05-09 06:25:16 +02:00
|
|
|
maintainer in Windows := "Lightbend, Inc.",
|
2015-12-18 06:01:35 +01:00
|
|
|
packageSummary in Windows := "sbt " + (version in Windows).value,
|
2015-08-11 07:34:13 +02:00
|
|
|
packageDescription in Windows := "The interactive build tool.",
|
2015-08-11 06:39:34 +02:00
|
|
|
wixProductId := "ce07be71-510d-414a-92d4-dff47631848a",
|
2015-12-18 06:01:35 +01:00
|
|
|
wixProductUpgradeId := Hash.toHex(Hash((version in Windows).value)).take(32),
|
2015-08-11 06:39:34 +02:00
|
|
|
javacOptions := Seq("-source", "1.5", "-target", "1.5"),
|
|
|
|
|
|
|
|
|
|
// Universal ZIP download install.
|
|
|
|
|
name in Universal := "sbt",
|
2016-05-09 06:25:16 +02:00
|
|
|
version in Universal := sbtVersionToRelease,
|
2015-08-11 06:39:34 +02:00
|
|
|
mappings in Universal <+= sbtLaunchJar map { _ -> "bin/sbt-launch.jar" },
|
2016-02-23 00:14:42 +01:00
|
|
|
|
2015-08-11 06:39:34 +02:00
|
|
|
// Misccelaneous publishing stuff...
|
|
|
|
|
projectID in Debian <<= moduleID,
|
2016-02-23 00:14:42 +01:00
|
|
|
projectID in Windows := {
|
|
|
|
|
val m = moduleID.value
|
|
|
|
|
m.copy(revision = (version in Windows).value)
|
|
|
|
|
},
|
2015-08-11 06:39:34 +02:00
|
|
|
projectID in Rpm <<= moduleID,
|
|
|
|
|
projectID in Universal <<= moduleID
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
def downloadUrlForVersion(v: String) = (v split "[^\\d]" flatMap (i => catching(classOf[Exception]) opt (i.toInt))) match {
|
|
|
|
|
case Array(0, 11, 3, _*) => "http://repo.typesafe.com/typesafe/ivy-releases/org.scala-sbt/sbt-launch/0.11.3-2/sbt-launch.jar"
|
|
|
|
|
case Array(0, 11, x, _*) if x >= 3 => "http://repo.typesafe.com/typesafe/ivy-releases/org.scala-sbt/sbt-launch/"+v+"/sbt-launch.jar"
|
|
|
|
|
case Array(0, y, _*) if y >= 12 => "http://repo.typesafe.com/typesafe/ivy-releases/org.scala-sbt/sbt-launch/"+v+"/sbt-launch.jar"
|
2016-05-09 06:25:16 +02:00
|
|
|
case Array(1, _, _*) => "http://repo.scala-sbt.org/scalasbt/maven-releases/org/scala-sbt/sbt-launch/"+v+"/sbt-launch.jar"
|
2015-08-11 06:39:34 +02:00
|
|
|
case _ => "http://repo.typesafe.com/typesafe/ivy-releases/org.scala-tools.sbt/sbt-launch/"+v+"/sbt-launch.jar"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
def makePublishTo(id: String, url: String, pattern: String): Setting[_] = {
|
|
|
|
|
publishTo := {
|
|
|
|
|
val resolver = Resolver.url(id, new URL(url))(Patterns(pattern))
|
|
|
|
|
Some(resolver)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
def makePublishToForConfig(config: Configuration) = {
|
2016-05-09 06:25:16 +02:00
|
|
|
val v = sbtVersionToRelease
|
2015-08-11 07:30:16 +02:00
|
|
|
val (id, url, pattern) =
|
|
|
|
|
config.name match {
|
2016-05-09 06:25:16 +02:00
|
|
|
case Debian.name if isExperimental => ("debian-experimental", bintrayDebianExperimentalUrl, bintrayLinuxPattern)
|
2015-08-11 07:30:16 +02:00
|
|
|
case Debian.name => ("debian", bintrayDebianUrl, bintrayLinuxPattern)
|
2016-05-09 06:25:16 +02:00
|
|
|
case Rpm.name if isExperimental => ("rpm-experimental", bintrayRpmExperimentalUrl, bintrayLinuxPattern)
|
|
|
|
|
case Rpm.name => ("rpm", bintrayRpmUrl, bintrayLinuxPattern)
|
|
|
|
|
case _ => ("native-packages", bintrayGenericPackagesUrl, bintrayGenericPattern)
|
2015-08-11 07:30:16 +02:00
|
|
|
}
|
2015-08-11 06:39:34 +02:00
|
|
|
// Add the publish to and ensure global resolvers has the resolver we just configured.
|
|
|
|
|
inConfig(config)(Seq(
|
2015-08-11 07:30:16 +02:00
|
|
|
bintrayOrganization := Some("sbt"),
|
|
|
|
|
bintrayRepository := id,
|
|
|
|
|
bintrayRepo := Bintray.cachedRepo(bintrayEnsureCredentials.value,
|
|
|
|
|
bintrayOrganization.value,
|
|
|
|
|
bintrayRepository.value),
|
|
|
|
|
bintrayPackage := "sbt",
|
|
|
|
|
makePublishTo(id, url, pattern),
|
|
|
|
|
bintrayReleaseAllStaged := bintrayRelease(bintrayRepo.value, bintrayPackage.value, version.value, sLog.value)
|
|
|
|
|
// Uncomment to release right after publishing
|
|
|
|
|
// publish <<= (publish, bintrayRepo, bintrayPackage, version, sLog) apply { (publish, bintrayRepo, bintrayPackage, version, sLog) =>
|
|
|
|
|
// for {
|
|
|
|
|
// pub <- publish
|
|
|
|
|
// repo <- bintrayRepo
|
|
|
|
|
// } yield bintrayRelease(repo, bintrayPackage, version, sLog)
|
|
|
|
|
// }
|
2015-08-11 06:39:34 +02:00
|
|
|
)) ++ Seq(
|
|
|
|
|
resolvers <++= (publishTo in config) apply (_.toSeq)
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
2016-05-09 06:25:16 +02:00
|
|
|
def publishToSettings =
|
2015-08-11 06:39:34 +02:00
|
|
|
Seq[Configuration](Debian, Universal, Windows, Rpm) flatMap makePublishToForConfig
|
|
|
|
|
|
2015-08-11 07:30:16 +02:00
|
|
|
def bintrayRelease(repo: BintrayRepo, pkg: String, version: String, log: Logger): Unit =
|
|
|
|
|
repo.release(pkg, version, log)
|
2012-01-17 20:15:00 +01:00
|
|
|
|