forked from WiringPi/WiringPi
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request WiringPi#196 from WiringPi/revision
Revision 3.1
- Loading branch information
Showing
12 changed files
with
277 additions
and
212 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3.0 | ||
3.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,19 +32,3 @@ echo "#define VERSION \"`cat VERSION`\"" > version.h | |
echo "#define VERSION_MAJOR $vMaj" >> version.h | ||
echo "#define VERSION_MINOR $vMin" >> version.h | ||
|
||
rm -f debian-template/wiringPi/DEBIAN/control | ||
cat > debian-template/wiringPi/DEBIAN/control <<EOF | ||
Package: wiringpi | ||
Version: `cat VERSION` | ||
Section: libraries | ||
Priority: optional | ||
Architecture: armhf | ||
Depends: libc6 | ||
Maintainer: Grazer Computer Club - GC2 <[email protected]> | ||
Uploaders: Grazer Computer Club - GC2 <[email protected]> | ||
Description: The wiringPi libraries, headers and gpio command | ||
Libraries to allow GPIO access on a Raspberry Pi from C and C++ | ||
and BASIC programs as well as from the command-line | ||
Homepage: https://github.com/WiringPi/WiringPi/ | ||
Bugs: https://github.com/WiringPi/WiringPi/ | ||
EOF |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/sh | ||
vMaj=`cut -d. -f1 VERSION` | ||
vMin=`cut -d. -f2 VERSION` | ||
DEBVERSION=$vMaj.$vMin | ||
sudo apt -y remove wiringpi | ||
./build clean | ||
./build debian | ||
mv debian-template/wiringpi_${DEBVERSION}_armhf.deb . | ||
sudo apt install ./wiringpi_${DEBVERSION}_armhf.deb | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#define VERSION "3.0" | ||
#define VERSION "3.1" | ||
#define VERSION_MAJOR 3 | ||
#define VERSION_MINOR 0 | ||
#define VERSION_MINOR 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.