Skip to content

Commit

Permalink
Update the brew formula and the BitBake recipe
Browse files Browse the repository at this point in the history
This change doesn't concern all users, only the OSX and BitBake ones.
  • Loading branch information
Aorimn committed Feb 8, 2017
1 parent e137c02 commit 953ef59
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 14 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# v0.7.1
This version is only used to update dislocker's brew file and the BitBake recipe
for OSX's and BitBake's users to be able to download v0.7. If you're not an OSX
nor a BitBake user, you can use either v0.7 or v0.7.1, this won't make any
difference.

# v0.7
- Feature improvement:
- dislocker can now be run from /etc/fstab. This also means that the `-o`
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ endif()

set (VERSION_MAJOR 0)
set (VERSION_MINOR 7)
set (VERSION_RELEASE 0)
set (VERSION_RELEASE 1)
set (VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_RELEASE}")

add_subdirectory (${PROJECT_SOURCE_DIR}/src)
Expand Down
2 changes: 1 addition & 1 deletion INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Each OS type has its own section below, beware to follow yours:

## If you are on MacOSX...

Just install Homebrew (http://brew.sh/) and run the following command:
Just install Homebrew (http://brew.sh/) and run the following commands:
```
brew update
brew install Caskroom/cask/osxfuse
Expand Down
16 changes: 7 additions & 9 deletions src/dislocker.bb
Original file line number Diff line number Diff line change
Expand Up @@ -4,26 +4,24 @@ SUMMARY = "Read BitLocker encrypted partitions under a Linux system"
DESCRIPTION = " \
This software has been designed to read BitLocker encrypted partitions under a \
Linux system. The driver has the capability to read/write on: \
- Windows Vista, 7, 8, 8.1 and 10 encrypted partitions; \
- Windows Vista, 7, 8, 8.1 and 10 encrypted partitions - that's AES-CBC, \
AES-XTS, 128 or 256 bits, with or without the Elephant diffuser, encrypted \
partitions; \
- BitLocker-To-Go encrypted partitions - that's USB/FAT32 partitions. \
"

HOMEPAGE = "http://www.hsc.fr/ressources/outils/dislocker/index.html.en"
HOMEPAGE = "https://github.com/Aorimn/dislocker"
BUGTRACKER = "https://github.com/Aorimn/dislocker/issues"

LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=6aa0d8e41ad2e57bef0712adf0cf5cb5"

SECTION = "e/utils"

SRC_URI = "\
http://www.hsc.fr/ressources/outils/dislocker/download/dislocker-${PV}.tar.gz \
file://find_polar_ssl.patch;apply=true \
file://src_cmake_lists.patch;apply=true \
"
SRC_URI = "https://github.com/Aorimn/dislocker/archive/v${PV}.tar.gz"

SRC_URI[md5sum] = "5bc9de345c17fff15a4c008f4100a8fa"
SRC_URI[sha256sum] = "e125e3b23d6c1cc2ee2b01958dceaaa15a28ae5616a7cb38b973c5befdb16ead"
SRC_URI[md5sum] = "4c54dad329e6ad83d84e0fcf5691774a"
SRC_URI[sha256sum] = "42976176093ef063aff69e295357c0f1a370b618d845a7e3bef71cd85723317d"

DEPENDS = "mbedtls fuse"
RDEPENDS_${PN} += "mbedtls fuse"
Expand Down
6 changes: 3 additions & 3 deletions src/dislocker.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@

class Dislocker < Formula
homepage 'https://github.com/Aorimn/dislocker'
url 'https://github.com/Aorimn/dislocker/archive/v0.6.zip'
sha256 '9738fdaa224de5669fe98dbd2a2edfbb1f2d0021e63045140d693c401e673ce4'
version '0.6.0'
url 'https://github.com/Aorimn/dislocker/archive/v0.7.zip'
sha256 'ed5b0cb99de9fdbf7653f59e36bd31c84fdae2e40e13cefa688421cebb393cbd'
version '0.7.0'

depends_on 'mbedtls'
depends_on 'cmake'
Expand Down

0 comments on commit 953ef59

Please sign in to comment.