Skip to content

Commit

Permalink
remove useless files, add a new line separator in remaining files, up…
Browse files Browse the repository at this point in the history
…date libraries
  • Loading branch information
mcolmant committed Nov 4, 2014
1 parent 58f47f4 commit 0106087
Show file tree
Hide file tree
Showing 28 changed files with 15 additions and 383 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ When submitting code, please make every effort to follow existing conventions an

# Acknowledgments
We all stand on the shoulders of giants and get by with a little help from our friends. PowerAPI is written in [Scala](http://www.scala-lang.org) (version 2.11.4 under [3-clause BSD license](http://www.scala-lang.org/license.html)) and built on top of:
* [Akka](http://akka.io) (version 2.2.4 under [Apache 2 license](http://www.apache.org/licenses/LICENSE-2.0)), for asynchronous processing
* [Akka](http://akka.io) (version 2.3.6 under [Apache 2 license](http://www.apache.org/licenses/LICENSE-2.0)), for asynchronous processing
* [Typesage Config](https://github.com/typesafehub/config) (version 1.2.1 under [Apache 2 license](http://www.apache.org/licenses/LICENSE-2.0)), for reading configuration files.

# Licence
Expand Down
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ name := """powerapi"""

version := "1.0"

scalaVersion := "2.11.1"
scalaVersion := "2.11.4"

libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % "2.3.4",
"com.typesafe.akka" %% "akka-actor" % "2.3.6",
"com.typesafe" % "config" % "1.2.1",
"com.typesafe.akka" %% "akka-testkit" % "2.3.4" % "test",
"org.scalatest" %% "scalatest" % "2.1.6" % "test",
"com.typesafe.akka" %% "akka-testkit" % "2.3.6" % "test",
"org.scalatest" %% "scalatest" % "2.2.2" % "test",
"junit" % "junit" % "4.11" % "test",
"com.novocode" % "junit-interface" % "0.10" % "test"
)
Expand Down
22 changes: 0 additions & 22 deletions src/main/scala/org/powerapi/PowerMeter.scala

This file was deleted.

2 changes: 1 addition & 1 deletion src/main/scala/org/powerapi/core/ClockActors.scala
Original file line number Diff line number Diff line change
Expand Up @@ -191,4 +191,4 @@ class Clock(timeout: Timeout = Timeout(100.milliseconds)) extends Component with

context.become(acquire)
}
}
}
2 changes: 1 addition & 1 deletion src/main/scala/org/powerapi/core/ClockChannel.scala
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,4 @@ trait ClockChannel {

def subscribeOnBus: ActorRef => Unit = subscribe(ReportBus.eventBus)
def publishOnBus: ClockTick => Unit = publish(ReportBus.eventBus)
}
}
2 changes: 1 addition & 1 deletion src/main/scala/org/powerapi/core/Component.scala
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ trait Component extends Actor with ActorLogging {
def receive = LoggingReceive {
acquire orElse default
}
}
}
2 changes: 1 addition & 1 deletion src/main/scala/org/powerapi/core/Message.scala
Original file line number Diff line number Diff line change
Expand Up @@ -91,4 +91,4 @@ class Channel {
def publish(bus: EventBus)(report: R) = {
bus.publish(report)
}
}
}
22 changes: 0 additions & 22 deletions src/main/scala/org/powerapi/core/Subscription.scala

This file was deleted.

22 changes: 0 additions & 22 deletions src/main/scala/org/powerapi/module/libpfm/LibpfmFormula.scala

This file was deleted.

22 changes: 0 additions & 22 deletions src/main/scala/org/powerapi/module/libpfm/LibpfmSensor.scala

This file was deleted.

22 changes: 0 additions & 22 deletions src/main/scala/org/powerapi/module/powerspy/PowerspyFormula.scala

This file was deleted.

22 changes: 0 additions & 22 deletions src/main/scala/org/powerapi/module/powerspy/PowerspySensor.scala

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

22 changes: 0 additions & 22 deletions src/main/scala/org/powerapi/module/rapl/RaplFormula.scala

This file was deleted.

22 changes: 0 additions & 22 deletions src/main/scala/org/powerapi/module/rapl/RaplSensor.scala

This file was deleted.

22 changes: 0 additions & 22 deletions src/main/scala/org/powerapi/module/sigar/SigarFormula.scala

This file was deleted.

22 changes: 0 additions & 22 deletions src/main/scala/org/powerapi/module/sigar/SigarSensor.scala

This file was deleted.

Loading

0 comments on commit 0106087

Please sign in to comment.