-
Notifications
You must be signed in to change notification settings - Fork 432
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 #304 from hagen-i2p/fixes
Misc fixes
- Loading branch information
Showing
9 changed files
with
56 additions
and
134 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
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 |
---|---|---|
@@ -1,12 +1,11 @@ | ||
FROM ubuntu | ||
|
||
RUN apt-get update && apt-get install -y libboost-dev libboost-filesystem-dev \ | ||
libboost-program-options-dev libboost-regex-dev libcrypto++-dev \ | ||
libboost-date-time-dev git build-essential | ||
libboost-program-options-dev libboost-regex-dev libboost-date-time-dev \ | ||
libssl-dev git build-essential | ||
|
||
RUN git clone https://github.com/PurpleI2P/i2pd.git | ||
WORKDIR /i2pd | ||
RUN make | ||
|
||
CMD ./i2p | ||
|
This file was deleted.
Oops, something went wrong.
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,11 +1,6 @@ | ||
i2pd (20140919-2) unstable; urgency=low | ||
i2pd (2.1.0-1) unstable; urgency=low | ||
|
||
* updated to latest sources | ||
* updated to version 2.1.0/0.9.23 | ||
* updated deps | ||
|
||
-- hagen <hagen@i2pmail.org> Fri, 19 Sep 2014 05:16:12 +0000 | ||
|
||
i2pd (20140919-1) unstable; urgency=low | ||
|
||
* Initial release (Closes: #nnnn) | ||
|
||
-- hagen <hagen@i2pmail.org> Mon, 19 Sep 2014 00:00:00 +0000 |
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 |
---|---|---|
@@ -1,23 +1,13 @@ | ||
diff --git a/Makefile b/Makefile | ||
index f65d7a1..6f998bf 100644 | ||
--- a/Makefile | ||
+++ b/Makefile | ||
@@ -10,9 +10,9 @@ | ||
include Makefile.linux | ||
endif | ||
@@ -3,7 +3,7 @@ SHLIB := libi2pd.so | ||
ARLIB := libi2pd.a | ||
SHLIB_CLIENT := libi2pdclient.so | ||
ARLIB_CLIENT := libi2pdclient.a | ||
-I2PD := i2p | ||
+I2PD := i2pd | ||
GREP := fgrep | ||
DEPS := obj/make.dep | ||
|
||
-all: obj i2p | ||
+all: obj i2pd | ||
|
||
-i2p: $(OBJECTS:obj/%=obj/%) | ||
+i2pd: $(OBJECTS:obj/%=obj/%) | ||
$(CXX) -o $@ $^ $(LDFLAGS) $(LIBS) | ||
|
||
.SUFFIXES: | ||
@@ -25,7 +25,7 @@ | ||
mkdir -p obj | ||
|
||
clean: | ||
- rm -fr obj i2p | ||
+ rm -fr obj i2pd | ||
|
||
.PHONY: all | ||
.PHONY: clean |
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 @@ | ||
version=3 | ||
opts=filenamemangle=s/.+\/v?(\d\S*)\.tar\.gz/i2pd-$1\.tar\.gz/ \ | ||
https://github.com/PrivacySolutions/i2pd/tags .*/v?(\d\S*)\.tar\.gz | ||
https://github.com/PurpleI2P/i2pd/tags .*/v?(\d\S*)\.tar\.gz |